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

#include <NiFileTool.h>

Collaboration diagram for CNiFileTool:

Public Member Functions

 CNiFileTool (void)
 
 CNiFileTool (NiSDK_Lib lib)
 
virtual ~CNiFileTool (void)
 
void free_data (void)
 
void clear_data (void)
 
int readJTextFile (LPCTSTR fname)
 
BOOL writeJTextData (FILE *fp, Vector< double > *pos, Quaternion< double > *rot, double *agl, BOOL mrr, NiSDK_Lib lib=NiSDK_Default)
 
BOOL saveJTextfromFile (LPCTSTR tempf, LPCTSTR fname, BOOL force)
 
BOOL writeTempJText (Vector< double > *pos, Quaternion< double > *rot, double *agl, BOOL mrr, NiSDK_Lib lib=NiSDK_Default)
 
int readBVHFile (LPCTSTR fname)
 
BOOL saveBVHfromFile (LPCTSTR tempf, LPCTSTR fname, BVHSaveParam param)
 
BOOL writeBVHFile (LPCTSTR fname, BVHSaveParam param)
 
int readVMDFile (LPCTSTR fname)
 
BOOL saveVMDfromFile (LPCTSTR tempf, LPCTSTR fname)
 
void clearFrameData (void)
 
BOOL startFrame (int start=0)
 
BOOL nextFrame (BOOL next=TRUE)
 
void setFrame (int frame)
 
BOOL resetFrame (void)
 
virtual void Vector2Quaternion (Vector< double > *vt, Quaternion< double > *qt)
 
void clearStartPosition (void)
 
void clearJointsData (void)
 
void getJointsDataSeq (BOOL mirror, int frame=-1)
 

Public Attributes

int frame_start
 
int frame_ptr
 
NiFrameDataframes_data
 
int frames_num
 
int frame_timer
 
unsigned short lap_timer
 
double time_scale
 
double playback_time
 
int playback_fps
 
CNiJTextToolJTXT_Tool
 
CNiVMDToolVMD_Tool
 
CNiBVHToolBVH_Tool
 
CBaseFrameToolframeTool
 
Vector< double > startPos
 
Vector< double > currentPos
 
Vector< double > posVect [NI_TOTAL_JOINT_NUM]
 
Quaternion< double > rotQuat [NI_TOTAL_JOINT_NUM]
 

Protected Member Functions

void init (NiSDK_Lib lib)
 
void init_data (void)
 
BOOL open_wfile (LPCTSTR fname, BOOL force)
 
BOOL open_rfile (LPCTSTR fname)
 
void close_wfile (void)
 
void close_rfile (void)
 
void write_header (FILE *fp=NULL)
 

Private Attributes

NiSDK_Lib m_lib
 
BOOL m_enable_wfile
 
FILE * m_wfp
 
FILE * m_rfp
 

Detailed Description

Definition at line 22 of file NiFileTool.h.

Constructor & Destructor Documentation

◆ CNiFileTool() [1/2]

CNiFileTool ( void )
inline

Definition at line 25 of file NiFileTool.h.

25{ init_data();}
void init_data(void)

References CNiFileTool::init_data().

Here is the call graph for this function:

◆ CNiFileTool() [2/2]

CNiFileTool ( NiSDK_Lib lib)
inline

Definition at line 26 of file NiFileTool.h.

26{ init_data(); init(lib);}
void init(NiSDK_Lib lib)

References CNiFileTool::init(), and CNiFileTool::init_data().

Here is the call graph for this function:

◆ ~CNiFileTool()

~CNiFileTool ( void )
virtual

Definition at line 13 of file NiFileTool.cpp.

14{
15 DEBUG_INFO("DESTRUCTOR: CNiFileTool\n");
16
17 free_data();
18}
void free_data(void)

References CNiFileTool::free_data().

Here is the call graph for this function:

Member Function Documentation

◆ clear_data()

void clear_data ( void )

Definition at line 40 of file NiFileTool.cpp.

41{
42 close_wfile();
45
48
49 frames_data = NULL;
50 frame_start = 0;
51 frames_num = 0;
52 frame_ptr = 0;
53
54 frame_timer = 0;
55 lap_timer = 0;
56 time_scale = 1.0;
57
58 playback_time = 0.0;
59 playback_fps = 30;
60}
unsigned short lap_timer
Definition NiFileTool.h:59
void clearStartPosition(void)
Definition NiFileTool.h:103
void clearJointsData(void)
void clearFrameData(void)
void close_rfile(void)
void close_wfile(void)
NiFrameData * frames_data
Definition NiFileTool.h:55

