JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
MeshFacetNode.cpp
Go to the documentation of this file.
1
7#include "MeshFacetNode.h"
8
9
10using namespace jbxl;
11
12
14// MeshFacetNode クラス
15//
16
18{
19 same_material= false;
21 facet_no = -1;
23
24 num_vertex = 0;
25 num_texcrd = 0;
26 num_polygon = 0;
27 num_index = 0;
28
29 data_index = NULL;
30 vertex_value = NULL;
31 normal_value = NULL;
32 texcrd_value = NULL;
33 weight_value = NULL;
34
35 next = NULL;
36 prev = NULL;
37}
38
39
44{
46 material_param.dup(mparam);
48
49 MeshFacetNode* node = prev;
50 while (node!=NULL) {
53 same_material = true;
54 return;
55 }
56 node = node->prev;
57 }
58
59 node = next;
60 while (node!=NULL) {
63 same_material = true;
64 return;
65 }
66 node = node->next;
67 }
68 return;
69}
70
71
72void MeshFacetNode::setMaterialID(const char* str)
73{
75
76 if (str!=NULL) {
77 if (!strncmp(str, JBXL_MATERIAL_PREFIX, strlen(JBXL_MATERIAL_PREFIX))) {
79 }
80 else {
81 char* texture_name = material_param.getName();
82 if (texture_name==NULL) return;
83
85 Buffer texture_id = make_Buffer_bystr(texture_name);
86 del_file_extension_Buffer(&texture_id);
87 cat_Buffer(&texture_id, &material_id);
88 free_Buffer(&texture_id);
89 //
92 }
93 }
94 //
95 else {
96 char* texture_name = material_param.getName();
97 if (texture_name==NULL) return;
98
100 Buffer texture_id = make_Buffer_bystr(texture_name);
101 del_file_extension_Buffer(&texture_id);
102 cat_Buffer(&texture_id, &material_id);
103 free_Buffer(&texture_id);
104 }
105
107 return;
108}
109
110
111void MeshFacetNode::set(int vertex, int polygon, int vcount)
112{
113 num_vertex = vertex;
115 num_polygon = polygon;
116 num_index = num_polygon*vcount;
117
118 return;
119}
120
121
131
132
134{
139 freeArrayParams<int>(weight_value, num_vertex);
140
141 data_index = NULL;
142 vertex_value = NULL;
143 normal_value = NULL;
144 texcrd_value = NULL;
145 weight_value = NULL;
146}
147
148
150{
151 this->free();
152 init();
153}
154
155
169bool MeshFacetNode::getm(int vertex, int polygon, int vcount)
170{
171 free_value();
172
173 if (vertex >0) num_vertex = vertex;
174 if (polygon>0) num_polygon = polygon;
175 if (vcount >0) num_index = num_polygon*vcount;
176
177 if (num_vertex<=0 || num_polygon<=0) return false;
179
180 data_index = (int*)malloc(sizeof(int)*num_index);
184 weight_value = (ArrayParam<int>*)malloc(sizeof(ArrayParam<int>)*num_vertex); // option
185
186 if (data_index==NULL || vertex_value==NULL || normal_value==NULL || texcrd_value==NULL) {
187 this->free();
188 return false;
189 }
190
191 memset(data_index, 0, sizeof(int)*num_index);
192 memset(vertex_value, 0, sizeof(Vector<double>)*num_vertex);
193 memset(normal_value, 0, sizeof(Vector<double>)*num_vertex);
194 memset(texcrd_value, 0, sizeof(UVMap<double>) *num_texcrd);
195 memset(weight_value, 0, sizeof(ArrayParam<int>)*num_vertex);
196
197 return true;
198}
199
200
210{
211 if (facetdata==NULL) return false;
212 if (facetdata->index==NULL || facetdata->vertex==NULL || facetdata->normal==NULL) return false;
213
214 // num_data -> num_vertex, num_index/vcount -> num_polygon, num_index -> num_index
215 set(facetdata->num_data, facetdata->num_index/facetdata->vcount, facetdata->vcount);
216 if (!getm()) return false;
217
218 for (int i=0; i<facetdata->num_index; i++) {
219 data_index[i] = facetdata->index[i];
220 }
221 for (int i=0; i<num_vertex; i++) {
222 vertex_value[i] = facetdata->vertex[i];
223 normal_value[i] = facetdata->normal[i];
224 weight_value[i].dup(facetdata->weight[i]);
225 }
226 if (facetdata->texcrd!=NULL) {
227 for (int i=0; i<num_texcrd; i++) {
228 texcrd_value[i] = facetdata->texcrd[i];
229 }
230 }
231
232 return true;
233}
234
235
248{
249 if (facetdata==NULL) return false;
250 if (facetdata->index==NULL || facetdata->vertex==NULL || facetdata->normal==NULL) return false;
251
252 BREP_SOLID* brep = new BREP_SOLID();
253 if (brep==NULL) return false;
254 // 重複登録を許可しない.データチェックはしない.
255 CreateTriSolidFromVector(brep, facetdata->num_data, facetdata->vertex, facetdata->normal, facetdata->texcrd, facetdata->weight, false, false);
256
257 long int vnum;
258 BREP_VERTEX** vertex_data = GetOctreeVertices(brep->octree, &vnum);
259 if (vertex_data==NULL) {
260 freeBrepSolid(brep);
261 return false;
262 }
263 int vcount = facetdata->vcount;
264
265 // メモリの確保
266 set((int)vnum, brep->facetno, vcount);
267 if (!getm()) {
268 ::free(vertex_data);
269 freeBrepSolid(brep);
270 return false;
271 }
272
273 // Vertex & Normal & Texcoord
274 for (int i=0; i<num_vertex; i++) {
275 vertex_value[i] = vertex_data[i]->point;
276 normal_value[i] = vertex_data[i]->normal;
277 texcrd_value[i] = vertex_data[i]->uvmap;
278 weight_value[i].dup(vertex_data[i]->weight);
279 }
280
281 // Index
282 int polyn = 0;
283 BREP_CONTOUR_LIST::iterator icon;
284 for (icon=brep->contours.begin(); icon!=brep->contours.end(); icon++){
285 BREP_WING* wing = (*icon)->wing;
286 for (int i=0; i<vcount; i++) {
287 BREP_VERTEX* vertex = wing->vertex;
288 if (vertex!=NULL) {
289 data_index[polyn*vcount+i] = vertex->index;
290 }
291 wing = wing->next;
292 }
293 polyn++;
294 }
295
296 ::free(vertex_data);
297 freeBrepSolid(brep);
298
299 return true;
300}
301
302
318bool MeshFacetNode::computeVertexDirect(Vector<double>* impvtx, Vector<double>* impnrm, UVMap<double>* impmap, ArrayParam<int>* impwgt, int impnum, int vcount)
319{
320 if (impvtx==NULL || impnrm==NULL) return false;
321
322 set(impnum, impnum/vcount, vcount);
323 if (!getm()) return false;
324
325 for (int i=0; i<num_vertex; i++) {
326 vertex_value[i] = impvtx[i];
327 normal_value[i] = impnrm[i];
328 data_index[i] = i;
329 }
330 if (impmap!=NULL) {
331 for (int i=0; i<num_vertex; i++) {
332 texcrd_value[i] = impmap[i];
333 }
334 }
335 if (impwgt!=NULL) {
336 for (int i=0; i<num_vertex; i++) {
337 weight_value[i].dup(impwgt[i]);
338 }
339 }
340
341 return true;
342}
343
344
361bool MeshFacetNode::computeVertexByBREP(Vector<double>* impvtx, Vector<double>* impnrm, UVMap<double>* impmap, ArrayParam<int>* impwgt, int impnum, int vcount)
362{
363 if (impvtx==NULL) return false;
364
365 BREP_SOLID* brep = new BREP_SOLID();
366 if (brep==NULL) return false;
367 CreateTriSolidFromVector(brep, impnum, impvtx, impnrm, impmap, impwgt, false, false); // 重複登録を許可しない.データチェックはしない.
368
369 long int vnum;
370 BREP_VERTEX** vertex_data = GetOctreeVertices(brep->octree, &vnum);
371 if (vertex_data==NULL) {
372 freeBrepSolid(brep);
373 return false;
374 }
375
376 // メモリの確保
377 set((int)vnum, brep->facetno, vcount);
378 if (!getm()) {
379 ::free(vertex_data);
380 freeBrepSolid(brep);
381 return false;
382 }
383
384 // Vertex & Normal & Texcoord
385 for (int i=0; i<num_vertex; i++) {
386 vertex_value[i] = vertex_data[i]->point;
387 normal_value[i] = vertex_data[i]->normal;
388 texcrd_value[i] = vertex_data[i]->uvmap;
389 weight_value[i].dup(vertex_data[i]->weight);
390 }
391
392 // Index
393 int polyn = 0;
394 BREP_CONTOUR_LIST::iterator icon;
395 for (icon=brep->contours.begin(); icon!=brep->contours.end(); icon++){
396 BREP_WING* wing = (*icon)->wing;
397 for (int i=0; i<vcount; i++) {
398 BREP_VERTEX* vertex = wing->vertex;
399 if (vertex!=NULL) {
400 data_index[polyn*vcount+i] = vertex->index;
401 }
402 wing = wing->next;
403 }
404 polyn++;
405 }
406
407 ::free(vertex_data);
408 freeBrepSolid(brep);
409
410 return true;
411}
412
413
415{
416 if (uvmap==NULL) uvmap = texcrd_value;
417 if (uvnum==-1) uvnum = num_texcrd;
418
419 material_param.texture.execTrans(uvmap, uvnum);
420
421 return;
422}
423
424
438{
439 if (num_texcrd!=num_vertex) return NULL;
440
441 if (uvmap==NULL) {
442 size_t len = num_texcrd*sizeof(UVMap<double>);
443 uvmap = (UVMap<double>*)malloc(len);
444 if (uvmap==NULL) return NULL;
445 memset(uvmap, 0, len);
446 }
447
448 for (int i=0; i<num_texcrd; i++) {
449 //
450 Vector<double> binormal;
451
452 if (normal_value[i].x>=0.5 || normal_value[i].x<=-0.5) {
453 binormal.set(0.0, 1.0, 0.0);
454 if (normal_value[i].x<0.0) binormal = - binormal;
455 }
456 else {
457 binormal.set(1.0, 0.0, 0.0);
458 if (normal_value[i].y>0.0) binormal = - binormal;
459 }
460
461 Vector<double> tangent = binormal^normal_value[i];
462 Vector<double> pos(vertex_value[i].x*scale.x, vertex_value[i].y*scale.y, vertex_value[i].z*scale.z);
463
464 uvmap[i].u = 0.5 + (binormal*pos)*2.0;
465 uvmap[i].v = 0.5 - (tangent *pos)*2.0;
466 }
467
468 return uvmap;
469}
470
471
472
474
476{
477 if (node==NULL) return;
478
479 MeshFacetNode* next = node->next;
480 if (next!=NULL) freeMeshFacetList(next);
481
482 freeMeshFacetNode(node);
483
484 return;
485}
486
487
488//
490{
491 if (node==NULL) return NULL;
492
493 if (node->prev!=NULL) node->prev->next = node->next;
494 if (node->next!=NULL) node->next->prev = node->prev;
495
496 MeshFacetNode* next = node->next;
497 freeMeshFacetNode(node);
498
499 return next;
500}
501
502
503// in MeshFacetNode.h
504// inline void freeMeshFacetNode(MeshFacetNode*& node) { if(node!=NULL) { node->free(); delete node; node=NULL;} }
505
506
508{
509 if (list==NULL) return node;
510 if (node==NULL) return list;
511
512 node->prev = list;
513 node->next = list->next;
514
515 if (list->next!=NULL) list->next->prev = node;
516 list->next = node;
517
518 return node;
519}
520
#define JBXL_MATERIAL_PREFIX
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Definition buffer.cpp:47
int cat_Buffer(Buffer *src, Buffer *dst)
Buffer変数 srcから dstへバッファを catする.
Definition buffer.cpp:384
#define make_Buffer_str(str)
set_Buffer()
Definition buffer.h:61
#define cat_s2Buffer(src, dst)
cat_b2Buffer()
Definition buffer.h:122
#define make_Buffer_bystr(str)
set_Buffer()
Definition buffer.h:57
void dup(ArrayParam< T > a, bool del=true)
Definition tools++.h:138
OctreeNode * octree
Definition Brep.h:80
BREP_CONTOUR_LIST contours
Contours リスト
Definition Brep.h:83
unsigned int facetno
面の数
Definition Brep.h:74
long int index
シーケンシャルに増加する一意的な番号.Octree に格納されるときに設定される.
Definition Brep.h:266
Vector< double > point
頂点の座標.
Definition Brep.h:260
Vector< double > normal
法線ベクトル.周りの Contour の法線ベクトルの平均.
Definition Brep.h:261
UVMap< double > uvmap
曲面のUV座標
Definition Brep.h:262
BREP_WING * next
Definition Brep.h:212
BREP_VERTEX * vertex
Start of Vertex.
Definition Brep.h:210
int num_data
データ数.(vertex, normal, texcrd, weight の要素数)
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]], ... の順に並ぶ
int * index
インデックスデータ
int vcount
ポリゴンの頂点数.通常は3
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]], ... の順に並ぶ
TextureParam texture
テクスチャ
void dup(MaterialParam m)
MeshObject の Polygonデータ(1面)を格納するクラス.リスト構造を取る.
MeshFacetNode * prev
MaterialParam material_param
マテリアルパラメータ
Vector< double > * normal_value
法線ベクトルデータの並び.要素数は num_vertex
bool same_material
他の Node が既に同じマテリアルを使用している.
bool computeVertexByBREP(ContourBaseData *facetdata)
void delMaterialParam(void)
int facet_no
面(Polygon)番号
int num_texcrd
テクスチャ画像の座標数.通常は num_vertex に等しい.(texcrd_value の要素数)
int num_index
頂点の延べ数.num_polygon*MeshObjectData::num_vcount (num_polygon*3)(data_index の要素数)
void execAffineTransUVMap(UVMap< double > *uvmap=NULL, int num=-1)
ArrayParam< int > * weight_value
頂点の重み.Jointを持つデータに使用される.要素数は num_vertex. 各 weight_value[i] の値は トータルで正規化される必要がある.
int num_polygon
ポリゴンの数
bool computeVertexDirect(ContourBaseData *facetdata)
int * data_index
インデックスデータ.要素数は num_index
UVMap< double > * texcrd_value
テクスチャマップの並び.要素数は num_texcrd
bool getm(int vertex=0, int polygon=0, int vcount=0)
メモリの確保
MeshFacetNode * next
void set(int vertex, int polygon, int vcount=3)
void setMaterialID(const char *str)
UVMap< double > * generatePlanarUVMap(Vector< double > scale, UVMap< double > *uvmap=NULL)
Buffer material_id
マテリアルを識別するID.JBXL_MATERIAL_PREFIX で始まる.
int num_vertex
頂点のデータ数.(vertex_value, normal_value の要素数)
Vector< double > * vertex_value
頂点データの並び.要素数は num_vertex
void setMaterialParam(MaterialParam param)
ノードにマテリアルパラメータを設定し,他のノードに同じマテリアルが存在するかチャックする.
void execTrans(UVMap< double > *uv, int n)
Rotate -> Scale -> Shift.
void set(T X, T Y=0, T Z=0, double N=0.0, double C=1.0, int D=0)
Definition Vector.h:110
#define TRUE
Definition common.h:226
Definition Brep.h:29
void freeBrepSolid(BREP_SOLID *&solid)
Definition Brep.h:105
void freeMeshFacetList(MeshFacetNode *&node)
class DllExport BREP_SOLID
Definition Brep.h:32
bool isSameMaterial(MaterialParam a, MaterialParam b)
compare each texture names and colors
MeshFacetNode * DelMeshFacetNode(MeshFacetNode *node)
DllExport BREP_VERTEX ** GetOctreeVertices(OctreeNode *octree, long int *vertexno)
Definition Brep.cpp:913
DllExport int CreateTriSolidFromVector(BREP_SOLID *solid, int vno, Vector< double > *v, Vector< double > *n=NULL, UVMap< double > *uv=NULL, ArrayParam< int > *w=NULL, bool dupli=false, bool check=true)
Definition TriBrep.cpp:1321
void freeMeshFacetNode(MeshFacetNode *&node)
MeshFacetNode * AddMeshFacetNode(MeshFacetNode *list, MeshFacetNode *node)
void freeNull(T &p)
Definition common++.h:37
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
Definition buffer.h:39
#define _tochar(a)
Definition tools.h:207
void canonical_filename_Buffer(Buffer *fname, int no_dir)
fname の問題になりそうな ASCII文字を '_' に変換する.
Definition xtools.cpp:2057
void del_file_extension_Buffer(Buffer *path)
ファイルの拡張子を削除する.
Definition xtools.cpp:1941