JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
FBXData Class Reference

#include <FBXDataTool.h>

Collaboration diagram for FBXData:

Public Member Functions

 FBXData (void)
 
virtual ~FBXData (void)
 
void init (void)
 
void free (void)
 
void setUnity (bool b)
 
void setUE (bool b)
 
void setEngine (int)
 
void setAffineTrans (AffineTrans< double > a)
 
void delAffineTrans (void)
 
Vector< double > execAffineTrans (void)
 
void addShell (MeshObjectData *meshdata, bool collider, SkinJointData *joints_data=NULL, tList *joints_template=NULL)
 
void closeSolid (void)
 
void outputFile (const char *fn, const char *out_dirn, const char *tex_dirn, const char *bin_dirn)
 
void output_fbx (FILE *fp)
 

Public Attributes

Buffer fbx_name
 
bool phantom_out
 
bool no_offset
 
bool forUnity
 
bool forUE
 
int engine
 
bool has_joints
 
tListjoints_list
 
AffineTrans< double > * affineTrans
 
AffineTrans< double > skeleton
 

Detailed Description

Definition at line 27 of file FBXDataTool.h.

Constructor & Destructor Documentation

◆ FBXData()

FBXData ( void )
inline

Definition at line 30 of file FBXDataTool.h.

30{ this->init();}
void init(void)

References FBXData::init().

Here is the call graph for this function:

◆ ~FBXData()

~FBXData ( void )
virtual

Definition at line 16 of file FBXDataTool.cpp.

17{
18 DEBUG_MODE PRINT_MESG("FBXData::DESTRUCTOR:\n");
19 this->free();
20}
void free(void)
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502

References DEBUG_MODE, FBXData::free(), and PRINT_MESG.

Here is the call graph for this function:

Member Function Documentation

◆ addShell()

void addShell ( MeshObjectData * meshdata,
bool collider,
SkinJointData * joints_data = NULL,
tList * joints_template = NULL )

Definition at line 87 of file FBXDataTool.cpp.

88{
89 //PRINT_MESG("FBXData::addShell: start\n");
90
91 if (meshdata==NULL) return;
92
93 if (joints_data!=NULL && joints_template!=NULL) {
94 if (this->joints_list==NULL && !this->has_joints) {
95 this->joints_list = joints_template;
96 this->has_joints = true;
97 }
98 else {
99 if (joints_template!=NULL) del_tList(&joints_template);
100 joints_template = NULL;
101 }
102 }
103
104 MeshFacetNode* facet = meshdata->facet;
105 while (facet!=NULL) {
106 if (facet->num_vertex != facet->num_texcrd) {
107 PRINT_MESG("FBXData::addShell: Error: missmatch vertex and uvmap number! (%d != %d)\n", facet->num_vertex, facet->num_texcrd);
108 facet = facet->next;
109 continue;
110 }
111
112 // UV Map and PLANAR Texture
114 Vector<double> scale(1.0, 1.0, 1.0);
115 if (meshdata->affineTrans!=NULL) scale = meshdata->affineTrans->getScale();
116 facet->generatePlanarUVMap(scale, facet->texcrd_value);
117 }
118 facet->execAffineTransUVMap(facet->texcrd_value, facet->num_vertex);
119
120 //facet->num_index;
121 //facet->num_vertex;
122
123 //int* index = facet->data_index;
124 //Vector<double>* vectr = facet->vertex_value;
125 //Vector<double>* norml = facet->normal_value;
126 //UVMap<double>* uvmap = facet->texcrd_value;
127
128 facet = facet->next;
129 }
130
131 //
132 this->phantom_out = true;
133 if (collider) {
134 this->phantom_out = false;
135 }
136
137 //
138 if (this->has_joints && this->joints_list!=NULL) {
139
140 }
141
142 return;
143}
#define MATERIAL_MAPPING_PLANAR
Vector< T > getScale(void)
tList * joints_list
Definition FBXDataTool.h:43
int mapping
マッピング方法
MeshObject の Polygonデータ(1面)を格納するクラス.リスト構造を取る.
MaterialParam material_param
マテリアルパラメータ
int num_texcrd
テクスチャ画像の座標数.通常は num_vertex に等しい.(texcrd_value の要素数)
void execAffineTransUVMap(UVMap< double > *uvmap=NULL, int num=-1)
UVMap< double > * texcrd_value
テクスチャマップの並び.要素数は num_texcrd
MeshFacetNode * next
UVMap< double > * generatePlanarUVMap(Vector< double > scale, UVMap< double > *uvmap=NULL)
int num_vertex
頂点のデータ数.(vertex_value, normal_value の要素数)
AffineTrans< double > * affineTrans
アフィン変換.ここで使用するのは,shift, rotate, scale(size) のみ
MeshFacetNode * facet
FACETデータ(1面のポリゴンデータ)のリストへのポインタ
tList * del_tList(tList **pp)
指定したリストノード以降のリストを削除.
Definition tlist.cpp:735

