65 if (this->
next==NULL)
return;
71 _curr_node->
next = NULL;
80 if (shelldata==NULL)
return;
83 while (ptr_obj->
next!=NULL) ptr_obj = ptr_obj->
next;
100 while (facet!=NULL) {
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];
129 (*_geo_node)->collider = collider;
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++) {
153 if (!(*_mtl_node)->same_material) {
155 (*_mtl_node)->setup_params();
158 _geo_node = &((*_geo_node)->next);
159 _mtl_node = &((*_mtl_node)->next);
202void OBJData::outputFile(
const char* fname,
const char* out_dirn,
const char* tex_dirn,
const char* mtl_dirn)
209 if (file_name.
buf[0]==
'.') file_name.
buf[0] =
'_';
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);
230 FILE* fp = fopen((
char*)mtl_path.
buf,
"wb");
232 PRINT_MESG(
"OBJData::output_mtl: ERROR: Material file open Error! (%s)\n", (
char*)mtl_path.
buf);
247 tList* material_list = NULL;
257 if (material_list==NULL) material_list = lt;
264 fprintf(fp,
"map_Kd %s%s\n", (
char*)tex_path.
buf, node->
map_kd.
buf);
267 fprintf(fp,
"map_Ks %s%s\n", (
char*)tex_path.
buf, node->
map_ks.
buf);
270 fprintf(fp,
"map_bump %s%s\n", (
char*)tex_path.
buf, node->
map_bump.
buf);
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);
277 fprintf(fp,
"d %f\n", (
float)node->
dd);
278 fprintf(fp,
"Ni %f\n", (
float)node->
ni);
280 fprintf(fp,
"illum %d\n", node->
illum);
315 FILE* fp = fopen((
char*)obj_path.
buf,
"wb");
317 PRINT_MESG(
"OBJData::output_obj: ERROR: Object file open Error! (%s)\n", (
char*)obj_path.
buf);
342 fp = fopen((
char*)obj_file.
buf,
"wb");
344 PRINT_MESG(
"OBJData::output_obj: ERROR: Object file re-open Error! (%s)\n", (
char*)obj_file.
buf);
356 fprintf(fp,
"# \n# SHELL\n");
359 fprintf(fp,
"#\n# FACET\n");
360 fprintf(fp,
"mtllib %s\n", (
char*)mtl_path.
buf);
365 fprintf(fp,
"v %f %f %f\n", vv.
x, vv.
z, -vv.
y);
368 fprintf(fp,
"v %f %f %f\n", vv.
x*100.f, vv.
y*100.f, vv.
z*100.f);
371 fprintf(fp,
"v %f %f %f\n", vv.
x, vv.
y, vv.
z);
376 fprintf(fp,
"vt %f %f\n", vt.
u, vt.
v);
381 fprintf(fp,
"vn %f %f %f\n", vn.
x, vn.
z, -vn.
y);
384 fprintf(fp,
"vn %f %f %f\n", vn.
x, vn.
y, vn.
z);
389 for (
int i=0; i<facet->
num_index/3; i++) {
421 this->
vv = this->
vn = NULL;
440 this->
vv = this->
vn = NULL;
452 if (
next==NULL)
return;
455 while (_next!=NULL) {
458 _curr_node->
next = NULL;
506 if (this->
next==NULL)
return;
509 while (_next!=NULL) {
512 _curr_node->
next = NULL;
545 if (this->
ni<1.0) this->
ni = 1.0;
#define MATERIAL_MAPPING_PLANAR
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Buffer dup_Buffer(Buffer buf)
Buffer型変数のコピーをつくる.
#define make_Buffer_str(str)
set_Buffer()
#define cat_s2Buffer(src, dst)
cat_b2Buffer()
#define make_Buffer_bystr(str)
set_Buffer()
Vector< T > getScale(void)
Vector< T > execTrans(Vector< T > v)
Vector< T > execRotation(Vector< T > v)
Vector< T > getShift(void)
TextureParam bumpmap
Bumpmap テクスチャ
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
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
AffineTrans< double > * affineTrans
アフィン変換.ここで使用するのは,shift, rotate, scale(size) のみ
MeshFacetNode * facet
FACETデータ(1面のポリゴンデータ)のリストへのポインタ
OBJFacetMtlNode * mtl_node
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)
void delAffineTrans(void)
AffineTrans< double > * affineTrans
OBJFacetGeoNode * geo_node
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)
AffineTrans< double > * uvmap_trans
MaterialParam material_param
Vector< double > getColor(void)
#define JBXL_3D_ENGINE_UE
#define JBXL_3D_ENGINE_UNITY
void freeAffineTrans(AffineTrans< T > *&affine)
int vldsz
データの長さ.バイナリデータの場合も使用可能.文字列の場合は 0x00 を含まない.
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
tList * del_tList(tList **pp)
指定したリストノード以降のリストを削除.
tList * search_key_tList(tList *pl, const char *key, int no)
リストの中から no番目の keyノード(ldat.key)を探し出し,tListへのポインタを返す.大文字小文字を無視.
#define add_tList_node_str(p, k, v)
add_tList_node_bystr()