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

#include <BVHTool.h>

Inheritance diagram for CBVHTool:
Collaboration diagram for CBVHTool:

Public Member Functions

 CBVHTool (void)
 
virtual ~CBVHTool (void)
 
void init (void)
 
void free_data (void)
 
void clear_data (void)
 
void copy_bvh_data (BVHData *bvh)
 
BVHData setback_bvh_data (void)
 
BOOL readFile (char *fname)
 
BOOL writeFile (char *fname)
 
BOOL writeMultiFile (char *fname, int sec, int space)
 
BOOL readBVH (FILE *fp)
 
BOOL printBVH (FILE *fp)
 
void setHierarchy (tTree *hrchy)
 
Vector< double > * getPosOffset (void)
 
Vector< double > * getPosData (int frame)
 
Quaternion< double > * getQuaternion (int frame)
 

Public Attributes

Bufferjoint_name
 
int * channel_num
 
int * channel_idx
 
Buffer flex_joint
 

Private Member Functions

void set_offset (void)
 
void _set_offset (tTree *tree, int *jnum)
 
void get_bvh_params (void)
 
void _get_bvh_params (tTree *tree, int **ch, Buffer **jn)
 

Detailed Description

Definition at line 20 of file BVHTool.h.

Constructor & Destructor Documentation

◆ CBVHTool()

CBVHTool ( void )
inline

Definition at line 23 of file BVHTool.h.

23{ init();}
void init(void)
Definition BVHTool.cpp:23

References CBVHTool::init().

Here is the call graph for this function:

◆ ~CBVHTool()

~CBVHTool ( void )
virtual

Definition at line 15 of file BVHTool.cpp.

16{
17 DEBUG_INFO("INFO: DESTRUCTOR: CBVHTool");
18
19 free_data();
20}
void free_data(void)
Definition BVHTool.cpp:45
#define DEBUG_INFO
デバッグ用出力関数.コンパイル時に削除可能
Definition tools.h:511

References DEBUG_INFO, and CBVHTool::free_data().

Here is the call graph for this function:

Member Function Documentation

◆ _get_bvh_params()

void _get_bvh_params ( tTree * tree,
int ** ch,
Buffer ** jn )
private

Definition at line 383 of file BVHTool.cpp.

384{
385 if (tree!=NULL) {
386 while(tree->esis!=NULL) tree = tree->esis;
387
388 do {
389 tList_data ld = tree->ldat;
390
392 if ((*ch)!=NULL) {
393 **ch = ld.lv;
394 (*ch)++;
395 }
396 cat_Buffer(&ld.val, &flex_joint);
397
398 **jn = dup_Buffer(ld.key);
399 (*jn)++;
401
402 if (tree->next!=NULL) {
403 _get_bvh_params(tree->next, ch, jn);
404 }
405 tree = tree->ysis;
406 //
407 } while(tree!=NULL);
408 }
409 return;
410}
Buffer dup_Buffer(Buffer buf)
Buffer型変数のコピーをつくる.
Definition buffer.cpp:211
int cat_Buffer(Buffer *src, Buffer *dst)
Buffer変数 srcから dstへバッファを catする.
Definition buffer.cpp:384
Buffer flex_joint
Definition BVHTool.h:72
void _get_bvh_params(tTree *tree, int **ch, Buffer **jn)
Definition BVHTool.cpp:383

References CBVHTool::_get_bvh_params(), cat_Buffer(), dup_Buffer(), and CBVHTool::flex_joint.

Referenced by CBVHTool::_get_bvh_params(), and CBVHTool::get_bvh_params().

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

◆ _set_offset()

void _set_offset ( tTree * tree,
int * jnum )
private

Definition at line 308 of file BVHTool.cpp.

309{
310 if (tree!=NULL) {
311 while(tree->esis!=NULL) tree = tree->esis;
312
313 do {
314 tList_data* ld = &(tree->ldat);
315
317 if (ld->ptr==NULL) {
318 ld->sz = sizeof(vector);
319 ld->ptr = (void*)malloc(ld->sz);
320 if (ld->ptr==NULL) return;
321 memset(ld->ptr, 0, ld->sz);
322 }
323 *((vector*)ld->ptr) = offset[*jnum];
324 (*jnum)++;
326
327 if (tree->next!=NULL) _set_offset(tree->next, jnum);
328 tree = tree->ysis;
329 //
330 } while(tree!=NULL);
331 }
332 return;
333}
void _set_offset(tTree *tree, int *jnum)
Definition BVHTool.cpp:308