References CNiFileTool::clearFrameData(), CNiFileTool::clearJointsData(), CNiFileTool::clearStartPosition(), CNiFileTool::close_rfile(), CNiFileTool::close_wfile(), CNiFileTool::frame_ptr, CNiFileTool::frame_start, CNiFileTool::frame_timer, CNiFileTool::frames_data, CNiFileTool::frames_num, CNiFileTool::lap_timer, CNiFileTool::playback_fps, CNiFileTool::playback_time, and CNiFileTool::time_scale.

Referenced by CNiFileTool::free_data().

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

◆ clearFrameData()

void clearFrameData ( void )

Definition at line 609 of file NiFileTool.cpp.

610{
611 //
612 frames_data = NULL;
613 frames_num = 0;
614 frame_ptr = 0;
615
616 if (JTXT_Tool!=NULL) JTXT_Tool->clear_data();
617 if (BVH_Tool!=NULL) BVH_Tool->clear_data();
618 if (VMD_Tool!=NULL) VMD_Tool->clear_data();
619
620 frameTool = NULL;
621
622 return;
623}
void clear_data(void)
Definition NiBVHTool.cpp:45
CBaseFrameTool * frameTool
Definition NiFileTool.h:71
CNiVMDTool * VMD_Tool
Definition NiFileTool.h:67
CNiJTextTool * JTXT_Tool
Definition NiFileTool.h:66
CNiBVHTool * BVH_Tool
Definition NiFileTool.h:68
void clear_data(void)

References CNiFileTool::BVH_Tool, CNiBVHTool::clear_data(), CNiJTextTool::clear_data(), CNiVMDTool::clear_data(), CNiFileTool::frame_ptr, CNiFileTool::frames_data, CNiFileTool::frames_num, CNiFileTool::frameTool, CNiFileTool::JTXT_Tool, and CNiFileTool::VMD_Tool.

Referenced by CNiFileTool::clear_data(), CNiFileTool::readBVHFile(), CNiFileTool::readJTextFile(), and CNiFileTool::readVMDFile().

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

◆ clearJointsData()

void clearJointsData ( void )

Definition at line 631 of file NiFileTool.cpp.

632{
633 for (int i=0; i<NI_TOTAL_JOINT_NUM; i++) {
634 rotQuat[i].init(-1.0);
635 posVect[i].init(-1.0);
636 }
637 currentPos.init(-1.0);
638}
#define NI_TOTAL_JOINT_NUM
Vector< double > posVect[NI_TOTAL_JOINT_NUM]
Definition NiFileTool.h:112
Quaternion< double > rotQuat[NI_TOTAL_JOINT_NUM]
Definition NiFileTool.h:113
Vector< double > currentPos
Definition NiFileTool.h:110

References CNiFileTool::currentPos, NI_TOTAL_JOINT_NUM, CNiFileTool::posVect, and CNiFileTool::rotQuat.

Referenced by CNiFileTool::clear_data(), and CNiFileTool::init_data().

Here is the caller graph for this function:

◆ clearStartPosition()

void clearStartPosition ( void )
inline

Definition at line 103 of file NiFileTool.h.

103{ startPos.init(1.0);}
Vector< double > startPos
Definition NiFileTool.h:109

References CNiFileTool::startPos.

Referenced by CNiFileTool::clear_data(), and CNiFileTool::init_data().

Here is the caller graph for this function:

◆ close_rfile()

void close_rfile ( void )
protected

Definition at line 163 of file NiFileTool.cpp.

164{
165 if (m_rfp!=NULL) {
166 fclose(m_rfp);
167 m_rfp = NULL;
168 }
169}

References CNiFileTool::m_rfp.

Referenced by CNiFileTool::clear_data(), CNiFileTool::readBVHFile(), CNiFileTool::readJTextFile(), and CNiFileTool::readVMDFile().

Here is the caller graph for this function:

◆ close_wfile()

void close_wfile ( void )
protected

Definition at line 152 of file NiFileTool.cpp.

153{
154 if (m_wfp!=NULL) {
155 fclose(m_wfp);
156 m_wfp = NULL;
157 m_enable_wfile = FALSE;
158 }
159}

References CNiFileTool::m_enable_wfile, and CNiFileTool::m_wfp.

Referenced by CNiFileTool::clear_data(), and CNiFileTool::writeBVHFile().

Here is the caller graph for this function:

◆ free_data()

void free_data ( void )

Definition at line 25 of file NiFileTool.cpp.

26{
27 clear_data();
28
29 if (JTXT_Tool!=NULL) delete(JTXT_Tool);
30 if (VMD_Tool!=NULL) delete(VMD_Tool);
31 if (BVH_Tool!=NULL) delete(BVH_Tool);
32
33 JTXT_Tool = NULL;
34 VMD_Tool = NULL;
35 BVH_Tool = NULL;
36}
void clear_data(void)

