-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompute_Constraint.cpp
507 lines (488 loc) · 13.8 KB
/
compute_Constraint.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
#include "compute_Constraint.h"
compute_Constraint::
compute_Constraint(int temp_order, int temp_n, int temp_m, int temp_kr, int temp_kpsi)
{
order = temp_order;
n = temp_n;
m = temp_m;
k_r = temp_kr;
k_psi = temp_kpsi;
keyframe = new float *[m+1];
for (int i=0 ;i < m+1 ;i++)
{
keyframe[i] = new float[n];
}
t = new float[m+1];
C1 = new float *[2*m*n];
for (int i=0 ;i < 2*m*n ;i++)
{
C1[i] = new float[n*(order+1)*m];
memset(C1[i],0,sizeof(float)*(n*(order+1)*m));
}
C1_size[0] = 2*m*n;
C1_size[1] = n*(order+1)*m;
b1 = new float[2*m*n];
b1_size[0] = 1;
b1_size[1] = 2*m*n;
int num = 2*m*(n-1)*k_r;
C2 = new float *[num];
for (int i=0 ;i < num ;i++)
{
C2[i] = new float[n*(order+1)*m];
memset(C2[i],0,sizeof(float)*(n*(order+1)*m));
}
C2_size[0] = num;
C2_size[1] = n*(order+1)*m;
b2 = new float[num];
b2_size[0] = 1;
b2_size[1] = num;
// C's row is num of variables
// C's col is num of equations
C_size[1] = C1_size[0] + C2_size[0];
C_size[0] = C1_size[1];//same as C2
C = new float *[C_size[0]];
for (int i=0 ;i < C_size[0] ;i++)
{
C[i] = new float[C_size[1]];
memset(C[i],0,sizeof(float)*(C_size[1]));
}
b_size[0] = 1;
b_size[1] = b1_size[1] + b2_size[1];
b = new float[b_size[1]];
memset(b,0,sizeof(float)*(b_size[1]));
}
compute_Constraint::
~compute_Constraint()
{
for (int i=0 ;i < m+1 ;i++)
{
delete[] keyframe[i];
}
delete[] keyframe;
delete[] t;
for (int i=0 ;i < 2*m*n ;i++)
{
delete[] C1[i];
}
delete[] C1;
delete[] b1;
//for (int i=0 ;i < C2_size[0] ;i++)
//{
//delete[] C2[i];
//}
delete[] C2;
delete[] b2;
//for (int i=0 ;i < C_size[0];i++)
//{
//delete[] C[i];
//}
delete[] C;
delete[] b;
}
bool
compute_Constraint::
compute_waypoint_C(float ** temp_keyframe,float * temp_t) //keyframe m*4 matrix
{
int i,j,k;
for (i=0 ;i < m+1 ;i++)
{
t[i] = temp_t[i];
for (j=0 ;j < n ;j++)
{
keyframe[i][j] = temp_keyframe[i][j];
}
}
float *waypoint;
waypoint = new float [4];
float *values;
values = new float [order+1];
for (i=0 ;i < m ;i++)
{
waypoint = keyframe[i];
//printf("waypoint ");
//print_Vector(waypoint,4);
if(i == 0) // Initial and Final Position
{ // Initial
//memset(values,0,sizeof(float)*(order+1));
for (j=0 ;j<(order+1) ;j++)
{
// computation of polynomials
values[j] = pow(t[i],(order-j));
}
for (k=0 ;k<n ;k++ )
{
for (j=0 ;j<(order+1) ;j++)
{
C1[k][k*(order+1) + j] = values[j];
}
}
for (j=0 ;j<n ;j++ )
{
b1[j]=waypoint[j];
}
// Final
for (j=0 ;j<(order+1) ;j++)
{
// computation of polynomials
values[j] = pow(t[m],(order-j));
}
for (k=0 ;k<n ;k++ )
{
for (j=0 ;j<(order+1) ;j++)
{
C1[k+n][(m-1)*(order+1)*n + k*(order+1) + j] = values[j];
}
}
for (j=0 ;j<n ;j++)
{
b1[n+j] = waypoint[j];
}
}
else
{
//Elsewhere
for (j=0 ;j<(order+1) ;j++)
{
// computation of polynomials
values[j] = pow(t[i],(order-j));
}
for (k=0 ;k<n ;k++ )
{
for (j=0 ;j<(order+1) ;j++)
{
C1[k + 2*n*i][(i-1)*(order+1)*n + k*(order+1) + j] = values[j];
}
}
for (j=0 ;j<n ;j++)
{
b1[2*n*i + j] = waypoint[j];
}
for (k=0 ;k<n ;k++ )
{
for (j=0 ;j<(order+1) ;j++)
{
C1[k + 2*n*i+n][(i)*(order+1)*n + k*(order+1) + j] = values[j];
}
}
for (j=0 ;j<n ;j++)
{
b1[2*n*i + n+j] = waypoint[j];
}
}
}
//printf("C1 ");
//print_Matrix(C1,2*m*n,m*(order+1)*n);
//printf("b1 ");
//print_Vector(b1,2*m*n);
delete[] waypoint;
delete[] values;
return true;
}
bool
compute_Constraint::
compute_pos_D_C(float temp_eps)
{
int num = 2*m*(n-1)*k_r;
for (int i=0 ;i < num ;i++)
{
b2[i] = temp_eps;
}
//int i,j,k;
// constraintData.m
bool *** C_r; // constraintData_r false for 0 : true for eps
C_r = new bool **[m];
for (int i = 0;i < m;i++)
{
C_r[i] = new bool *[k_r];
for (int j=0;j<k_r;j++)
{
C_r[i][j] = new bool [3];
memset(C_r[i][j],0,sizeof(bool)*3);
}
}
//velocity
if(k_r >= 1)
{
for (int i = 0;i < 3;i ++)
{
C_r[0][0][i] = false; //At starting position
C_r[0][1][i] = false; //At starting position
C_r[0][2][i] = false; //At starting position
C_r[1][2][i] = false; //At starting position
C_r[2][2][i] = false; //At starting position
C_r[3][2][i] = false; //At starting position
}
for (int i = 1;i < m;i ++)
{
C_r[i][0][0] = true; // x,y velocities
C_r[i][0][1] = true;
C_r[i][0][2] = true; // z velocities
}
}
//acceleration
if(k_r >= 2)
{
C_r[0][1][2] = false; //At starting position
for (int i = 1;i < m;i ++)
{
C_r[i][1][0] = true; // x,y velocities
C_r[i][1][1] = true;
C_r[i][1][2] = true; // z velocities
}
}
//jerk
//snap
bool ** C_psi; // constraintData_psi
C_psi = new bool *[m];
for (int i = 0;i < m;i++)
{
C_psi[i] = new bool [k_psi];
memset(C_psi[i],0,sizeof(bool)*k_psi);
}
//velocity
if(k_psi >= 1)
{
C_psi[0][0] = false;
}
//acceleration
//jerk
//snap
float values[order+1];
bool continuity[n-1];
for (int i = 0;i < m;i++)
{
for (int k = 0;k < k_r;k++)
{
if(i == 0)
{
// Initial
for (int j = 0;j < order+1;j++)
{
if((j+k+1)>order)
{
values[j] = 0;
}
else
{
int tempcoeffs = (order-j);
for (int time_coeffs = 1; time_coeffs<=k; time_coeffs++)
{
tempcoeffs *= (order-j-time_coeffs);
}
values[j] = tempcoeffs*pow(t[i],(order-j-k-1));
}
}
//printf("Values ");
//print_Vector(values,order+1);
for (int l_con = 0;l_con < (n-1);l_con++)
{
continuity[l_con] = C_r[i][k][l_con];
if(continuity[l_con])
{
for (int j = 0;j < order+1;j++)
{
C2[l_con+k*(n-1)][l_con*(order+1)+j] = values[j];
C2[l_con+k*(n-1)][(m-1)*(order+1)*n + l_con*(order+1)+j] = -values[j];
}
b2[l_con+k*(n-1)] = 0;
}
else
{
for (int j = 0;j < order+1;j++)
{
C2[l_con+k*(n-1)][l_con*(order+1)+j] = values[j];
}
b2[l_con+k*(n-1)] = (C_r[i][k][l_con])? temp_eps:0.0;
}
}
// Final
for (int j = 0;j < order+1;j++)
{
if((j+k+1)>order)
{
values[j] = 0;
}
else
{
int tempcoeffs = (order-j);
for (int time_coeffs = 1; time_coeffs<=k; time_coeffs++)
{
tempcoeffs *= (order-j-time_coeffs);
}
values[j] = tempcoeffs*pow(t[i],(order-j-k-1));
}
}
for (int l_con = 0;l_con < (n-1);l_con++)
{
if(!continuity[l_con])
{
for (int j = 0;j < order+1;j++)
{
C2[l_con+k*(n-1)+(n-1)*k_r][(m-1)*(order+1)*n + l_con*(order+1)+j] = values[j];
}
b2[l_con+k*(n-1)+(n-1)*k_r] = (C_r[i][k][l_con])? temp_eps:0.0;
}
}
}
else
{ // Elsewhere
for (int j = 0;j < order+1;j++)
{
if((j+k+1)>order)
{
values[j] = 0;
}
else
{
int tempcoeffs = (order-j);
for (int time_coeffs = 1; time_coeffs<=k; time_coeffs++)
{
tempcoeffs *= (order-j-time_coeffs);
}
values[j] = tempcoeffs*pow(t[i],(order-j-k-1));
}
}
for (int l_con = 0;l_con < (n-1);l_con ++)
{
continuity[l_con] = C_r[i][k][l_con];
if (continuity[l_con])
{
for (int j = 0;j < order+1;j++)
{
C2[l_con + k*(n-1) + 2*i*(n-1)*k_r][(i-1)*(order+1)*n + l_con*(order+1)+j] = values[j];
C2[l_con + k*(n-1) + 2*i*(n-1)*k_r][i*(order+1)*n + l_con*(order+1)+j] = -values[j];
}
b2[l_con + k*(n-1) + 2*i*(n-1)*k_r] = 0;
}
else
{
for (int j = 0;j < order+1;j++)
{
C2[l_con + k*(n-1) + 2*i*(n-1)*k_r][(i-1)*(order+1)*n + l_con*(order+1)+j] = values[j];
C2[l_con + k*(n-1) + 2*i*(n-1)*k_r + (n-1)*k_r][i*(order+1)*n + l_con*(order+1)+j] = values[j];
}
b2[l_con + k*(n-1) + 2*i*(n-1)*k_r] = (C_r[i][k][l_con])? temp_eps:0.0;
b2[l_con + k*(n-1) + 2*i*(n-1)*k_r + (n-1)*k_r] = (C_r[i][k][l_con])? temp_eps:0.0;
}
}
}
}
}
//printf("C2 ");
//print_Matrix(C2,num,n*(order+1)*m);
//printf("b2 ");
//print_Vector(b2,num);
for (int i = 0;i < m;i++)
{
for (int j=0;j < k_r;j++)
{
delete[] C_r[i][j];
}
delete[] C_r[i];
}
delete[] C_r;
for (int i = 0;i < m;i++)
{
delete[] C_psi[i];
}
delete[] C_psi;
return true;
}
void
compute_Constraint::
print_Matrix(float **sth,int row,int col)
{
printf("Matrix:\n");
for(int i=0 ;i < row; i++)
{
printf("| ");
for(int j=0 ;j < col; j++)
{
printf("%.2f ",sth[i][j]);
}
printf("|\n");
}
}
void
compute_Constraint::
print_Vector(float *sth,int length)
{
printf("Vector:\n");
printf("| ");
for(int i=0 ;i < length; i++)
{
printf("%.2f ",sth[i]);
}
printf("|\n");
}
void
compute_Constraint::
print_C()
{
for(int i=0; i < C_size[0]; i++)
{
for(int j=0; j < C_size[1]; j++)
printf("%.2f ",C[i][j]);
printf("\n");
}
}
void
compute_Constraint::
print_b()
{
for(int j=0; j < b_size[1]; j++)
printf("%.2f ",b[j]);
printf("\n");
}
void
compute_Constraint::
combine_Cb()
{
// C
// C1
float max_C = -1;
float min_C = 1;
float max_b = -1;
float min_b = 1;
printf("start combine\n");
for(int i=0; i < C1_size[0]; i++)
{
for(int j=0; j < C1_size[1]; j++)
{
C[j][i] = C1[i][j];
max_C = (C[j][i] > max_C)? C[j][i]:max_C;
min_C = (C[j][i] < min_C)? C[j][i]:min_C;
}
}
// C2
for(int i=0; i < C2_size[0]; i++)
{
for(int j=0; j < C2_size[1]; j++)
{
int row_C = i+C1_size[0];
C[j][row_C] = C2[i][j];
max_C = (C[j][row_C] > max_C)? C[j][row_C]:max_C;
min_C = (C[j][row_C] < min_C)? C[j][row_C]:min_C;
}
}
printf("C done\n");
// b
// b1
for(int i=0; i < b1_size[1]; i++)
{
b[i] = b1[i];
max_b = (b[i] > max_b)? b[i]:max_b;
min_b = (b[i] < min_b)? b[i]:min_b;
}
// b2
for(int i=0; i < b2_size[1]; i++)
{
int row_b = i+b1_size[1];
b[row_b] = b2[i];
max_b = (b[row_b] > max_b)? b[row_b]:max_b;
min_b = (b[row_b] < min_b)? b[row_b]:min_b;
}
printf("b done\n");
printf("C[%d][%d] combine done \n in C max: %.2f min: %.2f \n",C_size[0],C_size[1],max_C,min_C);
printf("b[%d][%d] combine done \n in b max: %.2f min: %.2f \n",b_size[0],b_size[1],max_b,min_b);
}