JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
MeshObjectData.cpp
Go to the documentation of this file.
1
7#include "MeshObjectData.h"
8
9
10using namespace jbxl;
11
12
14// MeshObjectData クラス
15//
16
17void MeshObjectData::init(const char* name)
18{
23
24 ttl_index = 0;
25 ttl_vertex = 0;
26 ttl_texcrd = 0;
27 num_node = 0;
28 num_vcount = 3;
29
30 facet = NULL;
31 facet_end = NULL;
32 affineTrans = NULL;
33
34 num_import = 0;
35 impvtx_value = NULL;
36 impnrm_value = NULL;
37 impmap_value = NULL;
38 impwgt_value = NULL;
39}
40
41
53
54
56{
60 freeArrayParams<int>(impwgt_value, num_import);
61
62 impvtx_value = NULL;
63 impnrm_value = NULL;
64 impmap_value = NULL;
65 impwgt_value = NULL;
66}
67
68
70{
71 this->free();
72 init();
73}
74
75
88{
89 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for ContourBaseData: start.\n");
90 char* name = NULL;
91 if (param!=NULL) name = param->getParamString();
92
93 bool ret = addNode(contours, name, param);
94 if (ret && param!=NULL) facet_end->setMaterialParam(*param); // Materialデータを追加
95
96 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for ContourBaseData: end.\n");
97 return ret;
98}
99
100
117bool MeshObjectData::addData(Vector<double>* vct, Vector<double>* nrm, UVMap<double>* map, ArrayParam<int>* wgt, int vnum, MaterialParam* param, bool useBrep)
118{
119 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for Vector<>: start.\n");
120 bool ret = importTriData(vct, nrm, map, wgt, vnum);
121 if (ret) {
122 char* name = NULL;
123 if (param!=NULL) name = param->getParamString();
124 ret = addNode(name, param, useBrep);
125 }
126 if (ret && param!=NULL) facet_end->setMaterialParam(*param); // Materialデータを追加
127
128 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for Vector<>: end.\n");
129 return ret;
130}
131
132
146bool MeshObjectData::addData(TriPolygonData* tridata, int tnum, int pnum, MaterialParam* param, bool useBrep)
147{
148 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for TriPolygonData: start.\n");
149
150 bool ret = importTriData(tridata, tnum, pnum);
151 if (ret) {
152 char* name = NULL;
153 if (param!=NULL) name = param->getParamString();
154 ret = addNode(name, param, useBrep);
155 }
156 //
157 if (ret) {
158 if (pnum>=0) facet_end->setFacetNo(pnum);
159 if (param!=NULL) facet_end->setMaterialParam(*param); // Materialデータを追加
160 }
161
162 DEBUG_MODE PRINT_MESG("MeshObjectData::addData(): for TriPolygonData: end.\n");
163 return ret;
164}
165
166
181{
182 DEBUG_MODE PRINT_MESG("MeshObjectData::importTriData: for Vector<>: start.\n");
183 if (vct==NULL) return false;
184 //
185 free_value();
186
187 int lsize = sizeof(Vector<double>)*vnum;
188
189 // Vertex Position
191 impvtx_value = (Vector<double>*)malloc(lsize);
192 if (impvtx_value!=NULL) {
193 memcpy(impvtx_value, vct, lsize);
194 }
195 else return false;
196
197 // Normal Vector
198 if (nrm!=NULL) {
200 impnrm_value = (Vector<double>*)malloc(lsize);
201 if (impnrm_value!=NULL) {
202 memcpy(impnrm_value, nrm, lsize);
203 }
204 else {
206 return false;
207 }
208 }
209
210 // UV Map
211 if (map!=NULL) {
212 int msize = sizeof(UVMap<double>)*vnum;
214 impmap_value = (UVMap<double>*)malloc(msize);
215 if (impmap_value!=NULL) {
216 memcpy(impmap_value, map, msize);
217 }
218 else {
221 return false;
222 }
223 }
224
225 // Vertex Weight (option)
226 if (wgt!=NULL) {
227 if (impwgt_value!=NULL) freeArrayParams<int>(impwgt_value, num_import);
228 int wsize = sizeof(ArrayParam<int>)*vnum;
229 impwgt_value = (ArrayParam<int>*)malloc(wsize);
230 if (impwgt_value!=NULL) {
231 memset(impwgt_value, 0, wsize);
232 for (int i=0; i<vnum; i++) {
233 impwgt_value[i].dup(wgt[i]);
234 }
235 }
236 }
237
238 //
239 num_vcount = 3; // Contour(ポリゴン)を形成する頂点数
240 num_import = vnum; // 総頂点数
241
242 DEBUG_MODE PRINT_MESG("MeshObjectData::importTriData: for Vector<>: end.\n");
243 return true;
244}
245
246
256bool MeshObjectData::importTriData(TriPolygonData* tridata, int tnum, int pnum)
257{
258 DEBUG_MODE PRINT_MESG("MeshObjectData::importTriData: for TriPolygonData: start.\n");
259 if (tridata==NULL) return false;
260
261 free_value();
262
263 int num = 0;
264 if (pnum>=0) {
265 for (int i=0; i<tnum; i++) {
266 if (tridata[i].polygonNum==pnum) num++;
267 }
268 if (num==0) return false;
269 }
270 else num = tnum;
271
272 int vnum = num*3;
273 int lsize = sizeof(Vector<double>)*vnum;
274
275 // Vertex Position
277 impvtx_value = (Vector<double>*)malloc(lsize);
278 if (impvtx_value!=NULL) {
279 int n = 0;
280 for (int i=0; i<tnum; i++) {
281 if (tridata[i].polygonNum==pnum || pnum<0) {
282 impvtx_value[n*3] = tridata[i].vertex[0];
283 impvtx_value[n*3+1] = tridata[i].vertex[1];
284 impvtx_value[n*3+2] = tridata[i].vertex[2];
285 n++;
286 }
287 }
288 }
289 else return false;
290
291 // Normal Vector
293 if (tridata[0].has_normal) {
294 impnrm_value = (Vector<double>*)malloc(lsize);
295 if (impnrm_value!=NULL) {
296 int n = 0;
297 for (int i=0; i<tnum; i++) {
298 if (tridata[i].polygonNum==pnum || pnum<0) {
299 impnrm_value[n*3] = tridata[i].normal[0];
300 impnrm_value[n*3+1] = tridata[i].normal[1];
301 impnrm_value[n*3+2] = tridata[i].normal[2];
302 n++;
303 }
304 }
305 }
306 else {
308 return false;
309 }
310 }
311
312 // UV Map
314 if (tridata[0].has_texcrd) {
315 int msize = sizeof(UVMap<double>)*vnum;
316 impmap_value = (UVMap<double>*)malloc(msize);
317 if (impmap_value!=NULL) {
318 int n = 0;
319 for (int i=0; i<tnum; i++) {
320 if (tridata[i].polygonNum==pnum || pnum<0) {
321 impmap_value[n*3] = tridata[i].texcrd[0];
322 impmap_value[n*3+1] = tridata[i].texcrd[1];
323 impmap_value[n*3+2] = tridata[i].texcrd[2];
324 n++;
325 }
326 }
327 }
328 else {
331 return false;
332 }
333
334 }
335
336 // Vertex Weight (option)
337 if (impwgt_value!=NULL) freeArrayParams<int>(impwgt_value, num_import);
338 if (tridata[0].has_weight) {
339 int wsize = sizeof(ArrayParam<int>)*vnum;
340 impwgt_value = (ArrayParam<int>*)malloc(wsize);
341 if (impwgt_value!=NULL) {
342 memset(impwgt_value, 0, vnum);
343 for (int i=0, n=0; i<tnum; i++) {
344 if (tridata[i].polygonNum==pnum || pnum<0) {
345 impwgt_value[n*3] .dup(tridata[i].weight[0], false);
346 impwgt_value[n*3+1].dup(tridata[i].weight[1], false);
347 impwgt_value[n*3+2].dup(tridata[i].weight[2], false);
348 n++;
349 }
350 }
351 }
352 }
353
354 //
355 num_vcount = 3; // Contour(ポリゴン)を形成する頂点数
356 num_import = vnum; // 総頂点数
357
358 DEBUG_MODE PRINT_MESG("MeshObjectData::importTriData: for TriPolygonData (%d): end.\n", vnum);
359 return true;
360}
361
362
367bool MeshObjectData::addNode(ContourBaseData* facetdata, const char* name, MaterialParam* param)
368{
369 DEBUG_MODE PRINT_MESG("MeshObjectData::addNode(): for ContourBaseData: start.\n");
370 bool ret = false;
371
372 MeshFacetNode* node = new MeshFacetNode();
373 if (node==NULL) return ret;
374 //
375 if (param!=NULL) node->setMaterialParam(*param);
376 node->setMaterialID(name);
377
378 ret = node->computeVertexDirect(facetdata);
379
380 if (ret) {
381 if (facet==NULL) facet = facet_end = node;
383 num_node++;
384 ttl_index += node->num_index;
385 ttl_vertex += node->num_vertex;
386 ttl_texcrd += node->num_texcrd;
387 }
388
389 DEBUG_MODE PRINT_MESG("MeshObjectData::addNode(): for ContourBaseData: end.\n");
390 return ret;
391}
392
393
400bool MeshObjectData::addNode(const char* name, MaterialParam* param, bool useBrep)
401{
402 DEBUG_MODE PRINT_MESG("MeshObjectData::addNode(): for TriPolygonData or Vector<>: start.\n");
403
404 bool ret = false;
405 if (impvtx_value==NULL) return ret;
406
407 MeshFacetNode* node = new MeshFacetNode();
408 if (node==NULL) return ret;
409 //
410 if (param!=NULL) node->setMaterialParam(*param);
411 node->setMaterialID(name);
412
413 if (useBrep) {
415 }
416 else {
418 }
419 if (ret) {
420 if (facet==NULL) facet = facet_end = node;
422 num_node++;
423 ttl_index += node->num_index;
424 ttl_vertex += node->num_vertex;
425 ttl_texcrd += node->num_texcrd;
426 }
427 //
431 freeArrayParams<int>(impwgt_value, node->num_vertex);
432 impwgt_value = NULL;
433
434 DEBUG_MODE PRINT_MESG("MeshObjectData::addNode(): for TriPolygonData or Vector<>: end.\n");
435 return ret;
436}
437
438
446{
447 MeshFacetNode* node = facet;
448
449 if (num>=0) {
450 while (node!=NULL) {
451 if (node->facet_no==num) {
452 node->setMaterialParam(param);
453 node->setMaterialID(param.getParamString());
454 return;
455 }
456 node = node->next;
457 }
458 }
459 else {
460 while (node!=NULL) {
461 if (!node->material_param.enable) {
462 node->setMaterialParam(param);
463 node->setMaterialID(param.getParamString());
464 return;
465 }
466 node = node->next;
467 }
468 }
469 return;
470}
471
472
479{
480 if (data==NULL) return;
481
482 ttl_index += data->ttl_index;
483 ttl_vertex += data->ttl_vertex;
484 ttl_texcrd += data->ttl_texcrd;
485 num_node += data->num_node;
486
487 if (facet_end==NULL) { // 最初のデータ
489 facet = data->facet;
490 facet_end = data->facet_end;
491 }
492 else if (data->facet!=NULL) {
493 facet_end->next = data->facet;
494 data->facet->prev = facet_end;
495 facet_end = data->facet_end;
496 }
497
498 data->facet = NULL;
499 freeMeshObjectData(data);
500
501 return;
502}
503
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
#define make_Buffer_str(str)
set_Buffer()
Definition buffer.h:61
void dup(ArrayParam< T > a, bool del=true)
Definition tools++.h:138
char * getParamString(void)
MeshObject の Polygonデータ(1面)を格納するクラス.リスト構造を取る.
MeshFacetNode * prev
MaterialParam material_param
マテリアルパラメータ
bool computeVertexByBREP(ContourBaseData *facetdata)
int facet_no
面(Polygon)番号
int num_texcrd
テクスチャ画像の座標数.通常は num_vertex に等しい.(texcrd_value の要素数)
void setFacetNo(int no)
int num_index
頂点の延べ数.num_polygon*MeshObjectData::num_vcount (num_polygon*3)(data_index の要素数)
bool computeVertexDirect(ContourBaseData *facetdata)
MeshFacetNode * next
void setMaterialID(const char *str)
int num_vertex
頂点のデータ数.(vertex_value, normal_value の要素数)
void setMaterialParam(MaterialParam param)
ノードにマテリアルパラメータを設定し,他のノードに同じマテリアルが存在するかチャックする.
void setMaterialParam(MaterialParam param, int num=-1)
Buffer data_name
データ名
void setAffineTrans(AffineTrans< double > a)
int ttl_texcrd
テクスチャ画像の座標総数.通常は ttl_vertexと同じ値.
MeshFacetNode * facet_end
FACETデータのリストの最後のデータへのポインタ
AffineTrans< double > * affineTrans
アフィン変換.ここで使用するのは,shift, rotate, scale(size) のみ
bool addNode(ContourBaseData *facetdata, const char *name, MaterialParam *param)
int num_node
テクスチャー単位の面の数(Node の数)
int num_import
入力データの数
Vector< double > * impvtx_value
入力された頂点データ.3個で 1ポリゴンを表現.法線方向は右手順.
void init(const char *name=NULL)
int ttl_index
インデックスの総数(実質的データ数)
int num_vcount
1ポリゴン あたりの頂点数.現在は 3のみサポート
bool importTriData(Vector< double > *vct, Vector< double > *nrm, UVMap< double > *map, ArrayParam< int > *wgt, int vnum)
MeshFacetNode * facet
FACETデータ(1面のポリゴンデータ)のリストへのポインタ
Vector< double > * impnrm_value
入力された頂点の法線ベクトル.impvtx_value と対応.
int ttl_vertex
頂点データの総数.
ArrayParam< int > * impwgt_value
入力された頂点の重み.Jointを持つデータに使用される.
bool addData(ContourBaseData *facetdata, MaterialParam *param)
UVMap< double > * impmap_value
入力されたテクスチャ座標データ.impvtx_value と対応.
void joinData(MeshObjectData *&data)
data は削除される.
Vector< double > vertex[3]
UVMap< double > texcrd[3]
Vector< double > normal[3]
#define TRUE
Definition common.h:226
Definition Brep.h:29
void freeMeshFacetList(MeshFacetNode *&node)
void freeMeshObjectData(MeshObjectData *&data)
MeshFacetNode * AddMeshFacetNode(MeshFacetNode *list, MeshFacetNode *node)
void freeNull(T &p)
Definition common++.h:37
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502
void canonical_filename_Buffer(Buffer *fname, int no_dir)
fname の問題になりそうな ASCII文字を '_' に変換する.
Definition xtools.cpp:2057