References MeshObjectData::affineTrans, del_tList(), MeshFacetNode::execAffineTransUVMap(), MeshObjectData::facet, MeshFacetNode::generatePlanarUVMap(), AffineTrans< T >::getScale(), FBXData::has_joints, FBXData::joints_list, MaterialParam::mapping, MATERIAL_MAPPING_PLANAR, MeshFacetNode::material_param, MeshFacetNode::next, MeshFacetNode::num_texcrd, MeshFacetNode::num_vertex, FBXData::phantom_out, PRINT_MESG, and MeshFacetNode::texcrd_value.

Here is the call graph for this function:

◆ closeSolid()

void closeSolid ( void )
inline

Definition at line 61 of file FBXDataTool.h.

61{}

◆ delAffineTrans()

void delAffineTrans ( void )
inline

Definition at line 57 of file FBXDataTool.h.

AffineTrans< double > * affineTrans
Definition FBXDataTool.h:45
void freeAffineTrans(AffineTrans< T > *&affine)

References jbxl::freeAffineTrans().

Referenced by FBXData::free(), and FBXData::setAffineTrans().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ execAffineTrans()

Vector< double > execAffineTrans ( void )

Vector<double> FBXData::execAffineTrans(void)

FBXデータの 原点縮退変換を行う. no_offset が trueの場合,データの中心を原点に戻し,実際の位置をオフセットで返す.

Definition at line 152 of file FBXDataTool.cpp.

153{
154 Vector<double> center(0.0, 0.0, 0.0);
155
156 if (this->no_offset) center = affineTrans->getShift();
157
158 return center;
159}
Vector< T > getShift(void)

References FBXData::affineTrans, AffineTrans< T >::getShift(), and FBXData::no_offset.

Here is the call graph for this function:

◆ free()

void free ( void )

Definition at line 41 of file FBXDataTool.cpp.

42{
43 free_Buffer(&(this->fbx_name));
44 this->skeleton.free();
45 this->delAffineTrans();
46 this->affineTrans = NULL;
47
48 if (this->joints_list!=NULL) del_tList(&this->joints_list);
49 this->joints_list = NULL;
50}
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
void free(void)
Definition AffineTrans.h:49
void delAffineTrans(void)
Definition FBXDataTool.h:57
AffineTrans< double > skeleton
Definition FBXDataTool.h:46
Buffer fbx_name
Definition FBXDataTool.h:34

References FBXData::affineTrans, del_tList(), FBXData::delAffineTrans(), FBXData::fbx_name, AffineTrans< T >::free(), free_Buffer(), FBXData::joints_list, and FBXData::skeleton.

Referenced by jbxl::freeFBXData(), FBXData::outputFile(), and FBXData::~FBXData().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ init()

void init ( void )

Definition at line 23 of file FBXDataTool.cpp.

24{
25 this->fbx_name = init_Buffer();
26 this->phantom_out = true;
27 this->no_offset = false;
28
29 this->has_joints = false;
30 this->joints_list = NULL;
31
32 this->forUnity = true;
33 this->forUE = false;
34
36 this->affineTrans = NULL;
37 this->skeleton.init();
38}
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Definition buffer.cpp:47
void init(void)
Definition AffineTrans.h:44
#define JBXL_3D_ENGINE_UE
Definition common.h:311

References FBXData::affineTrans, FBXData::engine, FBXData::fbx_name, FBXData::forUE, FBXData::forUnity, FBXData::has_joints, AffineTrans< T >::init(), init_Buffer(), JBXL_3D_ENGINE_UE, FBXData::joints_list, FBXData::no_offset, FBXData::phantom_out, and FBXData::skeleton.

Referenced by FBXData::FBXData().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ output_fbx()

void output_fbx ( FILE * fp)

Definition at line 162 of file FBXDataTool.cpp.

163{
164 if (fp==NULL) return;
165
166 return;
167}

◆ outputFile()

void outputFile ( const char * fn,
const char * out_dirn,
const char * tex_dirn,
const char * bin_dirn )

Definition at line 67 of file FBXDataTool.cpp.

