1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
/*
A* -------------------------------------------------------------------
B* This file contains source code for the PyMOL computer program
C* Copyright (c) Schrodinger, LLC.
D* -------------------------------------------------------------------
E* It is unlawful to modify or remove this copyright notice.
F* -------------------------------------------------------------------
G* Please see the accompanying LICENSE file for further information.
H* -------------------------------------------------------------------
I* Additional authors of this source file include:
-*
-*
-*
Z* -------------------------------------------------------------------
*/
#ifndef _H_Field
#define _H_Field
#include"os_python.h"
#include"PyMOLGlobals.h"
#include <cassert>
enum cField_t {
cFieldFloat = 0,
cFieldInt = 1,
cFieldOther = 2,
};
/**
* Multi-dimensional data array with runtime typing.
*/
struct CField {
cField_t type;
std::vector<char> data;
std::vector<unsigned int> dim;
std::vector<unsigned int> stride;
unsigned int base_size;
CField() = default;
CField(
PyMOLGlobals* G, const int* const dim, int n_dim, unsigned int base_size, cField_t type);
int n_dim() const noexcept { return dim.size(); }
unsigned int size() const noexcept { return data.size(); }
/**
* Copies data from another vector as stream of bytes
* @param other source typed buffer
*/
template <typename T> void set_data(const std::vector<T>& other)
{
auto nbytes = other.size() * sizeof(T);
data.resize(nbytes);
std::copy_n(
reinterpret_cast<const char*>(other.data()), nbytes, data.begin());
}
protected:
template <typename T> static cField_t _get_type()
{
if (std::is_same<T, float>::value) {
return cFieldFloat;
}
if (std::is_same<T, int>::value) {
return cFieldInt;
}
return cFieldOther;
}
public:
/**
* Returns heap-allocated handle to CField based on stored type
* @param dim dimensions
* @param n_dim number of dimensions
* @return pointer to heap-allocated CField object.
* Note: Lifetime of object (via heap-allocation) must be managed by owner.
*/
template <typename T>
static CField* make(PyMOLGlobals* G, const int* const dim, int n_dim)
{
return new CField(G, dim, n_dim, sizeof(T), _get_type<T>());
}
private:
size_t _data_offset(size_t a, size_t b, size_t c) const
{
return a * stride[0] + b * stride[1] + c * stride[2];
}
size_t _data_offset(size_t a, size_t b, size_t c, size_t d) const
{
return a * stride[0] + b * stride[1] + c * stride[2] + d * stride[3];
}
public:
//! Get a pointer to the value at `pos`
template <typename T, typename... SizeTs> T* ptr(SizeTs... pos)
{
assert(sizeof...(pos) <= n_dim());
return reinterpret_cast<T*>(data.data() + _data_offset(pos...));
}
template <typename T, typename... SizeTs> T const* ptr(SizeTs... pos) const
{
return const_cast<CField*>(this)->ptr<T const>(pos...);
}
//! Get the value at `pos`
template <typename T, typename... SizeTs> T& get(SizeTs... pos)
{
assert(sizeof...(pos) == n_dim());
assert(sizeof(T) == base_size);
return *ptr<T>(pos...);
}
template <typename T, typename... SizeTs> T const& get(SizeTs... pos) const
{
return const_cast<CField*>(this)->get<T const>(pos...);
}
};
/**
* Multi-dimensional data array with compile-time typing.
*/
template <typename T> struct CFieldTyped : CField {
CFieldTyped(const int* const dim, int n_dim)
: CField(nullptr, dim, n_dim, sizeof(T), _get_type<T>())
{
}
template <typename... SizeTs> T* ptr(SizeTs... pos)
{
return CField::ptr<T>(pos...);
}
template <typename... SizeTs> T const* ptr(SizeTs... pos) const
{
return CField::ptr<T>(pos...);
}
template <typename... SizeTs> T& get(SizeTs... pos)
{
return CField::get<T>(pos...);
}
template <typename... SizeTs> T const& get(SizeTs... pos) const
{
return CField::get<T>(pos...);
}
};
/* accessors for getting data from a field */
#define Ffloat3p(f, a, b, c) ((f)->ptr<float>(a, b, c))
#define Ffloat3(f, a, b, c) ((f)->get<float>(a, b, c))
#define Ffloat4p(f, a, b, c, d) ((f)->ptr<float>(a, b, c, d))
#define Ffloat4(f, a, b, c, d) ((f)->get<float>(a, b, c, d))
#define F3 Ffloat3
#define F3Ptr Ffloat3p
#define F4 Ffloat4
#define F4Ptr Ffloat4p
void FieldZero(CField * I);
float FieldInterpolatef(CField * I, int a, int b, int c, float x, float y, float z);
void FieldInterpolate3f(CField * I, int *locus, float *fract, float *result);
PyObject *FieldAsNumPyArray(CField * I, short copy);
PyObject *FieldAsPyList(PyMOLGlobals * G, CField * I);
CField *FieldNewFromPyList(PyMOLGlobals * G, PyObject * list);
CField *FieldNewFromPyList_From_List(PyMOLGlobals * G, PyObject * list, int);
int FieldSmooth3f(CField * I);
#endif
|