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
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
567
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
607
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
|
#include "3dc.h"
#include "inline.h"
/*
externs for commonly used global variables and arrays
*/
extern int ScanDrawMode;
/*
General System Globals
*/
SCENE Global_Scene = 0;
/*
Screen Descriptor Block
*/
SCREENDESCRIPTORBLOCK ScreenDescriptorBlock;
/*
View Descriptor Blocks
*/
int NumFreeVDBs;
VIEWDESCRIPTORBLOCK *FreeVDBList[maxvdbs];
static VIEWDESCRIPTORBLOCK **FreeVDBListPtr = &FreeVDBList[maxvdbs-1];
int NumActiveVDBs;
VIEWDESCRIPTORBLOCK *ActiveVDBList[maxvdbs];
static VIEWDESCRIPTORBLOCK **ActiveVDBListPtr = &ActiveVDBList[0];
static VIEWDESCRIPTORBLOCK FreeVDBData[maxvdbs];
/* Clip Plane Block */
static CLIPPLANEPOINTS ClipPlanePoints;
extern int GlobalAmbience;
/*
Support Functions
*/
/*
Calculate View Volume Planes from the Clip Boundaries for a VDB
Before doing this, check that the requested boundaries are within those of
the physical sceen. If any boundary transgresses, truncate it and set the
appropriate flag bit.
*/
void VDBClipPlanes(VIEWDESCRIPTORBLOCK *vdb)
{
/* Check Clip Boundaries against the Physical Screen */
/* Check Left Boundary */
if(vdb->VDB_ClipLeft < ScreenDescriptorBlock.SDB_ClipLeft) {
vdb->VDB_ClipLeft = ScreenDescriptorBlock.SDB_ClipLeft;
vdb->VDB_Flags |= ViewDB_Flag_LTrunc;
}
/* Check Right Boundary */
if(vdb->VDB_ClipRight > ScreenDescriptorBlock.SDB_ClipRight) {
vdb->VDB_ClipRight = ScreenDescriptorBlock.SDB_ClipRight;
vdb->VDB_Flags |= ViewDB_Flag_RTrunc;
}
/* Check Up boundary */
if(vdb->VDB_ClipUp < ScreenDescriptorBlock.SDB_ClipUp) {
vdb->VDB_ClipUp = ScreenDescriptorBlock.SDB_ClipUp;
vdb->VDB_Flags |= ViewDB_Flag_UTrunc;
}
/* Check Down boundary */
if(vdb->VDB_ClipDown > ScreenDescriptorBlock.SDB_ClipDown) {
vdb->VDB_ClipDown = ScreenDescriptorBlock.SDB_ClipDown;
vdb->VDB_Flags |= ViewDB_Flag_DTrunc;
}
/* Calculate Width and Height */
/* textprint("current wh = %d, %d\n", vdb->VDB_Width, vdb->VDB_Height); */
/* Width */
vdb->VDB_Width = vdb->VDB_ClipRight - vdb->VDB_ClipLeft;
/* Height */
vdb->VDB_Height = vdb->VDB_ClipDown - vdb->VDB_ClipUp;
#if 0
textprint("new wh = %d, %d\n", vdb->VDB_Width, vdb->VDB_Height);
WaitForReturn();
#endif
/* Set up the Clip Planes */
/* Clip Left */
ClipPlanePoints.cpp1.vx = vdb->VDB_ClipLeft;
ClipPlanePoints.cpp1.vy = vdb->VDB_ClipUp;
ClipPlanePoints.cpp1.vz = NearZ;
ClipPlanePoints.cpp2.vx = vdb->VDB_ClipLeft;
ClipPlanePoints.cpp2.vy = (vdb->VDB_ClipUp + vdb->VDB_ClipDown) / 2;
ClipPlanePoints.cpp2.vz = FarZ;
ClipPlanePoints.cpp3.vx = vdb->VDB_ClipLeft;
ClipPlanePoints.cpp3.vy = vdb->VDB_ClipDown;
ClipPlanePoints.cpp3.vz = NearZ;
MakeClipPlane(vdb, &vdb->VDB_ClipLeftPlane, &ClipPlanePoints);
/* Clip Right */
ClipPlanePoints.cpp1.vx = vdb->VDB_ClipRight;
ClipPlanePoints.cpp1.vy = vdb->VDB_ClipUp;
ClipPlanePoints.cpp1.vz = NearZ;
ClipPlanePoints.cpp2.vx = vdb->VDB_ClipRight;
ClipPlanePoints.cpp2.vy = vdb->VDB_ClipDown;
ClipPlanePoints.cpp2.vz = NearZ;
ClipPlanePoints.cpp3.vx = vdb->VDB_ClipRight;
ClipPlanePoints.cpp3.vy = (vdb->VDB_ClipUp + vdb->VDB_ClipDown) / 2;
ClipPlanePoints.cpp3.vz = FarZ;
MakeClipPlane(vdb, &vdb->VDB_ClipRightPlane, &ClipPlanePoints);
/* Clip Up */
ClipPlanePoints.cpp1.vx = vdb->VDB_ClipLeft;
ClipPlanePoints.cpp1.vy = vdb->VDB_ClipUp;
ClipPlanePoints.cpp1.vz = NearZ;
ClipPlanePoints.cpp2.vx = vdb->VDB_ClipRight;
ClipPlanePoints.cpp2.vy = vdb->VDB_ClipUp;
ClipPlanePoints.cpp2.vz = NearZ;
ClipPlanePoints.cpp3.vx = (vdb->VDB_ClipLeft + vdb->VDB_ClipRight) / 2;
ClipPlanePoints.cpp3.vy = vdb->VDB_ClipUp;
ClipPlanePoints.cpp3.vz = FarZ;
MakeClipPlane(vdb, &vdb->VDB_ClipUpPlane, &ClipPlanePoints);
/* Clip Down */
ClipPlanePoints.cpp1.vx = vdb->VDB_ClipLeft;
ClipPlanePoints.cpp1.vy = vdb->VDB_ClipDown;
ClipPlanePoints.cpp1.vz = NearZ;
ClipPlanePoints.cpp2.vx = (vdb->VDB_ClipLeft + vdb->VDB_ClipRight) / 2;
ClipPlanePoints.cpp2.vy = vdb->VDB_ClipDown;
ClipPlanePoints.cpp2.vz = FarZ;
ClipPlanePoints.cpp3.vx = vdb->VDB_ClipRight;
ClipPlanePoints.cpp3.vy = vdb->VDB_ClipDown;
ClipPlanePoints.cpp3.vz = NearZ;
MakeClipPlane(vdb, &vdb->VDB_ClipDownPlane, &ClipPlanePoints);
/* Clip Z */
vdb->VDB_ClipZPlane.CPB_Normal.vx = 0;
vdb->VDB_ClipZPlane.CPB_Normal.vy = 0;
vdb->VDB_ClipZPlane.CPB_Normal.vz = -ONE_FIXED;
vdb->VDB_ClipZPlane.CPB_POP.vx = 0;
vdb->VDB_ClipZPlane.CPB_POP.vy = 0;
vdb->VDB_ClipZPlane.CPB_POP.vz = vdb->VDB_ClipZ;
}
/*
Make a Clip Plane.
Reverse Project the three Clip Points (overwrite their struct).
Use the first Clip Point as the POP, writing this to the CPB.
Pass the three Clip Points to MakeNormal() specifying the CPB Normal as
the destination.
NOTES
The vdb is passed for the reverse projection.
*/
void MakeClipPlane(
VIEWDESCRIPTORBLOCK *vdb,
CLIPPLANEBLOCK *cpb,
CLIPPLANEPOINTS *cpp)
{
int x, y;
/* Reverse Project the Clip Points */
/* cpp1 */
/* x */
x=cpp->cpp1.vx;
x-=vdb->VDB_CentreX;
x*=cpp->cpp1.vz;
x/=vdb->VDB_ProjX;
cpp->cpp1.vx=x;
/* y */
y=cpp->cpp1.vy;
y-=vdb->VDB_CentreY;
y*=cpp->cpp1.vz;
y/=vdb->VDB_ProjY;
cpp->cpp1.vy=y;
/* cpp2 */
/* x */
x=cpp->cpp2.vx;
x-=vdb->VDB_CentreX;
x*=cpp->cpp2.vz;
x/=vdb->VDB_ProjX;
cpp->cpp2.vx=x;
/* y */
y=cpp->cpp2.vy;
y-=vdb->VDB_CentreY;
y*=cpp->cpp2.vz;
y/=vdb->VDB_ProjY;
cpp->cpp2.vy=y;
/* cpp3 */
/* x */
x=cpp->cpp3.vx;
x-=vdb->VDB_CentreX;
x*=cpp->cpp3.vz;
x/=vdb->VDB_ProjX;
cpp->cpp3.vx=x;
/* y */
y=cpp->cpp3.vy;
y-=vdb->VDB_CentreY;
y*=cpp->cpp3.vz;
y/=vdb->VDB_ProjY;
cpp->cpp3.vy=y;
/* The 1st Clip Point can be the POP */
cpb->CPB_POP.vx=cpp->cpp1.vx;
cpb->CPB_POP.vy=cpp->cpp1.vy;
cpb->CPB_POP.vz=cpp->cpp1.vz;
/* Make CPB_Normal */
MakeNormal(&cpp->cpp1, &cpp->cpp2, &cpp->cpp3, &cpb->CPB_Normal);
}
#if pc_backdrops
/*
Create the projector array used for cylindrically projected backdrops
The array looks like this
unsigned short VDB_ProjectorXOffsets[MaxScreenWidth];
For each centre relative x there is a projector. Using just the x and z
components of the projector an angular offset from the centre (0) can be
calculated using ArcTan().
To calculate a projector one must reverse project each x value at a given
z value. Rather than go on to create the normalised projector vector we can
go straight to the ArcTan() to find the angular offset.
*/
static void CreateProjectorArray(VIEWDESCRIPTORBLOCK *vdb)
{
int sx, x, vx, vz, i, ao;
vz = ONE_FIXED;
sx = vdb->VDB_ClipLeft;
i = 0;
while(sx < vdb->VDB_ClipRight) {
x = sx - vdb->VDB_CentreX;
vx = (x * vz) / vdb->VDB_ProjX;
ao = ArcTan(vx, vz);
vdb->VDB_ProjectorXOffsets[i] = ao;
#if 0
textprint("Pr. Offset %d = %u\n", i, vdb->VDB_ProjectorXOffsets[i]);
WaitForReturn();
#endif
sx++; i++;
}
}
#endif
/*
SetVDB requires a VIEWDESCRIPTORBLOCK
See the actual function code for what each parameter is
*/
void SetVDB(vdb, fl, ty, d, cx,cy, prx,pry, mxp, cl,cr,cu,cd, h1,h2,hc, amb)
VIEWDESCRIPTORBLOCK *vdb;
int fl;
int ty;
int d;
int cx;
int cy;
int prx;
int pry;
int mxp;
int cl;
int cr;
int cu;
int cd;
int h1;
int h2;
int hc;
int amb;
{
/* Initial setup */
vdb->VDB_Flags = fl;
vdb->VDB_ViewType = ty;
/* Ambience */
vdb->VDB_Ambience = amb;
/* KJL 14:30:57 05/14/97 - set globalAmbience here as well */
GlobalAmbience = amb;
/* Width and Height are set by the Clip Boundaries */
if(vdb->VDB_Flags & ViewDB_Flag_FullSize) {
vdb->VDB_Depth = ScreenDescriptorBlock.SDB_Depth;
vdb->VDB_ScreenDepth = ScreenDescriptorBlock.SDB_ScreenDepth;
vdb->VDB_CentreX = ScreenDescriptorBlock.SDB_CentreX;
vdb->VDB_CentreY = ScreenDescriptorBlock.SDB_CentreY;
vdb->VDB_ProjX = ScreenDescriptorBlock.SDB_ProjX;
vdb->VDB_ProjY = ScreenDescriptorBlock.SDB_ProjY;
vdb->VDB_MaxProj = ScreenDescriptorBlock.SDB_MaxProj;
vdb->VDB_ClipLeft = ScreenDescriptorBlock.SDB_ClipLeft;
vdb->VDB_ClipRight = ScreenDescriptorBlock.SDB_ClipRight;
vdb->VDB_ClipUp = ScreenDescriptorBlock.SDB_ClipUp;
vdb->VDB_ClipDown = ScreenDescriptorBlock.SDB_ClipDown;
}
else {
if (ScanDrawMode == ScanDrawDirectDraw)
vdb->VDB_Depth = d;
else
vdb->VDB_Depth = VideoModeType_24;
vdb->VDB_ScreenDepth = ScreenDescriptorBlock.SDB_ScreenDepth;
vdb->VDB_CentreX = cx;
vdb->VDB_CentreY = cy;
vdb->VDB_ProjX = prx;
vdb->VDB_ProjY = pry;
vdb->VDB_MaxProj = mxp;
vdb->VDB_ClipLeft = cl;
vdb->VDB_ClipRight = cr;
vdb->VDB_ClipUp = cu;
vdb->VDB_ClipDown = cd;
if(vdb->VDB_Flags & ViewDB_Flag_AdjustScale) {
vdb->VDB_CentreX =
WideMulNarrowDiv(
vdb->VDB_CentreX,
ScreenDescriptorBlock.SDB_Width,
320);
vdb->VDB_CentreY =
WideMulNarrowDiv(
vdb->VDB_CentreY,
ScreenDescriptorBlock.SDB_Height,
200);
vdb->VDB_ProjX =
WideMulNarrowDiv(
vdb->VDB_ProjX,
ScreenDescriptorBlock.SDB_Width,
320);
vdb->VDB_ProjY =
WideMulNarrowDiv(
vdb->VDB_ProjY,
ScreenDescriptorBlock.SDB_Height,
200);
vdb->VDB_MaxProj =
WideMulNarrowDiv(
vdb->VDB_MaxProj,
ScreenDescriptorBlock.SDB_Width,
320);
vdb->VDB_ClipLeft =
WideMulNarrowDiv(
vdb->VDB_ClipLeft,
ScreenDescriptorBlock.SDB_Width,
320);
vdb->VDB_ClipRight =
WideMulNarrowDiv(
vdb->VDB_ClipRight,
ScreenDescriptorBlock.SDB_Width,
320);
vdb->VDB_ClipUp =
WideMulNarrowDiv(
vdb->VDB_ClipUp,
ScreenDescriptorBlock.SDB_Height,
200);
vdb->VDB_ClipDown =
WideMulNarrowDiv(
vdb->VDB_ClipDown,
ScreenDescriptorBlock.SDB_Height,
200);
}
}
/* Create the clip planes */
/* KJL 10:41:13 04/09/97 - set to constant so the same for all screen sizes! */
vdb->VDB_ClipZ = 64;//vdb->VDB_MaxProj; /* Safe */
VDBClipPlanes(vdb);
#if 0
/* View Angle */
if(vdb->VDB_CentreX > vdb->VDB_CentreY) s = vdb->VDB_CentreX;
else s = vdb->VDB_CentreY;
z = vdb->VDB_MaxProj * 100;
x = (s * z) / vdb->VDB_MaxProj;
vdb->VDB_ViewAngle = ArcTan(x, z);
vdb->VDB_ViewAngleCos = GetCos(vdb->VDB_ViewAngle);
#if 0
textprint("View Angle = %d\n", vdb->VDB_ViewAngle);
WaitForReturn();
#endif
#if pc_backdrops
/* Projector Array */
CreateProjectorArray(vdb);
#endif
/* Hazing & Background Colour */
vdb->VDB_H1 = h1;
vdb->VDB_H2 = h2;
vdb->VDB_HInterval = h2 - h1;
vdb->VDB_HColour = hc;
#endif
}
/*
Initialise the Free VDB List
*/
void InitialiseVDBs(void)
{
VIEWDESCRIPTORBLOCK *FreeVDBPtr = &FreeVDBData[0];
NumActiveVDBs = 0;
for(NumFreeVDBs = 0; NumFreeVDBs < maxvdbs; NumFreeVDBs++) {
FreeVDBList[NumFreeVDBs] = FreeVDBPtr;
FreeVDBPtr++;
}
FreeVDBListPtr = &FreeVDBList[maxvdbs-1];
ActiveVDBListPtr = &ActiveVDBList[0];
}
/*
Get a VDB from the Free VDB list
*/
VIEWDESCRIPTORBLOCK* AllocateVDB(void)
{
VIEWDESCRIPTORBLOCK *FreeVDBPtr = 0; /* Default to null ptr */
int *i_src;
int i;
if(NumFreeVDBs) {
FreeVDBPtr = *FreeVDBListPtr--;
NumFreeVDBs -= 1; /* One less free block */
/* Clear the block */
i_src = (int *) FreeVDBPtr;
for(i = sizeof(VIEWDESCRIPTORBLOCK)/4; i!=0; i--)
*i_src++ = 0;
}
return(FreeVDBPtr);
}
/*
Return a VDB to the Free VDB list
*/
void DeallocateVDB(VIEWDESCRIPTORBLOCK *vdb)
{
FreeVDBListPtr++;
*FreeVDBListPtr = vdb;
NumFreeVDBs++; /* One more free block */
}
/*
Allocate a VDB and make it active
*/
VIEWDESCRIPTORBLOCK* CreateActiveVDB(void)
{
VIEWDESCRIPTORBLOCK *vdb;
VIEWDESCRIPTORBLOCK *vdb_tmp;
VIEWDESCRIPTORBLOCK **v_src;
int v;
int p = -1;
vdb = AllocateVDB();
if(vdb) {
/* Find the next "VDB_Priority" */
if(NumActiveVDBs) {
v_src = &ActiveVDBList[0];
for(v = NumActiveVDBs; v!=0; v--) {
vdb_tmp = *v_src++;
if(vdb_tmp->VDB_Priority > p) p = vdb_tmp->VDB_Priority;
}
}
/* Set the VDB priority */
vdb->VDB_Priority = (p + 1);
/* Update the active VDB list */
*ActiveVDBListPtr++ = vdb;
NumActiveVDBs++;
}
return vdb;
}
/*
Deallocate an active VDB
*/
int DestroyActiveVDB(dblockptr)
VIEWDESCRIPTORBLOCK *dblockptr;
{
int j = -1;
int i;
/* If the VDB ptr is OK, search the Active VDB List */
if(dblockptr) {
for(i = 0; i < NumActiveVDBs && j!=0; i++) {
if(ActiveVDBList[i] == dblockptr) {
#if ProjectSpecificVDBs
ProjectSpecificVDBDestroy(dblockptr);
#endif
ActiveVDBList[i] = ActiveVDBList[NumActiveVDBs - 1];
NumActiveVDBs--;
ActiveVDBListPtr--;
DeallocateVDB(dblockptr); /* Return VDB to Free List */
j = 0; /* Flag OK */
}
}
}
return(j);
}
|