author | unc0rr |
Fri, 07 Mar 2008 19:44:00 +0000 | |
changeset 805 | 4d75759b38bd |
parent 803 | 3f73901a350a |
child 815 | 82ff416301bd |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
393 | 3 |
* Copyright (c) 2004-2007 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
19 |
unit uConsts; |
|
20 |
interface |
|
755 | 21 |
uses SDLh, GL, uLocale; |
4 | 22 |
{$INCLUDE options.inc} |
271 | 23 |
{$INCLUDE proto.inc} |
689 | 24 |
type |
282 | 25 |
|
4 | 26 |
TGameState = (gsLandGen, gsStart, gsGame, gsConsole, gsExit); |
282 | 27 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
112
diff
changeset
|
28 |
TGameType = (gmtLocal, gmtDemo, gmtNet, gmtSave, gmtLandPreview); |
282 | 29 |
|
80 | 30 |
TPathType = (ptNone, ptData, ptGraphics, ptThemes, ptCurrTheme, ptTeams, ptMaps, |
31 |
ptMapCurrent, ptDemos, ptSounds, ptGraves, ptFonts, ptForts, |
|
799 | 32 |
ptLocale, ptAmmoMenu, ptVoices); |
282 | 33 |
|
4 | 34 |
TSprite = (sprWater, sprCloud, sprBomb, sprBigDigit, sprFrame, |
35 |
sprLag, sprArrow, sprGrenade, sprTargetP, sprUFO, |
|
10 | 36 |
sprSmokeTrace, sprRopeHook, sprExplosion50, sprMineOff, |
78 | 37 |
sprMineOn, sprCase, sprFAid, sprDynamite, sprPower, |
80 | 38 |
sprClusterBomb, sprClusterParticle, sprFlame, sprHorizont, |
161 | 39 |
sprSky, sprAMBorders, sprAMSlot, sprAMSlotName, sprAMAmmos, |
283 | 40 |
sprAMSlotKeys, sprAMSelection, sprFinger, sprAirBomb, |
534 | 41 |
sprAirplane, sprAmAirplane, sprAmGirder, sprHHTelepMask, |
688 | 42 |
sprSwitch, sprParachute, sprTarget, sprRopeNode, sprConsoleBG, |
689 | 43 |
sprQuestion, sprPowerBar, sprWindBar, |
805 | 44 |
sprWindL, sprWindR, sprFlake); |
282 | 45 |
|
803 | 46 |
TGearType = (gtAmmo_Bomb, gtHedgehog, gtAmmo_Grenade, gtHealthTag, |
83 | 47 |
gtGrave, gtUFO, gtShotgunShot, gtPickHammer, gtRope, |
49 | 48 |
gtSmokeTrace, gtExplosion, gtMine, gtCase, gtDEagleShot, gtDynamite, |
82 | 49 |
gtTeamHealthSorter, gtClusterBomb, gtCluster, gtShover, gtFlame, |
211 | 50 |
gtFirePunch, gtATStartGame, gtATSmoothWindCh, gtATFinishGame, |
520 | 51 |
gtParachute, gtAirAttack, gtAirBomb, gtBlowTorch, gtGirder, |
590 | 52 |
gtTeleport, gtSmallDamage, gtSwitcher, gtTarget); |
282 | 53 |
|
803 | 54 |
TVisualGearType = (vgtFlake, vgtCloud); |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
801
diff
changeset
|
55 |
|
16 | 56 |
TGearsType = set of TGearType; |
282 | 57 |
|
58 |
TSound = (sndGrenadeImpact, sndExplosion, sndThrowPowerUp, sndThrowRelease, |
|
59 |
sndSplash, sndShotgunReload, sndShotgunFire, sndGraveImpact, |
|
799 | 60 |
sndMineTick, sndPickhammer, sndGun, sndUFO, sndJump1, sndJump2, |
801 | 61 |
sndJump3, sndYesSir, sndLaugh, sndIllGetYou, sndIncoming); |
282 | 62 |
|
82 | 63 |
TAmmoType = (amGrenade, amClusterBomb, amBazooka, amUFO, amShotgun, amPickHammer, |
64 |
amSkip, amRope, amMine, amDEagle, amDynamite, amFirePunch, |
|
409 | 65 |
amBaseballBat, amParachute, amAirAttack, amMineStrike, amBlowTorch, |
534 | 66 |
amGirder, amTeleport, amSwitch); |
282 | 67 |
|
522 | 68 |
THWFont = (fnt16, fntBig, fntSmall); |
282 | 69 |
|
174 | 70 |
TCapGroup = (capgrpGameState, capgrpAmmoinfo, capgrpNetSay, capgrpVolume); |
282 | 71 |
|
307 | 72 |
TStatInfoType = (siGameResult, siMaxStepDamage, siKilledHHs); |
306 | 73 |
|
4 | 74 |
THHFont = record |
75 |
Handle: PTTF_Font; |
|
371 | 76 |
Height: LongInt; |
77 |
style: LongInt; |
|
4 | 78 |
Name: string[15]; |
79 |
end; |
|
282 | 80 |
|
4 | 81 |
TAmmo = record |
82 |
Propz: LongWord; |
|
83 |
Count: LongWord; |
|
84 |
NumPerTurn: LongWord; |
|
85 |
Timer: LongWord; |
|
408 | 86 |
Pos: LongWord; |
4 | 87 |
AmmoType: TAmmoType; |
88 |
end; |
|
755 | 89 |
TTexture = record |
90 |
id: GLuint; |
|
91 |
w, h: LongInt; |
|
92 |
end; |
|
93 |
PTexture = ^TTexture; |
|
4 | 94 |
|
95 |
||
105 | 96 |
const |
43 | 97 |
errmsgCreateSurface = 'Error creating SDL surface'; |
4 | 98 |
errmsgTransparentSet = 'Error setting transparent color'; |
99 |
errmsgUnknownCommand = 'Unknown command'; |
|
100 |
errmsgUnknownVariable = 'Unknown variable'; |
|
101 |
errmsgIncorrectUse = 'Incorrect use'; |
|
102 |
errmsgShouldntRun = 'This program shouldn''t be run manually'; |
|
615 | 103 |
errmsgWrongNumber = 'Wrong parameters number'; |
4 | 104 |
|
105 |
msgLoading = 'Loading '; |
|
106 |
msgOK = 'ok'; |
|
107 |
msgFailed = 'failed'; |
|
108 |
msgGettingConfig = 'Getting game config...'; |
|
109 |
||
110 |
const |
|
304 | 111 |
cMaxPower = 1500; |
112 |
cMaxAngle = 2048; |
|
113 |
cPowerDivisor = 1500; |
|
621 | 114 |
|
74 | 115 |
MAXNAMELEN = 32; |
116 |
||
760 | 117 |
COLOR_LAND = $00FFFFFF; |
64 | 118 |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
119 |
cifRandomize = $00000001; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
120 |
cifTheme = $00000002; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
121 |
cifMap = $00000002; // either theme or map (or map+theme) |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
122 |
cifAllInited = cifRandomize or |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
123 |
cifTheme or |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
124 |
cifMap; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
125 |
|
188 | 126 |
cTransparentColor: Longword = $000000; |
4 | 127 |
|
614 | 128 |
cMaxTeams = 6; |
109 | 129 |
cMaxHHIndex = 7; |
423 | 130 |
cMaxHHs = 30; |
53 | 131 |
cMaxSpawnPoints = 1024; |
4 | 132 |
|
22 | 133 |
cMaxEdgePoints = 16384; |
134 |
||
53 | 135 |
cHHRadius = 9; |
70 | 136 |
cHHStepTicks = 38; |
509 | 137 |
|
294 | 138 |
cHHZ = 1000; |
139 |
cCurrHHZ = Succ(cHHZ); |
|
4 | 140 |
|
509 | 141 |
cShotgunRadius = 22; |
511 | 142 |
cBlowTorchC = 6; |
509 | 143 |
|
109 | 144 |
cKeyMaxIndex = 1023; |
4 | 145 |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
95
diff
changeset
|
146 |
cMaxCaptions = 4; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
95
diff
changeset
|
147 |
|
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
590
diff
changeset
|
148 |
gfForts = $00000001; |
614 | 149 |
gfMultiWeapon = $00000002; |
621 | 150 |
gfSolidLand = $00000004; |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
590
diff
changeset
|
151 |
gfOneClanMode = $10000000; |
4 | 152 |
|
153 |
gstDrowning = $00000001; |
|
154 |
gstHHDriven = $00000002; |
|
155 |
gstMoving = $00000004; |
|
156 |
gstAttacked = $00000008; |
|
157 |
gstAttacking = $00000010; |
|
158 |
gstCollision = $00000020; |
|
159 |
gstHHChooseTarget = $00000040; |
|
160 |
gstHHJumping = $00000100; |
|
161 |
gsttmpFlag = $00000200; |
|
162 |
gstHHThinking = $00000800; |
|
79 | 163 |
gstNoDamage = $00001000; |
424 | 164 |
gstHHHJump = $00002000; |
511 | 165 |
gstAnimation = $00004000; |
4 | 166 |
|
167 |
gm_Left = $00000001; |
|
168 |
gm_Right = $00000002; |
|
169 |
gm_Up = $00000004; |
|
170 |
gm_Down = $00000008; |
|
171 |
gm_Switch = $00000010; |
|
172 |
gm_Attack = $00000020; |
|
173 |
gm_LJump = $00000040; |
|
174 |
gm_HJump = $00000080; |
|
175 |
gm_Destroy= $00000100; |
|
783 | 176 |
gm_Slot = $00000200; // with param |
177 |
gm_Weapon = $00000400; // with param |
|
4 | 178 |
|
263 | 179 |
cMaxSlotIndex = 8; |
409 | 180 |
cMaxSlotAmmoIndex = 2; |
4 | 181 |
|
182 |
ammoprop_Timerable = $00000001; |
|
183 |
ammoprop_Power = $00000002; |
|
184 |
ammoprop_NeedTarget = $00000004; |
|
185 |
ammoprop_ForwMsgs = $00000008; |
|
542 | 186 |
ammoprop_AttackInMove = $00000010; |
13 | 187 |
ammoprop_NoCrosshair = $00000040; |
263 | 188 |
ammoprop_AttackingPut = $00000080; |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
189 |
ammoprop_DontHold = $00000100; |
4 | 190 |
AMMO_INFINITE = High(LongWord); |
191 |
||
42 | 192 |
EXPLAllDamageInRadius = $00000001; |
193 |
EXPLAutoSound = $00000002; |
|
194 |
EXPLNoDamage = $00000004; |
|
195 |
EXPLDoNotTouchHH = $00000008; |
|
305 | 196 |
EXPLDontDraw = $00000010; |
42 | 197 |
|
198 |
posCaseAmmo = $00000001; |
|
199 |
posCaseHealth = $00000002; |
|
4 | 200 |
|
371 | 201 |
NoPointX = Low(LongInt); |
4 | 202 |
|
74 | 203 |
cHHFileName = 'Hedgehog'; |
204 |
cCHFileName = 'Crosshair'; |
|
4 | 205 |
cThemeCFGFilename = 'theme.cfg'; |
206 |
||
207 |
Fontz: array[THWFont] of THHFont = ( |
|
351 | 208 |
(Handle: nil; |
209 |
Height: 12; |
|
202 | 210 |
style: TTF_STYLE_NORMAL; |
74 | 211 |
Name: 'DejaVuSans.ttf'), |
351 | 212 |
(Handle: nil; |
213 |
Height: 24; |
|
202 | 214 |
style: TTF_STYLE_NORMAL; |
522 | 215 |
Name: 'DejaVuSans.ttf'), |
216 |
(Handle: nil; |
|
217 |
Height: 10; |
|
218 |
style: TTF_STYLE_NORMAL; |
|
74 | 219 |
Name: 'DejaVuSans.ttf') |
4 | 220 |
); |
221 |
||
202 | 222 |
FontBorder = 2; |
223 |
||
99 | 224 |
PathPrefix: string = './'; |
225 |
Pathz: array[TPathType] of string = ( |
|
805 | 226 |
'', // ptNone |
267 | 227 |
'', // ptData |
228 |
'Graphics', // ptGraphics |
|
229 |
'Themes', // ptThemes |
|
230 |
'Themes/avematan', // ptCurrTheme |
|
231 |
'Teams', // ptTeams |
|
232 |
'Maps', // ptMaps |
|
53 | 233 |
'', // ptMapCurrent |
267 | 234 |
'Demos', // ptDemos |
235 |
'Sounds', // ptSounds |
|
236 |
'Graphics/Graves', // ptGraves |
|
237 |
'Fonts', // ptFonts |
|
238 |
'Forts', // ptForts |
|
239 |
'Locale', // ptLocale |
|
799 | 240 |
'Graphics/AmmoMenu', // ptAmmoMenu |
241 |
'Sounds/voices' // ptVoices |
|
4 | 242 |
); |
243 |
||
244 |
SpritesData: array[TSprite] of record |
|
35 | 245 |
FileName: String[31]; |
80 | 246 |
Path, AltPath: TPathType; |
755 | 247 |
Texture: PTexture; |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
248 |
Surface: PSDL_Surface; |
371 | 249 |
Width, Height: LongInt; |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
250 |
saveSurf: boolean; |
35 | 251 |
end = ( |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
252 |
(FileName: 'BlueWater'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
793 | 253 |
Width: 256; Height: 32; saveSurf: false),// sprWater |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
254 |
(FileName: 'Clouds'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
255 |
Width: 256; Height:128; saveSurf: false),// sprCloud |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
256 |
(FileName: 'Bomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
257 |
Width: 8; Height: 8; saveSurf: false),// sprBomb |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
258 |
(FileName: 'BigDigits'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
259 |
Width: 32; Height: 32; saveSurf: false),// sprBigDigit |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
260 |
(FileName: 'Frame'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
261 |
Width: 4; Height: 32; saveSurf: false),// sprFrame |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
262 |
(FileName: 'Lag'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
263 |
Width: 65; Height: 65; saveSurf: false),// sprLag |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
264 |
(FileName: 'Arrow'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
265 |
Width: 16; Height: 16; saveSurf: false),// sprCursor |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
266 |
(FileName: 'Grenade'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
775 | 267 |
Width: 16; Height: 16; saveSurf: false),// sprGrenade |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
268 |
(FileName: 'Targetp'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
269 |
Width: 32; Height: 32; saveSurf: false),// sprTargetP |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
270 |
(FileName: 'UFO'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
271 |
Width: 32; Height: 32; saveSurf: false),// sprUFO |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
272 |
(FileName: 'SmokeTrace'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
273 |
Width: 32; Height: 32; saveSurf: false),// sprSmokeTrace |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
274 |
(FileName: 'RopeHook'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
275 |
Width: 16; Height: 16; saveSurf: false),// sprRopeHook |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
276 |
(FileName: 'Expl50'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
277 |
Width: 64; Height: 64; saveSurf: false),// sprExplosion50 |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
278 |
(FileName: 'MineOff'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
279 |
Width: 8; Height: 8; saveSurf: false),// sprMineOff |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
280 |
(FileName: 'MineOn'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
281 |
Width: 8; Height: 8; saveSurf: false),// sprMineOn |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
282 |
(FileName: 'Case'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
283 |
Width: 32; Height: 32; saveSurf: false),// sprCase |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
284 |
(FileName: 'FirstAid'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
285 |
Width: 48; Height: 48; saveSurf: false),// sprFAid |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
286 |
(FileName: 'dynamite'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
287 |
Width: 32; Height: 32; saveSurf: false),// sprDynamite |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
288 |
(FileName: 'Power'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
289 |
Width: 32; Height: 32; saveSurf: false),// sprPower |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
290 |
(FileName: 'ClBomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
291 |
Width: 16; Height: 16; saveSurf: false),// sprClusterBomb |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
292 |
(FileName: 'ClParticle'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
293 |
Width: 16; Height: 16; saveSurf: false),// sprClusterParticle |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
294 |
(FileName: 'Flame'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
295 |
Width: 16; Height: 16; saveSurf: false),// sprFlame |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
296 |
(FileName: 'horizont'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
297 |
Width: 0; Height: 0; saveSurf: false),// sprHorizont |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
298 |
(FileName: 'Sky'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
299 |
Width: 0; Height: 0; saveSurf: false),// sprSky |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
300 |
(FileName: 'BrdrLines'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
301 |
Width: 202; Height: 1; saveSurf: false),// sprAMBorders |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
302 |
(FileName: 'Slot'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
303 |
Width: 202; Height: 33; saveSurf: false),// sprAMSlot |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
304 |
(FileName: 'AmmoName'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
305 |
Width: 202; Height: 33; saveSurf: false),// sprAMSlotName |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
306 |
(FileName: 'Ammos'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
307 |
Width: 32; Height: 32; saveSurf: false),// sprAMAmmos |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
308 |
(FileName: 'SlotKeys'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
309 |
Width: 32; Height: 32; saveSurf: false),// sprAMSlotKeys |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
310 |
(FileName: 'Selection'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
311 |
Width: 32; Height: 32; saveSurf: false),// sprAMSelection |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
312 |
(FileName: 'Finger'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
313 |
Width: 32; Height: 48; saveSurf: false),// sprFinger |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
314 |
(FileName: 'AirBomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
315 |
Width: 16; Height: 16; saveSurf: false),// sprAirBomb |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
316 |
(FileName: 'Airplane'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
317 |
Width: 125; Height: 42; saveSurf: false),// sprAirplane |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
318 |
(FileName: 'amAirplane'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
319 |
Width: 64; Height: 32; saveSurf: false),// sprAmAirplane |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
320 |
(FileName: 'amGirder'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
321 |
Width: 160; Height:160; saveSurf: true),// sprAmGirder |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
322 |
(FileName: 'hhMask'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
323 |
Width: 32; Height: 32; saveSurf: true),// sprHHTelepMask |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
324 |
(FileName: 'Switch'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
325 |
Width: 32; Height: 32; saveSurf: false),// sprSwitch |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
326 |
(FileName: 'Parachute'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
327 |
Width: 48; Height: 48; saveSurf: false),// sprParachute |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
328 |
(FileName: 'Target'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
329 |
Width: 32; Height: 32; saveSurf: false),// sprTarget |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
330 |
(FileName: 'RopeNode'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
331 |
Width: 6; Height: 6; saveSurf: false),// sprRopeNode |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
332 |
(FileName: 'Console'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
333 |
Width: 256; Height:256; saveSurf: false),// sprConsoleBG |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
334 |
(FileName: 'thinking'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
335 |
Width: 32; Height: 32; saveSurf: false),// sprQuestion |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
336 |
(FileName: 'PowerBar'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
337 |
Width: 256; Height: 32; saveSurf: false),// sprPowerBar |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
338 |
(FileName: 'WindBar'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
339 |
Width: 151; Height: 17; saveSurf: false),// sprWindBar |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
340 |
(FileName: 'WindL'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
341 |
Width: 80; Height: 13; saveSurf: false),// sprWindL |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
342 |
(FileName: 'WindR'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
805 | 343 |
Width: 80; Height: 13; saveSurf: false),// sprWindR |
344 |
(FileName: 'Flake'; Path:ptCurrTheme; AltPath: ptNone; Texture: nil; Surface: nil; |
|
345 |
Width: 64; Height: 64; saveSurf: false) // sprFlake |
|
35 | 346 |
); |
688 | 347 |
|
4 | 348 |
Soundz: array[TSound] of record |
799 | 349 |
FileName: String[31]; |
350 |
Path : TPathType; |
|
351 |
id : PMixChunk; |
|
352 |
lastChan: LongInt; |
|
353 |
end = ( |
|
354 |
(FileName: 'grenadeimpact.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndGrenadeImpact |
|
355 |
(FileName: 'explosion.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndExplosion |
|
356 |
(FileName: 'throwpowerup.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndThrowPowerUp |
|
357 |
(FileName: 'throwrelease.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndThrowRelease |
|
358 |
(FileName: 'splash.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndSplash |
|
359 |
(FileName: 'shotgunreload.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndShotgunReload |
|
360 |
(FileName: 'shotgunfire.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndShotgunFire |
|
361 |
(FileName: 'graveimpact.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndGraveImpact |
|
362 |
(FileName: 'minetick.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndMineTicks |
|
363 |
(FileName: 'pickhammer.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndPickhammer |
|
364 |
(FileName: 'gun.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndGun |
|
365 |
(FileName: 'ufo.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndUFO |
|
366 |
(FileName: 'Jump1.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndJump1 |
|
367 |
(FileName: 'Jump2.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndJump2 |
|
800 | 368 |
(FileName: 'Jump3.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndJump3 |
369 |
(FileName: 'Yessir.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndYesSir |
|
801 | 370 |
(FileName: 'Laugh.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndLaugh |
371 |
(FileName: 'Illgetyou.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndIllGetYou |
|
372 |
(FileName: 'Incoming.ogg'; Path: ptVoices; id: nil; lastChan: 0) // sndIncoming |
|
799 | 373 |
); |
4 | 374 |
|
375 |
Ammoz: array [TAmmoType] of record |
|
80 | 376 |
NameId: TAmmoStrId; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
377 |
Probability, NumberInCase: Longword; |
4 | 378 |
Ammo: TAmmo; |
112 | 379 |
Slot: 0..cMaxSlotIndex; |
4 | 380 |
TimeAfterTurn: Longword; |
304 | 381 |
minAngle, maxAngle: Longword; |
408 | 382 |
PosCount: Longword; |
383 |
PosSprite: TSprite; |
|
4 | 384 |
end = ( |
80 | 385 |
(NameId: sidGrenade; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
386 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
387 |
NumberInCase: 1; |
263 | 388 |
Ammo: (Propz: ammoprop_Timerable or |
389 |
ammoprop_Power; |
|
4 | 390 |
Count: AMMO_INFINITE; |
391 |
NumPerTurn: 0; |
|
392 |
Timer: 3000; |
|
408 | 393 |
Pos: 0; |
4 | 394 |
AmmoType: amGrenade); |
10 | 395 |
Slot: 1; |
351 | 396 |
TimeAfterTurn: 3000; |
397 |
minAngle: 0; |
|
408 | 398 |
maxAngle: 0; |
495 | 399 |
PosCount: 1; |
400 |
PosSprite: sprWater), |
|
80 | 401 |
(NameId: sidClusterBomb; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
402 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
403 |
NumberInCase: 3; |
263 | 404 |
Ammo: (Propz: ammoprop_Timerable or |
405 |
ammoprop_Power; |
|
78 | 406 |
Count: 5; |
407 |
NumPerTurn: 0; |
|
408 |
Timer: 3000; |
|
408 | 409 |
Pos: 0; |
78 | 410 |
AmmoType: amClusterBomb); |
411 |
Slot: 1; |
|
351 | 412 |
TimeAfterTurn: 3000; |
413 |
minAngle: 0; |
|
408 | 414 |
maxAngle: 0; |
495 | 415 |
PosCount: 1; |
416 |
PosSprite: sprWater), |
|
80 | 417 |
(NameId: sidBazooka; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
418 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
419 |
NumberInCase: 1; |
4 | 420 |
Ammo: (Propz: ammoprop_Power; |
421 |
Count: AMMO_INFINITE; |
|
422 |
NumPerTurn: 0; |
|
423 |
Timer: 0; |
|
408 | 424 |
Pos: 0; |
4 | 425 |
AmmoType: amBazooka); |
10 | 426 |
Slot: 0; |
351 | 427 |
TimeAfterTurn: 3000; |
428 |
minAngle: 0; |
|
408 | 429 |
maxAngle: 0; |
495 | 430 |
PosCount: 1; |
431 |
PosSprite: sprWater), |
|
80 | 432 |
(NameId: sidUFO; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
433 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
434 |
NumberInCase: 1; |
263 | 435 |
Ammo: (Propz: ammoprop_Power or |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
436 |
ammoprop_NeedTarget or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
437 |
ammoprop_DontHold; |
56 | 438 |
Count: 2; |
4 | 439 |
NumPerTurn: 0; |
440 |
Timer: 0; |
|
408 | 441 |
Pos: 0; |
4 | 442 |
AmmoType: amUFO); |
443 |
Slot: 0; |
|
351 | 444 |
TimeAfterTurn: 3000; |
445 |
minAngle: 0; |
|
408 | 446 |
maxAngle: 0; |
495 | 447 |
PosCount: 1; |
448 |
PosSprite: sprWater), |
|
80 | 449 |
(NameId: sidShotgun; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
450 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
451 |
NumberInCase: 1; |
95 | 452 |
Ammo: (Propz: ammoprop_ForwMsgs; |
4 | 453 |
Count: AMMO_INFINITE; |
454 |
NumPerTurn: 1; |
|
455 |
Timer: 0; |
|
408 | 456 |
Pos: 0; |
4 | 457 |
AmmoType: amShotgun); |
458 |
Slot: 2; |
|
351 | 459 |
TimeAfterTurn: 3000; |
460 |
minAngle: 0; |
|
408 | 461 |
maxAngle: 0; |
495 | 462 |
PosCount: 1; |
463 |
PosSprite: sprWater), |
|
80 | 464 |
(NameId: sidPickHammer; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
465 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
466 |
NumberInCase: 1; |
263 | 467 |
Ammo: (Propz: ammoprop_ForwMsgs or |
542 | 468 |
ammoprop_AttackInMove or |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
469 |
ammoprop_NoCrosshair or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
470 |
ammoprop_DontHold; |
4 | 471 |
Count: 2; |
472 |
NumPerTurn: 0; |
|
473 |
Timer: 0; |
|
408 | 474 |
Pos: 0; |
4 | 475 |
AmmoType: amPickHammer); |
263 | 476 |
Slot: 6; |
351 | 477 |
TimeAfterTurn: 0; |
478 |
minAngle: 0; |
|
408 | 479 |
maxAngle: 0; |
495 | 480 |
PosCount: 1; |
481 |
PosSprite: sprWater), |
|
80 | 482 |
(NameId: sidSkip; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
483 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
484 |
NumberInCase: 1; |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
485 |
Ammo: (Propz: ammoprop_DontHold; |
4 | 486 |
Count: AMMO_INFINITE; |
487 |
NumPerTurn: 0; |
|
488 |
Timer: 0; |
|
408 | 489 |
Pos: 0; |
4 | 490 |
AmmoType: amSkip); |
263 | 491 |
Slot: 8; |
351 | 492 |
TimeAfterTurn: 0; |
493 |
minAngle: 0; |
|
408 | 494 |
maxAngle: 0; |
495 | 495 |
PosCount: 1; |
496 |
PosSprite: sprWater), |
|
80 | 497 |
(NameId: sidRope; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
498 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
499 |
NumberInCase: 3; |
263 | 500 |
Ammo: (Propz: ammoprop_ForwMsgs or |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
501 |
ammoprop_AttackInMove or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
502 |
ammoprop_DontHold; |
4 | 503 |
Count: 5; |
504 |
NumPerTurn: 0; |
|
505 |
Timer: 0; |
|
408 | 506 |
Pos: 0; |
4 | 507 |
AmmoType: amRope); |
263 | 508 |
Slot: 7; |
304 | 509 |
TimeAfterTurn: 0; |
351 | 510 |
minAngle: 0; |
408 | 511 |
maxAngle: cMaxAngle div 2; |
495 | 512 |
PosCount: 1; |
513 |
PosSprite: sprWater), |
|
80 | 514 |
(NameId: sidMine; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
515 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
516 |
NumberInCase: 1; |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
517 |
Ammo: (Propz: ammoprop_NoCrosshair or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
518 |
ammoprop_DontHold; |
56 | 519 |
Count: 2; |
10 | 520 |
NumPerTurn: 0; |
521 |
Timer: 0; |
|
408 | 522 |
Pos: 0; |
10 | 523 |
AmmoType: amMine); |
79 | 524 |
Slot: 4; |
351 | 525 |
TimeAfterTurn: 5000; |
526 |
minAngle: 0; |
|
408 | 527 |
maxAngle: 0; |
495 | 528 |
PosCount: 1; |
529 |
PosSprite: sprWater), |
|
80 | 530 |
(NameId: sidDEagle; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
531 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
532 |
NumberInCase: 2; |
37 | 533 |
Ammo: (Propz: 0; |
75 | 534 |
Count: 3; |
37 | 535 |
NumPerTurn: 3; |
536 |
Timer: 0; |
|
408 | 537 |
Pos: 0; |
37 | 538 |
AmmoType: amDEagle); |
539 |
Slot: 2; |
|
351 | 540 |
TimeAfterTurn: 3000; |
541 |
minAngle: 0; |
|
408 | 542 |
maxAngle: 0; |
495 | 543 |
PosCount: 1; |
544 |
PosSprite: sprWater), |
|
408 | 545 |
(NameId: sidDynamite; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
546 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
547 |
NumberInCase: 1; |
408 | 548 |
Ammo: (Propz: ammoprop_NoCrosshair or |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
549 |
ammoprop_AttackInMove or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
550 |
ammoprop_DontHold; |
408 | 551 |
Count: 1; |
552 |
NumPerTurn: 0; |
|
553 |
Timer: 0; |
|
554 |
Pos: 0; |
|
555 |
AmmoType: amDynamite); |
|
556 |
Slot: 4; |
|
557 |
TimeAfterTurn: 5000; |
|
351 | 558 |
minAngle: 0; |
408 | 559 |
maxAngle: 0; |
495 | 560 |
PosCount: 1; |
561 |
PosSprite: sprWater), |
|
408 | 562 |
(NameId: sidFirePunch; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
563 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
564 |
NumberInCase: 1; |
408 | 565 |
Ammo: (Propz: ammoprop_NoCrosshair or |
566 |
ammoprop_ForwMsgs or |
|
542 | 567 |
ammoprop_AttackInMove; |
408 | 568 |
Count: AMMO_INFINITE; |
569 |
NumPerTurn: 0; |
|
570 |
Timer: 0; |
|
571 |
Pos: 0; |
|
572 |
AmmoType: amFirePunch); |
|
573 |
Slot: 3; |
|
574 |
TimeAfterTurn: 3000; |
|
575 |
MinAngle: 0; |
|
576 |
maxAngle: 0; |
|
495 | 577 |
PosCount: 1; |
578 |
PosSprite: sprWater), |
|
408 | 579 |
(NameId: sidBaseballBat; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
580 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
581 |
NumberInCase: 1; |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
582 |
Ammo: (Propz: ammoprop_DontHold; |
408 | 583 |
Count: 1; |
584 |
NumPerTurn: 0; |
|
585 |
Timer: 0; |
|
586 |
Pos: 0; |
|
587 |
AmmoType: amBaseballBat); |
|
588 |
Slot: 3; |
|
589 |
TimeAfterTurn: 5000; |
|
351 | 590 |
minAngle: 0; |
408 | 591 |
maxAngle: cMaxAngle div 2; |
495 | 592 |
PosCount: 1; |
593 |
PosSprite: sprWater), |
|
211 | 594 |
(NameId: sidParachute; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
595 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
596 |
NumberInCase: 1; |
263 | 597 |
Ammo: (Propz: ammoprop_ForwMsgs or |
542 | 598 |
ammoprop_AttackInMove or |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
599 |
ammoprop_NoCrosshair or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
600 |
ammoprop_DontHold; |
211 | 601 |
Count: 2; |
602 |
NumPerTurn: 0; |
|
603 |
Timer: 0; |
|
408 | 604 |
Pos: 0; |
211 | 605 |
AmmoType: amParachute); |
263 | 606 |
Slot: 7; |
351 | 607 |
TimeAfterTurn: 0; |
608 |
minAngle: 0; |
|
408 | 609 |
maxAngle: 0; |
495 | 610 |
PosCount: 1; |
611 |
PosSprite: sprWater), |
|
263 | 612 |
(NameId: sidAirAttack; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
613 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
614 |
NumberInCase: 1; |
263 | 615 |
Ammo: (Propz: ammoprop_NoCrosshair or |
616 |
ammoprop_NeedTarget or |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
617 |
ammoprop_AttackingPut or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
618 |
ammoprop_DontHold; |
285 | 619 |
Count: 1; |
263 | 620 |
NumPerTurn: 0; |
621 |
Timer: 0; |
|
408 | 622 |
Pos: 0; |
263 | 623 |
AmmoType: amAirAttack); |
624 |
Slot: 5; |
|
351 | 625 |
TimeAfterTurn: 0; |
626 |
minAngle: 0; |
|
408 | 627 |
maxAngle: 0; |
628 |
PosCount: 2; |
|
629 |
PosSprite: sprAmAirplane), |
|
285 | 630 |
(NameId: sidMineStrike; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
631 |
Probability: 400; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
632 |
NumberInCase: 1; |
285 | 633 |
Ammo: (Propz: ammoprop_NoCrosshair or |
634 |
ammoprop_NeedTarget or |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
635 |
ammoprop_AttackingPut or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
636 |
ammoprop_DontHold; |
285 | 637 |
Count: 1; |
638 |
NumPerTurn: 0; |
|
639 |
Timer: 0; |
|
408 | 640 |
Pos: 0; |
285 | 641 |
AmmoType: amMineStrike); |
642 |
Slot: 5; |
|
351 | 643 |
TimeAfterTurn: 0; |
644 |
minAngle: 0; |
|
408 | 645 |
maxAngle: 0; |
646 |
PosCount: 2; |
|
647 |
PosSprite: sprAmAirplane), |
|
302 | 648 |
(NameId: sidBlowTorch; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
649 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
650 |
NumberInCase: 2; |
302 | 651 |
Ammo: (Propz: ammoprop_ForwMsgs; |
652 |
Count: 1; |
|
653 |
NumPerTurn: 0; |
|
654 |
Timer: 0; |
|
408 | 655 |
Pos: 0; |
302 | 656 |
AmmoType: amBlowTorch); |
657 |
Slot: 6; |
|
304 | 658 |
TimeAfterTurn: 3000; |
305 | 659 |
minAngle: 768; |
408 | 660 |
maxAngle: 1280; |
495 | 661 |
PosCount: 1; |
662 |
PosSprite: sprWater), |
|
409 | 663 |
(NameId: sidGirder; |
664 |
Probability: 400; |
|
411 | 665 |
NumberInCase: 3; |
409 | 666 |
Ammo: (Propz: ammoprop_NoCrosshair or |
667 |
ammoprop_NeedTarget or |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
668 |
ammoprop_AttackingPut or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
669 |
ammoprop_DontHold; |
409 | 670 |
Count: 1; |
671 |
NumPerTurn: 0; |
|
672 |
Timer: 0; |
|
673 |
Pos: 0; |
|
674 |
AmmoType: amGirder); |
|
675 |
Slot: 6; |
|
676 |
TimeAfterTurn: 3000; |
|
677 |
minAngle: 0; |
|
678 |
maxAngle: 0; |
|
423 | 679 |
PosCount: 8; |
520 | 680 |
PosSprite: sprAmGirder), |
681 |
(NameId: sidTeleport; |
|
682 |
Probability: 400; |
|
683 |
NumberInCase: 1; |
|
525 | 684 |
Ammo: (Propz: ammoprop_ForwMsgs or |
685 |
ammoprop_NoCrosshair or |
|
520 | 686 |
ammoprop_NeedTarget or |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
687 |
ammoprop_AttackingPut or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
688 |
ammoprop_DontHold; |
520 | 689 |
Count: 2; |
690 |
NumPerTurn: 0; |
|
691 |
Timer: 0; |
|
692 |
Pos: 0; |
|
693 |
AmmoType: amTeleport); |
|
694 |
Slot: 7; |
|
695 |
TimeAfterTurn: 0; |
|
696 |
minAngle: 0; |
|
697 |
maxAngle: 0; |
|
698 |
PosCount: 1; |
|
534 | 699 |
PosSprite: sprWater), |
700 |
(NameId: sidSwitch; |
|
701 |
Probability: 100; |
|
702 |
NumberInCase: 1; |
|
703 |
Ammo: (Propz: ammoprop_ForwMsgs or |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
704 |
ammoprop_NoCrosshair or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
705 |
ammoprop_DontHold; |
534 | 706 |
Count: 3; |
707 |
NumPerTurn: 0; |
|
708 |
Timer: 0; |
|
709 |
Pos: 0; |
|
710 |
AmmoType: amSwitch); |
|
711 |
Slot: 8; |
|
712 |
TimeAfterTurn: 0; |
|
713 |
minAngle: 0; |
|
714 |
maxAngle: 0; |
|
715 |
PosCount: 1; |
|
520 | 716 |
PosSprite: sprWater)); |
37 | 717 |
|
4 | 718 |
implementation |
719 |
||
720 |
end. |