References CBVHTool::_set_offset().

Referenced by CBVHTool::_set_offset(), and CBVHTool::set_offset().

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

◆ clear_data()

void clear_data ( void )

Definition at line 71 of file BVHTool.cpp.

72{
73 if (joint_name!=NULL) {
74 for (int j=0; j<joint_num; j++) {
76 }
77 free(joint_name);
78 }
79 joint_name = NULL;
80
81 if (channel_num!=NULL) {
82 free(channel_num);
83 channel_num = NULL;
84 }
85
86 if (channel_idx!=NULL) {
87 free(channel_idx);
88 channel_idx = NULL;
89 }
90
92}
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
int * channel_num
Definition BVHTool.h:70
int * channel_idx
Definition BVHTool.h:71
Buffer * joint_name
Definition BVHTool.h:69

References CBVHTool::channel_idx, CBVHTool::channel_num, CBVHTool::flex_joint, free_Buffer(), and CBVHTool::joint_name.

Referenced by CBVHTool::free_data().

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

◆ copy_bvh_data()

void copy_bvh_data ( BVHData * bvh)

Definition at line 95 of file BVHTool.cpp.

96{
97 if (bvh==NULL) return;
98
99 joint_num = bvh->joint_num;
100 frame_num = bvh->frame_num;
101 frame_time = bvh->frame_time;
102 framepsec = bvh->framepsec;
103 channels = bvh->channels;
104 state = bvh->state;
105
106 hierarchy = bvh->hierarchy;
107 motion = bvh->motion;
108 offset = bvh->offset;
109}

Referenced by CBVHTool::readBVH().

Here is the caller graph for this function:

◆ free_data()

void free_data ( void )

Definition at line 45 of file BVHTool.cpp.

46{
47 state = 0;
48 joint_num = 0;
49 channels = 0;
50 frame_num = 0;
51 frame_time = 0.0;
52 framepsec = 0;
53
54 if (hierarchy!=NULL) {
55 del_tTree(&hierarchy);
56 hierarchy = NULL;
57 }
58 if (motion!=NULL) {
59 free(motion);
60 motion = NULL;
61 }
62 if (offset!=NULL) {
63 free(offset);
64 offset = NULL;
65 }
66
67 clear_data();
68}
void clear_data(void)
Definition BVHTool.cpp:71
tTree * del_tTree(tTree **pp)
指定したノード以下のツリーを削除する.
Definition ttree.cpp:628

References CBVHTool::clear_data(), and del_tTree().

Referenced by CBVHTool::setHierarchy(), and CBVHTool::~CBVHTool().

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

◆ get_bvh_params()

void get_bvh_params ( void )
private

CBVHTool::get_bvh_params()

既存の hierarchyデータから以下のデータを得る. channel_num, channel_idx, flex_joint, joint_name

Definition at line 346 of file BVHTool.cpp.

347{
348 size_t len = sizeof(int)*joint_num;
349 channel_num = (int*)malloc(len);
350 channel_idx = (int*)malloc(len);
351 if (channel_num!=NULL) memset(channel_num, 0, len);
352 if (channel_idx!=NULL) memset(channel_idx, 0, len);
353 //
354 if (channel_num==NULL || channel_idx==NULL) {
355 if (channel_num!=NULL) free(channel_num);
356 if (channel_idx!=NULL) free(channel_idx);
357 channel_num = NULL;
358 channel_idx = NULL;
359 return;
360 }
361 memset(channel_num, 0, sizeof((int)len));
362 memset(channel_idx, 0, sizeof((int)len));
363
364 //
365 flex_joint = make_Buffer(joint_num*6);
366 joint_name = (Buffer*)malloc(sizeof(Buffer)*joint_num);
367 if (joint_name==NULL) return;
368 memset(joint_name, 0, sizeof(Buffer)*joint_num);
369
370 int* ch = channel_num;
371 Buffer* jn = joint_name;
372
373 _get_bvh_params(hierarchy, &ch, &jn);
374
375 channel_idx[0] = 0;
376 for (int j=1; j<joint_num; j++) {
377 channel_idx[j] = channel_idx[j-1] + channel_num[j-1];
378 }
379 return;
380}
Buffer make_Buffer(int sz)
Buffer型変数のバッファ部をつくり出す.
Definition buffer.cpp:71

