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

#include <NiJTextTool.h>

Inheritance diagram for CNiJTextTool:
Collaboration diagram for CNiJTextTool:

Public Member Functions

 CNiJTextTool (void)
 
virtual ~CNiJTextTool (void)
 
void free_data (void)
 
void clear_data (void)
 
virtual NiJointDatagetJointsData (int frmnum, int fps)
 
virtual BOOL readFile (FILE *fp)
 
void writeHeader (FILE *fp)
 
void writeCurrentData (FILE *fp, unsigned short msec)
 
void setPosVect (Vector< double > *pos, NiSDK_Lib lib, BOOL mirror)
 
void setRotQuat (Quaternion< double > *rot, NiSDK_Lib lib, BOOL mirror)
 
void setJntAngl (double *agl, NiSDK_Lib lib, BOOL mirror)
 
- 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)
 
virtual int getPlayBackFPS (void)
 
virtual BOOL writeFile (FILE *fp)
 

Public Attributes

double * jntAngl
 

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 15 of file NiJTextTool.h.

Constructor & Destructor Documentation

◆ CNiJTextTool()

CNiJTextTool ( void )

Definition at line 13 of file NiJTextTool.cpp.

14{
15 posVect = (Vector<double>*)malloc(sizeof(Vector<double>)*NI_TOTAL_JOINT_NUM);
16 rotQuat = (Quaternion<double>*)malloc(sizeof(Quaternion<double>)*NI_TOTAL_JOINT_NUM);
17 jntAngl = NULL;
18}
#define NI_TOTAL_JOINT_NUM
Vector< double > * posVect
Quaternion< double > * rotQuat

References CNiJTextTool::jntAngl, NI_TOTAL_JOINT_NUM, CBaseFrameTool::posVect, and CBaseFrameTool::rotQuat.

◆ ~CNiJTextTool()

~CNiJTextTool ( void )
virtual

Definition at line 22 of file NiJTextTool.cpp.

23{
24 DEBUG_INFO("DESTRUCTOR: CNiJTextTool\n");
25
26 free_data();
27}

References CNiJTextTool::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 NiJTextTool.cpp.

41{
42 free_data();
43}

References CNiJTextTool::free_data().

Referenced by CNiFileTool::clearFrameData(), and CNiJTextTool::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 31 of file NiJTextTool.cpp.

32{
34
35 ::freeNull(jntAngl);
36}

References CBaseFrameTool::free_data(), and CNiJTextTool::jntAngl.

Referenced by CNiJTextTool::clear_data(), and CNiJTextTool::~CNiJTextTool().

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 307 of file NiJTextTool.cpp.

308{
309 if (frmnum<0) return NULL;
310
311 if (fps<=0) fps = 30;
312 int msec = (int)(1000./fps*frmnum);
313 if (msec>exec_time) return NULL;
314
315 unsigned int f;
316 double t = 0.0;
317
318 for (f=1; f<frames_num; f++) {
319 if (framesData[f].msec >= msec + start_time) {
320 t = (msec - framesData[f-1].msec)/(double)(framesData[f].msec - framesData[f-1].msec);
321 break;
322 }
323 }
324 if (f>=frames_num) return NULL;
325
326 //
328
329 NiJointData* jdat1 = framesData[f-1].jdat;
330 NiJointData* jdat2 = framesData[f].jdat;
331
332 for (int j=0; j<joints_num; j++) {
333 if (jdat1[j].joint>=0) {
334 for (int k=0; k<joints_num; k++) {
335 if (jdat1[j].joint==jdat2[k].joint) {
336 jointsData[j].joint = jdat1[j].joint;
337 jointsData[j].index = frmnum;
338 jointsData[j].vect = BSplineInterp4 (jdat1[j].vect, jdat2[k].vect, t);
339 jointsData[j].quat = SlerpQuaternion(jdat1[j].quat, jdat2[k].quat, t);
340 }
341 }
342 }
343 }
344
345 return jointsData;
346}
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, NiFrameData::msec, NiJointData::quat, CBaseFrameTool::start_time, and NiJointData::vect.

