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
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
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
|
/*
* PARSEC - API Functions
*
* $Author: uberlinuxguy $ - $Date: 2004/09/15 12:25:24 $
*
* Orginally written by:
* Copyright (c) Markus Hadwiger <msh@parsec.org> 1997-2000
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// C library
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// compilation flags/debug support
#include "config.h"
#include "debug.h"
// general definitions
#include "general.h"
#include "objstruc.h"
// global externals
#include "globals.h"
// subsystem headers
#include "aud_defs.h"
#include "net_defs.h"
#include "vid_defs.h"
// mathematics header
#include "utl_math.h"
// particle types
#include "parttype.h"
// local module header
#include "part_api.h"
// proprietary module headers
#include "con_aux.h"
#include "e_color.h"
#include "e_record.h"
#include "e_supp.h"
#include "obj_ctrl.h"
#include "part_ani.h"
#include "part_sys.h"
// size of generic particle cluster
#define DEFAULT_CLUSTER_SIZE 256
// size of customdraw particle cluster
#define DEFAULT_CUSTOMDRAW_CLUSTER_SIZE 32
// size of genobject particle cluster
#define DEFAULT_GENOBJECT_CLUSTER_SIZE 128
// particle sphere rotation velocities
#define SPHERE_ROT_PITCH 0x0015 //0x01a0
#define SPHERE_ROT_YAW -0x0022 //-0x02a0
#define SPHERE_ROT_ROLL 0x000d //0x0100
// properties of pulsating sphere
#define SPHERE_PULSE_AMPLITUDE FLOAT_TO_GEOMV( 12.0f )
#define SPHERE_PULSE_FREQUENCY 90
// properties of stochastic motion sphere
#define SPHERE_STOCHASTIC_MOTION_SPEED 100
// maximum number of registered particle definitions
#define MAX_PARTICLE_DEFS 256
// array of registered particle definitions -----------------------------------
//
PUBLIC int NumParticleDefinitions = 0;
PUBLIC pdefref_s ParticleDefinitions[ MAX_PARTICLE_DEFS ];
// reference z values for particles -------------------------------------------
//
float sphere_ref_z = 1.0f;
// init reference z values for particles according to resolution --------------
//
void PRT_InitParticleSizes( float resoscale )
{
sphere_ref_z = resoscale * SPHERE_REF_Z;
}
// allocate new particle cluster and insert into list -------------------------
//
pcluster_s * PRT_NewCluster(
dword type, // cluster type (CT_xx)
int numelements, // number of cluster elements (particles)
size_t auxstorage // size of user-defined storage in bytes
)
{
ASSERT( numelements > 0 );
// calc size of cluster header according to type
int headsiz;
switch ( type & CT_TYPEMASK ) {
case CT_CONSTANT_VELOCITY:
headsiz = sizeof( linear_pcluster_s );
break;
case CT_LIGHTNING:
headsiz = sizeof( lightning_pcluster_s );
break;
case CT_OBJECTCENTERED_SPHERE:
headsiz = sizeof( basesphere_pcluster_s );
break;
case CT_PHOTON_SPHERE:
headsiz = sizeof( photon_sphere_pcluster_s );
break;
case CT_PARTICLE_SPHERE:
headsiz = sizeof( sphereobj_pcluster_s );
break;
case CT_CALLBACK_TRAJECTORY:
headsiz = sizeof( callback_pcluster_s );
break;
case CT_CUSTOMDRAW:
headsiz = sizeof( customdraw_pcluster_s );
break;
case CT_GENOBJECT_PARTICLES:
headsiz = sizeof( genobject_pcluster_s );
break;
default:
PANIC( 0 );
}
pcluster_s *temp = (pcluster_s *) ALLOCMEM( headsiz );
if ( temp == NULL )
OUTOFMEM( 0 );
// clear cluster header (including inherited fields!)
memset( temp, 0, headsiz );
// insert cluster at head of cluster list
temp->next = Particles->next;
temp->prec = Particles;
temp->next->prec = temp;
temp->prec->next = temp;
// size of basic particle structures
size_t storesiz = sizeof( particle_s ) * numelements;
// size of extinfo if desired
if ( type & CT_EXTINFO_STORAGE )
storesiz += sizeof( pextinfo_s ) * numelements;
// size of auxiliary info
size_t auxofs = storesiz;
if ( auxstorage > 0 )
storesiz += auxstorage + sizeof( pusrinfo_s );
// allocate storage for elements of cluster
temp->rep = (particle_s *) ALLOCMEM( storesiz );
temp->type = type;
temp->numel = 0;
temp->maxnumel = numelements;
ASSERT( temp->rep != NULL );
if ( temp->rep == NULL )
OUTOFMEM( 0 );
// init particle storage of cluster to zero
memset( temp->rep, 0, storesiz );
// init auxstorage header if allocated
if ( auxstorage > 0 ) {
pusrinfo_s *uinfo = (pusrinfo_s *) ( (char*)temp->rep + auxofs );
uinfo->infovalid = FALSE;
uinfo->blocksize = auxstorage;
temp->userinfo = uinfo;
}
// add to global maximum number of elements
Particles->maxnumel += numelements;
// caller has to cast this pointer to its actual type!
return temp;
}
// delete entire particle cluster ---------------------------------------------
//
void PRT_DeleteCluster( pcluster_s* cluster )
{
ASSERT( cluster != NULL );
// maintain global cluster pointers
if ( CurLinearCluster == cluster )
CurLinearCluster = NULL;
if ( CustomDrawCluster == cluster )
CustomDrawCluster = NULL;
// if cluster is object-relative remove from list if contained
if ( cluster->type & CT_GENOBJECTRELATIVE_OBJ_MASK )
PRT_RemoveClusterFromAttachedList( (objectbase_pcluster_s *) cluster );
// sub from global current/maximum number of elements
Particles->numel -= cluster->numel;
Particles->maxnumel -= cluster->maxnumel;
// unlink cluster from list
cluster->prec->next = cluster->next;
cluster->next->prec = cluster->prec;
// free storage (cluster header and particle storage)
FREEMEM( cluster->rep );
FREEMEM( cluster );
}
// delete entire particle cluster (don't check any attachment lists) ----------
//
void PRT_DeleteCluster_NoListRemoval( pcluster_s* cluster )
{
ASSERT( cluster != NULL );
// maintain global cluster pointers
if ( CurLinearCluster == cluster )
CurLinearCluster = NULL;
if ( CustomDrawCluster == cluster )
CustomDrawCluster = NULL;
// sub from global current/maximum number of elements
Particles->numel -= cluster->numel;
Particles->maxnumel -= cluster->maxnumel;
// unlink cluster from list
cluster->prec->next = cluster->next;
cluster->next->prec = cluster->prec;
// free storage (cluster header and particle storage)
FREEMEM( cluster->rep );
FREEMEM( cluster );
}
// remove cluster from its attachment list if contained in any ----------------
//
void PRT_RemoveClusterFromAttachedList( objectbase_pcluster_s* cluster )
{
ASSERT( cluster != NULL );
ASSERT( cluster->type & CT_GENOBJECTRELATIVE_OBJ_MASK );
ASSERT( cluster->baseobject != NULL );
objectbase_pcluster_s *scan = cluster->baseobject->AttachedPClusters;
objectbase_pcluster_s *precnode = NULL;
for ( ; scan; scan = scan->attachlist ) {
ASSERT( scan->type & CT_GENOBJECTRELATIVE_OBJ_MASK );
ASSERT( scan->baseobject == cluster->baseobject );
if ( scan == cluster ) {
if ( precnode )
precnode->attachlist = scan->attachlist;
else
cluster->baseobject->AttachedPClusters = scan->attachlist;
return;
}
precnode = scan;
}
}
// check if genobject has attached particle clusters --------------------------
//
int PRT_ObjectHasAttachedClusters( GenObject* genobjpo )
{
ASSERT( genobjpo != NULL );
return ( genobjpo->AttachedPClusters != NULL );
}
// check if genobject has attached particle clusters of a certain type --------
//
objectbase_pcluster_s * PRT_ObjectHasAttachedClustersOfType( GenObject* genobjpo, int animtype )
{
ASSERT( genobjpo != NULL );
objectbase_pcluster_s *scan = genobjpo->AttachedPClusters;
for ( ; scan; scan = scan->attachlist ) {
ASSERT( scan->type & CT_GENOBJECTRELATIVE_OBJ_MASK );
if ( scan->animtype == animtype )
return scan;
}
return NULL;
}
// delete all clusters of certain type attached to a genobject ----------------
//
int PRT_DeleteAttachedClustersOfType( const GenObject * genobjpo, int animtype )
{
ASSERT( genobjpo != NULL );
// count number of removed clusters
int numremoved = 0;
objectbase_pcluster_s *scan = genobjpo->AttachedPClusters;
objectbase_pcluster_s *precnode = NULL;
while ( scan != NULL ) {
ASSERT( scan->type & CT_GENOBJECTRELATIVE_OBJ_MASK );
if ( scan->animtype == animtype ) {
if ( precnode )
precnode->attachlist = scan->attachlist;
else
((GenObject*)genobjpo)->AttachedPClusters = scan->attachlist;
pcluster_s *temp = scan;
scan = scan->attachlist;
PRT_DeleteCluster_NoListRemoval( temp );
numremoved++;
continue;
}
precnode = scan;
scan = scan->attachlist;
}
// return number of removed clusters
return numremoved;
}
// attach cluster to genobject (insert at head of attachment list) ------------
//
void PRT_AttachClusterToObject( GenObject* genobjpo, objectbase_pcluster_s* cluster )
{
ASSERT( genobjpo != NULL );
ASSERT( cluster != NULL );
ASSERT( cluster->type & CT_GENOBJECTRELATIVE_OBJ_MASK );
// set reference to genobject
cluster->baseobject = genobjpo;
// insert at head of list
cluster->attachlist = genobjpo->AttachedPClusters;
genobjpo->AttachedPClusters = cluster;
}
// free cluster list attached to genobject ------------------------------------
//
void PRT_FreeAttachedClusterList( GenObject* genobjpo )
{
ASSERT( genobjpo != NULL );
objectbase_pcluster_s *scan = genobjpo->AttachedPClusters;
while ( scan != NULL ) {
ASSERT( scan->type & CT_GENOBJECTRELATIVE_OBJ_MASK );
objectbase_pcluster_s *temp = scan->attachlist;
PRT_DeleteCluster_NoListRemoval( scan );
scan = temp;
}
genobjpo->AttachedPClusters = NULL;
}
// allocate particle definition (fields have to be set afterwards!) -----------
//
pdef_s * PRT_AllocParticleDefinition(
int numtexframes, // number of texture animation frames
int numxfoframes // number of texture transformation frames
)
{
//NOTE:
// this function allocates a new pdef_s containing enough
// space for the supplied number of animation frames.
// NULL will be returned if there is not enough memory for
// the pdef_s (including its animation tables).
//NOTE:
// the table entries themselves are not filled by this function.
// this has to be done afterwards. (mandatory!!)
ASSERT( numtexframes >= 1 );
ASSERT( numxfoframes >= 0 );
// alloc mem for particle definition struct + tables
size_t texsiz = sizeof( texfrm_s ) * numtexframes;
size_t xfosiz = sizeof( xfofrm_s ) * numxfoframes;
size_t memsiz = sizeof( pdef_s ) + texsiz + xfosiz;
pdef_s *pdef = (pdef_s *) ALLOCMEM( memsiz );
if ( pdef == NULL )
return NULL;
// clear struct mem
memset( pdef, 0, memsiz );
// set table addresses
pdef->tex_table = (texfrm_s *) ( (char*)pdef + sizeof( pdef_s ) );
pdef->xfo_table = ( numxfoframes > 0 ) ?
(xfofrm_s *) ( (char*)pdef + sizeof( pdef_s ) + texsiz ) : NULL;
// set end indexes to table length (start and repeat are zero anyway)
pdef->tex_end = numtexframes - 1;
pdef->xfo_end = ( numxfoframes > 0 ) ? numxfoframes - 1 : 0;
//NOTE:
// this is just the default for start, repeat, and end index. the user
// has to set them to their correct values, if different from the default.
return pdef;
}
// register particle definition (create struct and associate name with it) ----
//
pdef_s * PRT_RegisterParticleDefinition(
const char* pdefname, // unique name for particle definition
pdefreg_s* pdefreg, // definition info
int overwrite // overwrite old pdef if name already exists
)
{
//NOTE:
// this function takes a pdefreg_s, creates the actual pdef_s
// and registers it using the supplied name.
// NULL will be returned if it could not be registered for
// some reason (too many pdefs, no mem, ...).
ASSERT( pdefname != NULL );
ASSERT( pdefreg != NULL );
ptexreg_s *texdef = pdefreg->texinfo;
pxforeg_s *xfodef = pdefreg->xfoinfo;
int texframes = pdefreg->textabsize;
int xfoframes = pdefreg->xfotabsize;
ASSERT( texdef != NULL );
ASSERT( texframes >= 1 );
ASSERT( xfoframes >= 0 );
ASSERT( ( xfoframes == 0 ) || ( xfodef != NULL ) );
// check if slot for pdef available
if ( NumParticleDefinitions >= MAX_PARTICLE_DEFS ) {
ASSERT( NumParticleDefinitions == MAX_PARTICLE_DEFS );
return NULL;
}
//NOTE:
// even if an already existing pdef is going to be overwritten this
// check is performed. thus at least one slot must always be available.
// create header and alloc mem
pdef_s *pdef = PRT_AllocParticleDefinition( texframes, xfoframes );
if ( pdef == NULL ) {
ASSERT( 0 );
return NULL;
}
// fill in texture map info
int curframe = 0;
for ( curframe = 0; curframe < texframes; curframe++ ) {
// look up texture via name
TextureMap *texmap = FetchTextureMap( texdef[ curframe ].texname );
if ( texmap == NULL ) {
FREEMEM( pdef );
return NULL;
}
// write frame info
pdef->tex_table[ curframe ].deltatime = texdef[ curframe ].deltatime;
pdef->tex_table[ curframe ].texmap = texmap;
}
// set anim points
pdef->tex_start = pdefreg->texstart;
pdef->tex_rep = pdefreg->texrep;
pdef->tex_end = pdefreg->texend;
// fill in trafo info
if ( xfoframes > 0 ) {
// write frame info
for ( curframe = 0; curframe < xfoframes; curframe++ ) {
pdef->xfo_table[ curframe ].deltatime = xfodef[ curframe ].deltatime;
pdef->xfo_table[ curframe ].imgtrafo = xfodef[ curframe ].imgtrafo;
}
// set anim points
pdef->xfo_start = pdefreg->xfostart;
pdef->xfo_rep = pdefreg->xforep;
pdef->xfo_end = pdefreg->xfoend;
}
// scan all registered particle definitions
int curdef = 0;
for ( curdef = 0; curdef < NumParticleDefinitions; curdef++ ) {
if ( strcmp( ParticleDefinitions[ curdef ].defname, pdefname ) == 0 ) {
break;
}
}
// found already registered pdef of same name?
if ( curdef < NumParticleDefinitions ) {
// already existing pdefs (names) may be overwritten
if ( overwrite ) {
ParticleDefinitions[ curdef ].def = pdef;
//NOTE:
// the old pdef is kept around as zombie. it cannot be deleted
// until the last particle using it has died. for this reason
// the current approach is to never delete it. (note that functions
// like PART_DEF::PDEF_explode1() also keep around the old pointer,
// at least until they detect that the pdef has been changed.)
} else {
// delete new pdef and return old
FREEMEM( pdef );
pdef = ParticleDefinitions[ curdef ].def;
}
} else {
// append new pdef
curdef = NumParticleDefinitions++;
ASSERT( ParticleDefinitions[ curdef ].defname == NULL );
ASSERT( ParticleDefinitions[ curdef ].def == NULL );
// copy name to not depend on caller string semantics
char *name = (char *) ALLOCMEM( strlen( pdefname ) + 1 );
if ( name == NULL ) {
ASSERT( 0 );
return NULL;
}
strcpy( name, pdefname );
ParticleDefinitions[ curdef ].defname = name;
ParticleDefinitions[ curdef ].def = pdef;
}
ASSERT( pdef != NULL );
return pdef;
}
// register particle definition with looping texture-only animation -----------
//
pdef_s * PRT_RegisterLoopTexParticle(
const char* pdefname, // unique name for particle definition
int numframes, // number of animation frames
const char**nametable, // pointer to table of texture names
int equidelta, // deltatime that is the same for all frames
int overwrite // overwrite old pdef if name already exists
)
{
ASSERT( pdefname != NULL );
ASSERT( numframes >= 1 );
ASSERT( nametable != NULL );
ASSERT( *nametable != NULL );
ASSERT( equidelta > 0 );
// alloc temporary table mem
ptexreg_s *texinfo = (ptexreg_s *) ALLOCMEM( sizeof( ptexreg_s ) * numframes );
if ( texinfo == NULL )
return NULL;
// init temporary table mem
for ( int fid = 0; fid < numframes; fid++ ) {
texinfo[ fid ].deltatime = equidelta;
texinfo[ fid ].texname = (char *) nametable[ fid ];
}
// init registration info
pdefreg_s pdefreg;
pdefreg.texinfo = texinfo;
pdefreg.textabsize = numframes;
pdefreg.texstart = 0;
pdefreg.texrep = 0;
pdefreg.texend = numframes - 1;
pdefreg.xfoinfo = NULL;
pdefreg.xfotabsize = 0;
// do registration
pdef_s *pdef = PRT_RegisterParticleDefinition( pdefname, &pdefreg, overwrite );
// free temporary table mem
FREEMEM( texinfo );
// return acquired particle definition (may be NULL)
return pdef;
}
// register particle definition with one-shot texture-only animation ----------
//
pdef_s * PRT_RegisterOneShotTexParticle(
const char* pdefname, // unique name for particle definition
int numframes, // number of animation frames
const char**nametable, // pointer to table of texture names
int equidelta, // deltatime that is the same for all frames
int overwrite // overwrite old pdef if name already exists
)
{
ASSERT( pdefname != NULL );
ASSERT( numframes >= 1 );
ASSERT( nametable != NULL );
ASSERT( *nametable != NULL );
ASSERT( equidelta > 0 );
// alloc temporary table mem
ptexreg_s *texinfo = (ptexreg_s *) ALLOCMEM( sizeof( ptexreg_s ) * numframes );
if ( texinfo == NULL )
return NULL;
// init temporary table mem
for ( int fid = 0; fid < numframes; fid++ ) {
texinfo[ fid ].deltatime = equidelta;
texinfo[ fid ].texname = (char *) nametable[ fid ];
}
// init registration info
pdefreg_s pdefreg;
pdefreg.texinfo = texinfo;
pdefreg.textabsize = numframes;
pdefreg.texstart = 0;
pdefreg.texrep = numframes - 1;
pdefreg.texend = numframes - 1;
pdefreg.xfoinfo = NULL;
pdefreg.xfotabsize = 0;
// do registration
pdef_s *pdef = PRT_RegisterParticleDefinition( pdefname, &pdefreg, overwrite );
// free temporary table mem
FREEMEM( texinfo );
// return acquired particle definition (may be NULL)
return pdef;
}
// acquire already registered particle definition via its unique name ---------
//
pdef_s * PRT_AcquireParticleDefinition(
const char* pdefname, // unique name for particle definition
int* retpdefid // id of returned particle definition
)
{
ASSERT( pdefname != NULL );
// scan all registered particle definitions
for ( int curdef = 0; curdef < NumParticleDefinitions; curdef++ ) {
if ( strcmp( ParticleDefinitions[ curdef ].defname, pdefname ) == 0 ) {
// return id if desired
if ( retpdefid != NULL )
*retpdefid = curdef;
// return pointer to pdef
return ParticleDefinitions[ curdef ].def;
}
}
return NULL;
}
// acquire already registered particle definition via its id ------------------
//
pdef_s * PRT_AcquireParticleDefinitionById(
int pdefid // id of particle definition
)
{
// ensure id is valid
if ( ( pdefid < 0 ) || ( pdefid >= NumParticleDefinitions ) )
return NULL;
// fetch from table
pdef_s *pdef = ParticleDefinitions[ pdefid ].def;
ASSERT( pdef != NULL );
return pdef;
}
// init extended particle info using particle definitions ---------------------
//
void PRT_InitParticleExtInfo(
pextinfo_s* extinfo, // pextinfo_s to initialize
pdef_s* partdef, // base particle definition (obligatory)
pdef_s* partdef_dest, // destruction particle definition (optional)
particle_s* particle // particle_s::extinfo will be set (optional)
)
{
ASSERT( extinfo != NULL );
ASSERT( partdef != NULL );
ASSERT( partdef->tex_table != NULL );
ASSERT( ( partdef_dest == NULL ) || ( partdef_dest->tex_table != NULL ) );
//NOTE:
// if the particle parameter is not NULL, a pointer to the
// initialized extinfo will be stored into the particle
// structure (field particle_s::extinfo).
// clear struct mem
memset( extinfo, 0, sizeof( pextinfo_s ) );
// store pointer in particle structure
if ( particle != NULL )
particle->extinfo = extinfo;
// set particle definitions
extinfo->partdef = partdef;
extinfo->partdef_dest = partdef_dest;
// set first frame
extinfo->tex_pos = partdef->tex_start;
extinfo->xfo_pos = partdef->xfo_start;
// set first deltatime for texture animation frame
texfrm_s *firsttexframe = &partdef->tex_table[ extinfo->tex_pos ];
extinfo->tex_time = firsttexframe->deltatime;
// set first deltatime for texture transformation frame
if ( partdef->xfo_table != NULL ) {
xfofrm_s *firstxfoframe = &partdef->xfo_table[ extinfo->xfo_pos ];
extinfo->xfo_time = firstxfoframe->deltatime;
}
}
// create new particle with linear animation (insert into next free slot) -----
//
particle_s * PRT_CreateLinearParticle(
particle_s& particle // already initialized particle
)
{
// try to reuse already allocated cluster
if ( CurLinearCluster != NULL ) {
ASSERT( ( CurLinearCluster->type & CT_TYPEMASK ) == CT_CONSTANT_VELOCITY );
if ( CurLinearCluster->numel < CurLinearCluster->maxnumel ) {
// copy particle struct into available slot in free cluster
particle_s *pmem = CurLinearCluster->rep + CurLinearCluster->numel;
*pmem = particle;
// check whether extinfo attached
if ( particle.extinfo != NULL ) {
if ( ( CurLinearCluster->type & CT_EXTINFO_STORAGE ) == 0 ) {
ASSERT( 0 );
goto allocnew;
}
// copy over extinfo
pextinfo_s *curextinfo =
(pextinfo_s *)( CurLinearCluster->rep + CurLinearCluster->maxnumel );
curextinfo += CurLinearCluster->numel;
memcpy( curextinfo, particle.extinfo, sizeof( pextinfo_s ) );
// set new extinfo pointer
pmem->extinfo = curextinfo;
}
// increase number of cluster elements
CurLinearCluster->numel++;
// return new particle location
return pmem;
}
}
allocnew:
// always allocate clusters with storage for extinfo!
dword clustertype = CT_CONSTANT_VELOCITY | CT_EXTINFO_STORAGE;
int numelements = DEFAULT_CLUSTER_SIZE;
// create new cluster for linear particles
CurLinearCluster = PRT_NewCluster( clustertype, numelements, 0 );
// set callback to default
linear_pcluster_s *lincluster = (linear_pcluster_s *) CurLinearCluster;
ASSERT( lincluster->callback == NULL );
lincluster->callback = LinearParticleCollision;
//NOTE:
// field bdsphere is zero.
// insert recursively (tail rec)
return PRT_CreateLinearParticle( particle );
}
// create new particle with customdraw property -------------------------------
//
particle_s * PRT_CreateCustomDrawParticle(
particle_s& particle, // already initialized particle
const GenObject* baseobject // object customdraw particles belong to
)
{
ASSERT( baseobject != NULL );
// try to reuse already allocated cluster
customdraw_pcluster_s *cluster =
(customdraw_pcluster_s *) CustomDrawCluster;
if ( cluster != NULL ) {
ASSERT( ( cluster->type & CT_TYPEMASK ) == CT_CUSTOMDRAW );
if ( ( cluster->baseobject == baseobject ) &&
( cluster->numel < cluster->maxnumel ) ) {
// copy particle struct into available slot in free cluster
particle_s *pmem = cluster->rep + cluster->numel;
*pmem = particle;
// check whether extinfo attached
if ( particle.extinfo != NULL ) {
if ( ( cluster->type & CT_EXTINFO_STORAGE ) == 0 ) {
ASSERT( 0 );
goto allocnew;
}
// copy over extinfo
pextinfo_s *curextinfo =
(pextinfo_s *)( cluster->rep + cluster->maxnumel );
curextinfo += cluster->numel;
memcpy( curextinfo, particle.extinfo, sizeof( pextinfo_s ) );
// set new extinfo pointer
pmem->extinfo = curextinfo;
}
// increase number of cluster elements
cluster->numel++;
// return new particle location
return pmem;
}
}
allocnew:
// always allocate clusters with storage for extinfo!
dword clustertype = CT_CUSTOMDRAW | CT_EXTINFO_STORAGE;
int numelements = DEFAULT_CUSTOMDRAW_CLUSTER_SIZE;
// create new customdraw cluster
cluster = (customdraw_pcluster_s *)
PRT_NewCluster( clustertype, numelements, 0 );
ASSERT( cluster != NULL );
cluster->baseobject = baseobject;
cluster->callback = NULL;
//NOTE:
// field bdsphere is zero.
// insert recursively (tail rec)
CustomDrawCluster = cluster;
return PRT_CreateCustomDrawParticle( particle, baseobject );
}
// translate customdraw particles belonging to specified object ---------------
//
int PRT_TranslateCustomParticles(
Vector3& tvector, // translation vector that should be applied
const GenObject* baseobject // object customdraw particles belong to
)
{
ASSERT( baseobject != NULL );
int cfound = FALSE;
//TODO:
// use clusters attached to baseobject to
// avoid scanning all clusters.
// walk list of clusters
pcluster_s *scan = Particles->next;
for ( ; scan->next; scan = scan->next ) {
if ( ( scan->type & CT_TYPEMASK ) == CT_CUSTOMDRAW ) {
customdraw_pcluster_s *cluster = (customdraw_pcluster_s *) scan;
if ( cluster->baseobject != baseobject )
continue;
// to return if at least one found
cfound = TRUE;
// translate particles in cluster
for ( int curp = 0; curp < cluster->numel; curp++ ) {
particle_s *particle = &cluster->rep[ curp ];
particle->position.X += tvector.X;
particle->position.Y += tvector.Y;
particle->position.Z += tvector.Z;
}
}
}
return cfound;
}
// draw customdraw particles belonging to specified object --------------------
//
int PRT_DrawCustomParticles(
const GenObject* baseobject // object whose customdraw particles to draw
)
{
ASSERT( baseobject != NULL );
//NOTE:
// DrawCustomParticles() is exported by PART_SYS.C
return DrawCustomParticles( baseobject );
}
// create an empty genobject particle cluster ---------------------------------
//
genobject_pcluster_s * PRT_CreateGenObjectParticleCluster(
GenObject* baseobject, // object particle should be attached to
int numelements, // number of particles to allocate
genobject_pcluster_fpt callback, // callback for cluster animation
int use_bdsphere // indicate whether the bounding-sphere of the parent should be used
)
{
ASSERT( baseobject != NULL );
ASSERT( numelements > 0 );
// always allocate clusters with storage for extinfo!
dword clustertype = CT_GENOBJECT_PARTICLES | CT_EXTINFO_STORAGE;
// create new genobject cluster
genobject_pcluster_s *cluster = (genobject_pcluster_s *)
PRT_NewCluster( clustertype, numelements, 0 );
// init custom fields
ASSERT( cluster != NULL );
cluster->animtype = SAT_GENOBJECT;
cluster->callback = callback;
// set bounding sphere to the same as the parent object
cluster->bdsphere = use_bdsphere ? baseobject->BoundingSphere : 0;
//TODO:
// use flag to indicate whether the bounding sphere should
// be checked/updated for each particle that is added.
// attach cluster to referenced object
PRT_AttachClusterToObject( baseobject, cluster );
return cluster;
}
// create a genobject geometry particle and attach it to specified object -----
//
genobject_pcluster_s * PRT_CreateGenObjectParticle(
particle_s& particle, // already initialized particle
GenObject* baseobject, // object particle should be attached to
genobject_pcluster_s* trycluster // try this cluster before scanning
)
{
//NOTE:
// this function is meant for attaching single particles.
// if no cluster is supplied all clusters attached to the
// baseobject are walked to try and find a free slot.
// only if no slot can be found a new cluster will be allocated,
// using a default size (DEFAULT_GENOBJECT_CLUSTER_SIZE).
// such single particles most likely have a fixed position,
// therefore the callback will be NULL by default. it can be set
// afterwards, though, using the returned cluster pointer.
//NOTE:
// typical use:
// ------------
// genobject_pcluster_s *cluster = NULL;
// cluster = PRT_CreateGenObjectParticle( ., ., cluster );
// cluster = PRT_CreateGenObjectParticle( ., ., cluster );
// ...
ASSERT( baseobject != NULL );
// try to reuse already allocated cluster
if ( trycluster != NULL ) {
ASSERT( ( trycluster->type & CT_TYPEMASK ) == CT_GENOBJECT_PARTICLES );
ASSERT( ( trycluster->baseobject == baseobject ) );
if ( trycluster->numel < trycluster->maxnumel ) {
// copy particle struct into available slot in free cluster
particle_s *pmem = trycluster->rep + trycluster->numel;
*pmem = particle;
// check whether extinfo attached
if ( particle.extinfo != NULL ) {
if ( ( trycluster->type & CT_EXTINFO_STORAGE ) == 0 ) {
ASSERT( 0 );
goto allocnew;
}
// copy over extinfo
pextinfo_s *curextinfo =
(pextinfo_s *)( trycluster->rep + trycluster->maxnumel );
curextinfo += trycluster->numel;
memcpy( curextinfo, particle.extinfo, sizeof( pextinfo_s ) );
// set new extinfo pointer
pmem->extinfo = curextinfo;
}
// increase number of cluster elements
trycluster->numel++;
// stick with cluster
return trycluster;
}
} else {
// try to find attached genobject cluster with enough free space
objectbase_pcluster_s *scan = baseobject->AttachedPClusters;
for ( ; scan; scan = scan->attachlist ) {
ASSERT( scan->type & CT_GENOBJECTRELATIVE_OBJ_MASK );
ASSERT( scan->baseobject == baseobject );
if ( ( scan->type & CT_TYPEMASK ) == CT_GENOBJECT_PARTICLES ) {
if ( scan->numel < scan->maxnumel ) {
// insert recursively (tail rec)
return PRT_CreateGenObjectParticle(
particle, baseobject, (genobject_pcluster_s *) scan );
}
}
}
}
allocnew:
//NOTE:
// we assume all particles of genobject clusters are
// contained within their parent object's bounding sphere.
// if this is not the case culling won't work correctly.
//TODO:
// use flag to indicate whether the bounding sphere should
// be checked/updated for each particle that is added.
// create a new genobject particle cluster
trycluster = PRT_CreateGenObjectParticleCluster(
baseobject, DEFAULT_GENOBJECT_CLUSTER_SIZE, NULL, TRUE );
// insert recursively (tail rec)
return PRT_CreateGenObjectParticle( particle, baseobject, trycluster );
}
// create a genobject geometry particle and attach it to specified object -----
//
genobject_pcluster_s * PRT_AddGenObjectParticle(
particle_s& particle, // already initialized particle
GenObject* baseobject, // object particle should be attached to
genobject_pcluster_s* usecluster, // try this cluster before scanning
int numelements, // number of particles to allocate
genobject_pcluster_fpt callback // callback for cluster animation
)
{
//NOTE:
// this function is meant for filling a single attached
// cluster with multiple particles belonging together.
// it either uses the supplied cluster or creates a new
// one with numelements if numelements > 0.
// if numelements == 0 no new cluster will be created
// in case there is no slot available. the particle
// will simply be dropped then.
//NOTE:
// typical uses:
// ------------
// genobject_pcluster_s *cluster = NULL;
// for ( int pid = 0; pid < csiz; pid++ )
// cluster = PRT_AddGenObjectParticle( ., ., cluster, csiz, . );
// ------------
// genobject_pcluster_s *cluster =
// PRT_CreateGenObjectParticleCluster( ., csiz, ., . );
// for ( int pid = 0; pid < csiz; pid++ )
// cluster = PRT_AddGenObjectParticle( ., ., cluster, 0, . );
// ------------
ASSERT( baseobject != NULL );
// try to reuse already allocated cluster
if ( usecluster != NULL ) {
ASSERT( ( usecluster->type & CT_TYPEMASK ) == CT_GENOBJECT_PARTICLES );
ASSERT( ( usecluster->baseobject == baseobject ) );
if ( usecluster->numel < usecluster->maxnumel ) {
// copy particle struct into available slot in free cluster
particle_s *pmem = usecluster->rep + usecluster->numel;
*pmem = particle;
// check whether extinfo attached
if ( particle.extinfo != NULL ) {
if ( ( usecluster->type & CT_EXTINFO_STORAGE ) == 0 ) {
ASSERT( 0 );
goto allocnew;
}
// copy over extinfo
pextinfo_s *curextinfo =
(pextinfo_s *)( usecluster->rep + usecluster->maxnumel );
curextinfo += usecluster->numel;
memcpy( curextinfo, particle.extinfo, sizeof( pextinfo_s ) );
// set new extinfo pointer
pmem->extinfo = curextinfo;
}
// increase number of cluster elements
usecluster->numel++;
// stick with cluster
return usecluster;
}
}
allocnew:
// do not create particle (fail quietly) if no slot
// available and no new cluster should be allocated
if ( numelements <= 0 ) {
return NULL;
}
//NOTE:
// we assume all particles of genobject clusters are
// contained within their parent object's bounding sphere.
// if this is not the case culling won't work correctly.
//TODO:
// use flag to indicate whether the bounding sphere should
// be checked/updated for each particle that is added.
// create a new genobject particle cluster
usecluster = PRT_CreateGenObjectParticleCluster(
baseobject, numelements, callback, TRUE );
// insert recursively (tail rec)
return PRT_AddGenObjectParticle( particle, baseobject, usecluster, numelements, callback );
}
// create a particle sphere centered around specific object origin ------------
//
basesphere_pcluster_s * PRT_CreateObjectCenteredSphere(
GenObject* objectpo, // object this sphere should be attached to
geomv_t radius, // radius of sphere (also used for bounding)
int animtype, // animation type (SAT_xx)
int clustersiz, // cluster size (number of particles in sphere)
int lifetime, // lifetime of sphere (each sphere particle)
pdrwinfo_s* pdinfo, // particle appearance (drawing) info
int owner // owner id (remote player id)
)
{
ASSERT( objectpo != NULL );
// check if animation type is allowed for object-centered spheres
if ( ( animtype & SAT_VALID_FOR_OBJECTCENTERED_SPHERE ) == 0 ) {
ASSERT( 0 );
return NULL;
}
// fetch pdefinfo if supplied
int bitmapindx = pdinfo ? pdinfo->bmindx : SPHERE_BM_INDX;
int pcolor = pdinfo ? pdinfo->pcolor : SPHERE_PARTICLE_COLOR;
float refz = pdinfo ? pdinfo->ref_z : sphere_ref_z;
int sizebound = pdinfo ? pdinfo->sizebnd : partbitmap_size_bound;
// determine sphere's shape
int spheretype = animtype & SAT_SPHERE_TYPE_MASK;
// determine number of cluster elements
int allocsiz = ( animtype & SAT_NEEDS_REFCOORDS_MASK ) ?
clustersiz * 2 : clustersiz;
// fetch extinfo if supplied
pextinfo_s *extinfo = pdinfo ? pdinfo->extinfo : NULL;
// determine cluster hints
dword hints = CT_HINT_PARTICLES_IDENTICAL | CT_CLUSTER_GLOBAL_EXTINFO;
// determine cluster type
dword clustertype = CT_OBJECTCENTERED_SPHERE | hints;
if ( extinfo != NULL ) {
clustertype |= CT_EXTINFO_STORAGE | CT_HINT_PARTICLES_HAVE_EXTINFO;
}
// create new cluster
basesphere_pcluster_s *cluster = (basesphere_pcluster_s *)
PRT_NewCluster( clustertype, allocsiz, 0 );
// fill in basic fields
cluster->bdsphere = radius;
cluster->animtype = animtype;
cluster->lifetime = lifetime;
cluster->max_life = lifetime;
// fill in additional fields
switch ( animtype & SAT_BASIC_ANIM_MASK ) {
case SAT_ROTATING:
cluster->rot.pitch = SPHERE_ROT_PITCH;
cluster->rot.yaw = SPHERE_ROT_YAW;
cluster->rot.roll = SPHERE_ROT_ROLL;
break;
case SAT_STOCHASTIC_MOTION:
cluster->rand.radius = radius;
cluster->rand.speed = SPHERE_STOCHASTIC_MOTION_SPEED;
cluster->rand.fcount = cluster->rand.speed;
break;
}
// set particle properties
int curp = 0;
for ( curp = 0; curp < clustersiz; curp++ ) {
Vertex3 particlepos;
CalcSphereParticlePosition( particlepos, radius, spheretype );
// copy extinfo into cluster
pextinfo_s *curextinfo = NULL;
if ( extinfo != NULL ) {
curextinfo = (pextinfo_s *)( cluster->rep + allocsiz ) + curp;
memcpy( curextinfo, extinfo, sizeof( pextinfo_s ) );
}
// init particle in cluster
PRT_InitClusterParticle( cluster, curp, bitmapindx, pcolor,
sizebound, refz,
&particlepos, NULL,
INFINITE_LIFETIME, owner,
curextinfo );
}
// make second copy of particles if required by animation type
if ( animtype & SAT_NEEDS_REFCOORDS_MASK ) {
for ( int refp = 0; curp < clustersiz * 2; curp++, refp++ ) {
cluster->rep[ curp ] = cluster->rep[ refp ];
}
}
//NOTE:
// the optional second copy of all particles is not drawn
// because the number of cluster elements is not increased
// for them. (the particles are simply copied into the cluster!)
// therefore, this block of particles is inactive and invisible
// and can safely be used for reference purposes.
// note also that the duplicate extinfo pointers pose no problem
// for the exact same reason.
// attach sphere's particle cluster to object
PRT_AttachClusterToObject( objectpo, cluster );
return cluster;
}
// create particle object comprising a sphere ---------------------------------
//
sphereobj_pcluster_s* PRT_CreateParticleSphereObject (
Vertex3& origin, // origin of particle object
geomv_t radius, // radius of sphere (also used for bounding)
int animtype, // animation type (SAT_xx)
int clustersiz, // cluster size (number of particles in sphere)
int lifetime, // lifetime of sphere (each sphere particle)
pdrwinfo_s* pdinfo, // particle appearance (drawing) info
int owner // owner id (remote player id)
)
{
// check if animation type is allowed for particle sphere objects
if ( ( animtype & SAT_VALID_FOR_PSPHERE_OBJECT ) == 0 ) {
ASSERT( 0 );
return NULL;
}
// fetch pdefinfo if supplied
int bitmapindx = pdinfo ? pdinfo->bmindx : SPHERE_BM_INDX;
int pcolor = pdinfo ? pdinfo->pcolor : SPHERE_PARTICLE_COLOR;
float refz = pdinfo ? pdinfo->ref_z : sphere_ref_z;
int sizebound = pdinfo ? pdinfo->sizebnd : partbitmap_size_bound;
// determine sphere's shape
int spheretype = animtype & SAT_SPHERE_TYPE_MASK;
// determine number of cluster elements
int allocsiz = ( animtype & SAT_NEEDS_REFCOORDS_MASK ) ?
clustersiz * 2 : clustersiz;
// fetch extinfo if supplied
pextinfo_s *extinfo = pdinfo ? pdinfo->extinfo : NULL;
// determine cluster hints
dword hints = CT_HINT_PARTICLES_IDENTICAL | CT_CLUSTER_GLOBAL_EXTINFO;
// determine cluster type
dword clustertype = CT_PARTICLE_SPHERE | hints;
if ( extinfo != NULL ) {
clustertype |= CT_EXTINFO_STORAGE | CT_HINT_PARTICLES_HAVE_EXTINFO;
}
// create new cluster
sphereobj_pcluster_s *cluster = (sphereobj_pcluster_s *)
PRT_NewCluster( clustertype, allocsiz, 0 );
// fill in basic fields
cluster->bdsphere = radius;
cluster->origin = origin;
cluster->animtype = animtype;
cluster->lifetime = lifetime;
cluster->max_life = lifetime;
// fill in additional fields
switch ( animtype & SAT_BASIC_ANIM_MASK ) {
case SAT_ROTATING:
cluster->rot.pitch = SPHERE_ROT_PITCH;
cluster->rot.yaw = SPHERE_ROT_YAW;
cluster->rot.roll = SPHERE_ROT_ROLL;
break;
case SAT_EXPLODING:
cluster->expl.speed = SPHERE_EXPLOSION_SPEED;
break;
case SAT_PULSATING:
cluster->puls.amplitude = SPHERE_PULSE_AMPLITUDE;
cluster->puls.midradius = radius;
cluster->puls.frequency = SPHERE_PULSE_FREQUENCY;
cluster->puls.current_t = BAMS_DEG0;
cluster->puls.pitch = SPHERE_ROT_PITCH;
cluster->puls.yaw = SPHERE_ROT_YAW;
cluster->puls.roll = SPHERE_ROT_ROLL;
break;
case SAT_CONTRACTING:
cluster->cont.speed = SPHERE_CONTRACT_SPEED;
cluster->cont.expandtime = CONTRACTING_SPHERE_EXPANSION_TIME;
cluster->cont.pitch = SPHERE_ROT_PITCH;
cluster->cont.yaw = SPHERE_ROT_YAW;
cluster->cont.roll = SPHERE_ROT_ROLL;
break;
}
// set particle properties
int curp = 0;
for ( curp = 0; curp < clustersiz; curp++ ) {
Vertex3 particlepos;
CalcSphereParticlePosition( particlepos, radius, spheretype );
// copy extinfo into cluster
pextinfo_s *curextinfo = NULL;
if ( extinfo != NULL ) {
curextinfo = (pextinfo_s *)( cluster->rep + allocsiz ) + curp;
memcpy( curextinfo, extinfo, sizeof( pextinfo_s ) );
}
// init particle in cluster
PRT_InitClusterParticle( cluster, curp, bitmapindx, pcolor,
sizebound, refz,
&particlepos, NULL,
INFINITE_LIFETIME, owner,
curextinfo );
}
// make second copy of particles if required by animation type
if ( animtype & SAT_NEEDS_REFCOORDS_MASK ) {
for ( int refp = 0; curp < clustersiz * 2; curp++, refp++ ) {
cluster->rep[ curp ] = cluster->rep[ refp ];
}
}
//NOTE:
// the optional second copy of all particles is not drawn
// because the number of cluster elements is not increased
// for them. (the particles are simply copied into the cluster!)
// therefore, this block of particles is inactive and invisible
// and can safely be used for reference purposes.
// note also that the duplicate extinfo pointers pose no problem
// for the exact same reason.
return cluster;
}
|