-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathd_items.pas
97 lines (87 loc) · 3.7 KB
/
d_items.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
//------------------------------------------------------------------------------
//
// FPCDoom - Port of Doom to Free Pascal Compiler
// Copyright (C) 1993-1996 by id Software, Inc.
// Copyright (C) 2004-2007 by Jim Valavanis
// Copyright (C) 2017-2018 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.
//
//------------------------------------------------------------------------------
// E-Mail: [email protected]
// Site : https://sourceforge.net/projects/fpcdoom/
//------------------------------------------------------------------------------
{$I FPCDoom.inc}
unit d_items;
interface
uses
doomdef,
info_h;
type
{ Weapon info: sprite frames, ammunition use. }
weaponinfo_t = record
ammo: ammotype_t;
upstate: integer;
downstate: integer;
readystate: integer;
atkstate: integer;
flashstate: integer;
end;
Pweaponinfo_t = ^weaponinfo_t;
//
// PSPRITE ACTIONS for waepons.
// This struct controls the weapon animations.
//
// Each entry is:
// ammo/amunition type
// upstate
// downstate
// readystate
// atkstate, i.e. attack/fire/hit frame
// flashstate, muzzle flash
//
var
weaponinfo: array[0..Ord(NUMWEAPONS) - 1] of weaponinfo_t = (
// fist
(ammo: am_noammo; upstate: Ord(S_PUNCHUP); downstate: Ord(S_PUNCHDOWN);
readystate: Ord(S_PUNCH); atkstate: Ord(S_PUNCH1); flashstate: Ord(S_NULL)),
// pistol
(ammo: am_clip; upstate: Ord(S_PISTOLUP); downstate: Ord(S_PISTOLDOWN);
readystate: Ord(S_PISTOL); atkstate: Ord(S_PISTOL1); flashstate: Ord(S_PISTOLFLASH)),
// shotgun
(ammo: am_shell; upstate: Ord(S_SGUNUP); downstate: Ord(S_SGUNDOWN);
readystate: Ord(S_SGUN); atkstate: Ord(S_SGUN1); flashstate: Ord(S_SGUNFLASH1)),
// chaingun
(ammo: am_clip; upstate: Ord(S_CHAINUP); downstate: Ord(S_CHAINDOWN);
readystate: Ord(S_CHAIN); atkstate: Ord(S_CHAIN1); flashstate: Ord(S_CHAINFLASH1)),
// missile launcher
(ammo: am_misl; upstate: Ord(S_MISSILEUP); downstate: Ord(S_MISSILEDOWN);
readystate: Ord(S_MISSILE); atkstate: Ord(S_MISSILE1); flashstate: Ord(S_MISSILEFLASH1)),
// plasma rifle
(ammo: am_cell; upstate: Ord(S_PLASMAUP); downstate: Ord(S_PLASMADOWN);
readystate: Ord(S_PLASMA); atkstate: Ord(S_PLASMA1); flashstate: Ord(S_PLASMAFLASH1)),
// bfg 9000
(ammo: am_cell; upstate: Ord(S_BFGUP); downstate: Ord(S_BFGDOWN);
readystate: Ord(S_BFG); atkstate: Ord(S_BFG1); flashstate: Ord(S_BFGFLASH1)),
// chainsaw
(ammo: am_noammo; upstate: Ord(S_SAWUP); downstate: Ord(S_SAWDOWN);
readystate: Ord(S_SAW); atkstate: Ord(S_SAW1); flashstate: Ord(S_NULL)),
// super shotgun
(ammo: am_shell; upstate: Ord(S_DSGUNUP); downstate: Ord(S_DSGUNDOWN);
readystate: Ord(S_DSGUN); atkstate: Ord(S_DSGUN1); flashstate: Ord(S_DSGUNFLASH1))
);
implementation
end.