References CBVHTool::_get_bvh_params(), CBVHTool::channel_idx, CBVHTool::channel_num, CBVHTool::flex_joint, CBVHTool::joint_name, and make_Buffer().

Referenced by CBVHTool::readBVH(), and CBVHTool::setHierarchy().

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

◆ getPosData()

Vector< double > * getPosData ( int frame)

Definition at line 417 of file BVHTool.cpp.

418{
419 if (frame<0 || frame>=frame_num) return NULL;
420
421 size_t len = sizeof(Vector<double>)*joint_num;
422 Vector<double>* vect = (Vector<double>*)malloc(len);
423 if (vect==NULL) return NULL;
424 memset(vect, 0, len);
425
426 int frm = frame*channels;
427
428 for (int j=0; j<joint_num; j++) {
429 //
430 BOOL exstf = FALSE;
431 int chnum = channel_num[j];
432 int index = channel_idx[j];
433 char* tpchr = (char*)&flex_joint.buf[index*2];
434
435 for (int i=0; i<chnum; i++) {
436 if (tpchr[i*2]=='P') {
437 exstf = TRUE;
438 index = frm + index + i;
439 tpchr+= i*2;
440 break;
441 }
442 }
443 //
444 vect[j].set(0.0, 0.0, 0.0);
445
446 if (exstf) {
447 for (int k=0; k<3; k++) {
448 int k2 = k*2;
449 if (tpchr[k2]=='P') {
450 if (tpchr[k2+1]=='X') vect[j].x = motion[index+k];
451 else if (tpchr[k2+1]=='Y') vect[j].y = motion[index+k];
452 else if (tpchr[k2+1]=='Z') vect[j].z = motion[index+k];
453 }
454 }
455 }
456 }
457 return vect;
458}
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
#define FALSE
Definition common.h:223
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
Definition buffer.h:39

References Buffer::buf, CBVHTool::channel_idx, CBVHTool::channel_num, FALSE, CBVHTool::flex_joint, Vector< T >::set(), TRUE, Vector< T >::x, Vector< T >::y, and Vector< T >::z.

Here is the call graph for this function:

◆ getPosOffset()

Vector< double > * getPosOffset ( void )

Definition at line 530 of file BVHTool.cpp.

531{
532 size_t len = sizeof(Vector<double>)*joint_num;
533 Vector<double>* vect = (Vector<double>*)malloc(len);
534 if (vect==NULL) return NULL;
535 memset(vect, 0, len);
536
537 for (int j=0; j<joint_num; j++) {
538 vector vt = offset[j];
539 vect[j].x = vt.x;
540 vect[j].y = vt.y;
541 vect[j].z = vt.z;
542 vect[j].n = vt.n;
543 }
544 return vect;
545}
double n
ノルム
Definition Vector.h:62
double z
z方向成分
Definition matrix.h:32
double y
y方向成分
Definition matrix.h:31
double n
ベクトルの大きさ
Definition matrix.h:33
double x
x方向成分
Definition matrix.h:30

References vector::n, Vector< T >::n, vector::x, Vector< T >::x, vector::y, Vector< T >::y, vector::z, and Vector< T >::z.

◆ getQuaternion()

Quaternion< double > * getQuaternion ( int frame)

Definition at line 461 of file BVHTool.cpp.

