JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
ArrayParam< T > Class Template Reference

#include <tools++.h>

Public Member Functions

 ArrayParam (int n=0)
 
virtual ~ArrayParam (void)
 
void init (int n=0)
 
void free (void)
 
void free_ptr (void)
 
int get_size (void)
 
get_value (int n)
 
bool set_value (int n, T val)
 
void dup (ArrayParam< T > a, bool del=true)
 
 ArrayParam (int n=0)
 
virtual ~ArrayParam (void)
 
void init (int n=0)
 
void free (void)
 
void free_ptr (void)
 
int get_size (void)
 
get_value (int n)
 
bool set_value (int n, T val)
 
void dup (ArrayParam< T > a, bool del=true)
 

Private Attributes

int _size
 
T * _value
 
_value [JBXL_ARRAYPARAM_MAX_NUM]
 

Detailed Description

template<typename T>
class jbxl::ArrayParam< T >

汎用配列パラメータ

Definition at line 29 of file tools++.h.

Constructor & Destructor Documentation

◆ ArrayParam() [1/2]

template<typename T >
ArrayParam ( int n = 0)
inline

Definition at line 36 of file tools++.h.

36{ init(n);}
void init(int n=0)
Definition tools++.h:51

References ArrayParam< T >::init().

Here is the call graph for this function:

◆ ~ArrayParam() [1/2]

template<typename T >
virtual ~ArrayParam ( void )
inlinevirtual

Definition at line 37 of file tools++.h.

37{} // ディストラクタではなく,free() で解放する.

◆ ArrayParam() [2/2]

template<typename T >
ArrayParam ( int n = 0)
inline

Definition at line 37 of file tools++_alt.h.

37{ init(n);}

References ArrayParam< T >::init().

Here is the call graph for this function:

◆ ~ArrayParam() [2/2]

template<typename T >
virtual ~ArrayParam ( void )
inlinevirtual

Definition at line 38 of file tools++_alt.h.

38{} // ディストラクタではなく,free() で解放する.

Member Function Documentation

◆ dup() [1/2]

template<typename T >
void dup ( ArrayParam< T > a,
bool del = true )

template <typename T> void ArrayParam<T>::dup(ArrayParam<T> a, bool del)

ArrayParam<T> のコピーを作る. 既に何かデータが入っている場合は, del を trueにする. メモリ確保直後(_value の値が不定)の場合に del を trueにすると,セグメンテーションエラーを起こす.

Parameters
paramコピーするデータ.
del最初にデータを free()するか? true: 最初に free()する(デフォルト),false: free() しない.

Definition at line 138 of file tools++.h.

139{
140 if (del) this->free();
141 this->init(a.get_size());
142
143 for (int i=0; i<this->_size; i++) {
144 this->_value[i] = a.get_value(i);
145 }
146}
void free(void)
Definition tools++.h:66

References ArrayParam< T >::get_size(), and ArrayParam< T >::get_value().

Referenced by MeshFacetNode::computeVertexByBREP(), MeshFacetNode::computeVertexByBREP(), MeshFacetNode::computeVertexDirect(), MeshFacetNode::computeVertexDirect(), jbxl::CreateContourByVector(), ContourBaseData::dup(), TriPolygonData::dup(), MeshObjectData::importTriData(), and MeshObjectData::importTriData().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ dup() [2/2]

template<typename T >
void dup ( ArrayParam< T > a,
bool del = true )

◆ free() [1/2]

template<typename T >
void free ( void )

Definition at line 66 of file tools++.h.

67{
68 if (_size>0) {
69 _size = 0;
70 //DEBUG_MODE PRINT_MESG("ArrayParam<T>::free: _value = %016x\n", _value);
71 if (_value!=NULL) ::free(_value);
72 }
73 _value = NULL;
74 return;
75}

Referenced by TriPolygonData::free(), SkinJointData::free(), jbxl::freeArrayParams(), and BREP_VERTEX::~BREP_VERTEX().

Here is the caller graph for this function:

◆ free() [2/2]

template<typename T >
void free ( void )

◆ free_ptr() [1/2]

template<typename T >
void free_ptr ( void )

_value[i] がポインタの場合.(実行注意!)
_value 自体は freeしない.

_value[i] がポインタの場合.(実行注意!)
_valkue 自体は freeしない.

Definition at line 82 of file tools++.h.

83{
84 if (_size<=0 || _value==NULL) return;
85
86 for (int i=0; i<_size; i++) {
87 if (_value[i]!=NULL){
88 ::free(_value[i]);
89 _value[i] = NULL;
90 }
91 }
92 return;
93}

Referenced by SkinJointData::free().

Here is the caller graph for this function:

◆ free_ptr() [2/2]

template<typename T >
void free_ptr ( void )

◆ get_size() [1/2]

template<typename T >
int get_size ( void )
inline

◆ get_size() [2/2]

template<typename T >
int get_size ( void )
inline

Definition at line 44 of file tools++_alt.h.

44{ return _size;}

References ArrayParam< T >::_size.

◆ get_value() [1/2]

template<typename T >
T get_value ( int n)

Definition at line 96 of file tools++.h.

97{
98 if (n>=_size || n<0) {
99 PRINT_MESG("WARNING: ArrayParam<T>::get_value: size missmatch (%d !< %d)\n", n, _size);
100 }
101 if (_size<=0 || _value==NULL) return (T)0;
102
103 if (n<0) n = 0;
104 else if (n>=_size) n = _size - 1;
105
106 return _value[n];
107}
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469

References PRINT_MESG.

Referenced by ColladaXML::addController(), ColladaXML::addScene(), GLTFData::addSkeletonNodes(), ColladaXML::addWeightSource(), GLTFData::createBinDataSeqAoS(), GLTFData::createBinDataSeqSoA(), GLTFData::createShellGeometryData(), and ArrayParam< T >::dup().

Here is the caller graph for this function:

◆ get_value() [2/2]

template<typename T >
T get_value ( int n)

◆ init() [1/2]

template<typename T >
void init ( int n = 0)

Definition at line 51 of file tools++.h.

52{
53 if (n<0) n = 0;
54 _size = n;
55 if (_size==0) {
56 _value = NULL;
57 return;
58 }
59 if (n>0) _value = (T*)malloc(sizeof(T)*_size);
60 else _value = NULL;
61
62 return;
63}

Referenced by ArrayParam< T >::ArrayParam(), BREP_VERTEX::BREP_VERTEX(), SkinJointData::init(), and TriPolygonData::init().

Here is the caller graph for this function:

◆ init() [2/2]

template<typename T >
void init ( int n = 0)

◆ set_value() [1/2]

template<typename T >
bool set_value ( int n,
T val )

Definition at line 113 of file tools++.h.

114{
115 if (_size<=0 || _value==NULL) return false;
116
117 if (n>=_size || n<0) {
118 PRINT_MESG("WARNING: ArrayParam<T>::set_value: size missmatch (%d !< %d)\n", n, _size);
119 return false;
120 }
121
122 _value[n] = val;
123
124 return true;
125}

References PRINT_MESG.

◆ set_value() [2/2]

template<typename T >
bool set_value ( int n,
T val )

Member Data Documentation

◆ _size

template<typename T >
int _size
private

Definition at line 32 of file tools++.h.

Referenced by ArrayParam< T >::get_size().

◆ _value [1/2]

template<typename T >
T* _value
private

Definition at line 33 of file tools++.h.

◆ _value [2/2]

template<typename T >
T _value[JBXL_ARRAYPARAM_MAX_NUM]
private

Definition at line 34 of file tools++_alt.h.


The documentation for this class was generated from the following files: