JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
CNiBVHTool Class Reference

#include <NiBVHTool.h>

Inheritance diagram for CNiBVHTool:
Collaboration diagram for CNiBVHTool:

Public Member Functions

 CNiBVHTool (void)
 
virtual ~CNiBVHTool (void)
 
void free_data (void)
 
void clear_data (void)
 
virtual NiJointDatagetJointsData (int frmnum, int fps)
 
virtual int getPlayBackFPS (void)
 
virtual BOOL readFile (FILE *fp)
 
virtual BOOL writeFile (FILE *fp)
 
- Public Member Functions inherited from CBaseFrameTool
 CBaseFrameTool (void)
 
virtual ~CBaseFrameTool (void)
 
virtual unsigned int getFramesNumber (void)
 
virtual int getJointsNumber (void)
 
virtual NiFrameDatagetFramesData (void)
 
virtual int getPlayBackTime (void)
 

Private Member Functions

void init (void)
 

Private Attributes

CBVHTool * bvh_tool
 
tList * bvh_name_list
 

Additional Inherited Members

- Protected Member Functions inherited from CBaseFrameTool
void init_data (void)
 
void free_data (void)
 
void clear_data (void)
 
void clearJointsData (int jnum)
 
void clearVectorData (int jnum)
 
- Protected Attributes inherited from CBaseFrameTool
unsigned int frames_num
 
int joints_num
 
int start_time
 
int stop_time
 
int exec_time
 
NiFrameDataframesData
 
NiJointDatajointsData
 
Vector< double > * posVect
 
Quaternion< double > * rotQuat
 

Detailed Description

Definition at line 25 of file NiBVHTool.h.

Constructor & Destructor Documentation

◆ CNiBVHTool()

CNiBVHTool ( void )
inline

Definition at line 28 of file NiBVHTool.h.

28{ init();}
void init(void)
Definition NiBVHTool.cpp:20

References CNiBVHTool::init().

Here is the call graph for this function:

◆ ~CNiBVHTool()

~CNiBVHTool ( void )
virtual

Definition at line 11 of file NiBVHTool.cpp.

12{
13 DEBUG_INFO("DESTRUCTOR: CNiBVHTool\n");
14
15 free_data();
16}
void free_data(void)
Definition NiBVHTool.cpp:29

References CNiBVHTool::free_data().

Here is the call graph for this function:

Member Function Documentation

◆ clear_data()

void clear_data ( void )

Definition at line 45 of file NiBVHTool.cpp.

46{
47 if (bvh_tool!=NULL) bvh_tool->free_data();
48
50}
CBVHTool * bvh_tool
Definition NiBVHTool.h:45

References CNiBVHTool::bvh_tool, and CBaseFrameTool::free_data().

Referenced by CNiFileTool::clearFrameData(), CNiBVHTool::free_data(), and CNiBVHTool::readFile().

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

◆ free_data()

void free_data ( void )

Definition at line 29 of file NiBVHTool.cpp.

30{
31 //
32 if (bvh_tool!=NULL) delete(bvh_tool);
33 bvh_tool = NULL;
34
35 if (bvh_name_list!=NULL) {
36 del_tList(&bvh_name_list);
37 bvh_name_list = NULL;
38 }
39
40 clear_data();
41}
tList * bvh_name_list
Definition NiBVHTool.h:46
void clear_data(void)
Definition NiBVHTool.cpp:45

References CNiBVHTool::bvh_name_list, CNiBVHTool::bvh_tool, and CNiBVHTool::clear_data().

Referenced by CNiBVHTool::~CNiBVHTool().

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

◆ getJointsData()

NiJointData * getJointsData ( int frmnum,
int fps )
virtual

Reimplemented from CBaseFrameTool.

Definition at line 159 of file NiBVHTool.cpp.

160{
161 if (frmnum<0) return NULL;
162
163 if (fps<=0) fps = 30;
164 int msec = (int)(1000./fps*frmnum);
165 if (msec>exec_time) return NULL;
166
167 unsigned int f;
168 double t = 0.0;
169
170 for (f=1; f<frames_num; f++) {
171 if (framesData[f].msec >= msec + start_time) {
172 t = (float)(msec - framesData[f-1].msec)/(float)(framesData[f].msec - framesData[f-1].msec);
173 break;
174 }
175 }
176 if (f>=frames_num) return NULL;
177
178 //
180
181 NiJointData* jdat1 = framesData[f-1].jdat;
182 NiJointData* jdat2 = framesData[f].jdat;
183
184 for (int j=0; j<joints_num; j++) {
185 jointsData[j].joint = jdat1[j].joint;
186 jointsData[j].index = frmnum;
187 jointsData[j].vect = BSplineInterp4 (jdat1[j].vect, jdat2[j].vect, t);
188 jointsData[j].quat = SlerpQuaternion(jdat1[j].quat, jdat2[j].quat, t);
189 }
190
191 return jointsData;
192}
NiJointData * jointsData
void clearJointsData(int jnum)
unsigned int frames_num
NiFrameData * framesData
NiJointData * jdat
Quaternion< double > quat
Vector< double > vect

References CBaseFrameTool::clearJointsData(), CBaseFrameTool::exec_time, CBaseFrameTool::frames_num, CBaseFrameTool::framesData, NiJointData::index, NiFrameData::jdat, NiJointData::joint, CBaseFrameTool::joints_num, CBaseFrameTool::jointsData, NiJointData::quat, CBaseFrameTool::start_time, and NiJointData::vect.

Here is the call graph for this function:

◆ getPlayBackFPS()

int getPlayBackFPS ( void )
virtual

Reimplemented from CBaseFrameTool.

Definition at line 147 of file NiBVHTool.cpp.

148{
149 if (bvh_tool->framepsec<=0) {
150 if (bvh_tool->frame_time!=0.0) bvh_tool->framepsec = (int)(1.0/bvh_tool->frame_time);
151 else bvh_tool->framepsec = 30;
152 }
153
154 return bvh_tool->framepsec;
155}

References CNiBVHTool::bvh_tool.

Referenced by CNiFileTool::readBVHFile().

Here is the caller graph for this function:

◆ init()

void init ( void )
private

Definition at line 20 of file NiBVHTool.cpp.

21{
22 bvh_tool = new CBVHTool();
23
25}
tList * setBVHJointName(void)
Definition NiBVHName.cpp:11

References CNiBVHTool::bvh_name_list, CNiBVHTool::bvh_tool, and jbxwl::setBVHJointName().

Referenced by CNiBVHTool::CNiBVHTool().

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

◆ readFile()

BOOL readFile ( FILE * fp)
virtual

Reimplemented from CBaseFrameTool.

Definition at line 58 of file NiBVHTool.cpp.

59{
60 if (fp==NULL || bvh_tool==NULL) return FALSE;
61
62 clear_data();
63
64 bvh_tool->readBVH(fp);
65 if (bvh_tool->state!=0) return FALSE;
66
67 //
68 joints_num = bvh_tool->joint_num;
69 if (jointsData!=NULL) ::free(jointsData);
70 jointsData = (NiJointData*)malloc(sizeof(NiJointData)*joints_num);
71 if (jointsData==NULL) {
72 clear_data();
73 return FALSE;
74 }
76
77 frames_num = bvh_tool->frame_num;
79 if (framesData==NULL) {
80 clear_data();
81 return FALSE;
82 }
83
84 //
86
87 //
88 for (unsigned int i=0; i<frames_num; i++) {
89 framesData[i].frmn = (int)i; // フレーム番号
90 framesData[i].msec = (int)(bvh_tool->frame_time*i*1000); // フレーム時間 ms
91 framesData[i].jnum = joints_num; // Joint の数
92
93 posVect = bvh_tool->getPosData(i);
94 rotQuat = bvh_tool->getQuaternion(i);
95
96 NiJointData* jdata = framesData[i].jdat;
97 for (int j=0; j<bvh_tool->joint_num; j++) {
98 jdata[j].joint = BVHJoint2NiJointNum(namelist, bvh_tool->joint_name[j]);
99 jdata[j].index = i;
100 jdata[j].vect.x = posVect[j].z;
101 jdata[j].vect.y = posVect[j].x;
102 jdata[j].vect.z = posVect[j].y;
103 jdata[j].vect.c = 1.0;
104 jdata[j].quat = rotQuat[j];
105 jdata[j].quat.c = 1.0;
106 }
107
108 //
109 free(posVect);
110 free(rotQuat);
111 posVect = NULL;
112 rotQuat = NULL;
113 }
114
115 /*
116 tList* pp = namelist;
117 while(pp!=NULL) {
118 DEBUG_INFO("%d => %s\n", pp->ldat.id, pp->ldat.key.buf);
119 pp = pp->next;
120 }*/
121
122 //
126
127 del_tList(&namelist);
128
129 return TRUE;
130}
#define BVH_ADD_JOINTNAME_TXT
Definition NiBVHName.h:10
Vector< double > * posVect
Quaternion< double > * rotQuat
NiFrameData * makeFramesData(int frame, int joint_num, int *frame_num)
int BVHJoint2NiJointNum(tList *lt, Buffer joint_name)
tList * addBVHJointName(char *fname, tList *lt)

References jbxwl::addBVHJointName(), BVH_ADD_JOINTNAME_TXT, CNiBVHTool::bvh_name_list, CNiBVHTool::bvh_tool, jbxwl::BVHJoint2NiJointNum(), CNiBVHTool::clear_data(), CBaseFrameTool::clearJointsData(), CBaseFrameTool::exec_time, CBaseFrameTool::frames_num, CBaseFrameTool::framesData, NiFrameData::frmn, NiJointData::index, NiFrameData::jdat, NiFrameData::jnum, NiJointData::joint, CBaseFrameTool::joints_num, CBaseFrameTool::jointsData, jbxwl::makeFramesData(), NiFrameData::msec, CBaseFrameTool::posVect, NiJointData::quat, CBaseFrameTool::rotQuat, CBaseFrameTool::start_time, CBaseFrameTool::stop_time, and NiJointData::vect.

Referenced by CNiFileTool::readBVHFile().

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

◆ writeFile()

BOOL writeFile ( FILE * fp)
virtual

Reimplemented from CBaseFrameTool.

Definition at line 134 of file NiBVHTool.cpp.

135{
136 BOOL ret = FALSE;
137
138 if (bvh_tool!=NULL) {
139 ret = bvh_tool->printBVH(fp);
140 }
141
142 return ret;
143}

References CNiBVHTool::bvh_tool.

Member Data Documentation

◆ bvh_name_list

tList* bvh_name_list
private

Definition at line 46 of file NiBVHTool.h.

Referenced by CNiBVHTool::free_data(), CNiBVHTool::init(), and CNiBVHTool::readFile().

◆ bvh_tool


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