462{
463 if (frame<0 || frame>=frame_num) return NULL;
464
465 size_t len = sizeof(Quaternion<double>)*joint_num;
466 Quaternion<double>* quat = (Quaternion<double>*)malloc(len);
467 if (quat==NULL) return NULL;
468 memset(quat, 0, len);
469
470 Vector<double> ex(1.0, 0.0, 0.0, 1.0);
471 Vector<double> ey(0.0, 1.0, 0.0, 1.0);
472 Vector<double> ez(0.0, 0.0, 1.0, 1.0);
473
474 double d2r = PI/180.0;
475 int frm = frame*channels;
476 //
477 for (int j=0; j<joint_num; j++) {
478 //
479 BOOL exstf = FALSE;
480 int chnum = channel_num[j];
481 int index = channel_idx[j];
482 char* tpchr = (char*)&flex_joint.buf[index*2];
483
484 quat[j].set(1.0, 0.0, 0.0, 0.0, 1.0);
485 //
486 int chfwd = 0;
487 for (int i=0; i<chnum; i++) {
488 if (tpchr[i*2]=='R') {
489 exstf = TRUE; // 回転用データの存在
490 index = frm + index + i; // MOTION データの位置
491 tpchr+= i*2; // チャンネルインデックスの位置
492 chfwd = i; // 処理済チャンネル数
493 break;
494 }
495 }
496 //
497 if (exstf) {
498 Quaternion<double> q1(1.0, 0.0, 0.0, 0.0, 1.0);
499 Quaternion<double> q2(1.0, 0.0, 0.0, 0.0, 1.0);
500 Quaternion<double> q3(1.0, 0.0, 0.0, 0.0, 1.0);
501
502 // X->Y, Y->Z, Z->X
503 double th = motion[index]*d2r;
504 if (tpchr[1]=='X') q3.setRotation(th, ey);
505 else if (tpchr[1]=='Y') q3.setRotation(th, ez);
506 else if (tpchr[1]=='Z') q3.setRotation(th, ex);
507
508 chnum = chnum - chfwd - 1; // 残りの回転用チャンネル数
509 if (chnum>0 && tpchr[2]=='R') {
510 th = motion[index+1]*d2r;
511 if (tpchr[3]=='X') q2.setRotation(th, ey);
512 else if (tpchr[3]=='Y') q2.setRotation(th, ez);
513 else if (tpchr[3]=='Z') q2.setRotation(th, ex);
514
515 chnum--;
516 if (chnum>0 && tpchr[4]=='R') {
517 th = motion[index+2]*d2r;
518 if (tpchr[5]=='X') q1.setRotation(th, ey);
519 else if (tpchr[5]=='Y') q1.setRotation(th, ez);
520 else if (tpchr[5]=='Z') q1.setRotation(th, ex);
521 }
522 }
523 quat[j] = q3*q2*q1;
524 }
525 }
526 return quat;
527}
void set(T S, T X, T Y, T Z, T N=(T) 0.0, T C=(T) 1.0)
Definition Rotation.h:273
#define PI
Definition common.h:182

References Buffer::buf, CBVHTool::channel_idx, CBVHTool::channel_num, FALSE, CBVHTool::flex_joint, PI, Quaternion< T >::set(), Quaternion< T >::setRotation(), and TRUE.

Here is the call graph for this function:

◆ init()

void init ( void )

Definition at line 23 of file BVHTool.cpp.

24{
25 // BVHData
26 joint_num = 0; // 関節の数(End Site を含まない)
27 frame_num = 0; // フレームの数
28 frame_time = 0.0; // フレーム間の時間 s
29 framepsec = 0; // FPS
30 channels = 0; // 総チャンネル数.チャンネル数の合計.モーションデータの数.
31 state = 0; // データの状態
32
33 hierarchy = NULL; // 関節部のツリーデータへのポインタ.上記参照.
34 motion = NULL; // MOTION データへのポインタ joint_num*frame_num
35 offset = NULL; // 関節のOFFSET
36 //
37 channel_num = NULL;
38 channel_idx = NULL;
39 joint_name = NULL;
40
42}
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Definition buffer.cpp:47

References CBVHTool::channel_idx, CBVHTool::channel_num, CBVHTool::flex_joint, init_Buffer(), and CBVHTool::joint_name.

Referenced by CBVHTool::CBVHTool().

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

◆ printBVH()

BOOL printBVH ( FILE * fp)

Definition at line 273 of file BVHTool.cpp.

274{
275 state = BVH_ERR_INVLD_ARGS;
276 if (fp==NULL) return FALSE;
277
278 state = 0;
279 BVHData bvh_data = setback_bvh_data();
280 state = bvh_print_data(fp, &bvh_data);
281 if (state!=0) return FALSE;
282
283 return TRUE;
284}
#define BVH_ERR_INVLD_ARGS
Definition BVHTool.h:13
int bvh_print_data(FILE *fp, BVHData *bvh)
Definition bvh_tool.cpp:289
BVHData setback_bvh_data(void)
Definition BVHTool.cpp:112

References BVH_ERR_INVLD_ARGS, bvh_print_data(), FALSE, CBVHTool::setback_bvh_data(), and TRUE.

Here is the call graph for this function:

◆ readBVH()

BOOL readBVH ( FILE * fp)

Definition at line 155 of file BVHTool.cpp.

