JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
NiJTextTool.cpp
Go to the documentation of this file.
1
2#include "tools++.h"
3#include "NiJTextTool.h"
4
5
6using namespace jbxl;
7using namespace jbxwl;
8
9
11// CNiJTextTool Class
12
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}
19
20
21
23{
24 DEBUG_INFO("DESTRUCTOR: CNiJTextTool\n");
25
26 free_data();
27}
28
29
30
32{
34
35 ::freeNull(jntAngl);
36}
37
38
39
41{
42 free_data();
43}
44
45
46
48//
49
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}
201
202
203
204void CNiJTextTool::writeCurrentData(FILE* fp, unsigned short msec)
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}
223
224
225
226void CNiJTextTool::setPosVect(Vector<double>* pos, NiSDK_Lib lib, BOOL mirror)
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}
248
249
250
251void CNiJTextTool::setRotQuat(Quaternion<double>* rot, NiSDK_Lib lib, BOOL mirror)
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}
276
277
278
279void CNiJTextTool::setJntAngl(double* agl, NiSDK_Lib lib, BOOL mirror)
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}
304
305
306
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}
347
#define NI_TOTAL_JOINT_NUM
#define Ni2SDKJointNum(j, l)
#define NI_JTXT_FILE_ID
Definition NiJointsTool.h:9
NiJointData * jointsData
void clearVectorData(int jnum)
void clearJointsData(int jnum)
Vector< double > * posVect
unsigned int frames_num
NiFrameData * framesData
Quaternion< double > * rotQuat
void writeCurrentData(FILE *fp, unsigned short msec)
virtual BOOL readFile(FILE *fp)
virtual NiJointData * getJointsData(int frmnum, int fps)
virtual ~CNiJTextTool(void)
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)
NiFrameData * makeFramesData(int frame, int joint_num, int *frame_num)
std::string NiJointName(int n)
int NiSDKMirrorJointNum(int joint, NiSDK_Lib lib)
NiSDK_Lib
Definition NiToolWin.h:35
int NiJointNum(char *name)
NiJointData * jdat
Quaternion< double > quat
Vector< double > vect