Newer
Older
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
/*
* Utility functions for szgPartiview.
* Stuart Levy, slevy@ncsa.uiuc.edu
* National Center for Supercomputing Applications,
* University of Illinois 2001.
* This file is part of partiview, released under the
* Illinois Open Source License; see the file LICENSE.partiview for details.
*/
#include <stdio.h>
#include <stdlib.h>
#ifdef _WIN32
#include "winjunk.h"
#endif
#ifdef __APPLE__
#include <OpenGL/gl.h>
#else
#include <GL/gl.h> /* for GLuint */
#endif
#include "geometry.h"
#include "shmem.h"
#include <string.h>
#include <stdarg.h>
#include <math.h>
#include <errno.h>
#include <signal.h>
#include "specks.h"
#include "partiviewc.h"
#include "szgPartiview.h"
#include <ctype.h>
#undef isspace /* hack for irix 6.5 */
#undef isdigit
/* Handle pick results */
void specks_picker( void *view, int nhits, int nents, GLuint *hitbuf, void *vview )
{
#if 0
struct stuff *st;
unsigned int bestz = ~0u;
struct stuff *bestst = NULL;
struct specklist *bestsl;
int bestspeckno;
int id, bestid = -1;
Point bestpos, wpos, cpos;
int centerit = Fl::event_state(FL_SHIFT);
for(id = 0; id < MAXSTUFF; id++) {
if((st = stuffs[id]) == NULL) continue;
if(specks_partial_pick_decode( st, id, nhits, nents, hitbuf,
&bestz, &bestsl, &bestspeckno, &bestpos )) {
bestst = st;
bestid = id;
}
}
if(bestst) {
char fmt[1024], wpostr[80];
char attrs[1024];
vtfmpoint( &wpos, &bestpos, view->To2w( bestid ) );
if(memcmp( &wpos, &bestpos, sizeof(wpos) )) {
sprintf(wpostr, " (w%g %g %g)", wpos.x[0],wpos.x[1],wpos.x[2]);
} else {
wpostr[0] = '\0';
}
vtfmpoint( &cpos, &wpos, view->Tw2c() );
strcpy(fmt, bestsl->bytesperspeck <= SMALLSPECKSIZE(MAXVAL)
? "[g%d]%sPicked %g %g %g%s%.0s @%g (of %d)%s"
: "[g%d]%sPicked %g %g %g%s \"%s\" @%g (of %d)%s");
attrs[0] = '\0';
struct speck *sp = NextSpeck( bestsl->specks, bestsl, bestspeckno);
if(bestsl->text == NULL && bestst->vdesc[bestst->curdata][0].name[0] != '\0') {
strcpy(attrs, ";");
for(int i = 0; i < MAXVAL && bestst->vdesc[bestst->curdata][i].name[0]; i++) {
int pos = strlen(attrs);
snprintf(attrs+pos, sizeof(attrs)-pos, " %s %g",
bestst->vdesc[bestst->curdata][i].name, sp->val[i]);
}
}
if(bestsl->text != NULL) {
snprintf(attrs+strlen(attrs), sizeof(attrs)-strlen(attrs),
" \"%s\"", bestsl->text);
}
msg(fmt, bestid, centerit?"*":"",
bestpos.x[0],bestpos.x[1],bestpos.x[2], wpostr,
bestsl->text ? bestsl->text : sp->title,
vlength( &cpos ), nhits,
attrs );
if(centerit) {
view->center( &wpos );
if(ppui.censize > 0) view->redraw();
}
} else {
msg("Picked nothing (%d hits)", nhits);
}
#endif
}
void parti_set_alias( struct stuff *st, const char *alias ) {
if(st == NULL) return;
if(alias == NULL) alias = "";
if(st->alias) free(st->alias);
st->alias = strdup(alias);
}
void parti_allobjs( int argc, char *argv[], int verbose ) {
struct stuff *st = ppszg.st;
if(parti_parse_args( &st, argc, argv, NULL ))
return;
PvScene *scene = ppszg.scene;
if(scene == 0)
return;
for(int i = 0; i < scene->nobjs(); i++) {
st = scene->objstuff(i);
if(st) {
const char *onoff = st->useme ? "on" : "off";
if(verbose) {
if(st->alias) msg("g%d=%s: (%s)", i, st->alias, onoff);
else msg("g%d: (%s)", i, onoff);
}
specks_parse_args( &st, argc, argv );
}
}
}
void parti_redraw() {
// nop -- szg is always redrawing.
}
void parti_update() {
// nop too
}
void parti_censize( float newsize ) {
ppszg.scene->censize( newsize );
}
float parti_getcensize() {
return ppszg.scene->censize();
}
char *parti_bgcolor( const char *rgb ) {
static char bgc[16];
Point bgcolor;
bgcolor = ppszg.bgcolor;
if(rgb) {
if(1 == sscanf(rgb, "%f%*c%f%*c%f", &bgcolor.x[0], &bgcolor.x[1], &bgcolor.x[2]))
bgcolor.x[1] = bgcolor.x[2] = bgcolor.x[0];
ppszg.bgcolor = bgcolor;
}
sprintf(bgc, "%.3f %.3f %.3f", bgcolor.x[0],bgcolor.x[1],bgcolor.x[2]);
return bgc;
}
char *parti_stereo( const char *ster )
{
return "nevermind";
}
void parti_detachview( const char *how ) {
// nop.
}
char *parti_winsize( CONST char *newsize ) {
static char cursize[24];
sprintf(cursize, "314x159");
return cursize;
}
char *parti_clip( const char *nearclip, const char *farclip ) {
float n, f;
int changed = 0;
if(nearclip != NULL && sscanf(nearclip, "%f", &n) > 0) {
ppszg.nearclip( n );
changed = 1;
}
if(farclip != NULL && sscanf(farclip, "%f", &f) > 0) {
ppszg.farclip( n );
changed = 1;
}
if(changed) {
// XXX notify Syzygy of new clipping planes
}
static char why[16];
sprintf(why, "clip %.4g %.4g", ppszg.nearclip(), ppszg.farclip());
return why;
}
int parti_move( const char *onoffobj, struct stuff **newst ) {
#if 0
XXX this might be nice to implement -- let navigation change an object's placement
rather than moving the camera
int objno = -1;
if(onoffobj) {
if(!strcmp(onoffobj, "off"))
ppui.view->movingtarget(0);
else if(!strcmp(onoffobj, "on"))
ppui.view->movingtarget(1);
else if(sscanf(onoffobj, "g%d", &objno) > 0 ||
sscanf(onoffobj, "%d", &objno) > 0) {
ppui.view->movingtarget(1);
objno = parti_object( onoffobj, newst, 0 );
} else {
msg("move {on|off|g<N>} -- select whether navigation can move sub-objects");
}
}
return ppui.view->movingtarget() ? ppui.view->target() : -1;
#endif
}
float parti_pickrange( char *newrange ) {
#if 0
XXX determines accuracy needed when picking
if(newrange) {
if(sscanf(newrange, "%f", &ppui.pickrange))
ppszg.view->picksize( 4*ppui.pickrange, 4*ppui.pickrange );
}
return ppui.pickrange;
#endif
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
}
static int endswith(char *str, char *suf) {
if(str==NULL || suf==NULL) return 0;
int len = strlen(str);
int suflen = strlen(suf);
return suflen <= len && memcmp(suf, str+len-suflen, suflen)==0;
}
int parti_snapset( char *fname, char *frameno, char *imgsize )
{
int len;
#if unix
static char suf[] = ".%03d.ppm.gz";
#else
static char suf[] = ".%03d.ppm";
#endif
int needsuf;
if(fname) {
len = strlen(fname);
needsuf = strchr(fname, '%')!=NULL || fname[0] == '|'
|| endswith(fname, ".tif") || endswith(fname, ".tiff")
|| endswith(fname, ".sgi") || endswith(fname, ".png")
|| endswith(fname, ".jpeg") || endswith(fname, ".jpg")
|| endswith(fname, ".ppm") || endswith(fname, ".gz")
? 0 : sizeof(suf)-1;
if(ppszg.snapfmt) Free(ppszg.snapfmt);
ppszg.snapfmt = NewN(char, len+needsuf+1);
sprintf(ppszg.snapfmt, needsuf ? "%s%s" : "%s", fname, suf);
}
if(frameno)
sscanf(frameno, "%d", &ppszg.snapfno);
return ppszg.snapfno;
}
int parti_snapshot( char *snapinfo )
{
char tfcmd[10240], *tftail;
int fail;
#if !WIN32 /* if unix */
static char defsnap[] = "snap.%03d.sgi";
static char prefix[] = "|convert ppm:- ";
static char gzprefix[] = "|gzip >";
#else
static char defsnap[] = "snap.%03d.ppm";
static char prefix[] = "";
#endif
if(snapinfo) snapinfo[0] = '\0';
if(ppszg.snapfmt == NULL) {
ppszg.snapfmt = NewN(char, sizeof(defsnap)+1);
strcpy(ppszg.snapfmt, defsnap);
}
if(ppszg.snapfmt[0] == '|' || endswith(ppszg.snapfmt, ".ppm")) {
tfcmd[0] = '\0';
#if unix
} else if(endswith(ppszg.snapfmt, ".ppm.gz")) {
strcpy(tfcmd, gzprefix);
#endif
} else {
strcpy(tfcmd, prefix);
}
tftail = tfcmd+strlen(tfcmd);
sprintf(tftail, ppszg.snapfmt, ppszg.snapfno);
// Ensure window's image is up-to-date
// parti_update();
#if 0
XXX might be nice to implement this someday, somehow.
Probably would need to be a flag read at the end of PvScene::draw()
int y, h = ppui.view->h(), w = ppui.view->w();
char *buf = (char *)malloc(w*h*3);
if(!ppui.view->snapshot( 0, 0, w, h, buf )) {
free(buf);
msg("snapshot: couldn't read from graphics window?");
return -2;
}
FILE *p;
#if unix
void (*oldpipe)(int);
int popened = tfcmd[0] == '|';
if(popened) {
oldpipe = signal(SIGPIPE, SIG_IGN);
p = popen(tfcmd+1, "w");
} else
#endif
p = fopen(tfcmd, "wb");
fprintf(p, "P6\n%d %d\n255\n", w, h);
for(y = h; --y >= 0 && fwrite(&buf[w*3*y], w*3, 1, p) > 0; )
;
free(buf);
fflush(p);
fail = ferror(p);
#if unix
if(popened) {
pclose(p);
signal(SIGPIPE, oldpipe);
}
else
#endif
fclose(p); /* win32 */
if(y >= 0 || fail) {
msg("snapshot: Error writing to %s", tfcmd);
return -1;
}
if(snapinfo)
sprintf(snapinfo, "%.1000s [%dx%d]", tftail, w, h);
#endif
return ppszg.snapfno++;
}
const char *parti_get_alias( struct stuff *st ) {
return st && st->alias ? st->alias : "";
}
/*
* This is how new objects get created -- via "object g<N>" command.
*/
int parti_object( const char *objname, struct stuff **newst, int create ) {
int i = -1;
bool useme = false;
int gname = 0;
char c;
PvObject *ob;
if(newst)
*newst = ppszg.st;
if(objname == NULL) {
return parti_idof( ppszg.st );
}
if(!strcmp(objname, "c") || !strcmp(objname, "c0")) {
return OBJNO_NONE;
}
c = '=';
if(( /* accept gN or gN=... or N or N=... or [gN] */
((sscanf(objname, "g%d%c", &i, &c) > 0 || sscanf(objname, "%d%c", &i, &c) > 0) && c == '=')
|| sscanf(objname, "[g%d]", &i) > 0)) {
gname = 1;
ob = ppszg.scene->obj( i );
if(ob==0 || ob->objstuff() == 0) {
if(create) {
ob = ppszg.scene->addobj( objname, i );
useme = true;
}
} else {
// Need to create this one
useme = true;
}
} else {
for(i = ppszg.scene->nobjs(); --i >= 0; ) {
ob = ppszg.scene->obj(i);
struct stuff *st = ob->objstuff();
if(st && st->alias && 0==strcmp(st->alias, objname)) {
useme = true;
break;
}
}
}
if(i == -1 && create && !gname) {
PvObject *ob = ppszg.scene->addobj( objname );
if(!gname)
parti_set_alias(ob->objstuff(), objname);
useme = true;
}
if(useme && ob->objstuff() != NULL) {
ppszg.st = ob->objstuff();
if(newst) *newst = ppszg.st;
return ob->id();
}
msg("Don't understand object name \"%s\"", objname);
return OBJNO_NONE;
}
int parti_idof( struct stuff *st ) {
for(int i = 0; i < ppszg.scene->nobjs(); i++) {
if(ppszg.scene->objstuff(i) == st)
return i;
}
return OBJNO_NONE;
}
float parti_focal( CONST char *newfocal ) {
float focallen;
if(newfocal && sscanf(newfocal, "%f", &focallen) > 0)
ppszg.focallen( focallen );
return ppszg.focallen();
}
int parti_focalpoint( int argc, char **argv, Point *focalpoint, float *minfocallen )
{
#if 0
int ison;
Point fpt;
float mlen;
int changed = 0;
ison = ppui.view->focalpoint( &fpt, &mlen );
if(argc > 0) {
if(isalpha(argv[0][0])) {
int nowon = getbool(argv[0], -1);
if(nowon < 0)
argc = 0;
else {
ison = nowon;
changed = 1;
argc--;
argv++;
}
}
if(getfloats( &fpt.x[0], 3, 0, argc, argv ) ||
getfloats( &mlen, 1, 3, argc, argv ) ||
changed)
ppui.view->focalpoint( &fpt, mlen, ison );
}
ison = ppui.view->focalpoint( &fpt, &mlen );
if(focalpoint)
*focalpoint = fpt;
if(minfocallen)
*minfocallen = mlen;
return ison;
#endif
return 0;
}
float parti_fovy( CONST char *newfovy ) {
// stub
return 42;
}
void parti_center( CONST Point *cen ) {
ppszg.scene->center( cen );
}
void parti_seto2w( struct stuff *, int objno, const Matrix *o2w ) {
PvObject *ob = ppszg.scene->obj( objno );
if(ob)
ob->To2w( o2w );
}
void parti_geto2w( struct stuff *, int objno, Matrix *o2w ) {
PvObject *ob = ppszg.scene->obj( objno );
if(ob)
*o2w = *ob->To2w();
}
void parti_parent( struct stuff *st, int parent ) {
PvObject *ob = ppszg.scene->obj( parti_idof( st ) );
if(ob)
ob->parent( parent );
}
void parti_nudge_camera( Point *disp ) {
Matrix Tc2w, Tdisp, Tnewc2w;
parti_getc2w( &Tc2w );
mtranslation( &Tdisp, disp->x[0], disp->x[1], disp->x[2] );
mmmul( &Tnewc2w, &Tc2w,&Tdisp );
parti_setc2w( &Tnewc2w );
}
void subcam_matrices( Subcam *sc, Matrix *Tc2subc, float subclrbt[4] )
{
Matrix Ry, Rx, Rz, Rflop, Tfy, Tfyx;
mrotation( &Rflop, 90, 'x' );
mrotation( &Ry, -sc->azim, 'y' );
mrotation( &Rx, -sc->elev, 'x' );
mrotation( &Rz, -sc->roll, 'z' );
mmmul( &Tfy, &Rflop, &Ry );
mmmul( &Tfyx, &Tfy, &Rx );
mmmul( Tc2subc, &Tfyx, &Rz );
subclrbt[0] = -tanf( sc->nleft * (M_PI/180) );
subclrbt[1] = tanf( sc->right * (M_PI/180) );
subclrbt[2] = -tanf( sc->ndown * (M_PI/180) );
subclrbt[3] = tanf( sc->up * (M_PI/180) );
}
int parti_make_subcam( CONST char *name, int argc, char **params )
{
Subcam tsc;
int index;
int i, any = 0;
if(name == NULL || params == NULL)
return 0;
index = parti_subcam_named( name );
if(index > 0)
tsc = ppszg.sc[index-1];
for(i = 0; i < 7 && i < argc; i++) {
char junk;
int ok = sscanf(params[i], "%f%c", ((float *)&tsc.azim) + i, &junk);
if(ok == 1) any++;
else if(0!=strcmp(params[i], ".") && 0!=strcmp(params[i], "-")) {
msg("subcam %s: what's ``%s''?", name, params[i]);
return 0;
}
}
if(tsc.nleft + tsc.right == 0 || tsc.ndown + tsc.up == 0) {
msg("subcam %s -- degenerate?", name);
return 0;
}
if(any == 0)
return index;
if(index == 0) {
if(any != 7) {
msg("new subcam %s: expected 7 parameters", name);
return 0;
}
index = ppszg.sc.size();
ppszg.sc.reserve( index+1 );
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
}
sprintf(tsc.name, "%.7s", name);
ppszg.sc[index] = tsc;
return index+1;
}
int parti_subcam_named( CONST char *name )
{
for(int i = 0; i < ppszg.sc.size(); i++)
if(0==strncmp(ppszg.sc[i].name, name, 7))
return i+1;
return 0;
}
int parti_select_subcam( int index )
{
#if 0
if(index <= 0 || index > ppszg.sc.size())
return ppszg.subcam;
ppszg.subcam = index;
if(index == 0) {
ppszg.view->usesubcam(0);
parti_redraw();
return 0;
}
Subcam *tsc = &ppszg.sc[index-1];
Matrix Tc2subc;
float subclrbt[4];
subcam_matrices( tsc, &Tc2subc, subclrbt );
ppui.view->Tc2subc( &Tc2subc );
ppui.view->subc_lrbt( subclrbt );
ppui.view->usesubcam(1);
parti_redraw();
return index;
#endif
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
}
char *parti_get_subcam( int index, char *paramsp )
{
if(paramsp) paramsp[0] = '\0';
if(index <= 0 || index > ppszg.sc.size()) return "";
Subcam *sc = &ppszg.sc[index-1];
if(sc->name[0] == '\0') return "";
if(paramsp)
sprintf(paramsp, "%g %g %g %g %g %g %g",
sc->azim, sc->elev, sc->roll,
sc->nleft, sc->right, sc->ndown, sc->up);
return sc->name;
}
int parti_current_subcam( void )
{
return 0;
}
char *parti_subcam_list()
{
static char *what = 0;
char *tail;
static char blank[2] = "";
what[0] = '\0';
int i, len;
for(i = 0, len = 1; i < ppszg.sc.size(); i++)
len += 1 + strlen(ppszg.sc[i].name);
delete what;
what = new char [len];
for(i = 0, tail = what; i < ppszg.sc.size(); i++) {
if(ppszg.sc[i].name[0] != '\0') {
sprintf(tail, " %s", ppszg.sc[i].name);
tail += strlen(tail);
}
}
return((tail==what) ? blank : what+1);
}
void parti_setpath( int nframes, struct wfframe *frames, float fps = 30, float *focallens = 0 ) {
struct wfpath *path = &ppszg.path;
if(path->frames != NULL)
free(path->frames);
if(path->focallens != NULL)
free(path->focallens);
path->frames = NULL;
path->fps = (fps <= 0 ? 30.0 : fps);
path->nframes = nframes;
path->frame0 = 1;
path->curframe = path->frame0;
if(nframes > 0) {
path->frames = NewN( struct wfframe, nframes );
memcpy( path->frames, frames, nframes*sizeof(struct wfframe) );
if(focallens != 0) {
path->focallens = NewN( float, nframes );
memcpy(path->focallens, focallens, nframes*sizeof(float) );
}
}
}
int parti_readpath( const char *fname ) {
int nframes, room;
int first = 1;
struct wfframe *fr, *cf;
FILE *f;
char line[256], *cp;
int lno = 0;
int got;
float *focallens;
int nfocallens = 0;
if(fname == NULL || (f = fopen(fname, "r")) == NULL) {
msg("readpath: %.200s: cannot open: %s", fname, strerror(errno));
return 0;
}
nframes = 0;
room = 2000;
fr = NewN( struct wfframe, room );
focallens = NewN( float, room );
while(fgets(line, sizeof(line), f) != NULL) {
lno++;
for(cp = line; isspace(*cp); cp++)
;
if(*cp == '#' || *cp == '\0') continue;
if(nframes >= room) {
room *= 3;
fr = RenewN( fr, struct wfframe, room );
focallens = RenewN( focallens, float, room );
}
cf = &fr[nframes];
got = sscanf(cp, "%f%f%f%f%f%f%f%f",
&cf->tx,&cf->ty,&cf->tz, &cf->rx,&cf->ry,&cf->rz, &cf->fovy, &focallens[nframes]);
if(got < 7) {
msg( "readpath: %.200s line %d: expected tx ty tz rx ry rz fovy [focallen], got: %.120s",
fname, lno, line);
fclose(f);
return 0;
}
if(got == 8)
nfocallens++;
nframes++;
}
fclose(f);
parti_setpath( nframes, fr, 30, nfocallens==nframes ? focallens : 0 );
Free(fr);
Free(focallens);
parti_setframe( 1 );
msg("%d frames in %.200s", nframes, fname);
return 1;
}
void wf2c2w( Matrix *Tcam, const struct wfframe *wf )
{
Matrix Rx, Ry, Rz, T;
mtranslation( &T, wf->tx, wf->ty, wf->tz );
mrotation( &Ry, wf->ry, 'y' );
mrotation( &Rz, wf->rz, 'z' );
mrotation( &Rx, wf->rx, 'x' );
mmmul( Tcam, &Rz, &Rx );
mmmul( Tcam, Tcam, &Ry );
mmmul( Tcam, Tcam, &T ); /* so Tcam = Rz * Rx * Ry * T */
}
int parti_frame( CONST char *frameno, CONST struct wfpath **pp ) {
if(pp != NULL)
*pp = &ppszg.path;
if(frameno != NULL) {
parti_play( "stop" );
return parti_setframe( atoi(frameno) );
}
return (ppszg.path.frames == NULL || ppszg.path.nframes <= 0)
? -1 : ppszg.path.curframe;
}
int parti_setframe( int fno ) {
struct wfpath *path = &ppszg.path;
if(path->frames == NULL || path->nframes <= 0)
return -1;
if(fno < path->frame0)
fno = path->frame0;
else if(fno >= path->frame0 + path->nframes)
fno = path->frame0 + path->nframes - 1;
Matrix Tc2w;
wf2c2w( &Tc2w, &path->frames[fno - path->frame0] );
parti_setc2w( &Tc2w );
// ... angyfov( path->frames[fno - path->frame0].fovy );
path->curframe = fno;
if(path->focallens != NULL)
ppszg.focallen( path->focallens[fno - path->frame0] );
return fno - path->frame0;
}
void parti_center( Point *cen )
{
ppszg.scene->center( cen );
}
void parti_getcenter( Point *cen ) {
*cen = *ppszg.scene->center();
}
void parti_set_speed( struct stuff *st, double speed ) {
// nop
}
void parti_set_timebase( struct stuff *st, double timebase ) {
char str[32];
ppszg.timebasetime = timebase;
sprintf(str, "%.16lg", timebase);
parti_set_timestep( st, clock_time( st->clk ) );
}
void parti_set_timestep( struct stuff *st, double timestep ) {
// nop
}
void parti_set_fwd( struct stuff *st, int fwd ) {
// nop
}