68{
69 UNUSED(out_dirn);
70 UNUSED(tex_dirn);
71 UNUSED(bin_dirn);
72
73 char* packname = pack_head_tail_char(get_file_name(fname), ' ');
74 Buffer file_name = make_Buffer_bystr(packname);
75 ::free(packname);
76 //
78 if (file_name.buf[0]=='.') file_name.buf[0] = '_';
79
80 free_Buffer(&file_name);
81 return;
82}
#define make_Buffer_bystr(str)
set_Buffer()
Definition buffer.h:57
#define UNUSED(x)
Definition common.h:264
#define TRUE
Definition common.h:226
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
Definition buffer.h:39
char * get_file_name(const char *str)
フルパスからファイル名へのポインタを取り出す.free() してはいけない.
Definition tools.cpp:2066
char * pack_head_tail_char(char *mesg, char cc)
文字の先頭のcc(複数),TAB, CR, LF.終わりのcc(複数),TAB, CR, LF を削除.要 free()
Definition tools.cpp:1092
void canonical_filename_Buffer(Buffer *fname, int no_dir)
fname の問題になりそうな ASCII文字を '_' に変換する.
Definition xtools.cpp:2057

References Buffer::buf, canonical_filename_Buffer(), FBXData::free(), free_Buffer(), get_file_name(), make_Buffer_bystr, pack_head_tail_char(), TRUE, and UNUSED.

Here is the call graph for this function:

◆ setAffineTrans()

void setAffineTrans ( AffineTrans< double > a)
inline

Definition at line 56 of file FBXDataTool.h.

56{ delAffineTrans(); affineTrans = new AffineTrans<double>(); affineTrans->dup(a);}
void dup(AffineTrans a)

References FBXData::affineTrans, FBXData::delAffineTrans(), and AffineTrans< T >::dup().

Here is the call graph for this function:

◆ setEngine()

void setEngine ( int e)

Definition at line 53 of file FBXDataTool.cpp.

54{
55 this->setUnity(false);
56 this->setUE(false);
57 //
58 this->engine = e;
59 if (e==JBXL_3D_ENGINE_UNITY) this->setUnity(true);
60 else if (e==JBXL_3D_ENGINE_UE) this->setUE(true);
61
62 return;
63}
void setUE(bool b)
Definition FBXDataTool.h:53
void setUnity(bool b)
Definition FBXDataTool.h:52
#define JBXL_3D_ENGINE_UNITY
Definition common.h:310

References FBXData::engine, JBXL_3D_ENGINE_UE, JBXL_3D_ENGINE_UNITY, FBXData::setUE(), and FBXData::setUnity().

Here is the call graph for this function:

◆ setUE()

void setUE ( bool b)
inline

Definition at line 53 of file FBXDataTool.h.

53{ this->forUE = b;}

Referenced by FBXData::setEngine().

Here is the caller graph for this function:

◆ setUnity()

void setUnity ( bool b)
inline

Definition at line 52 of file FBXDataTool.h.

52{ this->forUnity = b;}

Referenced by FBXData::setEngine().

Here is the caller graph for this function:

Member Data Documentation

◆ affineTrans

AffineTrans<double>* affineTrans

◆ engine

int engine

Definition at line 40 of file FBXDataTool.h.

Referenced by FBXData::init(), and FBXData::setEngine().

◆ fbx_name

Buffer fbx_name

Definition at line 34 of file FBXDataTool.h.

Referenced by FBXData::free(), and FBXData::init().

◆ forUE

bool forUE

Definition at line 39 of file FBXDataTool.h.

Referenced by FBXData::init().

◆ forUnity

bool forUnity

Definition at line 38 of file FBXDataTool.h.

Referenced by FBXData::init().

◆ has_joints

bool has_joints

Definition at line 42 of file FBXDataTool.h.

Referenced by FBXData::addShell(), and FBXData::init().

◆ joints_list

tList* joints_list

Definition at line 43 of file FBXDataTool.h.

Referenced by FBXData::addShell(), FBXData::free(), and FBXData::init().

◆ no_offset

bool no_offset

Definition at line 36 of file FBXDataTool.h.

Referenced by FBXData::execAffineTrans(), and FBXData::init().

◆ phantom_out

bool phantom_out

Definition at line 35 of file FBXDataTool.h.

Referenced by FBXData::addShell(), and FBXData::init().

◆ skeleton

AffineTrans<double> skeleton

Definition at line 46 of file FBXDataTool.h.

Referenced by FBXData::free(), and FBXData::init().


The documentation for this class was generated from the following files: