JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
OBJDataTool.cpp
Go to the documentation of this file.
1
7#include "OBJDataTool.h"
8
9
10using namespace jbxl;
11
12
14//
15
16void OBJData::init(int n)
17{
18 this->obj_name = init_Buffer();
19 this->num_obj = n;
20 this->phantom_out = true;
21 this->no_offset = false;
22
23 this->forUnity = true;
24 this->forUE = false;
25
27 this->next = NULL;
28 this->geo_node = NULL;
29 this->mtl_node = NULL;
30 this->affineTrans = NULL;
31}
32
33
34void OBJData::free(void)
35{
36 free_Buffer(&(this->obj_name));
37
38 this->delAffineTrans();
39 this->affineTrans = NULL;
40
41 delete(this->geo_node);
42 delete(this->mtl_node);
43 this->geo_node = NULL;
44 this->mtl_node = NULL;
45
46 this->delete_next();
47}
48
49
51{
52 this->setUnity(false);
53 this->setUE(false);
54 //
55 this->engine = e;
56 if (e == JBXL_3D_ENGINE_UNITY) this->setUnity(true);
57 else if (e == JBXL_3D_ENGINE_UE) this->setUE(true);
58
59 return;
60}
61
62
64{
65 if (this->next==NULL) return;
66
67 OBJData* _next = this->next;
68 while (_next!=NULL) {
69 OBJData* _curr_node = _next;
70 _next = _next->next;
71 _curr_node->next = NULL;
72 delete(_curr_node);
73 }
74 this->next = NULL;
75}
76
77
78void OBJData::addShell(MeshObjectData* shelldata, bool collider)
79{
80 if (shelldata==NULL) return;
81
82 OBJData* ptr_obj = this;
83 while (ptr_obj->next!=NULL) ptr_obj = ptr_obj->next;
84 //
85 ptr_obj->next = new OBJData(-1);
86 this->num_obj++;
87
88 if (shelldata->affineTrans!=NULL) {
89 if (this->affineTrans==NULL) {
90 this->affineTrans = new AffineTrans<double>();
91 this->setAffineTrans(*(shelldata->affineTrans));
92 }
93 ptr_obj->next->setAffineTrans(*(shelldata->affineTrans));
94 }
95 ptr_obj->next->obj_name = dup_Buffer(shelldata->data_name);
96
97 MeshFacetNode* facet = shelldata->facet;
98 OBJFacetGeoNode** _geo_node = &(ptr_obj->next->geo_node);
99 OBJFacetMtlNode** _mtl_node = &(ptr_obj->next->mtl_node);
100 while (facet!=NULL) {
101 if (facet->num_vertex != facet->num_texcrd) {
102 PRINT_MESG("OBJData::addShell: Error: missmatch vertex and uvmap number! (%d != %d)\n", facet->num_vertex, facet->num_texcrd);
103 facet = facet->next;
104 continue;
105 }
106
107 // UV Map and PLANAR Texture
109 Vector<double> scale(1.0, 1.0, 1.0);
110 if (shelldata->affineTrans!=NULL) scale = shelldata->affineTrans->getScale();
111 facet->generatePlanarUVMap(scale, facet->texcrd_value);
112 }
113 facet->execAffineTransUVMap(facet->texcrd_value, facet->num_vertex);
114
115 // Geometory
116 *_geo_node = new OBJFacetGeoNode();
117 *_mtl_node = new OBJFacetMtlNode();
118 (*_geo_node)->num_index = facet->num_index;
119 (*_geo_node)->data_index = (int*)malloc(sizeof(int)*(*_geo_node)->num_index);
120 if ((*_geo_node)->data_index != NULL) {
121 for (int i = 0; i < (*_geo_node)->num_index; i++) {
122 (*_geo_node)->data_index[i] = facet->data_index[i];
123 }
124 }
125 else {
126 return;
127 }
128
129 (*_geo_node)->collider = collider;
130 (*_geo_node)->num_vertex = facet->num_vertex;
131 (*_geo_node)->vv = (Vector<double>*)malloc(sizeof(Vector<double>)*(*_geo_node)->num_vertex);
132 (*_geo_node)->vn = (Vector<double>*)malloc(sizeof(Vector<double>)*(*_geo_node)->num_vertex);
133 (*_geo_node)->vt = (UVMap<double>*) malloc(sizeof(UVMap<double>) *(*_geo_node)->num_vertex);
134 if ((*_geo_node)->vv != NULL && (*_geo_node)->vn != NULL && (*_geo_node)->vt != NULL) {
135 for (int i = 0; i < (*_geo_node)->num_vertex; i++) {
136 (*_geo_node)->vv[i] = facet->vertex_value[i];
137 (*_geo_node)->vn[i] = facet->normal_value[i];
138 (*_geo_node)->vt[i] = facet->texcrd_value[i];
139 }
140 }
141 else {
142 freeNull((*_geo_node)->vv);
143 freeNull((*_geo_node)->vn);
144 freeNull((*_geo_node)->vt);
145 freeNull((*_geo_node)->data_index);
146 return;
147 }
148
149 // Material
150 (*_geo_node)->material = dup_Buffer(facet->material_id);
151 (*_mtl_node)->material = dup_Buffer(facet->material_id);
152 (*_mtl_node)->same_material = facet->same_material;
153 if (!(*_mtl_node)->same_material) {
154 (*_mtl_node)->material_param.dup(facet->material_param);
155 (*_mtl_node)->setup_params();
156 }
157
158 _geo_node = &((*_geo_node)->next);
159 _mtl_node = &((*_mtl_node)->next);
160 facet = facet->next;
161 }
162}
163
164
175{
176 Vector<double> center(0.0, 0.0, 0.0);
177
178 OBJData* obj = this->next; // Top はアンカー
179 if (obj!=NULL && no_offset) {
180 if (obj->affineTrans!=NULL) center = obj->affineTrans->getShift();
181 }
182
183 while (obj!=NULL) {
184 if (obj->affineTrans!=NULL) {
185 OBJFacetGeoNode* facet = obj->geo_node;
186 while(facet!=NULL) {
187 for (int i=0; i<facet->num_vertex; i++) {
188 facet->vv[i] = obj->affineTrans->execTrans(facet->vv[i]) - center; // 頂点座標
189 facet->vn[i] = obj->affineTrans->execRotation(facet->vn[i]); // 法線ベクトル
190 }
191 facet = facet->next;
192 }
193 }
194 obj = obj->next;
195 }
196
197 return center;
198}
199
200
201//void OBJData::outputFile(const char* fname, const char* out_dirn, const char* ptm_dirn, const char* tex_dirn, const char* mtl_dirn)
202void OBJData::outputFile(const char* fname, const char* out_dirn, const char* tex_dirn, const char* mtl_dirn)
203{
204 char* packname = pack_head_tail_char(get_file_name(fname), ' ');
205 Buffer file_name = make_Buffer_bystr(packname);
206 ::free(packname);
207 //
208 canonical_filename_Buffer(&file_name, TRUE);
209 if (file_name.buf[0]=='.') file_name.buf[0] = '_';
210
211 //this->output_mtl((char*)file_name.buf, (char*)out_dirn, (char*)ptm_dirn, (char*)tex_dirn, (char*)mtl_dirn);
212 //this->output_obj((char*)file_name.buf, (char*)out_dirn, (char*)ptm_dirn, (char*)tex_dirn, (char*)mtl_dirn);
213 this->output_mtl((char*)file_name.buf, (char*)out_dirn, (char*)tex_dirn, (char*)mtl_dirn);
214 this->output_obj((char*)file_name.buf, (char*)out_dirn, (char*)tex_dirn, (char*)mtl_dirn);
215 //
216 free_Buffer(&file_name);
217 return;
218}
219
220
221//void OBJData::output_mtl(char* fname, char* out_dirn, char* ptm_dirn, char* tex_dirn, char* mtl_dirn)
222void OBJData::output_mtl(char* fname, char* out_dirn, char* tex_dirn, char* mtl_dirn)
223{
224 Buffer mtl_path = make_Buffer_bystr(out_dirn);
225 //if (phantom_out && ptm_dirn!=NULL) cat_s2Buffer(ptm_dirn, &mtl_path);
226 cat_s2Buffer(mtl_dirn, &mtl_path);
227 cat_s2Buffer(fname, &mtl_path);
228 change_file_extension_Buffer(&mtl_path, ".mtl");
229
230 FILE* fp = fopen((char*)mtl_path.buf, "wb");
231 if (fp==NULL) {
232 PRINT_MESG("OBJData::output_mtl: ERROR: Material file open Error! (%s)\n", (char*)mtl_path.buf);
233 free_Buffer(&mtl_path);
234 return;
235 }
236
237 fprintf(fp, "# %s\n", OBJDATATOOL_STR_MTLFL);
238 fprintf(fp, "# %s\n", OBJDATATOOL_STR_TOOL);
239 fprintf(fp, "# %s\n", OBJDATATOOL_STR_AUTHOR);
240 fprintf(fp, "# %s\n", OBJDATATOOL_STR_VER);
241
242 Buffer tex_path = make_Buffer_bystr(tex_dirn);
243#ifdef WIN32
244 replace_char(tex_path.buf, tex_path.vldsz, '\\', '/'); // for MS Windows
245#endif
246
247 tList* material_list = NULL;
248 OBJData* obj = this->next;
249 while (obj!=NULL) {
250 OBJFacetMtlNode* node = obj->mtl_node;
251 while(node!=NULL) {
252 if (!node->same_material) {
253 // check material
254 tList* mat = search_key_tList(material_list, (char*)node->material.buf, 1);
255 if (mat==NULL) {
256 tList* lt = add_tList_node_str(material_list, node->material.buf, NULL);
257 if (material_list==NULL) material_list = lt;
258
259 // outpust
260 fprintf(fp, "#\n");
261 fprintf(fp, "newmtl %s\n", node->material.buf+1); // マテリアル名
262
263 if (node->map_kd.buf!=NULL) {
264 fprintf(fp, "map_Kd %s%s\n", (char*)tex_path.buf, node->map_kd.buf); // Texture ファイル名
265 }
266 if (node->map_ks.buf!=NULL) {
267 fprintf(fp, "map_Ks %s%s\n", (char*)tex_path.buf, node->map_ks.buf); // Specular Map ファイル名
268 }
269 if (node->map_bump.buf!=NULL) {
270 fprintf(fp, "map_bump %s%s\n", (char*)tex_path.buf, node->map_bump.buf); // Bump Map ファイル名
271 }
272
273 fprintf(fp, "Ka %f %f %f\n", (float)node->ka.x, (float)node->ka.y, (float)node->ka.z);
274 fprintf(fp, "Kd %f %f %f\n", (float)node->kd.x, (float)node->kd.y, (float)node->kd.z);
275 fprintf(fp, "Ks %f %f %f\n", (float)node->ks.x, (float)node->ks.y, (float)node->ks.z);
276
277 fprintf(fp, "d %f\n", (float)node->dd);
278 fprintf(fp, "Ni %f\n", (float)node->ni);
279
280 fprintf(fp, "illum %d\n", node->illum);
281 }
282 }
283 node = node->next;
284 }
285 obj = obj->next;
286 }
287 del_tList(&material_list);
288
289 fclose(fp);
290 free_Buffer(&mtl_path);
291 free_Buffer(&tex_path);
292 return;
293}
294
295
296//void OBJData::output_obj(char* fname, char* out_dirn, char* ptm_dirn, char* tex_dirn, char* mtl_dirn)
297void OBJData::output_obj(char* fname, char* out_dirn, char* tex_dirn, char* mtl_dirn)
298{
299 UNUSED(tex_dirn);
300//PRINT_MESG("===> %s, %s, %s, %s, %s, %s\n", fname, out_dirn, ptm_dirn, tex_dirn, mtl_dirn);
301
302 Buffer obj_path = make_Buffer_bystr((char*)out_dirn);
303 //if (phantom_out && ptm_dirn!=NULL) cat_s2Buffer(ptm_dirn, &obj_path);
304 cat_s2Buffer(fname, &obj_path);
305 change_file_extension_Buffer(&obj_path, ".obj");
306
307 Buffer mtl_path = make_Buffer_bystr(mtl_dirn);
308 cat_s2Buffer(fname, &mtl_path);
309 change_file_extension_Buffer(&mtl_path, ".mtl");
310#ifdef WIN32
311 replace_char(mtl_path.buf, mtl_path.vldsz, '\\', '/'); // for MS Windows
312#endif
313
314 //
315 FILE* fp = fopen((char*)obj_path.buf, "wb");
316 if (fp==NULL) {
317 PRINT_MESG("OBJData::output_obj: ERROR: Object file open Error! (%s)\n", (char*)obj_path.buf);
318 free_Buffer(&obj_path);
319 return;
320 }
321
322 fprintf(fp, "# %s\n", OBJDATATOOL_STR_OBJFL);
323 fprintf(fp, "# %s\n", OBJDATATOOL_STR_TOOL);
324 fprintf(fp, "# %s\n", OBJDATATOOL_STR_AUTHOR);
325 fprintf(fp, "# %s\n", OBJDATATOOL_STR_VER);
326
327 int facet_num = 0;
328 int file_num = 1;
329
330 int p_num = 1;
331 OBJData* obj = this->next;
332 while (obj!=NULL) {
333 // file division for Unity
334 if (facet_num>OBJDATATOOL_MAX_FACET && this->engine==JBXL_3D_ENGINE_UNITY) {
335 fclose(fp);
336 Buffer obj_file = dup_Buffer(obj_path);
337 del_file_extension_Buffer(&obj_file);
338 cat_s2Buffer("_", &obj_file);
339 cat_s2Buffer(itostr(file_num), &obj_file);
340 cat_s2Buffer(".obj", &obj_file);
341
342 fp = fopen((char*)obj_file.buf, "wb");
343 if (fp==NULL) {
344 PRINT_MESG("OBJData::output_obj: ERROR: Object file re-open Error! (%s)\n", (char*)obj_file.buf);
345 free_Buffer(&obj_path);
346 free_Buffer(&obj_file);
347 return;
348 }
349 free_Buffer(&obj_file);
350
351 file_num++;
352 facet_num = 0;
353 p_num = 1;
354 }
355
356 fprintf(fp, "# \n# SHELL\n");
357 OBJFacetGeoNode* facet = obj->geo_node;
358 while(facet!=NULL) {
359 fprintf(fp, "#\n# FACET\n");
360 fprintf(fp, "mtllib %s\n", (char*)mtl_path.buf); // ファイル名
361
362 for (int i=0; i<facet->num_vertex; i++) {
363 Vector<float> vv = Vector<float>((float)facet->vv[i].x, (float)facet->vv[i].y, (float)facet->vv[i].z);
364 if (this->engine == JBXL_3D_ENGINE_UNITY) {
365 fprintf(fp, "v %f %f %f\n", vv.x, vv.z, -vv.y); // for Unity
366 }
367 else if (this->engine == JBXL_3D_ENGINE_UE) {
368 fprintf(fp, "v %f %f %f\n", vv.x*100.f, vv.y*100.f, vv.z*100.f); // for UE
369 }
370 else {
371 fprintf(fp, "v %f %f %f\n", vv.x, vv.y, vv.z);
372 }
373 }
374 for (int i=0; i<facet->num_vertex; i++) {
375 UVMap<float> vt = UVMap<float>((float)facet->vt[i].u, (float)facet->vt[i].v);
376 fprintf(fp, "vt %f %f\n", vt.u, vt.v);
377 }
378 for (int i=0; i<facet->num_vertex; i++) {
379 Vector<float> vn = Vector<float>((float)facet->vn[i].x, (float)facet->vn[i].y, (float)facet->vn[i].z);
380 if (this->engine == JBXL_3D_ENGINE_UNITY) {
381 fprintf(fp, "vn %f %f %f\n", vn.x, vn.z, -vn.y); // for Unity
382 }
383 else {
384 fprintf(fp, "vn %f %f %f\n", vn.x, vn.y, vn.z); // for UE or others
385 }
386 }
387 //
388 fprintf(fp, "usemtl %s\n", facet->material.buf+1); // マテリアル名
389 for (int i=0; i<facet->num_index/3; i++) {
390 fprintf(fp, "f %d/%d/%d", facet->data_index[i*3 ]+p_num, facet->data_index[i*3 ]+p_num, facet->data_index[i*3 ]+p_num);
391 fprintf(fp, " %d/%d/%d ", facet->data_index[i*3+1]+p_num, facet->data_index[i*3+1]+p_num, facet->data_index[i*3+1]+p_num);
392 fprintf(fp, "%d/%d/%d\n", facet->data_index[i*3+2]+p_num, facet->data_index[i*3+2]+p_num, facet->data_index[i*3+2]+p_num);
393 }
394 p_num += facet->num_vertex;
395 facet_num++;
396 //
397 facet = facet->next;
398 }
399 obj = obj->next;
400 }
401
402 fclose(fp);
403 free_Buffer(&obj_path);
404 free_Buffer(&mtl_path);
405 return;
406}
407
408
409
411//
412
414{
415 this->material = init_Buffer();
416 this->collider = true;
417 this->num_index = 0;
418 this->num_vertex = 0;
419
420 this->data_index = NULL;
421 this->vv = this->vn = NULL;
422 this->vt = NULL;
423 this->uvmap_trans = NULL;
424 this->next = NULL;
425}
426
427
429{
430 free_Buffer(&(this->material));
431 this->num_index = 0;
432 this->num_vertex = 0;
433
434 if (this->data_index!=NULL) ::free(this->data_index);
435 this->data_index = NULL;
436
437 if (this->vv!=NULL) ::free(this->vv);
438 if (this->vn!=NULL) ::free(this->vn);
439 if (this->vt!=NULL) ::free(this->vt);
440 this->vv = this->vn = NULL;
441 this->vt = NULL;
442
444 this->uvmap_trans = NULL;
445
446 this->delete_next();
447}
448
449
451{
452 if (next==NULL) return;
453
454 OBJFacetGeoNode* _next = this->next;
455 while (_next!=NULL) {
456 OBJFacetGeoNode* _curr_node = _next;
457 _next = _next->next;
458 _curr_node->next = NULL;
459 delete(_curr_node);
460 }
461 this->next = NULL;
462}
463
464
465
467//
468//
469
471{
472 this->same_material = false;
473
474 this->material = init_Buffer();
475 this->map_kd = init_Buffer();
476 this->map_ks = init_Buffer();
477 this->map_bump = init_Buffer();
478 memset(&(this->material_param), 0, sizeof(this->material_param));
479
480 this->ka = Vector<double>(1.0, 1.0, 1.0);
481 this->kd = Vector<double>(1.0, 1.0, 1.0);
482 this->ks = Vector<double>(1.0, 1.0, 1.0);
483
484 this->dd = 1.0;
485 this->ni = 1.0;
486 this->illum = 2;
487
488 this->next = NULL;
489}
490
491
493{
494 free_Buffer(&(this->material));
495 free_Buffer(&(this->map_kd));
496 free_Buffer(&(this->map_ks));
497 free_Buffer(&(this->map_bump));
498
499 this->material_param.free();
500 this->delete_next();
501}
502
503
505{
506 if (this->next==NULL) return;
507
508 OBJFacetMtlNode* _next = this->next;
509 while (_next!=NULL) {
510 OBJFacetMtlNode* _curr_node = _next;
511 _next = _next->next;
512 _curr_node->next = NULL;
513 delete(_curr_node);
514 }
515 this->next = NULL;
516}
517
518
520{
521 TextureParam texture = this->material_param.texture;
522 TextureParam specmap = this->material_param.specmap;
523 TextureParam bumpmap = this->material_param.bumpmap;
524
525 if (texture.isSetTexture()) { // map_Kd
526 this->map_kd = make_Buffer_str(texture.getName());
528 }
529 if (specmap.isSetTexture()) { // map_Ks
530 this->map_ks = make_Buffer_str(specmap.getName());
532 }
533 if (bumpmap.isSetTexture()) { // map_bump
534 this->map_bump = make_Buffer_str(bumpmap.getName());
536 }
537
538 this->ka = Vector<double>(1.0, 1.0, 1.0);
539 this->kd = texture.getColor();
540 this->ks = specmap.getColor();
541
542 //this->dd = this->material_param.getTransparent();
543 this->dd = texture.getColor(3);
544 this->ni = this->material_param.getShininess()*10.;
545 if (this->ni<1.0) this->ni = 1.0;
546
547 this->illum = 2;
548/*
549 0. Color on and Ambient off
550 1. Color on and Ambient on
551 2. Highlight on
552 3. Reflection on and Ray trace on
553 4. Transparency: Glass on, Reflection: Ray trace on
554 5. Reflection: Fresnel on and Ray trace on
555 6. Transparency: Refraction on, Reflection: Fresnel off and Ray trace on
556 7. Transparency: Refraction on, Reflection: Fresnel on and Ray trace on
557 8. Reflection on and Ray trace off
558 9. Transparency: Glass on, Reflection: Ray trace off
55910. Casts shadows onto invisible surfaces
560*/
561 return;
562}
563
#define MATERIAL_MAPPING_PLANAR
#define OBJDATATOOL_STR_TOOL
Definition OBJDataTool.h:24
#define OBJDATATOOL_STR_OBJFL
Definition OBJDataTool.h:22
#define OBJDATATOOL_MAX_FACET
Max Facets number per File.
Definition OBJDataTool.h:28
#define OBJDATATOOL_STR_AUTHOR
Definition OBJDataTool.h:25
#define OBJDATATOOL_STR_VER
Definition OBJDataTool.h:26
#define OBJDATATOOL_STR_MTLFL
Definition OBJDataTool.h:23
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Definition buffer.cpp:47
Buffer dup_Buffer(Buffer buf)
Buffer型変数のコピーをつくる.
Definition buffer.cpp:211
#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
Vector< T > getScale(void)
Vector< T > execTrans(Vector< T > v)
Vector< T > execRotation(Vector< T > v)
Vector< T > getShift(void)
TextureParam bumpmap
Bumpmap テクスチャ
int mapping
マッピング方法
TextureParam texture
テクスチャ
double getShininess(void)
TextureParam specmap
Specular マップ テクスチャ
MeshObject の Polygonデータ(1面)を格納するクラス.リスト構造を取る.
MaterialParam material_param
マテリアルパラメータ
Vector< double > * normal_value
法線ベクトルデータの並び.要素数は num_vertex
bool same_material
他の Node が既に同じマテリアルを使用している.
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)
int * data_index
インデックスデータ.要素数は num_index
UVMap< double > * texcrd_value
テクスチャマップの並び.要素数は num_texcrd
MeshFacetNode * next
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
Buffer data_name
データ名
AffineTrans< double > * affineTrans
アフィン変換.ここで使用するのは,shift, rotate, scale(size) のみ
MeshFacetNode * facet
FACETデータ(1面のポリゴンデータ)のリストへのポインタ
OBJFacetMtlNode * mtl_node
Definition OBJDataTool.h:65
void setUE(bool b)
Definition OBJDataTool.h:73
OBJData(int n=0)
Definition OBJDataTool.h:47
OBJData * next
Definition OBJDataTool.h:63
Vector< double > execAffineTrans(void)
void outputFile(const char *fn, const char *out_path, const char *tex_dirn, const char *mtl_dirn)
void setAffineTrans(AffineTrans< double > a)
Definition OBJDataTool.h:76
void delete_next(void)
void delAffineTrans(void)
Definition OBJDataTool.h:77
void init(int n)
AffineTrans< double > * affineTrans
Definition OBJDataTool.h:61
OBJFacetGeoNode * geo_node
Definition OBJDataTool.h:64
void addShell(MeshObjectData *shelldata, bool collider)
void output_mtl(char *fn, char *out_dirn, char *tex_dirn, char *bin_dirn)
void output_obj(char *fn, char *out_dirn, char *tex_dirn, char *bin_dirn)
void free(void)
void setEngine(int)
Buffer obj_name
Definition OBJDataTool.h:51
void setUnity(bool b)
Definition OBJDataTool.h:72
UVMap< double > * vt
Vector< double > * vv
Vector< double > * vn
AffineTrans< double > * uvmap_trans
OBJFacetGeoNode * next
Vector< double > ka
Vector< double > ks
MaterialParam material_param
Vector< double > kd
OBJFacetMtlNode * next
char * getName(void)
bool isSetTexture(void)
Vector< double > getColor(void)
#define JBXL_3D_ENGINE_UE
Definition common.h:311
#define UNUSED(x)
Definition common.h:264
#define TRUE
Definition common.h:226
#define JBXL_3D_ENGINE_UNITY
Definition common.h:310
Definition Brep.h:29
void freeAffineTrans(AffineTrans< T > *&affine)
void freeNull(T &p)
Definition common++.h:37
int vldsz
データの長さ.バイナリデータの場合も使用可能.文字列の場合は 0x00 を含まない.
Definition buffer.h:37
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
Definition buffer.h:39
tList * del_tList(tList **pp)
指定したリストノード以降のリストを削除.
Definition tlist.cpp:735
tList * search_key_tList(tList *pl, const char *key, int no)
リストの中から no番目の keyノード(ldat.key)を探し出し,tListへのポインタを返す.大文字小文字を無視.
Definition tlist.cpp:1571
#define add_tList_node_str(p, k, v)
add_tList_node_bystr()
Definition tlist.h:142
char * itostr(int n)
int を文字に変換する.free() は不要
Definition tools.cpp:1420
char * get_file_name(const char *str)
フルパスからファイル名へのポインタを取り出す.free() してはいけない.
Definition tools.cpp:2066
void replace_char(unsigned char *buf, int len, unsigned char frm, unsigned char toc)
データbuf 中のバイトデータ frm を tocに変更する.
Definition tools.cpp:1252
char * pack_head_tail_char(char *mesg, char cc)
文字の先頭のcc(複数),TAB, CR, LF.終わりのcc(複数),TAB, CR, LF を削除.要 free()
Definition tools.cpp:1092
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
void canonical_filename_Buffer(Buffer *fname, int no_dir)
fname の問題になりそうな ASCII文字を '_' に変換する.
Definition xtools.cpp:2057
void change_file_extension_Buffer(Buffer *path, const char *ext)
ファイルの拡張子を extにする.ファイルに拡張子が無い場合は extを付加する
Definition xtools.cpp:1960
void del_file_extension_Buffer(Buffer *path)
ファイルの拡張子を削除する.
Definition xtools.cpp:1941