-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDraw3D.d
686 lines (574 loc) · 16.2 KB
/
Draw3D.d
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
/***********************************\
DRAW3D
\***********************************/
//========================================
// [intern] PM-Classes
//========================================
class Line {
var int start[3];
var int end[3];
var int color;
var int visible;
};
instance Line@(Line);
class Sphere /* : zTBSphere3D */ {
//class zTBSphere3D {
var int center[3]; //0x00 zPOINT3
var int radius; //0x0C zVALUE
//}
var int color;
var int visible;
};
instance Sphere@(Sphere);
class BBox /* : zTBBox3D*/ {
//class zTBBox3D {
var int mins[3];
var int maxs[3];
//}
var int color;
var int visible;
};
instance BBox@(BBox);
class OBBox /* : zCOBBox3D */ {
//class zCOBBox3D {
var int center[3]; //0x00 zVEC3
var int axis[9]; //0x0C zVEC3[3]
var int extent[3]; //0x30 zVEC3
//zCList<zCOBBox3D> children;
var int children_data; //0x3C zCOBBox3D*
var int children_next; //0x40 zCListSort<zCOBBox3D>*
//}
//}
var int color;
var int visible;
};
instance OBBox@(OBBox);
//========================================
// Update line coordinates
//========================================
func void UpdateLine(var int hndl, var int startPosPtr, var int endPosPtr) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Line itm; itm = get(hndl);
if (startPosPtr) {
MEM_CopyWords(startPosPtr, _@(itm.start), 3);
};
if (endPosPtr) {
MEM_CopyWords(endPosPtr, _@(itm.end), 3);
};
};
func void UpdateLine3(var int hndl,
var int x1, var int y1, var int z1,
var int x2, var int y2, var int z2) {
var int startPos[3];
var int endPos[3];
startPos[0] = x1;
startPos[1] = y1;
startPos[2] = z1;
endPos[0] = x2;
endPos[1] = y2;
endPos[2] = z2;
UpdateLine(hndl, _@(startPos), _@(endPos));
};
func void UpdateLineAddr(var int hndl, var int linePtr) {
if (linePtr) {
UpdateLine(hndl, linePtr, linePtr+12);
};
};
//========================================
// Update line color
//========================================
func void SetLineColor(var int hndl, var int color) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Line itm; itm = get(hndl);
itm.color = color;
};
//========================================
// Is line visible
//========================================
func int LineVisible(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return FALSE;
};
var Line itm; itm = get(hndl);
return itm.visible;
};
//========================================
// Toggle visibility of line
//========================================
func void ToggleLine(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Line itm; itm = get(hndl);
itm.visible = !itm.visible;
};
//========================================
// Show line
//========================================
func void ShowLine(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Line itm; itm = get(hndl);
itm.visible = TRUE;
};
//========================================
// Hide line
//========================================
func void HideLine(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Line itm; itm = get(hndl);
itm.visible = FALSE;
};
//========================================
// Add line
//========================================
func int DrawLine(var int startPosPtr, var int endPosPtr, var int color) {
var int hndl; hndl = new(Line@);
UpdateLine(hndl, startPosPtr, endPosPtr);
SetLineColor(hndl, color);
ShowLine(hndl);
return hndl;
};
func int DrawLine3(var int x1, var int y1, var int z1,
var int x2, var int y2, var int z2,
var int color) {
var int startPos[3];
var int endPos[3];
startPos[0] = x1;
startPos[1] = y1;
startPos[2] = z1;
endPos[0] = x2;
endPos[1] = y2;
endPos[2] = z2;
return DrawLine(_@(startPos), _@(endPos), color);
};
func int DrawLineAddr(var int linePtr, var int color) {
if (linePtr) {
return DrawLine(linePtr, linePtr+12, color);
} else {
return DrawLine(0, 0, color);
};
};
//========================================
// Remove line
//========================================
func void EraseLine(var int hndl) {
delete(hndl);
};
//========================================
// Spheres
//========================================
//========================================
// Update sphere coordinates
//========================================
func void UpdateSphere(var int hndl, var int centerPosPtr, var int radius) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Sphere itm; itm = get(hndl);
if (centerPosPtr) {
MEM_CopyWords(centerPosPtr, _@(itm.center), 3);
};
if (gf(radius, FLOATNULL)) {
itm.radius = radius;
} else {
itm.radius = FLOATNULL;
};
};
func void UpdateSphere3(var int hndl,
var int x, var int y, var int z,
var int radius) {
var int center[3];
center[0] = x;
center[1] = y;
center[2] = z;
UpdateSphere(hndl, _@(center), radius);
};
func void UpdateSphereAddr(var int hndl, var int spherePtr) {
if (spherePtr) {
UpdateSphere(hndl, spherePtr, MEM_ReadInt(spherePtr+12));
};
};
//========================================
// Update sphere color
//========================================
func void SetSphereColor(var int hndl, var int color) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Sphere itm; itm = get(hndl);
itm.color = color;
};
//========================================
// Is sphere visible
//========================================
func int SphereVisible(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return FALSE;
};
var Sphere itm; itm = get(hndl);
return itm.visible;
};
//========================================
// Toggle visibility of sphere
//========================================
func void ToggleSphere(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Sphere itm; itm = get(hndl);
itm.visible = !itm.visible;
};
//========================================
// Show sphere
//========================================
func void ShowSphere(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Sphere itm; itm = get(hndl);
itm.visible = TRUE;
};
//========================================
// Hide sphere
//========================================
func void HideSphere(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var Sphere itm; itm = get(hndl);
itm.visible = FALSE;
};
//========================================
// Add sphere
//========================================
func int DrawSphere(var int centerPosPtr, var int radius, var int color) {
var int hndl; hndl = new(Sphere@);
UpdateSphere(hndl, centerPosPtr, radius);
SetSphereColor(hndl, color);
ShowSphere(hndl);
return hndl;
};
func int DrawSphere3(var int x, var int y, var int z,
var int radius,
var int color) {
var int center[3];
center[0] = x;
center[1] = y;
center[2] = z;
return DrawSphere(_@(center), radius, color);
};
func int DrawSphereAddr(var int spherePtr, var int color) {
if (spherePtr) {
return DrawSphere(spherePtr, MEM_ReadInt(spherePtr+12), color);
} else {
return DrawSphere(0, FLOATNULL, color);
};
};
//========================================
// Remove sphere
//========================================
func void EraseSphere(var int hndl) {
delete(hndl);
};
//========================================
// Bounding boxes
//========================================
//========================================
// Update bounding box coordinates
//========================================
func void UpdateBBox(var int hndl, var int startPosPtr, var int endPosPtr) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var BBox itm; itm = get(hndl);
if (startPosPtr) {
MEM_CopyWords(startPosPtr, _@(itm.mins), 3);
};
if (endPosPtr) {
MEM_CopyWords(endPosPtr, _@(itm.maxs), 3);
};
};
func void UpdateBBox3(var int hndl,
var int x1, var int y1, var int z1,
var int x2, var int y2, var int z2) {
var int mins[3];
var int maxs[3];
mins[0] = x1;
mins[1] = y1;
mins[2] = z1;
maxs[0] = x2;
maxs[1] = y2;
maxs[2] = z2;
UpdateBBox(hndl, _@(mins), _@(maxs));
};
func void UpdateBBoxAddr(var int hndl, var int bboxPtr) {
if (bboxPtr) {
UpdateBBox(hndl, bboxPtr, bboxPtr+12);
};
};
//========================================
// Update bounding box color
//========================================
func void SetBBoxColor(var int hndl, var int color) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var BBox itm; itm = get(hndl);
itm.color = color;
};
//========================================
// Is bounding box visible
//========================================
func int BBoxVisible(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return FALSE;
};
var BBox itm; itm = get(hndl);
return itm.visible;
};
//========================================
// Toggle visibility of bounding box
//========================================
func void ToggleBBox(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var BBox itm; itm = get(hndl);
itm.visible = !itm.visible;
};
//========================================
// Show bounding box
//========================================
func void ShowBBox(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var BBox itm; itm = get(hndl);
itm.visible = TRUE;
};
//========================================
// Hide bounding box
//========================================
func void HideBBox(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var BBox itm; itm = get(hndl);
itm.visible = FALSE;
};
//========================================
// Add bounding box
//========================================
func int DrawBBox(var int startPosPtr, var int endPosPtr, var int color) {
var int hndl; hndl = new(BBox@);
UpdateBBox(hndl, startPosPtr, endPosPtr);
SetBBoxColor(hndl, color);
ShowBBox(hndl);
return hndl;
};
func int DrawBBox3(var int x1, var int y1, var int z1,
var int x2, var int y2, var int z2,
var int color) {
var int mins[3];
var int maxs[3];
mins[0] = x1;
mins[1] = y1;
mins[2] = z1;
maxs[0] = x2;
maxs[1] = y2;
maxs[2] = z2;
return DrawBBox(_@(mins), _@(maxs), color);
};
func int DrawBBoxAddr(var int bboxPtr, var int color) {
if (bboxPtr) {
return DrawBBox(bboxPtr, bboxPtr+12, color);
} else {
return DrawBBox(0, 0, color);
};
};
//========================================
// Remove bounding box
//========================================
func void EraseBBox(var int hndl) {
delete(hndl);
};
//========================================
// Oriented bounding boxes
//========================================
//========================================
// Update OBBox coordinates
//========================================
func void UpdateOBBoxAddr(var int hndl, var int obboxPtr) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var int itmPtr; itmPtr = getPtr(hndl);
if (obboxPtr) {
MEM_CopyBytes(obboxPtr, itmPtr, sizeof(OBBox@)-8); // Exclude 'color' and 'visible'
};
};
//========================================
// Update oriented bounding box color
//========================================
func void SetOBBoxColor(var int hndl, var int color) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var OBBox itm; itm = get(hndl);
itm.color = color;
};
//========================================
// Is oriented bounding box visible
//========================================
func int OBBoxVisible(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return FALSE;
};
var OBBox itm; itm = get(hndl);
return itm.visible;
};
//========================================
// Toggle visibility of OBBox
//========================================
func void ToggleOBBox(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var OBBox itm; itm = get(hndl);
itm.visible = !itm.visible;
};
//========================================
// Show oriented bounding box
//========================================
func void ShowOBBox(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var OBBox itm; itm = get(hndl);
itm.visible = TRUE;
};
//========================================
// Hide oriented bounding box
//========================================
func void HideOBBox(var int hndl) {
if (!Hlp_IsValidHandle(hndl)) {
return;
};
var OBBox itm; itm = get(hndl);
itm.visible = FALSE;
};
//========================================
// Add oriented bounding box
//========================================
func int DrawOBBoxAddr(var int obboxPtr, var int color) {
var int hndl; hndl = new(OBBox@);
UpdateOBBoxAddr(hndl, obboxPtr);
SetOBBoxColor(hndl, color);
ShowOBBox(hndl);
return hndl;
};
//========================================
// Remove oriented bounding box
//========================================
func void EraseOBBox(var int hndl) {
delete(hndl);
};
//========================================
// Erase all draw elements
//========================================
func void EraseAll() {
foreachHndl(Line@, EraseLine);
foreachHndl(Sphere@, EraseSphere);
foreachHndl(BBox@, EraseBBox);
foreachHndl(OBBox@, EraseOBBox);
};
//========================================
// [intern] Enginehook
//========================================
func void _DrawHook() {
if (!Hlp_IsValidNpc(hero))
|| (MEM_Game.pause_screen) {
return;
};
foreachHndl(Line@, _DrawAllLines);
foreachHndl(Sphere@, _DrawAllSpheres);
foreachHndl(BBox@, _DrawAllBBoxes);
foreachHndl(OBBox@, _DrawAllOBBoxes);
};
func int _DrawAllLines(var int hndl) {
var Line itm; itm = get(hndl);
// Skip hidden elements
if (!itm.visible) {
return rContinue;
};
var int pos1Ptr; pos1Ptr = _@(itm.start);
var int pos2Ptr; pos2Ptr = _@(itm.end);
var int color; color = itm.color;
const int call = 0; var int zero;
if (CALL_Begin(call)) {
CALL_IntParam(_@(zero));
CALL_IntParam(_@(color)); // zCOLOR
CALL_PtrParam(_@(pos2Ptr)); // zVEC3*
CALL_PtrParam(_@(pos1Ptr)); // zVEC3*
CALL__thiscall(_@(zlineCache), zCLineCache__Line3D);
call = CALL_End();
};
return rContinue;
};
func int _DrawAllSpheres(var int hndl) {
var int itmPtr; itmPtr = getPtr(hndl);
var Sphere itm; itm = _^(itmPtr);
// Skip hidden elements
if (!itm.visible) {
return rContinue;
};
var int cPtr; cPtr = _@(itm.color);
const int call = 0;
if (CALL_Begin(call)) {
CALL_IntParam(_@(cPtr)); // zCOLOR*
CALL__thiscall(_@(itmPtr), zTBSphere3D__Draw);
call = CALL_End();
};
return rContinue;
};
func int _DrawAllBBoxes(var int hndl) {
var int itmPtr; itmPtr = getPtr(hndl);
var BBox itm; itm = _^(itmPtr);
// Skip hidden elements
if (!itm.visible) {
return rContinue;
};
var int cPtr; cPtr = _@(itm.color);
const int call = 0;
if (CALL_Begin(call)) {
CALL_PtrParam(_@(cPtr)); // zCOLOR*
CALL__thiscall(_@(itmPtr), zTBBox3D__Draw);
call = CALL_End();
};
return rContinue;
};
func int _DrawAllOBBoxes(var int hndl) {
var int itmPtr; itmPtr = getPtr(hndl);
var OBBox itm; itm = _^(itmPtr);
// Skip hidden elements
if (!itm.visible) {
return rContinue;
};
var int color; color = itm.color;
const int call = 0; const int one = 1;
if (CALL_Begin(call)) {
CALL_PtrParam(_@(color)); // zCOLOR
CALL_IntParam(_@(one)); // Do not draw child boxes
CALL__thiscall(_@(itmPtr), zCOBBox3D__Draw);
call = CALL_End();
};
return rContinue;
};