JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
ContourBaseData.cpp
Go to the documentation of this file.
1
2#include "ContourBaseData.h"
3
4
5using namespace jbxl;
6
7
9// ContourTriIndex
10//
11
12void ContourTriIndex::set(int w1, int w2, int w3, int m1, int m2, int m3, int u1, int u2, int u3)
13{
14 v1 = w1; v2 = w2; v3 = w3;
15 n1 = m1; n2 = m2; n3 = m3;
16 uv1 = u1; uv2 = u2, uv3 = u3;
17}
18
19
20void ContourTriIndex::mlt_set(int d1, int d2, int d3)
21{
22 v1 = d1; v2 = d2; v3 = d3;
23 n1 = d1; n2 = d2; n3 = d3;
24 uv1 = d1; uv2 = d2, uv3 = d3;
25}
26
27
29// ContourTriData
30//
31
33{
34 contourNum = 0;
35
36 v1.init();
37 v2.init();
38 v3.init();
39 n1.init();
40 n2.init();
41 n3.init();
42 uv1.init();
43 uv2.init();
44 uv3.init();
45 //w1.init();
46 //w2.init();
47 //w3.init();
48}
49
50
52{
53 contourNum = 0;
54
55 //w1.free();
56 //w2.free();
57 //w3.free();
58}
59
60
61void ContourTriData::execScale(double x, double y, double z)
62{
63 v1.x *= x;
64 v1.y *= y;
65 v1.z *= z;
66 v2.x *= x;
67 v2.y *= y;
68 v2.z *= z;
69 v3.x *= x;
70 v3.y *= y;
71 v3.z *= z;
72}
73
74
84
85
86
88// Contour Base Data
89//
90
91void ContourBaseData::init(int idx, int num)
92{
93 num_index = idx;
94 num_data = num;
95 vcount = 3;
96
97 index = NULL;
98 vertex = NULL;
99 normal = NULL;
100 texcrd = NULL;
101 weight = NULL;
102}
103
104
106{
111 freeArrayParams<int>(weight, num_data);
112
113 init(0, 0);
114}
115
116
118{
119 index = (int*)malloc(sizeof(int)*num_index);
120 vertex = (Vector<double>*) malloc(sizeof(Vector<double>)*num_data);
121 normal = (Vector<double>*) malloc(sizeof(Vector<double>)*num_data);
122 texcrd = (UVMap <double>*) malloc(sizeof(UVMap<double>) *num_data);
124
125 if (index==NULL || vertex==NULL || normal==NULL || texcrd==NULL) {
126 this->free();
127 return false;
128 }
129
130 memset(index, 0, sizeof(int)*num_data);
131 memset(vertex, 0, sizeof(Vector<double>)*num_data);
132 memset(normal, 0, sizeof(Vector<double>)*num_data);
133 memset(texcrd, 0, sizeof(UVMap<double>) *num_data);
134 memset(weight, 0, sizeof(ArrayParam<int>)*num_data);
135
136 return true;
137}
138
139
141{
143 num_data = a.num_data;
144 vcount = a.vcount;
145
146 if (getm()) {
147 for (int i=0; i<num_index; i++) index[i] = a.index[i];
148 for (int i=0; i<num_data; i++) {
149 vertex[i] = a.vertex[i];
150 normal[i] = a.normal[i];
151 texcrd[i] = a.texcrd[i];
152 weight[i].dup(a.weight[i]);
153 }
154 }
155 return;
156}
157
158
160{
161 for (int i=0; i<num_data; i++) {
162 vertex[i].x *= scale.x;
163 vertex[i].y *= scale.y;
164 vertex[i].z *= scale.z;
165 }
166}
167
168
170{
171 for (int i=0; i<num_data; i++) {
172 vertex[i].x += shift.x;
173 vertex[i].y += shift.y;
174 vertex[i].z += shift.z;
175 }
176}
177
178
180{
181 for (int i=0; i<num_data; i++) {
182 vertex[i] = VectorRotation(vertex[i], quat);
183 normal[i] = VectorRotation(normal[i], quat);
184 }
185}
186
187
188
190// Triangle Polygon Data
191//
192
194{
195 polygonNum = -1;
196 has_normal = false;
197 has_texcrd = false;
198 has_weight = false;
199 //
200 for (int i=0; i<3; i++) {
201 vertex[i].init();
202 normal[i].init();
203 texcrd[i].init();
204 weight[i].init();
205 }
206}
207
208
210{
211 for (int i=0; i<3; i++) {
212 weight[i].free();
213 }
214 init();
215}
216
217
219{
224 //
225 for (int i=0; i<3; i++) {
226 vertex[i] = a.vertex[i];
227 normal[i] = a.normal[i];
228 texcrd[i] = a.texcrd[i];
229 weight[i].dup(a.weight[i]);
230 }
231}
232
233
235{
236 for (int i=0; i<3; i++) {
237 vertex[i].x *= scale.x;
238 vertex[i].y *= scale.y;
239 vertex[i].z *= scale.z;
240 }
241}
242
243
245{
246 for (int i=0; i<3; i++) {
247 vertex[i].x += shift.x;
248 vertex[i].y += shift.y;
249 vertex[i].z += shift.z;
250 }
251}
252
253
255{
256 for (int i=0; i<3; i++) {
257 vertex[i] = VectorRotation(vertex[i], quat);
258 normal[i] = VectorRotation(normal[i], quat);
259 }
260}
261
262
263
265//
266
268{
269 if (data==NULL) return NULL;
270
271 TriPolygonData* dup = (TriPolygonData*)malloc(sizeof(TriPolygonData)*num);
272 if (dup==NULL) return NULL;
273 memset(dup, 0, sizeof(TriPolygonData)*num);
274
275 for (int i=0; i<num; i++) {
276 dup[i].dup(data[i]);
277 for (int j=0; j<3; j++) dup[i].weight[j].dup(data[i].weight[j]);
278 }
279 return dup;
280}
281
282
284{
285 if (first==NULL) return next;
286 if (next ==NULL) return first;
287
288 TriPolygonData* join = (TriPolygonData*)malloc(sizeof(TriPolygonData)*(num_p+num_n));
289 if (join==NULL) return NULL;
290 memset(join, 0, sizeof(TriPolygonData)*(num_p+num_n));
291
292 int num = 0;
293 for (int i=0; i<num_p; i++) {
294 join[i].dup(first[i]);
295 if (join[i].polygonNum>num) num = join[i].polygonNum;
296 }
297 num += 1;
298
299 for (int i=0; i<num_n; i++) {
300 join[num_p+i].dup(next[i]);
301 join[num_p+i].polygonNum += num;
302 }
303
304 freeTriPolygonData(first, num_p);
305 freeTriPolygonData(next, num_n);
306
307 return join;
308}
309
310
312{
313 //DEBUG_MODE PRINT_MESG("JBXL::freeTriPolygonData(): start.\n");
314 if (n<=0) return;
315
316 if (tridata!=NULL) {
317 for (int i=0; i<n; i++) {
318 tridata[i].free();
319 }
320 ::free(tridata);
321 tridata = NULL;
322 }
323 //DEBUG_MODE PRINT_MESG("JBXL::freeTriPolygonData(): end.\n");
324}
325
326
327
329// SkinJointData
330//
331
333{
334 num_joints = 0;
335 pelvis_offset = 0.0;
336
337 inverse_bind = NULL;
338 alt_inverse_bind = NULL;
341
342 if (n>0) {
343 num_joints = n;
344 int len_data = sizeof(AffineTrans<double>)*num_joints;
345 inverse_bind = (AffineTrans<double>*)malloc(len_data);
346 alt_inverse_bind = (AffineTrans<double>*)malloc(len_data);
347 memset(inverse_bind, 0, len_data);
348 memset(alt_inverse_bind, 0, len_data);
349 //
350 for (int i=0; i<num_joints; i++) {
351 inverse_bind[i].init();
353 }
355 }
356}
357
358
360{
361 for (int i=0; i<num_joints; i++) {
362 inverse_bind[i].free();
364 }
368 //
371
372 init();
373}
374
void init(void)
Definition AffineTrans.h:44
void free(void)
Definition AffineTrans.h:49
void init(int n=0)
Definition tools++.h:51
void dup(ArrayParam< T > a, bool del=true)
Definition tools++.h:138
void free_ptr(void)
Definition tools++.h:82
void free(void)
Definition tools++.h:66
int num_data
データ数.(vertex, normal, texcrd, weight の要素数)
void dup(ContourBaseData a)
void execRotate(Quaternion< double > quat)
UVMap< double > * texcrd
テクスチャマップ texcrd[index[0]], texcrd[index[1]], texcrd[index[2]], ... の順に並ぶ
int num_index
インデックスの数.(index の要素数)
Vector< double > * vertex
頂点データ vertex[index[0]], vertex[index[1]], vertex[index[2]], ... の順に並ぶ
void execScale(Vector< double > scale)
int * index
インデックスデータ
int vcount
ポリゴンの頂点数.通常は3
void execShift(Vector< double > shift)
ArrayParam< int > * weight
Skin の Weight weight[index[0]], weight[index[1]], weight[index[2]], ... の順に並ぶ
Vector< double > * normal
法線ベクトル normal[index[0]], normal[index[1]], normal[index[2]], ... の順に並ぶ
void init(int idx=0, int num=0)
UVMap< double > uv3
Vector< double > n1
Vector< double > n2
Vector< double > v2
Vector< double > v3
void execScale(double x, double y, double z)
UVMap< double > uv2
Vector< double > v1
void execRotate(Quaternion< double > q)
UVMap< double > uv1
Vector< double > n3
void mlt_set(int d1=0, int d2=0, int d3=0)
void set(int w1=0, int w2=0, int w3=0, int m1=0, int m2=0, int m3=0, int u1=0, int u2=0, int u3=0)
Vector< T > execRotation(Vector< T > v)
Exec Rotation qv(~q)
Definition Rotation.h:466
int num_joints
Jointの数.
AffineTrans< double > bind_shape
AffineTrans< double > * alt_inverse_bind
AffineTrans< double > * inverse_bind
ArrayParam< char * > joint_names
Joint名の配列.
ArrayParam< int > weight[3]
int polygonNum
ポリゴン番号
void execRotate(Quaternion< double > quat)
Vector< double > vertex[3]
bool has_weight
配列データの場合,一番最初のデータが値を持っていれば十分である.
bool has_normal
配列データの場合,一番最初のデータが値を持っていれば十分である.
void execScale(Vector< double > scale)
bool has_texcrd
配列データの場合,一番最初のデータが値を持っていれば十分である.
void dup(TriPolygonData a)
void execShift(Vector< double > shift)
UVMap< double > texcrd[3]
Vector< double > normal[3]
void init(void)
Definition Vector.h:610
void init(double C=1.0)
Definition Vector.h:74
Definition Brep.h:29
TriPolygonData * dupTriPolygonData(TriPolygonData *data, int num)
Vector< T > VectorRotation(Vector< T > v, Quaternion< T > q)
Definition Rotation.h:1187
TriPolygonData * joinTriPolygonData(TriPolygonData *&first, int num_f, TriPolygonData *&next, int num_n)
void freeTriPolygonData(TriPolygonData *&tridata)
void freeNull(T &p)
Definition common++.h:37