References CNiFileTool::BVH_Tool, CNiFileTool::clear_data(), CNiFileTool::JTXT_Tool, and CNiFileTool::VMD_Tool.

Referenced by CNiFileTool::~CNiFileTool().

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

◆ getJointsDataSeq()

void getJointsDataSeq ( BOOL mirror,
int frame = -1 )

Definition at line 642 of file NiFileTool.cpp.

643{
644 if (frame>=0) setFrame(frame);
645
646 // 静的なデータ
647 NiJointData* joint_data = frames_data[frame_ptr].jdat;
648 int joint_num = frames_data[frame_ptr].jnum;
649
650 // joint_data が無効なら,動的にデータを計算(補間)して得る.
651 if (joint_data==NULL) {
652 if (frameTool!=NULL) {
654 }
655 }
656 if (joint_data==NULL) return;
657
658 //
659 for (int j=0; j<joint_num; j++) {
660 //
661 int n = joint_data[j].joint;
662 if (n>=0 && n<NI_TOTAL_JOINT_NUM) {
663 if (mirror) n = NiMirrorJointNum(n);
664 //
665 posVect[n] = joint_data[j].vect;
666 rotQuat[n] = joint_data[j].quat;
667 //
668 if (mirror) {
669 posVect[n].y = - posVect[n].y;
670 rotQuat[n].x = - rotQuat[n].x;
671 rotQuat[n].z = - rotQuat[n].z;
672 }
673 }
674 }
675 return;
676}
#define NiMirrorJointNum(j)
virtual NiJointData * getJointsData(int frmnum, int fps)
void setFrame(int frame)
NiJointData * jdat
Quaternion< double > quat
Vector< double > vect

References CNiFileTool::frame_ptr, CNiFileTool::frames_data, CNiFileTool::frameTool, CBaseFrameTool::getJointsData(), NiFrameData::jdat, NiFrameData::jnum, NiJointData::joint, NI_TOTAL_JOINT_NUM, NiMirrorJointNum, CNiFileTool::playback_fps, CNiFileTool::posVect, NiJointData::quat, CNiFileTool::rotQuat, CNiFileTool::setFrame(), and NiJointData::vect.

Here is the call graph for this function:

◆ init()

void init ( NiSDK_Lib lib)
protected

Definition at line 93 of file NiFileTool.cpp.

94{
95 m_lib = lib;
96
97 //
98 JTXT_Tool = new CNiJTextTool();
99 VMD_Tool = new CNiVMDTool();
100 BVH_Tool = new CNiBVHTool();
101
102 frameTool = NULL;
103}

References CNiFileTool::BVH_Tool, CNiFileTool::frameTool, CNiFileTool::JTXT_Tool, CNiFileTool::m_lib, and CNiFileTool::VMD_Tool.

Referenced by CNiFileTool::CNiFileTool().

Here is the caller graph for this function:

◆ init_data()

◆ nextFrame()

BOOL nextFrame ( BOOL next = TRUE)

Definition at line 556 of file NiFileTool.cpp.

557{
558 if (next) {
559 frame_ptr++;
560 if (frame_ptr>frames_num) {
561 // not reachable
562 DEBUG_INFO("CNiFileTool::nextFrame(): frame ptr = %d, frame num = %d\n", frame_ptr, frames_num);
563 return FALSE;
564 }
565 }
566
567 //
568 int msec = 0;
569 if (frame_ptr==frames_num) {
570 if (frames_num!=1) {
571 msec = (int)((2*frames_data[frame_ptr-1].msec - frames_data[frame_ptr-2].msec)*time_scale);
572 }
573 }
574 else {
575 msec = (int)(frames_data[frame_ptr].msec*time_scale);
576 }
577
578 //
579 unsigned short ctime;
581 lap_timer = ctime;
582
583 if (frame_timer>=msec) {
584 return TRUE;
585 }
586 else if (msec>frame_timer+5000) {
587 DEBUG_INFO("CNiFileTool::nextFrame(): next frame = %d, current frame = %d\n", msec, frame_timer);
588 return FALSE; // 5sec 進?
589 }
590
591 // Wait
592 do {
593 ::DisPatcher();
594 int slptm = Min(msec-frame_timer, 100);
595 if (slptm>0) ::Sleep(slptm);
597 lap_timer = ctime;
598 } while (msec>frame_timer);
599
600 return TRUE;
601}
unsigned short GetMsecondsLapTimer(unsigned short pm, unsigned short *nt=NULL)
Definition WinTools.cpp:799

References CNiFileTool::frame_ptr, CNiFileTool::frame_timer, CNiFileTool::frames_data, CNiFileTool::frames_num, jbxwl::GetMsecondsLapTimer(), CNiFileTool::lap_timer, and CNiFileTool::time_scale.