156{
157 state = BVH_ERR_INVLD_ARGS;
158 if (fp==NULL) return FALSE;
159
160 state = BVH_ERR_FAIL_OP;
161 BVHData* ptr = bvh_read_data(fp);
162 if (ptr==NULL) return FALSE;
163 if (ptr->state!=0) {
164 del_BVHData(&ptr);
165 return FALSE;
166 }
167 //
168 copy_bvh_data(ptr);
170
171 return TRUE;
172}
#define BVH_ERR_FAIL_OP
Definition BVHTool.h:14
void del_BVHData(BVHData **bvh)
Definition bvh_tool.cpp:28
#define bvh_read_data(f)
Definition bvh_tool.h:114
void get_bvh_params(void)
Definition BVHTool.cpp:346
void copy_bvh_data(BVHData *bvh)
Definition BVHTool.cpp:95

References BVH_ERR_FAIL_OP, BVH_ERR_INVLD_ARGS, bvh_read_data, CBVHTool::copy_bvh_data(), del_BVHData(), FALSE, CBVHTool::get_bvh_params(), and TRUE.

Referenced by CBVHTool::readFile().

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

◆ readFile()

BOOL readFile ( char * fname)

Definition at line 137 of file BVHTool.cpp.

138{
139 state = BVH_ERR_INVLD_ARGS;
140 if (fname==NULL || fname[0]=='\0') return FALSE;
141
142 unsigned long int sz = file_size(fname);
143 if (sz==0) return FALSE;
144
145 state = BVH_ERR_FAIL_FOPEN;
146 FILE* fp = fopen(fname, "r");
147 if (fp==NULL) return FALSE;
148
149 BOOL ret = readBVH(fp);
150
151 return ret;
152}
#define BVH_ERR_FAIL_FOPEN
Definition BVHTool.h:12
BOOL readBVH(FILE *fp)
Definition BVHTool.cpp:155
unsigned long int file_size(const char *fn)
ファイルの大きさを返す.
Definition tools.cpp:2309

References BVH_ERR_FAIL_FOPEN, BVH_ERR_INVLD_ARGS, FALSE, file_size(), and CBVHTool::readBVH().

Here is the call graph for this function:

◆ set_offset()

void set_offset ( void )
private

Definition at line 299 of file BVHTool.cpp.

300{
301 if (offset==NULL) return;
302
303 int jnum = 0;
304 _set_offset(hierarchy, &jnum);
305}

References CBVHTool::_set_offset().

Referenced by CBVHTool::setback_bvh_data().

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

◆ setback_bvh_data()

BVHData setback_bvh_data ( void )

Definition at line 112 of file BVHTool.cpp.

113{
114 BVHData bvh;
115
116 set_offset();
117
118 bvh.joint_num = joint_num;
119 bvh.frame_num = frame_num;
120 bvh.frame_time = frame_time;
121 bvh.framepsec = framepsec;
122 bvh.channels = channels;
123 bvh.state = state;
124
125 bvh.hierarchy = hierarchy;
126 bvh.motion = motion;
127 bvh.offset = offset;
128
129 return bvh;
130}
void set_offset(void)
Definition BVHTool.cpp:299

References CBVHTool::set_offset().

Referenced by CBVHTool::printBVH(), CBVHTool::writeFile(), and CBVHTool::writeMultiFile().

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

◆ setHierarchy()

void setHierarchy ( tTree * hrchy)

Definition at line 287 of file BVHTool.cpp.

288{
289 free_data();
290
291 hierarchy = hrchy;
292 joint_num = bvh_count_joints(hierarchy);
293 channels = bvh_count_channels(hierarchy);
294
296}
int bvh_count_channels(tTree *pp)
Definition bvh_tool.cpp:138
int bvh_count_joints(tTree *pp)
Definition bvh_tool.cpp:155

References bvh_count_channels(), bvh_count_joints(), CBVHTool::free_data(), and CBVHTool::get_bvh_params().

Here is the call graph for this function:

◆ writeFile()

BOOL writeFile ( char * fname)

Definition at line 175 of file BVHTool.cpp.

176{
177 state = BVH_ERR_INVLD_ARGS;
178 if (fname==NULL || fname[0]=='\0') return FALSE;
179
180 state = 0;
181 BVHData bvh_data = setback_bvh_data();
182 state = bvh_write_file(fname, &bvh_data);
183 if (state!=0) return FALSE;
184
185 return TRUE;
186}
int bvh_write_file(const char *fn, BVHData *bvh)
Definition bvh_tool.cpp:274