Here is the call graph for this function:

◆ readFile()

BOOL readFile ( FILE * fp)
virtual

Reimplemented from CBaseFrameTool.

Definition at line 50 of file NiJTextTool.cpp.

51{
52 if (fp==NULL) return FALSE;
53
54 clear_data();
55
56 Buffer buf = make_Buffer(LDATA); // Line 読み込み用バッファ
57
58 // ファイルヘッダのチェック
59 fgets_Buffer(&buf, fp);
60 if (strncmp(NI_JTXT_FILE_ID, (char*)buf.buf, strlen(NI_JTXT_FILE_ID))) {
61 free_Buffer(&buf);
62 return FALSE;
63 }
64
65 // フレーム数を数える
66 int frames = 0;
67 fgets_Buffer(&buf, fp);
68 while(!feof(fp)) {
69 if (buf.buf[0]>='0' && buf.buf[0]<='9') frames++; // 行頭が数字の場合はフレーム時間
70 fgets_Buffer(&buf, fp);
71 }
72 if (frames==0) {
73 free_Buffer(&buf);
74 return FALSE;
75 }
76 frames_num = frames;
77
78 // 各フレームの開始時間を調べる
79 int* frame_msec = (int*)malloc(frames_num*sizeof(int));
80 memset(frame_msec, 0, frames_num*sizeof(int));
81
82 fseek(fp, 0, SEEK_SET);
83 fgets_Buffer(&buf, fp);
84 // 最初のフレーム時間行まで移動
85 while (buf.buf[0]<'0' || buf.buf[0]>'9') fgets_Buffer(&buf, fp);
86
87 int joints = 0;
88 for (unsigned int i=0; i<frames_num; i++) {
89 frame_msec[i] = atoi((char*)buf.buf);
90 //
91 int jnum = 0;
92 fgets_Buffer(&buf, fp);
93 while (!feof(fp) && (buf.buf[0]<'0' || buf.buf[0]>'9')) {
94 if (buf.buf[0]==' ') jnum++;
95 fgets_Buffer(&buf, fp);
96 }
97 joints = Max(joints, jnum);
98 }
99 joints_num = joints;
100
101 //
102 // データ領域の確保
103 //
104 jointsData = (NiJointData*)malloc(sizeof(NiJointData)*joints_num);
105 if (jointsData==NULL) {
106 clear_data();
107 return FALSE;
108 }
110
111 // Frame Data の格納先を作る
113 ::free(frame_msec);
114 if (framesData==NULL) {
115 free_Buffer(&buf);
116 clear_data();
117 return FALSE;
118 }
119
120 if (posVect==NULL) posVect = (Vector<double>*)malloc(sizeof(Vector<double>)*NI_TOTAL_JOINT_NUM);
121 if (rotQuat==NULL) rotQuat = (Quaternion<double>*)malloc(sizeof(Quaternion<double>)*NI_TOTAL_JOINT_NUM);
122 if (posVect==NULL || rotQuat==NULL) {
123 free_Buffer(&buf);
124 clear_data();
125 return FALSE;
126 }
128
129 //
130 // データの読み込み
131 //
132 BOOL tmline = FALSE;
133 int prvms = 0;
134 fseek(fp, 0, SEEK_SET);
135
136 char jname[L_ID];
137 memset(jname, 0, L_ID);
138
139 //
140 fgets_Buffer(&buf, fp);
141
142 for (unsigned int i=0; i<frames_num; i++) {
143 // 次のフレーム時間行まで移動
144 while (buf.buf[0]<'0' || buf.buf[0]>'9') fgets_Buffer(&buf, fp);
145
146 int nowms = framesData[i].msec;
147 if (i==0) prvms = nowms;
148 int msec = nowms - prvms;
149 if (msec<0) msec += 60000; // + 60sec
150 prvms = nowms;
151
152 if (i==0) framesData[0].msec = 0;
153 else framesData[i].msec = framesData[i-1].msec + msec;
155
156 //
157 double px, py, pz;
158 double qx, qy, qz, qs, th;
159
160 NiJointData* jdat = framesData[i].jdat;
161
162 //
163 for (int j=0; j<joints_num; j++) {
164 fgets_Buffer(&buf, fp);
165 while (buf.buf[0]!=' ') {
166 if (buf.buf[0]>='0' || buf.buf[0]<='9') { // ジョイントデータが途中で終わった?!
167 tmline = TRUE;
168 break;
169 }
170 fgets_Buffer(&buf, fp); // コメント行の読み飛ばし
171 }
172 if (tmline) {
173 tmline = FALSE;
174 break;
175 }
176
177 //
178 jname[0] = '\0';
179 px = py = pz = 0.0;
180 qx = qy = qz = 0.0;
181 qs = 1.0;
182 sscanf((char*)buf.buf, "%s %lf %lf %lf %lf %lf %lf %lf %lf", jname, &px, &py, &pz, &qx, &qy, &qz, &qs, &th);
183
184 jdat[j].vect.set(px, py, pz);
185 jdat[j].quat.set(qs, qx, qy, qz);
186 jdat[j].angl = th;
187 jdat[j].joint = NiJointNum(jname);;
188 jdat[j].index = i;
189 }
190 }
191
192 //
196
197 free_Buffer(&buf);
198
199 return TRUE;
200}
#define NI_JTXT_FILE_ID
Definition NiJointsTool.h:9
void clearVectorData(int jnum)
NiFrameData * makeFramesData(int frame, int joint_num, int *frame_num)
int NiJointNum(char *name)

References NiJointData::angl, CNiJTextTool::clear_data(), CBaseFrameTool::clearJointsData(), CBaseFrameTool::clearVectorData(), CBaseFrameTool::exec_time, CBaseFrameTool::frames_num, CBaseFrameTool::framesData, NiFrameData::frmn, NiJointData::index, NiFrameData::jdat, NiJointData::joint, CBaseFrameTool::joints_num, CBaseFrameTool::jointsData, jbxwl::makeFramesData(), NiFrameData::msec, NI_JTXT_FILE_ID, NI_TOTAL_JOINT_NUM, jbxwl::NiJointNum(), CBaseFrameTool::posVect, NiJointData::quat, CBaseFrameTool::rotQuat, CBaseFrameTool::start_time, CBaseFrameTool::stop_time, and NiJointData::vect.

Referenced by CNiFileTool::readJTextFile().

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

◆ setJntAngl()

void setJntAngl ( double * agl,
NiSDK_Lib lib,
BOOL mirror )

Definition at line 279 of file NiJTextTool.cpp.

280{
281 if (agl==NULL) {
282 ::freeNull(jntAngl);
283 return;
284 }
285
286 if (jntAngl==NULL) jntAngl = (double*)malloc(sizeof(double)*NI_TOTAL_JOINT_NUM);
287 if (jntAngl==NULL) return;
288
289 //
290 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
291 int n = Ni2SDKJointNum(j, lib);
292 if (mirror && n>=0) n = NiSDKMirrorJointNum(n, lib);
293
294 if (n>=0) {
295 jntAngl[j] = agl[n];
296 }
297 else {
298 jntAngl[j] = 0.0;
299 }
300 }
301
302 return;
303}
#define Ni2SDKJointNum(j, l)
int NiSDKMirrorJointNum(int joint, NiSDK_Lib lib)

References CNiJTextTool::jntAngl, Ni2SDKJointNum, NI_TOTAL_JOINT_NUM, and jbxwl::NiSDKMirrorJointNum().

Referenced by CNiFileTool::writeJTextData().

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

◆ setPosVect()

void setPosVect ( Vector< double > * pos,
NiSDK_Lib lib,
BOOL mirror )