Here is the call graph for this function:

◆ open_rfile()

BOOL open_rfile ( LPCTSTR fname)
protected

Definition at line 138 of file NiFileTool.cpp.

139{
140 if (m_rfp!=NULL) return FALSE;
141
142 m_rfp = tfopen(fname, _T("rb"));
143 if (m_rfp==NULL) {
144 return FALSE;
145 }
146
147 return TRUE;
148}

References CNiFileTool::m_rfp.

Referenced by CNiFileTool::readBVHFile(), CNiFileTool::readJTextFile(), and CNiFileTool::readVMDFile().

Here is the caller graph for this function:

◆ open_wfile()

BOOL open_wfile ( LPCTSTR fname,
BOOL force )
protected

Definition at line 107 of file NiFileTool.cpp.

108{
109 if (m_enable_wfile) return TRUE;
110 if (m_wfp!=NULL) return FALSE;
111
112 if (!force) {
113 if (file_exist_t(fname)) {
114 int ret = MessageBoxDLG(IDS_STR_WARN, IDS_STR_ASK_OVERWRITE, MB_YESNO, NULL);
115 if (ret==IDNO) return FALSE;
116 }
117 }
118
119 //
120 m_wfp = tfopen(fname, _T("wb"));
121 if (m_wfp==NULL) return FALSE;
122
123 m_enable_wfile = TRUE;
124 return TRUE;
125}
CMessageBoxDLG * MessageBoxDLG(int ttl, int msg, CWnd *wnd=NULL)
BOOL file_exist_t(LPCTSTR fn)
Definition WinTools.cpp:258
#define IDS_STR_ASK_OVERWRITE
Definition resource.h:124
#define IDS_STR_WARN
Definition resource.h:105

References jbxwl::file_exist_t(), IDS_STR_ASK_OVERWRITE, IDS_STR_WARN, CNiFileTool::m_enable_wfile, CNiFileTool::m_wfp, and jbxwl::MessageBoxDLG().

Referenced by CNiFileTool::writeBVHFile().

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

◆ readBVHFile()

int readBVHFile ( LPCTSTR fname)

Definition at line 248 of file NiFileTool.cpp.

249{
250 if (fname==NULL) return -1;
252 if (BVH_Tool==NULL) BVH_Tool = new CNiBVHTool();
253
254 BOOL ret = open_rfile(fname);
255 if (!ret) return -2;
256
257 ret = BVH_Tool->readFile(m_rfp);
258 close_rfile();
259 if (!ret) return -3;
260
262 if (frames_data==NULL) return -4;
263
266
269
270 return frames_num;
271}
virtual unsigned int getFramesNumber(void)
virtual NiFrameData * getFramesData(void)
virtual BOOL readFile(FILE *fp)
Definition NiBVHTool.cpp:58
virtual int getPlayBackFPS(void)
BOOL open_rfile(LPCTSTR fname)

References CNiFileTool::BVH_Tool, CNiFileTool::clearFrameData(), CNiFileTool::close_rfile(), CNiFileTool::frames_data, CNiFileTool::frames_num, CNiFileTool::frameTool, CBaseFrameTool::getFramesData(), CBaseFrameTool::getFramesNumber(), CNiBVHTool::getPlayBackFPS(), CNiFileTool::m_rfp, NiFrameData::msec, CNiFileTool::open_rfile(), CNiFileTool::playback_fps, CNiFileTool::playback_time, and CNiBVHTool::readFile().

Here is the call graph for this function:

◆ readJTextFile()

int readJTextFile ( LPCTSTR fname)

Definition at line 177 of file NiFileTool.cpp.

178{
179 if (fname==NULL) return -1;
181 if (JTXT_Tool==NULL) JTXT_Tool = new CNiJTextTool();
182
183 BOOL ret = open_rfile(fname);
184 if (!ret) return -2;
185
186 ret = JTXT_Tool->readFile(m_rfp);
187 close_rfile();
188 if (!ret) return -3;
189
191 if (frames_data==NULL) return -4;
192
195
198
199 return frames_num;
200}
virtual int getPlayBackFPS(void)
virtual BOOL readFile(FILE *fp)

References CNiFileTool::clearFrameData(), CNiFileTool::close_rfile(), CNiFileTool::frames_data, CNiFileTool::frames_num, CNiFileTool::frameTool, CBaseFrameTool::getFramesData(), CBaseFrameTool::getFramesNumber(), CBaseFrameTool::getPlayBackFPS(), CNiFileTool::JTXT_Tool, CNiFileTool::m_rfp, NiFrameData::msec, CNiFileTool::open_rfile(), CNiFileTool::playback_fps, CNiFileTool::playback_time, and CNiJTextTool::readFile().

Referenced by CNiFileTool::saveBVHfromFile().

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