References BVH_ERR_INVLD_ARGS, bvh_write_file(), FALSE, CBVHTool::setback_bvh_data(), and TRUE.

Here is the call graph for this function:

◆ writeMultiFile()

BOOL writeMultiFile ( char * fname,
int sec,
int space )

BOOL CBVHTool::writeMultiFile(char* fname, int sec, int space)

sec秒区切りで.BVHファイルを出力する.のりしろ(フレーム数)付き.

Parameters
fname出力ファイル名のベース.fname_00 〜 fname_99 のファイルが出力される.
sec1ファイルの最大再生時間(秒).
spaceのりしろのフレーム数.
Return values
TRUE成功
FALSE失敗

Definition at line 200 of file BVHTool.cpp.

201{
202 state = BVH_ERR_INVLD_ARGS;
203 if (fname==NULL || fname[0]=='\0') return FALSE;
204
205 int echfrm = (int)(sec/frame_time); // 1ファイルのフレーム数
206 int num = (frame_num + echfrm - 1)/echfrm; // 出力ファイルの数
207 if (num==0 || num>99) return FALSE;
208
209 //
210 char* fn = dup_str(fname);
211 char* et = get_file_extension(fn);
212 if (et!=NULL) et[-1] = '\0';
213
214 Buffer format = make_Buffer_bystr(fn);
215 cat_s2Buffer("_%02d", &format);
216 if (et!=NULL) {
217 cat_s2Buffer(".", &format);
218 cat_s2Buffer(et, &format);
219 }
220 ::free(fn);
221
222 //
223 state = 0;
224 BVHData bvh_data = setback_bvh_data();
225
226 for (int i=0; i<num; i++) {
227 //
228 int outfrm = i*echfrm; // 今まで出力した有効フレーム数
229
230 if (i==num-1) {
231 bvh_data.frame_num = frame_num - outfrm; // 残りのフレーム数.のりしろは使用しない.
232 }
233 else if (i==num-2) {
234 if ((num-1)*echfrm + space > frame_num) { // のりしろが大きすぎる
235 space = frame_num - (num-1)*echfrm;
236 }
237 bvh_data.frame_num = echfrm + space;
238 }
239 else {
240 bvh_data.frame_num = echfrm + space;
241 }
242
243 if (i!=0 && space>0) {
244 bvh_data.frame_num++; //
245 bvh_data.motion = &(motion[(outfrm-1)*channels]); // -1: のりしろ
246 if (channel_num[0]==6) { // ROOT のチャンネル数
247 bvh_data.motion[0] = motion[0];
248 bvh_data.motion[1] = motion[1];
249 bvh_data.motion[2] = motion[2];
250 bvh_data.motion[3] = 0.0;
251 bvh_data.motion[4] = 0.0;
252 bvh_data.motion[5] = 0.0;
253 }
254 }
255 else {
256 bvh_data.motion = &(motion[outfrm*channels]);
257 }
258
259 //
260 char* fn = numbering_name((char*)format.buf, i);
261 state = bvh_write_file(fn, &bvh_data);
262 free(fn);
263 if (state!=0) break;
264 }
265
266 free_Buffer(&format);
267
268 if (state!=0) return FALSE;
269 return TRUE;
270}
#define cat_s2Buffer(src, dst)
cat_b2Buffer()
Definition buffer.h:122
#define make_Buffer_bystr(str)
set_Buffer()
Definition buffer.h:57
char * dup_str(char *buf)
文字列を複製する.要 free()
Definition tools.cpp:1368
char * numbering_name(const char *fmt, int n)
フォーマット fmtに従って,nを含む文字列を作り出す.要 free()
Definition tools.cpp:2598
char * get_file_extension(const char *str)
フルパスからファイル名の拡張子へのポインタを取り出す.free() してはいけない.
Definition tools.cpp:2225

References Buffer::buf, BVH_ERR_INVLD_ARGS, bvh_write_file(), cat_s2Buffer, CBVHTool::channel_num, dup_str(), FALSE, free_Buffer(), get_file_extension(), make_Buffer_bystr, numbering_name(), CBVHTool::setback_bvh_data(), and TRUE.

Here is the call graph for this function:

Member Data Documentation

◆ channel_idx

◆ channel_num

◆ flex_joint

◆ joint_name

Buffer* joint_name

Definition at line 69 of file BVHTool.h.

Referenced by CBVHTool::clear_data(), CBVHTool::get_bvh_params(), and CBVHTool::init().


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