-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathd_player.pas
742 lines (605 loc) · 19.6 KB
/
d_player.pas
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
//------------------------------------------------------------------------------
//
// DelphiHexen is a source port of the game Hexen and it is
// based on original Linux Doom as published by "id Software", on
// Hexen source as published by "Raven" software and DelphiDoom
// as published by Jim Valavanis.
// Copyright (C) 2004-2022 by Jim Valavanis
//
// 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.
//
//------------------------------------------------------------------------------
// Site : https://sourceforge.net/projects/delphidoom/
//------------------------------------------------------------------------------
{$I Doom32.inc}
unit d_player;
interface
uses
// The player data structure depends on a number
// of other structs: items (internal inventory),
// animation states (closely tied to the sprites
// used to represent them, unfortunately).
p_pspr_h,
// In addition, the player is just a special
// case of the generic moving object/actor.
p_mobj_h,
// Finally, for odd reasons, the player input
// is buffered within the player data struct,
// as commands per game tick.
d_ticcmd,
m_fixed,
doomdef;
//-----------------------------------------------------------------------------
//
// DESCRIPTION:
// Players
//
//-----------------------------------------------------------------------------
//
// Player states.
//
type
playerstate_t = (
// Playing or camping.
PST_LIVE,
// Dead on the ground, view follows killer.
PST_DEAD,
// Ready to restart/respawn???
PST_REBORN);
//
// Player internal flags, for cheats and debug.
//
const
// No clipping, walk through barriers.
CF_NOCLIP = 1;
// No damage, no health loss.
CF_GODMODE = 2;
// Not really a cheat, just a debug aid.
CF_NOMOMENTUM = 4;
// Low gravity cheat
CF_LOWGRAVITY = 8;
type
//
// Extended player object info: player_t
//
player_t = record
mo: Pmobj_t;
playerstate: playerstate_t;
cmd202: ticcmd_t202;
_class: pclass_t;
// Determine POV,
// including viewpoint bobbing during movement.
// Focal origin above r.z
viewz: fixed_t;
// Base height above floor for viewz.
viewheight: fixed_t;
// Bob/squat speed.
deltaviewheight: fixed_t;
// bounded/scaled total momentum.
bob: fixed_t;
flyheight: integer;
// Look UP/DOWN support
lookdir: integer;
centering: boolean;
// Look LEFT/RIGHT support
lookdir2: byte;
oldlook2: integer;
forwarding: boolean;
// jump
oldjump: integer;
// This is only used between levels,
// mo->health is used during levels.
health: integer;
armorpoints: array[0..Ord(NUMARMOR) - 1] of integer;
inventory: array[0..NUMINVENTORYSLOTS - 1] of inventory_t;
readyArtifact: artitype_t;
artifactCount: integer;
inventorySlotNum: integer;
// Power ups. invinc and invis are tic counters.
powers: array[0..Ord(NUMPOWERS) - 1] of integer;
keys: integer;
pieces: integer; // Fourth Weapon pieces
// Frags, kills of other players.
frags: array[0..MAXPLAYERS - 1] of integer;
readyweapon: weapontype_t;
// Is wp_nochange if not changing.
pendingweapon: weapontype_t;
weaponowned: array[0..Ord(NUMWEAPONS) - 1] of boolean;
mana: array[0..Ord(NUMMANA) - 1] of integer;
// True if button down last tic.
attackdown: boolean;
usedown: boolean;
// Bit flags, for cheats and debug.
// See cheat_t, above.
cheats: integer;
// Refired shots are less accurate.
refire: integer;
// For intermission stats.
killcount: integer;
itemcount: integer;
secretcount: integer;
// Hint messages.
_message: string[255];
messagetics: integer;
// For screen flashing (red or bright).
damagecount: integer;
bonuscount: integer;
poisoncount: integer; // screen flash for poison damage
poisoner: Pmobj_t; // NULL for non-player mobjs
// Who did damage (NULL for floors/ceilings).
attacker: Pmobj_t;
attackerx: fixed_t; // JVAL last attacker coordinates
attackery: fixed_t;
// So gun flashes light up areas.
extralight: integer;
// Current PLAYPAL, ???
// can be set to REDCOLORMAP for pain, etc.
fixedcolormap: integer;
// Player skin colorshift,
// 0-3 for which color to draw player.
colormap: integer;
// Overlay view sprites (gun, etc).
psprites: array[0..Ord(NUMPSPRITES) - 1] of pspdef_t;
// True if secret level has been done.
didsecret: boolean;
morphTics: integer; // player is a pig if > 0
jumpTicks: integer; // delay the next jump for a moment
worldtimer: LongWord; // total time the player's been playing
ultimateMessage: boolean;
yellowMessage: boolean;
jumpTics: integer;
laddertics: integer;
viewbob: fixed_t; // JVAL: Slopes
slopetics: integer; // JVAL: Slopes
oldviewz: fixed_t; // JVAL: Slopes
teleporttics: integer;
quaketics: integer;
lookdir16: integer; // JVAL Smooth Look Up/Down
cmd: ticcmd_t; // JVAL Smooth Look Up/Down
quakeintensity: fixed_t;
// JVAL: 20211101 - Crouch
oldcrouch: integer;
lastongroundtime: integer;
lastautocrouchtime: integer;
crouchheight: fixed_t;
// JVAL: For the crosshair target
plinetarget: Pmobj_t;
pcrosstic: integer;
nextfire: integer;
end;
Pplayer_t = ^player_t;
type
player_t206 = record
mo: Pmobj_t;
playerstate: playerstate_t;
cmd202: ticcmd_t202;
_class: pclass_t;
// Determine POV,
// including viewpoint bobbing during movement.
// Focal origin above r.z
viewz: fixed_t;
// Base height above floor for viewz.
viewheight: fixed_t;
// Bob/squat speed.
deltaviewheight: fixed_t;
// bounded/scaled total momentum.
bob: fixed_t;
flyheight: integer;
// Look UP/DOWN support
lookdir: integer;
centering: boolean;
// Look LEFT/RIGHT support
lookdir2: byte;
oldlook2: integer;
forwarding: boolean;
// jump
oldjump: integer;
// This is only used between levels,
// mo->health is used during levels.
health: integer;
armorpoints: array[0..Ord(NUMARMOR) - 1] of integer;
inventory: array[0..NUMINVENTORYSLOTS - 1] of inventory_t;
readyArtifact: artitype_t;
artifactCount: integer;
inventorySlotNum: integer;
// Power ups. invinc and invis are tic counters.
powers: array[0..Ord(NUMPOWERS) - 1] of integer;
keys: integer;
pieces: integer; // Fourth Weapon pieces
// Frags, kills of other players.
frags: array[0..MAXPLAYERS - 1] of integer;
readyweapon: weapontype_t;
// Is wp_nochange if not changing.
pendingweapon: weapontype_t;
weaponowned: array[0..Ord(NUMWEAPONS) - 1] of boolean;
mana: array[0..Ord(NUMMANA) - 1] of integer;
// True if button down last tic.
attackdown: boolean;
usedown: boolean;
// Bit flags, for cheats and debug.
// See cheat_t, above.
cheats: integer;
// Refired shots are less accurate.
refire: integer;
// For intermission stats.
killcount: integer;
itemcount: integer;
secretcount: integer;
// Hint messages.
_message: string[255];
messagetics: integer;
// For screen flashing (red or bright).
damagecount: integer;
bonuscount: integer;
poisoncount: integer; // screen flash for poison damage
poisoner: Pmobj_t; // NULL for non-player mobjs
// Who did damage (NULL for floors/ceilings).
attacker: Pmobj_t;
attackerx: fixed_t; // JVAL last attacker coordinates
attackery: fixed_t;
// So gun flashes light up areas.
extralight: integer;
// Current PLAYPAL, ???
// can be set to REDCOLORMAP for pain, etc.
fixedcolormap: integer;
// Player skin colorshift,
// 0-3 for which color to draw player.
colormap: integer;
// Overlay view sprites (gun, etc).
psprites: array[0..Ord(NUMPSPRITES) - 1] of pspdef_t;
// True if secret level has been done.
didsecret: boolean;
morphTics: integer; // player is a pig if > 0
jumpTicks: integer; // delay the next jump for a moment
worldtimer: LongWord; // total time the player's been playing
ultimateMessage: boolean;
yellowMessage: boolean;
jumpTics: integer;
laddertics: integer;
viewbob: fixed_t; // JVAL: Slopes
slopetics: integer; // JVAL: Slopes
oldviewz: fixed_t; // JVAL: Slopes
teleporttics: integer;
quaketics: integer;
lookdir16: integer; // JVAL Smooth Look Up/Down
cmd: ticcmd_t; // JVAL Smooth Look Up/Down
quakeintensity: fixed_t;
end;
Pplayer_t206 = ^player_t206;
type
player_t205 = record
mo: Pmobj_t;
playerstate: playerstate_t;
cmd202: ticcmd_t202;
_class: pclass_t;
// Determine POV,
// including viewpoint bobbing during movement.
// Focal origin above r.z
viewz: fixed_t;
// Base height above floor for viewz.
viewheight: fixed_t;
// Bob/squat speed.
deltaviewheight: fixed_t;
// bounded/scaled total momentum.
bob: fixed_t;
flyheight: integer;
// Look UP/DOWN support
lookdir: integer;
centering: boolean;
// Look LEFT/RIGHT support
lookdir2: byte;
oldlook2: integer;
forwarding: boolean;
// jump
oldjump: integer;
// This is only used between levels,
// mo->health is used during levels.
health: integer;
armorpoints: array[0..Ord(NUMARMOR) - 1] of integer;
inventory: array[0..NUMINVENTORYSLOTS - 1] of inventory_t;
readyArtifact: artitype_t;
artifactCount: integer;
inventorySlotNum: integer;
// Power ups. invinc and invis are tic counters.
powers: array[0..Ord(NUMPOWERS) - 1] of integer;
keys: integer;
pieces: integer; // Fourth Weapon pieces
// Frags, kills of other players.
frags: array[0..MAXPLAYERS - 1] of integer;
readyweapon: weapontype_t;
// Is wp_nochange if not changing.
pendingweapon: weapontype_t;
weaponowned: array[0..Ord(NUMWEAPONS) - 1] of boolean;
mana: array[0..Ord(NUMMANA) - 1] of integer;
// True if button down last tic.
attackdown: boolean;
usedown: boolean;
// Bit flags, for cheats and debug.
// See cheat_t, above.
cheats: integer;
// Refired shots are less accurate.
refire: integer;
// For intermission stats.
killcount: integer;
itemcount: integer;
secretcount: integer;
// Hint messages.
_message: string[255];
messagetics: integer;
// For screen flashing (red or bright).
damagecount: integer;
bonuscount: integer;
poisoncount: integer; // screen flash for poison damage
poisoner: Pmobj_t; // NULL for non-player mobjs
// Who did damage (NULL for floors/ceilings).
attacker: Pmobj_t;
attackerx: fixed_t; // JVAL last attacker coordinates
attackery: fixed_t;
// So gun flashes light up areas.
extralight: integer;
// Current PLAYPAL, ???
// can be set to REDCOLORMAP for pain, etc.
fixedcolormap: integer;
// Player skin colorshift,
// 0-3 for which color to draw player.
colormap: integer;
// Overlay view sprites (gun, etc).
psprites: array[0..Ord(NUMPSPRITES) - 1] of pspdef_t;
// True if secret level has been done.
didsecret: boolean;
morphTics: integer; // player is a pig if > 0
jumpTicks: integer; // delay the next jump for a moment
worldtimer: LongWord; // total time the player's been playing
ultimateMessage: boolean;
yellowMessage: boolean;
jumpTics: integer;
laddertics: integer;
viewbob: fixed_t; // JVAL: Slopes
slopetics: integer; // JVAL: Slopes
oldviewz: fixed_t; // JVAL: Slopes
teleporttics: integer;
quaketics: integer;
lookdir16: integer; // JVAL Smooth Look Up/Down
cmd: ticcmd_t; // JVAL Smooth Look Up/Down
end;
type
player_t142 = record
mo: Pmobj_t;
playerstate: playerstate_t;
cmd: ticcmd_t202;
_class: pclass_t;
// Determine POV,
// including viewpoint bobbing during movement.
// Focal origin above r.z
viewz: fixed_t;
// Base height above floor for viewz.
viewheight: fixed_t;
// Bob/squat speed.
deltaviewheight: fixed_t;
// bounded/scaled total momentum.
bob: fixed_t;
flyheight: integer;
// Look UP/DOWN support
lookdir: integer;
centering: boolean;
// Look LEFT/RIGHT support
lookdir2: byte;
oldlook2: integer;
forwarding: boolean;
// jump
oldjump: integer;
// This is only used between levels,
// mo->health is used during levels.
health: integer;
armorpoints: array[0..Ord(NUMARMOR) - 1] of integer;
inventory: array[0..NUMINVENTORYSLOTS - 1] of inventory_t;
readyArtifact: artitype_t;
artifactCount: integer;
inventorySlotNum: integer;
// Power ups. invinc and invis are tic counters.
powers: array[0..Ord(NUMPOWERS) - 1] of integer;
keys: integer;
pieces: integer; // Fourth Weapon pieces
// Frags, kills of other players.
frags: array[0..MAXPLAYERS - 1] of integer;
readyweapon: weapontype_t;
// Is wp_nochange if not changing.
pendingweapon: weapontype_t;
weaponowned: array[0..Ord(NUMWEAPONS) - 1] of boolean;
mana: array[0..Ord(NUMMANA) - 1] of integer;
// True if button down last tic.
attackdown: boolean;
usedown: boolean;
// Bit flags, for cheats and debug.
// See cheat_t, above.
cheats: integer;
// Refired shots are less accurate.
refire: integer;
// For intermission stats.
killcount: integer;
itemcount: integer;
secretcount: integer;
// Hint messages.
_message: string[255];
messagetics: integer;
// For screen flashing (red or bright).
damagecount: integer;
bonuscount: integer;
poisoncount: integer; // screen flash for poison damage
poisoner: Pmobj_t; // NULL for non-player mobjs
// Who did damage (NULL for floors/ceilings).
attacker: Pmobj_t;
attackerx: fixed_t; // JVAL last attacker coordinates
attackery: fixed_t;
// So gun flashes light up areas.
extralight: integer;
// Current PLAYPAL, ???
// can be set to REDCOLORMAP for pain, etc.
fixedcolormap: integer;
// Player skin colorshift,
// 0-3 for which color to draw player.
colormap: integer;
// Overlay view sprites (gun, etc).
psprites: array[0..Ord(NUMPSPRITES) - 1] of pspdef_t;
// True if secret level has been done.
didsecret: boolean;
morphTics: integer; // player is a pig if > 0
jumpTicks: integer; // delay the next jump for a moment
worldtimer: LongWord; // total time the player's been playing
ultimateMessage: boolean;
yellowMessage: boolean;
jumpTics: integer;
laddertics: integer;
viewbob: fixed_t; // JVAL: Slopes
slopetics: integer; // JVAL: Slopes
oldviewz: fixed_t; // JVAL: Slopes
teleporttics: integer;
quaketics: integer;
end;
Pplayer_t142 = ^player_t142;
type
player_t141 = record
mo: Pmobj_t;
playerstate: playerstate_t;
cmd: ticcmd_t202;
_class: pclass_t;
// Determine POV,
// including viewpoint bobbing during movement.
// Focal origin above r.z
viewz: fixed_t;
// Base height above floor for viewz.
viewheight: fixed_t;
// Bob/squat speed.
deltaviewheight: fixed_t;
// bounded/scaled total momentum.
bob: fixed_t;
flyheight: integer;
// Look UP/DOWN support
lookdir: integer;
centering: boolean;
// Look LEFT/RIGHT support
lookdir2: byte;
oldlook2: integer;
forwarding: boolean;
// jump
oldjump: integer;
// This is only used between levels,
// mo->health is used during levels.
health: integer;
armorpoints: array[0..Ord(NUMARMOR) - 1] of integer;
inventory: array[0..NUMINVENTORYSLOTS - 1] of inventory_t;
readyArtifact: artitype_t;
artifactCount: integer;
inventorySlotNum: integer;
// Power ups. invinc and invis are tic counters.
powers: array[0..Ord(NUMPOWERS) - 1] of integer;
keys: integer;
pieces: integer; // Fourth Weapon pieces
// Frags, kills of other players.
frags: array[0..MAXPLAYERS - 1] of integer;
readyweapon: weapontype_t;
// Is wp_nochange if not changing.
pendingweapon: weapontype_t;
weaponowned: array[0..Ord(NUMWEAPONS) - 1] of boolean;
mana: array[0..Ord(NUMMANA) - 1] of integer;
// True if button down last tic.
attackdown: boolean;
usedown: boolean;
// Bit flags, for cheats and debug.
// See cheat_t, above.
cheats: integer;
// Refired shots are less accurate.
refire: integer;
// For intermission stats.
killcount: integer;
itemcount: integer;
secretcount: integer;
// Hint messages.
_message: string[255];
messagetics: integer;
// For screen flashing (red or bright).
damagecount: integer;
bonuscount: integer;
poisoncount: integer; // screen flash for poison damage
poisoner: Pmobj_t; // NULL for non-player mobjs
// Who did damage (NULL for floors/ceilings).
attacker: Pmobj_t;
attackerx: fixed_t; // JVAL last attacker coordinates
attackery: fixed_t;
// So gun flashes light up areas.
extralight: integer;
// Current PLAYPAL, ???
// can be set to REDCOLORMAP for pain, etc.
fixedcolormap: integer;
// Player skin colorshift,
// 0-3 for which color to draw player.
colormap: integer;
// Overlay view sprites (gun, etc).
psprites: array[0..Ord(NUMPSPRITES) - 1] of pspdef_t;
// True if secret level has been done.
didsecret: boolean;
morphTics: integer; // player is a pig if > 0
jumpTicks: integer; // delay the next jump for a moment
worldtimer: LongWord; // total time the player's been playing
ultimateMessage: boolean;
yellowMessage: boolean;
jumpTics: integer;
end;
Pplayer_t141 = ^player_t141;
//
// INTERMISSION
// Structure passed e.g. to WI_Start(wb)
//
wbplayerstruct_t = record
_in: boolean; // whether the player is in game
// Player stats, kills, collected items etc.
skills: integer;
sitems: integer;
ssecret: integer;
stime: integer;
frags: array[0..3] of integer;
score: integer; // current score on entry, modified on return
end;
Pwbplayerstruct_t = ^wbplayerstruct_t;
wbplayerstruct_tArray = packed array[0..$FFFF] of wbplayerstruct_t;
Pwbplayerstruct_tArray = ^wbplayerstruct_tArray;
wbstartstruct_t = record
epsd: integer; // episode # (0-2)
// if true, splash the secret level
didsecret: boolean;
// previous and next levels, origin 0
last: integer;
next: integer;
maxkills: integer;
maxitems: integer;
maxsecret: integer;
maxfrags: integer;
// the par time
partime: integer;
// index of this player in game
pnum: integer;
plyr: array[0..MAXPLAYERS - 1] of wbplayerstruct_t;
end;
Pwbstartstruct_t = ^wbstartstruct_t;
var
// JVAL -> moved from g_game
players: array[0..MAXPLAYERS - 1] of player_t;
// JVAL Min and Max values for player.lookdir
const
MINLOOKDIR = -110;
MAXLOOKDIR = 90;
implementation
end.