◆ readVMDFile()

int readVMDFile ( LPCTSTR fname)

Definition at line 484 of file NiFileTool.cpp.

485{
486 if (fname==NULL) return -1;
488 if (VMD_Tool==NULL) VMD_Tool = new CNiVMDTool();
489
490 BOOL ret = open_rfile(fname);
491 if (!ret) return -2;
492
493 ret = VMD_Tool->readFile(m_rfp);
494 close_rfile();
495 if (!ret) return -3;
496
497 //
499 if (frames_data==NULL) return -4;
500
503
506
507 return frames_num;
508}
virtual unsigned int getFramesNumber(void)
Definition NiVMDTool.h:121
virtual BOOL readFile(FILE *fp)
virtual NiFrameData * getFramesData(void)

References CNiFileTool::clearFrameData(), CNiFileTool::close_rfile(), CNiFileTool::frames_data, CNiFileTool::frames_num, CNiFileTool::frameTool, CNiVMDTool::getFramesData(), CNiVMDTool::getFramesNumber(), CBaseFrameTool::getPlayBackFPS(), CNiFileTool::m_rfp, NiFrameData::msec, CNiFileTool::open_rfile(), CNiFileTool::playback_fps, CNiFileTool::playback_time, CNiVMDTool::readFile(), and CNiFileTool::VMD_Tool.

Here is the call graph for this function:

◆ resetFrame()

BOOL resetFrame ( void )
inline

Definition at line 96 of file NiFileTool.h.

96{ return startFrame();}
BOOL startFrame(int start=0)

References CNiFileTool::startFrame().

Here is the call graph for this function:

◆ saveBVHfromFile()

BOOL saveBVHfromFile ( LPCTSTR tempf,
LPCTSTR fname,
BVHSaveParam param )

Definition at line 276 of file NiFileTool.cpp.

277{
278 int frn = readJTextFile(tempf);
279 if (frn<=0) return FALSE;
280
281 param.scale /= 0.0254f; // m -> inch
282 BOOL ret = writeBVHFile(fname, param);
283
284 return ret;
285}
BOOL writeBVHFile(LPCTSTR fname, BVHSaveParam param)
int readJTextFile(LPCTSTR fname)

References CNiFileTool::readJTextFile(), BVHSaveParam::scale, and CNiFileTool::writeBVHFile().

Here is the call graph for this function:

◆ saveJTextfromFile()

BOOL saveJTextfromFile ( LPCTSTR tempf,
LPCTSTR fname,
BOOL force )

Definition at line 222 of file NiFileTool.cpp.

223{
224 if (!force) {
225 if (file_exist_t(fname)) {
226 int ret = MessageBoxDLG(IDS_STR_WARN, IDS_STR_ASK_OVERWRITE, MB_YESNO, NULL);
227 if (ret==IDNO) return FALSE;
228 }
229 }
230
231 return copyFileWithCounter(tempf, fname);
232}
int copyFileWithCounter(LPCTSTR src, LPCTSTR dst)
Definition MFCio.cpp:24

References jbxwl::copyFileWithCounter(), jbxwl::file_exist_t(), IDS_STR_ASK_OVERWRITE, IDS_STR_WARN, and jbxwl::MessageBoxDLG().

Here is the call graph for this function:

◆ saveVMDfromFile()

BOOL saveVMDfromFile ( LPCTSTR tempf,
LPCTSTR fname )

Definition at line 513 of file NiFileTool.cpp.

514{
515 // ここに実装... しないと思う.面倒だから.
516 return FALSE;
517}

◆ setFrame()

void setFrame ( int frame)

Definition at line 525 of file NiFileTool.cpp.

526{
527 frame_start = 0;
528 if (frames_num!=0) {
529 frame_start = frame%frames_num;
530 }
531
533}

References CNiFileTool::frame_ptr, CNiFileTool::frame_start, and CNiFileTool::frames_num.

Referenced by CNiFileTool::getJointsDataSeq(), and CNiFileTool::startFrame().

Here is the caller graph for this function:

◆ startFrame()

BOOL startFrame ( int start = 0)

Definition at line 540 of file NiFileTool.cpp.

541{
542 if (frames_num==0 || start<0 || start>=frames_num) return FALSE;
543
545 frame_timer = (int)(frames_data[start].msec*time_scale);
546 setFrame(start);
547
548 return TRUE;
549}
unsigned short GetMsecondsTimer(void)
Definition WinTools.cpp:778

References CNiFileTool::frame_timer, CNiFileTool::frames_data, CNiFileTool::frames_num, jbxwl::GetMsecondsTimer(), CNiFileTool::lap_timer, CNiFileTool::setFrame(), and CNiFileTool::time_scale.

Referenced by CNiFileTool::resetFrame().

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

◆ Vector2Quaternion()

virtual void Vector2Quaternion ( Vector< double > * vt,
Quaternion< double > * qt )
inlinevirtual

Definition at line 100 of file NiFileTool.h.

100{}

Referenced by CNiFileTool::writeBVHFile().

Here is the caller graph for this function:

◆ write_header()

void write_header ( FILE * fp = NULL)
protected

Definition at line 129 of file NiFileTool.cpp.

130{
131 if (fp==NULL) fp = m_wfp;
132
134}
void writeHeader(FILE *fp)
Definition NiJTextTool.h:34

References CNiFileTool::JTXT_Tool, CNiFileTool::m_wfp, and CNiJTextTool::writeHeader().

Here is the call graph for this function:

◆ writeBVHFile()

BOOL writeBVHFile ( LPCTSTR fname,
BVHSaveParam param )

Definition at line 289 of file NiFileTool.cpp.

290{
291 if (frameTool==NULL) return FALSE;
292 if (frameTool->getFramesNumber()<=0) return FALSE;
293
294
295 //
296 // HIERARCHY
297 //
298 tTree* hrchy = NULL;
299 if (param.format==BVH_SAVE_FORMAT_QAV) {
300 hrchy = makeBVH_QAvHierarchy();
301 }
302 else if (param.format==BVH_SAVE_FORMAT_SL) {
303 hrchy = makeBVH_SLHierarchy();
304 }
305 else if (param.format==BVH_SAVE_FORMAT_NI) {
306 hrchy = makeBVH_NiHierarchy();
307 }
308 else {
309 return FALSE;
310 }
311 if (param.fps<10) param.fps = 10;
312 else if (param.fps>60) param.fps = 60;
313
314 double frmitm = 1000.0/param.fps; // msec
315 int frmnum = (int)(frameTool->getPlayBackTime()/frmitm) + 1;
316
317 //
318 CBVHTool* bvh_tool = new CBVHTool();
319
320 bvh_tool->setHierarchy(hrchy);
321 bvh_tool->frame_num = frmnum;
322 bvh_tool->frame_time = frmitm/1000.0; // sec
323 bvh_tool->state = 0;
324
325 if (bvh_tool->frame_time!=0.0) bvh_tool->framepsec = (int)(1.0/bvh_tool->frame_time);
326 else bvh_tool->framepsec = 30;
327
328 //
329 size_t len = sizeof(vector)*bvh_tool->joint_num;
330 bvh_tool->offset = (vector*)malloc(len);
331 if (bvh_tool->offset==NULL) {
332 delete(bvh_tool);
333 return FALSE;
334 }
335 memset(bvh_tool->offset, 0, len);
336
337 len = sizeof(double)*frmnum*bvh_tool->channels;
338 bvh_tool->motion = (double*)malloc(len);
339 if (bvh_tool->motion==NULL) {
340 delete(bvh_tool);
341 return FALSE;
342 }
343 memset(bvh_tool->motion, 0, len);
344
345 //
346 // MOTION
347 //
348 double r2d = 180.0/PI;
349 tList* namelist = setBVHJointName();
350
351 Vector<double> vt[NI_TOTAL_JOINT_NUM];
352 Quaternion<double> qt[NI_TOTAL_JOINT_NUM];
353
354 //
355 for (int f=0; f<frmnum; f++) {
356 //
357 int frm = f*bvh_tool->channels;
358 NiJointData* jdat = frameTool->getJointsData(f, param.fps);
359
360 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
361 vt[j].set(0.0, 0.0, 0.0, 0.0, -1.0);
362 qt[j].set(1.0, 0.0, 0.0, 0.0, 0.0, -1.0);
363 }
364 for (int j=0; j<frameTool->getJointsNumber(); j++) {
365 int n = jdat[j].joint;
366 if (n>=0 && n<NI_TOTAL_JOINT_NUM) {
367 vt[n] = jdat[j].vect;
368 qt[n] = jdat[j].quat;
369 }
370 }
371 //
372 if (param.recalc) Vector2Quaternion(vt, qt);
373
374 //
375 for (int j=0; j<bvh_tool->joint_num; j++) {
376 int chnum = bvh_tool->channel_num[j];
377 int index = bvh_tool->channel_idx[j];
378 char* tpchr = (char*)&(bvh_tool->flex_joint.buf[index*2]);
379
380 //
381 Vector<double> vect(0.0, 0.0, 0.0, 0.0, -1.0);
382 Vector<double> eulr(0.0, 0.0, 0.0, 0.0, -1.0);
383
384 int jnum = BVHJoint2NiJointNum(namelist, bvh_tool->joint_name[j]); // 共通ジョイント番号
385 if (jnum>=0 && jnum<NI_TOTAL_JOINT_NUM) {
386 vect = vt[jnum];
387 eulr = Quaternion2ExtEulerXYZ(qt[jnum]);
388 }
389
390 //
391 for (int k=0; k<chnum; k++) {
392 int midx = frm + index;
393 if (tpchr[k*2]=='P') {
394 if (tpchr[k*2+1]=='X') bvh_tool->motion[midx+k] = vect.y*param.scale;
395 else if (tpchr[k*2+1]=='Y') bvh_tool->motion[midx+k] = vect.z*param.scale;
396 else if (tpchr[k*2+1]=='Z') bvh_tool->motion[midx+k] = vect.x*param.scale;
397 }
398 else if (tpchr[k*2]=='R') { // "RYRXRZ" -> ZXY -> XYZ
399 if (tpchr[k*2+1]=='X') bvh_tool->motion[midx+k] = eulr.y*r2d;
400 else if (tpchr[k*2+1]=='Y') bvh_tool->motion[midx+k] = eulr.z*r2d;
401 else if (tpchr[k*2+1]=='Z') bvh_tool->motion[midx+k] = eulr.x*r2d;
402 }
403 }
404 }
405 }
406
407 //
408 // OFFSET
409 //
410 for (int j=0; j<bvh_tool->joint_num; j++) {
411 bvh_tool->offset[j].x = 0.0;
412 bvh_tool->offset[j].y = 0.0;
413 bvh_tool->offset[j].z = 0.0;
414 }
415
416 // BVH_SAVE_FORMAT_QAV
417 if (param.format==BVH_SAVE_FORMAT_QAV) {
418 for (int j=0; j<bvh_tool->joint_num; j++) {
419 bvh_tool->offset[j] = getQAvBVHOffset(j);
420 }
421 }
422
423 // 0フレームのジョイントの位置
424 else {
425 NiJointData* jdat = frameTool->getJointsData(0, param.fps);
426 //
427 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
428 vt[j].set(0.0, 0.0, 0.0, 0.0, -1.0);
429 qt[j].set(1.0, 0.0, 0.0, 0.0, 0.0, -1.0);
430 }
431 for (int j=0; j<frameTool->getJointsNumber(); j++) {
432 int n = jdat[j].joint;
433 if (n>=0 && n<NI_TOTAL_JOINT_NUM) {
434 vt[n] = jdat[j].vect;
435 qt[n] = jdat[j].quat;
436 }
437 }
438
439 //
440 for (int j=0; j<bvh_tool->joint_num; j++) {
441 int jnum = BVHJoint2NiJointNum(namelist, bvh_tool->joint_name[j]);
442 if (jnum>=0 && jnum<NI_TOTAL_JOINT_NUM) {
443 bvh_tool->offset[j].x = vt[jnum].y*param.scale;
444 bvh_tool->offset[j].y = vt[jnum].z*param.scale;
445 bvh_tool->offset[j].z = vt[jnum].x*param.scale;
446 }
447 }
448 }
449
450 //
451 // 書き出し
452 //
453 BOOL ret = FALSE;
454
455 if (param.divtm>0) {
456 char* fn = ::ts2mbs(fname);
457 ret = bvh_tool->writeMultiFile(fn, param.divtm, Max(param.divtm, 10));
458 ::free(fn);
459 }
460 else {
461 //
462 ret = open_wfile(fname, FALSE);
463 if (ret) {
464 ret = bvh_tool->printBVH(m_wfp);
465 close_wfile();
466 }
467 else {
468 DEBUG_ERROR("CNiFileTool::writeBVHFile(): ERROR: Already other file for write is opened!\n");
469 }
470 }
471
472 del_tList(&namelist);
473 delete(bvh_tool);
474
475 return ret;
476}
#define BVH_SAVE_FORMAT_SL
Definition NiBVHName.h:13
#define BVH_SAVE_FORMAT_QAV
Definition NiBVHName.h:12
#define BVH_SAVE_FORMAT_NI
Definition NiBVHName.h:14
virtual int getPlayBackTime(void)
virtual int getJointsNumber(void)
virtual void Vector2Quaternion(Vector< double > *vt, Quaternion< double > *qt)
Definition NiFileTool.h:100
BOOL open_wfile(LPCTSTR fname, BOOL force)
tTree * makeBVH_QAvHierarchy(void)
vector getQAvBVHOffset(int joint)
char * ts2mbs(LPCTSTR str)
Definition WinTools.h:57
int BVHJoint2NiJointNum(tList *lt, Buffer joint_name)
tList * setBVHJointName(void)
Definition NiBVHName.cpp:11
tTree * makeBVH_SLHierarchy(void)
tTree * makeBVH_NiHierarchy(void)