Definition at line 226 of file NiJTextTool.cpp.

227{
228 if (posVect==NULL) posVect = (Vector<double>*)malloc(sizeof(Vector<double>)*NI_TOTAL_JOINT_NUM);
229 if (posVect==NULL) return;
230
231 //
232 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
233 int n = Ni2SDKJointNum(j, lib);
234 if (mirror && n>=0) n = NiSDKMirrorJointNum(n, lib);
235
236 if (n>=0) {
237 posVect[j] = pos[n];
238 if (mirror) posVect[j].y = -posVect[j].y;
239 //posVect[j].c = 1.0;
240 }
241 else {
242 posVect[j].init(-1.0);
243 }
244 }
245
246 return;
247}

References Ni2SDKJointNum, NI_TOTAL_JOINT_NUM, jbxwl::NiSDKMirrorJointNum(), and CBaseFrameTool::posVect.

Referenced by CNiFileTool::writeJTextData().

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

◆ setRotQuat()

void setRotQuat ( Quaternion< double > * rot,
NiSDK_Lib lib,
BOOL mirror )

Definition at line 251 of file NiJTextTool.cpp.

252{
253 if (rotQuat==NULL) rotQuat = (Quaternion<double>*)malloc(sizeof(Quaternion<double>)*NI_TOTAL_JOINT_NUM);
254 if (rotQuat==NULL) return;
255
256 //
257 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
258 int n = Ni2SDKJointNum(j, lib);
259 if (mirror && n>=0) n = NiSDKMirrorJointNum(n, lib);
260
261 if (n>=0) {
262 rotQuat[j] = rot[n];
263 if (mirror) {
264 rotQuat[j].x = -rotQuat[j].x;
265 rotQuat[j].z = -rotQuat[j].z;
266 }
267 //rotQuat[j].c = 1.0;
268 }
269 else {
270 rotQuat[j].init(-1.0);
271 }
272 }
273
274 return;
275}

References Ni2SDKJointNum, NI_TOTAL_JOINT_NUM, jbxwl::NiSDKMirrorJointNum(), and CBaseFrameTool::rotQuat.

Referenced by CNiFileTool::writeJTextData().

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

◆ writeCurrentData()

void writeCurrentData ( FILE * fp,
unsigned short msec )

Definition at line 204 of file NiJTextTool.cpp.

205{
206 if (fp==NULL) return;
207 if (posVect==NULL || rotQuat==NULL) return;
208
209 fprintf(fp, "%d\n", msec);
210
211 for (int j=0; j<NI_TOTAL_JOINT_NUM; j++) {
212 if (posVect[j].c>0 || rotQuat[j].c>0) {
213 std::string jn = NiJointName(j);
214 fprintf(fp, " %-10s %11.6f %11.6f %11.6f ", jn.c_str(), posVect[j].x, posVect[j].y, posVect[j].z);
215 fprintf(fp, " %11.8f %11.8f %11.8f %11.8f", rotQuat[j].x, rotQuat[j].y, rotQuat[j].z, rotQuat[j].s);
216 if (jntAngl!=NULL) fprintf(fp, " %11.6f", jntAngl[j]*RAD2DEGREE);
217 fprintf(fp, "\n");
218 }
219 }
220
221 return;
222}
std::string NiJointName(int n)

References CNiJTextTool::jntAngl, NI_TOTAL_JOINT_NUM, jbxwl::NiJointName(), CBaseFrameTool::posVect, and CBaseFrameTool::rotQuat.

Referenced by CNiFileTool::writeJTextData().

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

◆ writeHeader()

void writeHeader ( FILE * fp)
inline

Definition at line 34 of file NiJTextTool.h.

34{ if (fp!=NULL) fprintf(fp, "%s\n", NI_JTXT_FILE_ID);}

References NI_JTXT_FILE_ID.

Referenced by CNiFileTool::write_header().

Here is the caller graph for this function:

Member Data Documentation

◆ jntAngl


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