This repository was archived by the owner on Feb 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 511
/
Copy pathBBDATA.CPP
608 lines (575 loc) · 27.5 KB
/
BBDATA.CPP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
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
/*
** Command & Conquer(tm)
** Copyright 2025 Electronic Arts Inc.
**
** 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 3 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, see <http://www.gnu.org/licenses/>.
*/
/* $Header: F:\projects\c&c\vcs\code\bbdata.cpv 2.17 16 Oct 1995 16:49:46 JOE_BOSTIC $ */
/***********************************************************************************************
*** C O N F I D E N T I A L --- W E S T W O O D S T U D I O S ***
***********************************************************************************************
* *
* Project Name : Command & Conquer *
* *
* File Name : BBDATA.CPP *
* *
* Programmer : Joe L. Bostic *
* *
* Start Date : May 23, 1994 *
* *
* Last Update : October 17, 1994 [JLB] *
* *
*---------------------------------------------------------------------------------------------*
* Functions: *
* BulletTypeClass::BulletTypeClass -- Constructor for bullet type objects. *
* BulletTypeClass::Load_Shapes -- Load shape data for bullet types. *
* BulletTypeClass::One_Time -- Performs the one time processing for bullets. *
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#include "function.h"
/***************************************************************************
** Detailed information about each class of bullet (projectile) in the game.
*/
static BulletTypeClass const ClassSniper(
BULLET_BULLET,
"50cal", // NAME: Text name of this unit type.
false, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
true, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_LIGHT_SPEED, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_HOLLOW_POINT, // WARHEAD: If fires weapon, warhead type
ANIM_PIFF // Explosion to use upon impact.
);
static BulletTypeClass const ClassBullet(
BULLET_BULLET,
"50cal", // NAME: Text name of this unit type.
false, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
true, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_LIGHT_SPEED, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_SA, // WARHEAD: If fires weapon, warhead type
ANIM_PIFF // Explosion to use upon impact.
);
static BulletTypeClass const ClassSpreadfire(
BULLET_SPREADFIRE,
"50cal", // NAME: Text name of this unit type.
true, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
true, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_LIGHT_SPEED, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_HE, // WARHEAD: If fires weapon, warhead type
ANIM_PIFFPIFF // Explosion to use upon impact.
);
static BulletTypeClass const ClassAPDS(
BULLET_APDS,
"120mm", // NAME: Text name of this unit type.
false, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_VERY_FAST, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_AP, // WARHEAD: If fires weapon, warhead type
ANIM_VEH_HIT3 // Explosion to use upon impact.
);
static BulletTypeClass const Class120mm(
BULLET_HE,
"120mm", // NAME: Text name of this unit type.
true, // Flies over tall walls?
false, // Homes in on target?
true, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
true, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_MEDIUM_FAST, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_HE, // WARHEAD: If fires weapon, warhead type
ANIM_ART_EXP1 // Explosion to use upon impact.
);
static BulletTypeClass const ClassMissile(
BULLET_SSM,
"DRAGON", // NAME: Text name of this unit type.
true, // Flies over tall walls?
true, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
true, // Will it blow up even if it gets just NEAR to target?
true, // Does it have flickering flame animation?
true, // Can it run out of fuel?
false, // Is there no visual difference between projectile facings?
true, // Is projectile inherently inaccurate?
true, // Translucent colors are used?
true, // Good against aircraft?
7, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_ROCKET, // SPEED: Miles per hour.
5, // ROT: Rate of turn (degrees per tick).
WARHEAD_HE, // WARHEAD: If fires weapon, warhead type
ANIM_FRAG1 // Explosion to use upon impact.
);
static BulletTypeClass const ClassMissile2(
BULLET_SSM2,
"DRAGON", // NAME: Text name of this unit type.
true, // Flies over tall walls?
true, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
true, // Will it blow up even if it gets just NEAR to target?
true, // Does it have flickering flame animation?
true, // Can it run out of fuel?
false, // Is there no visual difference between projectile facings?
true, // Is projectile inherently inaccurate?
true, // Translucent colors are used?
true, // Good against aircraft?
9, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_ROCKET, // SPEED: Miles per hour.
7, // ROT: Rate of turn (degrees per tick).
WARHEAD_HE, // WARHEAD: If fires weapon, warhead type
ANIM_FRAG1 // Explosion to use upon impact.
);
static BulletTypeClass const ClassPatriot(
BULLET_SAM,
"MISSILE", // NAME: Text name of this unit type.
true, // Flies over tall walls?
true, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
true, // Will it blow up even if it gets just NEAR to target?
true, // Does it have flickering flame animation?
true, // Can it run out of fuel?
false, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
true, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_VERY_FAST, // SPEED: Miles per hour.
10, // ROT: Rate of turn (degrees per tick).
WARHEAD_AP, // WARHEAD: If fires weapon, warhead type
ANIM_VEH_HIT1 // Explosion to use upon impact.
);
static BulletTypeClass const ClassDragon(
BULLET_TOW,
"DRAGON", // NAME: Text name of this unit type.
true, // Flies over tall walls?
true, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
true, // Will it blow up even if it gets just NEAR to target?
true, // Does it have flickering flame animation?
true, // Can it run out of fuel?
false, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
true, // Translucent colors are used?
true, // Good against aircraft?
3, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_ROCKET, // SPEED: Miles per hour.
5, // ROT: Rate of turn (degrees per tick).
WARHEAD_AP, // WARHEAD: If fires weapon, warhead type
ANIM_VEH_HIT2 // Explosion to use upon impact.
);
static BulletTypeClass const ClassFlame(
BULLET_FLAME,
"FLAME", // NAME: Text name of this unit type.
false, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
true, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
true, // Can it run out of fuel?
false, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
12, // ARMING: Time to arm projectile after launch.
12, // RANGE: Inherent override range factor.
MPH_FAST, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_FIRE, // WARHEAD: If fires weapon, warhead type
ANIM_NONE // Explosion to use upon impact.
);
static BulletTypeClass const ClassChem(
BULLET_CHEMSPRAY,
"FLAME", // NAME: Text name of this unit type.
false, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
true, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
true, // Can it run out of fuel?
false, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
12, // ARMING: Time to arm projectile after launch.
12, // RANGE: Inherent override range factor.
MPH_FAST, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_HE, // WARHEAD: If fires weapon, warhead type
ANIM_NONE // Explosion to use upon impact.
);
static BulletTypeClass const ClassNapalm(
BULLET_NAPALM,
"BOMBLET", // NAME: Text name of this unit type.
true, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
true, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
true, // Translucent colors are used?
false, // Good against aircraft?
24, // ARMING: Time to arm projectile after launch.
24, // RANGE: Inherent override range factor.
MPH_MEDIUM_SLOW, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_FIRE, // WARHEAD: If fires weapon, warhead type
ANIM_NAPALM2 // Explosion to use upon impact.
);
static BulletTypeClass const ClassGrenade(
BULLET_GRENADE,
"BOMB", // NAME: Text name of this unit type.
true, // Flies over tall walls?
false, // Homes in on target?
true, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
true, // Is projectile inherently inaccurate?
true, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_MEDIUM_SLOW, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_HE, // WARHEAD: If fires weapon, warhead type
ANIM_VEH_HIT2 // Explosion to use upon impact.
);
static BulletTypeClass const ClassLaser(
BULLET_LASER,
"Laser", // NAME: Text name of this unit type.
true, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
true, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_LIGHT_SPEED, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_LASER, // WARHEAD: If fires weapon, warhead type
ANIM_NONE // Explosion to use upon impact.
);
static BulletTypeClass const ClassNukeUp(
BULLET_NUKE_UP,
"ATOMICUP", // NAME: Text name of this unit type.
true, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
true, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_VERY_FAST, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_HE, // WARHEAD: If fires weapon, warhead type
ANIM_FRAG1 // Explosion to use upon impact.
);
static BulletTypeClass const ClassNukeDown(
BULLET_NUKE_DOWN,
"ATOMICDN", // NAME: Text name of this unit type.
true, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
true, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_VERY_FAST, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_HE, // WARHEAD: If fires weapon, warhead type
ANIM_ATOM_BLAST // Explosion to use upon impact.
);
static BulletTypeClass const ClassHonestJohn(
BULLET_HONEST_JOHN,
"MISSILE", // NAME: Text name of this unit type.
true, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
false, // Is this projectile invisible?
true, // Will it blow up even if it gets just NEAR to target?
true, // Does it have flickering flame animation?
true, // Can it run out of fuel?
false, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
10, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_FAST, // SPEED: Miles per hour.
10, // ROT: Rate of turn (degrees per tick).
WARHEAD_FIRE, // WARHEAD: If fires weapon, warhead type
ANIM_NAPALM3 // Explosion to use upon impact.
);
static BulletTypeClass const ClassHeadButt(
BULLET_HEADBUTT,
"GORE", // NAME: Text name of this unit type.
false, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
true, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_LIGHT_SPEED, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_HEADBUTT, // WARHEAD: If fires weapon, warhead type
ANIM_NONE // Explosion to use upon impact.
);
static BulletTypeClass const ClassTRexBite(
BULLET_TREXBITE,
"CHEW", // NAME: Text name of this unit type.
false, // Flies over tall walls?
false, // Homes in on target?
false, // Projectile arcs to the target?
false, // Is this a dropping bomb-like object?
true, // Is this projectile invisible?
false, // Will it blow up even if it gets just NEAR to target?
false, // Does it have flickering flame animation?
false, // Can it run out of fuel?
true, // Is there no visual difference between projectile facings?
false, // Is projectile inherently inaccurate?
false, // Translucent colors are used?
false, // Good against aircraft?
0, // ARMING: Time to arm projectile after launch.
0, // RANGE: Inherent override range factor.
MPH_LIGHT_SPEED, // SPEED: Miles per hour.
0, // ROT: Rate of turn (degrees per tick).
WARHEAD_FEEDME, // WARHEAD: If fires weapon, warhead type
ANIM_NONE // Explosion to use upon impact.
);
/*
** This is the array of pointers to the static data associated with
** each bullet (projectile) type.
*/
BulletTypeClass const * const BulletTypeClass::Pointers[BULLET_COUNT] = {
&ClassSniper, // BULLET_SNIPER
&ClassBullet, // BULLET_BULLET
&ClassAPDS, // BULLET_APDS
&Class120mm, // BULLET_HE
&ClassMissile, // BULLET_SSM
&ClassMissile2, // BULLET_SSM2
&ClassPatriot, // BULLET_SAM
&ClassDragon, // BULLET_TOW
&ClassFlame, // BULLET_FLAME
&ClassChem, // BULLET_CHEMSPRAY
&ClassNapalm, // BULLET_NAPALM
&ClassGrenade, // BULLET_GRENADE
&ClassLaser, // BULLET_LASER
&ClassNukeUp, // BULLET_NUKE_UP
&ClassNukeDown, // BULLET_NUKE_DOWN
&ClassHonestJohn, // BULLET_HONEST_JOHN
&ClassSpreadfire, // BULLET_SPREADFIRE
&ClassHeadButt, // BULLET_HEADBUTT
&ClassTRexBite, // BULLET_TREXBITE
};
/***********************************************************************************************
* BulletTypeClass::BulletTypeClass -- Constructor for bullet type objects. *
* *
* This is basically a constructor for static type objects used by bullets. All bullets *
* are of a type constructed by this routine at game initialization time. *
* *
* INPUT: see below... *
* *
* OUTPUT: none *
* *
* WARNINGS: none *
* *
* HISTORY: *
* 10/17/1994 JLB : Created. *
*=============================================================================================*/
BulletTypeClass::BulletTypeClass(
BulletType type,
char const *ininame,
bool is_high,
bool is_homing,
bool is_arcing,
bool is_dropping,
bool is_invisible,
bool is_proximity_armed,
bool is_flame_equipped,
bool is_fueled,
bool is_faceless,
bool is_inaccurate,
bool is_translucent,
bool is_antiaircraft,
int arming, int range, MPHType maxspeed, unsigned rot,
WarheadType warhead, AnimType explosion) :
ObjectTypeClass(true, false, false, true, false, false, true, true, TXT_NONE, ininame, ARMOR_NONE, 0)
{
Explosion = explosion;
IsHigh = is_high;
IsAntiAircraft = is_antiaircraft;
IsTranslucent = is_translucent;
IsArcing = is_arcing;
IsHoming = is_homing;
IsDropping = is_dropping;
IsInvisible = is_invisible;
IsProximityArmed = is_proximity_armed;
IsFlameEquipped = is_flame_equipped;
IsFueled = is_fueled;
IsFaceless = is_faceless;
IsInaccurate = is_inaccurate;
Type = type;
Warhead = warhead;
MaxSpeed = maxspeed;
ROT = rot;
Arming = arming;
Range = range;
}
/***********************************************************************************************
* BulletTypeClass::One_Time -- Performs the one time processing for bullets. *
* *
* This routine is used to perform any one time processing for the bullet type class. It *
* handles loading of the shape files. *
* *
* INPUT: none *
* *
* OUTPUT: none *
* *
* WARNINGS: This routine must be called before any rendering of bullets occurs and should *
* only be called once. *
* *
* HISTORY: *
* 05/28/1994 JLB : Created. *
*=============================================================================================*/
void BulletTypeClass::One_Time(void)
{
BulletType index;
/*
** Load the bullet shapes.
*/
for (index = BULLET_FIRST; index < BULLET_COUNT; index++) {
BulletTypeClass const & bullet = As_Reference(index);
char fullname[_MAX_FNAME+_MAX_EXT];
if (!bullet.IsInvisible) {
_makepath(fullname, NULL, NULL, bullet.IniName, ".SHP");
RawFileClass file(fullname);
if (file.Is_Available()) {
((void const *&)bullet.ImageData) = Load_Alloc_Data(file);
} else {
((void const *&)bullet.ImageData) = MixFileClass::Retrieve(fullname);
}
}
}
}