References BVH_SAVE_FORMAT_NI, BVH_SAVE_FORMAT_QAV, BVH_SAVE_FORMAT_SL, jbxwl::BVHJoint2NiJointNum(), CNiFileTool::close_wfile(), BVHSaveParam::divtm, BVHSaveParam::format, BVHSaveParam::fps, CNiFileTool::frameTool, CBaseFrameTool::getFramesNumber(), CBaseFrameTool::getJointsData(), CBaseFrameTool::getJointsNumber(), CBaseFrameTool::getPlayBackTime(), jbxwl::getQAvBVHOffset(), NiJointData::joint, CNiFileTool::m_wfp, jbxwl::makeBVH_NiHierarchy(), jbxwl::makeBVH_QAvHierarchy(), jbxwl::makeBVH_SLHierarchy(), NI_TOTAL_JOINT_NUM, CNiFileTool::open_wfile(), NiJointData::quat, BVHSaveParam::recalc, BVHSaveParam::scale, jbxwl::setBVHJointName(), jbxwl::ts2mbs(), NiJointData::vect, and CNiFileTool::Vector2Quaternion().

Referenced by CNiFileTool::saveBVHfromFile().

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

◆ writeJTextData()

BOOL writeJTextData ( FILE * fp,
Vector< double > * pos,
Quaternion< double > * rot,
double * agl,
BOOL mrr,
NiSDK_Lib lib = NiSDK_Default )

Definition at line 204 of file NiFileTool.cpp.

205{
206 if (fp==NULL) return FALSE;
207
208 if (JTXT_Tool==NULL) JTXT_Tool = new CNiJTextTool();
209
210 if (lib==NiSDK_Default) lib = m_lib;
211 JTXT_Tool->setPosVect(pos, lib, mirror);
212 JTXT_Tool->setRotQuat(rot, lib, mirror);
213 JTXT_Tool->setJntAngl(agl, lib, mirror);
215
216 return TRUE;
217}
void writeCurrentData(FILE *fp, unsigned short msec)
void setRotQuat(Quaternion< double > *rot, NiSDK_Lib lib, BOOL mirror)
void setPosVect(Vector< double > *pos, NiSDK_Lib lib, BOOL mirror)
void setJntAngl(double *agl, NiSDK_Lib lib, BOOL mirror)
@ NiSDK_Default
Definition NiToolWin.h:36

References jbxwl::GetMsecondsTimer(), CNiFileTool::JTXT_Tool, CNiFileTool::m_lib, jbxwl::NiSDK_Default, CNiJTextTool::setJntAngl(), CNiJTextTool::setPosVect(), CNiJTextTool::setRotQuat(), and CNiJTextTool::writeCurrentData().

Referenced by CNiFileTool::writeTempJText().

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

◆ writeTempJText()

BOOL writeTempJText ( Vector< double > * pos,
Quaternion< double > * rot,
double * agl,
BOOL mrr,
NiSDK_Lib lib = NiSDK_Default )

Definition at line 237 of file NiFileTool.cpp.

238{
239 return writeJTextData(m_wfp, pos, rot, agl, mirror, lib);
240}
BOOL writeJTextData(FILE *fp, Vector< double > *pos, Quaternion< double > *rot, double *agl, BOOL mrr, NiSDK_Lib lib=NiSDK_Default)

References CNiFileTool::m_wfp, and CNiFileTool::writeJTextData().

Here is the call graph for this function:

Member Data Documentation

◆ BVH_Tool

◆ currentPos

Vector<double> currentPos

Definition at line 110 of file NiFileTool.h.

Referenced by CNiFileTool::clearJointsData().

◆ frame_ptr

◆ frame_start

int frame_start

◆ frame_timer

◆ frames_data

◆ frames_num

◆ frameTool

◆ JTXT_Tool

◆ lap_timer

unsigned short lap_timer

◆ m_enable_wfile

BOOL m_enable_wfile
private

◆ m_lib

NiSDK_Lib m_lib
private

◆ m_rfp

◆ m_wfp

◆ playback_fps

◆ playback_time

◆ posVect

Vector<double> posVect[NI_TOTAL_JOINT_NUM]

Definition at line 112 of file NiFileTool.h.

Referenced by CNiFileTool::clearJointsData(), and CNiFileTool::getJointsDataSeq().

◆ rotQuat

Quaternion<double> rotQuat[NI_TOTAL_JOINT_NUM]

Definition at line 113 of file NiFileTool.h.

Referenced by CNiFileTool::clearJointsData(), and CNiFileTool::getJointsDataSeq().

◆ startPos

Vector<double> startPos

Definition at line 109 of file NiFileTool.h.

Referenced by CNiFileTool::clearStartPosition().

◆ time_scale

double time_scale

◆ VMD_Tool


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