author | unc0rr |
Sun, 13 Apr 2008 13:57:32 +0000 | |
changeset 843 | 27b5180d0988 |
parent 834 | 5687fa57a6c1 |
child 844 | 9a82149409f3 |
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, |
|
822 | 32 |
ptLocale, ptAmmoMenu, ptHedgehog, 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, |
823
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
43 |
sprQuestion, sprPowerBar, sprWindBar, sprWindL, sprWindR, |
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
44 |
sprFlake, sprHandRope, sprHandBazooka, sprHandShotgun, |
834 | 45 |
sprHandDEagle, sprHandAirAttack, sprHandBaseball); |
282 | 46 |
|
803 | 47 |
TGearType = (gtAmmo_Bomb, gtHedgehog, gtAmmo_Grenade, gtHealthTag, |
83 | 48 |
gtGrave, gtUFO, gtShotgunShot, gtPickHammer, gtRope, |
49 | 49 |
gtSmokeTrace, gtExplosion, gtMine, gtCase, gtDEagleShot, gtDynamite, |
82 | 50 |
gtTeamHealthSorter, gtClusterBomb, gtCluster, gtShover, gtFlame, |
211 | 51 |
gtFirePunch, gtATStartGame, gtATSmoothWindCh, gtATFinishGame, |
520 | 52 |
gtParachute, gtAirAttack, gtAirBomb, gtBlowTorch, gtGirder, |
590 | 53 |
gtTeleport, gtSmallDamage, gtSwitcher, gtTarget); |
282 | 54 |
|
803 | 55 |
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
|
56 |
|
16 | 57 |
TGearsType = set of TGearType; |
282 | 58 |
|
59 |
TSound = (sndGrenadeImpact, sndExplosion, sndThrowPowerUp, sndThrowRelease, |
|
60 |
sndSplash, sndShotgunReload, sndShotgunFire, sndGraveImpact, |
|
799 | 61 |
sndMineTick, sndPickhammer, sndGun, sndUFO, sndJump1, sndJump2, |
815 | 62 |
sndJump3, sndYesSir, sndLaugh, sndIllGetYou, sndIncoming, |
829 | 63 |
sndMissed, sndStupid, sndFirstBlood); |
282 | 64 |
|
82 | 65 |
TAmmoType = (amGrenade, amClusterBomb, amBazooka, amUFO, amShotgun, amPickHammer, |
66 |
amSkip, amRope, amMine, amDEagle, amDynamite, amFirePunch, |
|
409 | 67 |
amBaseballBat, amParachute, amAirAttack, amMineStrike, amBlowTorch, |
534 | 68 |
amGirder, amTeleport, amSwitch); |
282 | 69 |
|
522 | 70 |
THWFont = (fnt16, fntBig, fntSmall); |
282 | 71 |
|
174 | 72 |
TCapGroup = (capgrpGameState, capgrpAmmoinfo, capgrpNetSay, capgrpVolume); |
282 | 73 |
|
307 | 74 |
TStatInfoType = (siGameResult, siMaxStepDamage, siKilledHHs); |
306 | 75 |
|
4 | 76 |
THHFont = record |
77 |
Handle: PTTF_Font; |
|
371 | 78 |
Height: LongInt; |
79 |
style: LongInt; |
|
4 | 80 |
Name: string[15]; |
81 |
end; |
|
282 | 82 |
|
4 | 83 |
TAmmo = record |
84 |
Propz: LongWord; |
|
85 |
Count: LongWord; |
|
86 |
NumPerTurn: LongWord; |
|
87 |
Timer: LongWord; |
|
408 | 88 |
Pos: LongWord; |
4 | 89 |
AmmoType: TAmmoType; |
90 |
end; |
|
755 | 91 |
TTexture = record |
92 |
id: GLuint; |
|
93 |
w, h: LongInt; |
|
94 |
end; |
|
95 |
PTexture = ^TTexture; |
|
4 | 96 |
|
97 |
||
105 | 98 |
const |
43 | 99 |
errmsgCreateSurface = 'Error creating SDL surface'; |
4 | 100 |
errmsgTransparentSet = 'Error setting transparent color'; |
101 |
errmsgUnknownCommand = 'Unknown command'; |
|
102 |
errmsgUnknownVariable = 'Unknown variable'; |
|
103 |
errmsgIncorrectUse = 'Incorrect use'; |
|
104 |
errmsgShouldntRun = 'This program shouldn''t be run manually'; |
|
615 | 105 |
errmsgWrongNumber = 'Wrong parameters number'; |
4 | 106 |
|
107 |
msgLoading = 'Loading '; |
|
108 |
msgOK = 'ok'; |
|
109 |
msgFailed = 'failed'; |
|
110 |
msgGettingConfig = 'Getting game config...'; |
|
111 |
||
112 |
const |
|
304 | 113 |
cMaxPower = 1500; |
114 |
cMaxAngle = 2048; |
|
115 |
cPowerDivisor = 1500; |
|
621 | 116 |
|
74 | 117 |
MAXNAMELEN = 32; |
118 |
||
760 | 119 |
COLOR_LAND = $00FFFFFF; |
64 | 120 |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
121 |
cifRandomize = $00000001; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
122 |
cifTheme = $00000002; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
123 |
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
|
124 |
cifAllInited = cifRandomize or |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
125 |
cifTheme or |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
126 |
cifMap; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
127 |
|
188 | 128 |
cTransparentColor: Longword = $000000; |
4 | 129 |
|
614 | 130 |
cMaxTeams = 6; |
109 | 131 |
cMaxHHIndex = 7; |
423 | 132 |
cMaxHHs = 30; |
53 | 133 |
cMaxSpawnPoints = 1024; |
4 | 134 |
|
22 | 135 |
cMaxEdgePoints = 16384; |
136 |
||
53 | 137 |
cHHRadius = 9; |
70 | 138 |
cHHStepTicks = 38; |
509 | 139 |
|
294 | 140 |
cHHZ = 1000; |
141 |
cCurrHHZ = Succ(cHHZ); |
|
4 | 142 |
|
509 | 143 |
cShotgunRadius = 22; |
511 | 144 |
cBlowTorchC = 6; |
509 | 145 |
|
109 | 146 |
cKeyMaxIndex = 1023; |
4 | 147 |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
95
diff
changeset
|
148 |
cMaxCaptions = 4; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
95
diff
changeset
|
149 |
|
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
590
diff
changeset
|
150 |
gfForts = $00000001; |
614 | 151 |
gfMultiWeapon = $00000002; |
621 | 152 |
gfSolidLand = $00000004; |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
590
diff
changeset
|
153 |
gfOneClanMode = $10000000; |
4 | 154 |
|
155 |
gstDrowning = $00000001; |
|
156 |
gstHHDriven = $00000002; |
|
157 |
gstMoving = $00000004; |
|
158 |
gstAttacked = $00000008; |
|
159 |
gstAttacking = $00000010; |
|
160 |
gstCollision = $00000020; |
|
161 |
gstHHChooseTarget = $00000040; |
|
162 |
gstHHJumping = $00000100; |
|
163 |
gsttmpFlag = $00000200; |
|
164 |
gstHHThinking = $00000800; |
|
79 | 165 |
gstNoDamage = $00001000; |
424 | 166 |
gstHHHJump = $00002000; |
511 | 167 |
gstAnimation = $00004000; |
4 | 168 |
|
169 |
gm_Left = $00000001; |
|
170 |
gm_Right = $00000002; |
|
171 |
gm_Up = $00000004; |
|
172 |
gm_Down = $00000008; |
|
173 |
gm_Switch = $00000010; |
|
174 |
gm_Attack = $00000020; |
|
175 |
gm_LJump = $00000040; |
|
176 |
gm_HJump = $00000080; |
|
177 |
gm_Destroy= $00000100; |
|
783 | 178 |
gm_Slot = $00000200; // with param |
179 |
gm_Weapon = $00000400; // with param |
|
4 | 180 |
|
263 | 181 |
cMaxSlotIndex = 8; |
409 | 182 |
cMaxSlotAmmoIndex = 2; |
4 | 183 |
|
184 |
ammoprop_Timerable = $00000001; |
|
185 |
ammoprop_Power = $00000002; |
|
186 |
ammoprop_NeedTarget = $00000004; |
|
187 |
ammoprop_ForwMsgs = $00000008; |
|
542 | 188 |
ammoprop_AttackInMove = $00000010; |
13 | 189 |
ammoprop_NoCrosshair = $00000040; |
263 | 190 |
ammoprop_AttackingPut = $00000080; |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
191 |
ammoprop_DontHold = $00000100; |
4 | 192 |
AMMO_INFINITE = High(LongWord); |
193 |
||
42 | 194 |
EXPLAllDamageInRadius = $00000001; |
195 |
EXPLAutoSound = $00000002; |
|
196 |
EXPLNoDamage = $00000004; |
|
197 |
EXPLDoNotTouchHH = $00000008; |
|
305 | 198 |
EXPLDontDraw = $00000010; |
42 | 199 |
|
200 |
posCaseAmmo = $00000001; |
|
201 |
posCaseHealth = $00000002; |
|
4 | 202 |
|
371 | 203 |
NoPointX = Low(LongInt); |
4 | 204 |
|
74 | 205 |
cHHFileName = 'Hedgehog'; |
206 |
cCHFileName = 'Crosshair'; |
|
4 | 207 |
cThemeCFGFilename = 'theme.cfg'; |
208 |
||
209 |
Fontz: array[THWFont] of THHFont = ( |
|
351 | 210 |
(Handle: nil; |
211 |
Height: 12; |
|
202 | 212 |
style: TTF_STYLE_NORMAL; |
74 | 213 |
Name: 'DejaVuSans.ttf'), |
351 | 214 |
(Handle: nil; |
215 |
Height: 24; |
|
202 | 216 |
style: TTF_STYLE_NORMAL; |
522 | 217 |
Name: 'DejaVuSans.ttf'), |
218 |
(Handle: nil; |
|
219 |
Height: 10; |
|
220 |
style: TTF_STYLE_NORMAL; |
|
74 | 221 |
Name: 'DejaVuSans.ttf') |
4 | 222 |
); |
223 |
||
202 | 224 |
FontBorder = 2; |
225 |
||
99 | 226 |
PathPrefix: string = './'; |
227 |
Pathz: array[TPathType] of string = ( |
|
805 | 228 |
'', // ptNone |
267 | 229 |
'', // ptData |
230 |
'Graphics', // ptGraphics |
|
231 |
'Themes', // ptThemes |
|
232 |
'Themes/avematan', // ptCurrTheme |
|
233 |
'Teams', // ptTeams |
|
234 |
'Maps', // ptMaps |
|
53 | 235 |
'', // ptMapCurrent |
267 | 236 |
'Demos', // ptDemos |
237 |
'Sounds', // ptSounds |
|
238 |
'Graphics/Graves', // ptGraves |
|
239 |
'Fonts', // ptFonts |
|
240 |
'Forts', // ptForts |
|
241 |
'Locale', // ptLocale |
|
799 | 242 |
'Graphics/AmmoMenu', // ptAmmoMenu |
822 | 243 |
'Graphics/Hedgehog', // ptHedgehog |
799 | 244 |
'Sounds/voices' // ptVoices |
4 | 245 |
); |
246 |
||
247 |
SpritesData: array[TSprite] of record |
|
35 | 248 |
FileName: String[31]; |
80 | 249 |
Path, AltPath: TPathType; |
755 | 250 |
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
|
251 |
Surface: PSDL_Surface; |
371 | 252 |
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
|
253 |
saveSurf: boolean; |
35 | 254 |
end = ( |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
760
diff
changeset
|
255 |
(FileName: 'BlueWater'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
793 | 256 |
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
|
257 |
(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
|
258 |
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
|
259 |
(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
|
260 |
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
|
261 |
(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
|
262 |
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
|
263 |
(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
|
264 |
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
|
265 |
(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
|
266 |
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
|
267 |
(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
|
268 |
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
|
269 |
(FileName: 'Grenade'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
775 | 270 |
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
|
271 |
(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
|
272 |
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
|
273 |
(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
|
274 |
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
|
275 |
(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
|
276 |
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
|
277 |
(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
|
278 |
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
|
279 |
(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
|
280 |
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
|
281 |
(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
|
282 |
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
|
283 |
(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
|
284 |
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
|
285 |
(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
|
286 |
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
|
287 |
(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
|
288 |
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
|
289 |
(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
|
290 |
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
|
291 |
(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
|
292 |
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
|
293 |
(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
|
294 |
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
|
295 |
(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
|
296 |
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
|
297 |
(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
|
298 |
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
|
299 |
(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
|
300 |
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
|
301 |
(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
|
302 |
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
|
303 |
(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
|
304 |
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
|
305 |
(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
|
306 |
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
|
307 |
(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
|
308 |
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
|
309 |
(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
|
310 |
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
|
311 |
(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
|
312 |
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
|
313 |
(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
|
314 |
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
|
315 |
(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
|
316 |
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
|
317 |
(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
|
318 |
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
|
319 |
(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
|
320 |
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
|
321 |
(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
|
322 |
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
|
323 |
(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
|
324 |
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
|
325 |
(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
|
326 |
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
|
327 |
(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
|
328 |
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
|
329 |
(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
|
330 |
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
|
331 |
(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
|
332 |
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
|
333 |
(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
|
334 |
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
|
335 |
(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
|
336 |
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
|
337 |
(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
|
338 |
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
|
339 |
(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
|
340 |
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
|
341 |
(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
|
342 |
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
|
343 |
(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
|
344 |
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
|
345 |
(FileName: 'WindR'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
805 | 346 |
Width: 80; Height: 13; saveSurf: false),// sprWindR |
347 |
(FileName: 'Flake'; Path:ptCurrTheme; AltPath: ptNone; Texture: nil; Surface: nil; |
|
822 | 348 |
Width: 64; Height: 64; saveSurf: false),// sprFlake |
349 |
(FileName: 'amRope'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
823
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
350 |
Width: 32; Height: 32; saveSurf: false),// sprHandRope |
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
351 |
(FileName: 'amBazooka'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
352 |
Width: 32; Height: 32; saveSurf: false),// sprHandBazooka |
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
353 |
(FileName: 'amShotgun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
354 |
Width: 32; Height: 32; saveSurf: false),// sprHandShotgun |
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
355 |
(FileName: 'amDEagle'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
825 | 356 |
Width: 32; Height: 32; saveSurf: false),// sprHandDEagle |
357 |
(FileName:'amAirAttack'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
834 | 358 |
Width: 32; Height: 32; saveSurf: false),// sprHandAirAttack |
359 |
(FileName: 'amBaseball'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
360 |
Width: 32; Height: 32; saveSurf: false) // sprHandBaseball |
|
35 | 361 |
); |
688 | 362 |
|
4 | 363 |
Soundz: array[TSound] of record |
799 | 364 |
FileName: String[31]; |
365 |
Path : TPathType; |
|
366 |
id : PMixChunk; |
|
367 |
lastChan: LongInt; |
|
368 |
end = ( |
|
369 |
(FileName: 'grenadeimpact.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndGrenadeImpact |
|
370 |
(FileName: 'explosion.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndExplosion |
|
371 |
(FileName: 'throwpowerup.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndThrowPowerUp |
|
372 |
(FileName: 'throwrelease.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndThrowRelease |
|
373 |
(FileName: 'splash.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndSplash |
|
374 |
(FileName: 'shotgunreload.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndShotgunReload |
|
375 |
(FileName: 'shotgunfire.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndShotgunFire |
|
376 |
(FileName: 'graveimpact.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndGraveImpact |
|
377 |
(FileName: 'minetick.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndMineTicks |
|
378 |
(FileName: 'pickhammer.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndPickhammer |
|
379 |
(FileName: 'gun.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndGun |
|
380 |
(FileName: 'ufo.ogg'; Path: ptSounds; id: nil; lastChan: 0),// sndUFO |
|
381 |
(FileName: 'Jump1.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndJump1 |
|
382 |
(FileName: 'Jump2.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndJump2 |
|
800 | 383 |
(FileName: 'Jump3.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndJump3 |
384 |
(FileName: 'Yessir.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndYesSir |
|
801 | 385 |
(FileName: 'Laugh.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndLaugh |
386 |
(FileName: 'Illgetyou.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndIllGetYou |
|
815 | 387 |
(FileName: 'Incoming.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndIncoming |
388 |
(FileName: 'Missed.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndMissed |
|
829 | 389 |
(FileName: 'Stupid.ogg'; Path: ptVoices; id: nil; lastChan: 0),// sndStupid |
390 |
(FileName: 'Firstblood.ogg'; Path: ptVoices; id: nil; lastChan: 0) // sndFirstBlood |
|
815 | 391 |
); |
4 | 392 |
|
393 |
Ammoz: array [TAmmoType] of record |
|
80 | 394 |
NameId: TAmmoStrId; |
843 | 395 |
NameTex: PTexture; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
396 |
Probability, NumberInCase: Longword; |
4 | 397 |
Ammo: TAmmo; |
112 | 398 |
Slot: 0..cMaxSlotIndex; |
4 | 399 |
TimeAfterTurn: Longword; |
304 | 400 |
minAngle, maxAngle: Longword; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
401 |
isDamaging: boolean; |
408 | 402 |
PosCount: Longword; |
403 |
PosSprite: TSprite; |
|
4 | 404 |
end = ( |
80 | 405 |
(NameId: sidGrenade; |
843 | 406 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
407 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
408 |
NumberInCase: 1; |
263 | 409 |
Ammo: (Propz: ammoprop_Timerable or |
410 |
ammoprop_Power; |
|
4 | 411 |
Count: AMMO_INFINITE; |
412 |
NumPerTurn: 0; |
|
413 |
Timer: 3000; |
|
408 | 414 |
Pos: 0; |
4 | 415 |
AmmoType: amGrenade); |
10 | 416 |
Slot: 1; |
351 | 417 |
TimeAfterTurn: 3000; |
418 |
minAngle: 0; |
|
408 | 419 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
420 |
isDamaging: true; |
495 | 421 |
PosCount: 1; |
422 |
PosSprite: sprWater), |
|
80 | 423 |
(NameId: sidClusterBomb; |
843 | 424 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
425 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
426 |
NumberInCase: 3; |
263 | 427 |
Ammo: (Propz: ammoprop_Timerable or |
428 |
ammoprop_Power; |
|
78 | 429 |
Count: 5; |
430 |
NumPerTurn: 0; |
|
431 |
Timer: 3000; |
|
408 | 432 |
Pos: 0; |
78 | 433 |
AmmoType: amClusterBomb); |
434 |
Slot: 1; |
|
351 | 435 |
TimeAfterTurn: 3000; |
436 |
minAngle: 0; |
|
408 | 437 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
438 |
isDamaging: true; |
495 | 439 |
PosCount: 1; |
440 |
PosSprite: sprWater), |
|
80 | 441 |
(NameId: sidBazooka; |
843 | 442 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
443 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
444 |
NumberInCase: 1; |
4 | 445 |
Ammo: (Propz: ammoprop_Power; |
446 |
Count: AMMO_INFINITE; |
|
447 |
NumPerTurn: 0; |
|
448 |
Timer: 0; |
|
408 | 449 |
Pos: 0; |
4 | 450 |
AmmoType: amBazooka); |
10 | 451 |
Slot: 0; |
351 | 452 |
TimeAfterTurn: 3000; |
453 |
minAngle: 0; |
|
408 | 454 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
455 |
isDamaging: true; |
495 | 456 |
PosCount: 1; |
457 |
PosSprite: sprWater), |
|
80 | 458 |
(NameId: sidUFO; |
843 | 459 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
460 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
461 |
NumberInCase: 1; |
263 | 462 |
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
|
463 |
ammoprop_NeedTarget or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
464 |
ammoprop_DontHold; |
56 | 465 |
Count: 2; |
4 | 466 |
NumPerTurn: 0; |
467 |
Timer: 0; |
|
408 | 468 |
Pos: 0; |
4 | 469 |
AmmoType: amUFO); |
470 |
Slot: 0; |
|
351 | 471 |
TimeAfterTurn: 3000; |
472 |
minAngle: 0; |
|
408 | 473 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
474 |
isDamaging: true; |
495 | 475 |
PosCount: 1; |
476 |
PosSprite: sprWater), |
|
80 | 477 |
(NameId: sidShotgun; |
843 | 478 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
479 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
480 |
NumberInCase: 1; |
95 | 481 |
Ammo: (Propz: ammoprop_ForwMsgs; |
4 | 482 |
Count: AMMO_INFINITE; |
483 |
NumPerTurn: 1; |
|
484 |
Timer: 0; |
|
408 | 485 |
Pos: 0; |
4 | 486 |
AmmoType: amShotgun); |
487 |
Slot: 2; |
|
351 | 488 |
TimeAfterTurn: 3000; |
489 |
minAngle: 0; |
|
408 | 490 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
491 |
isDamaging: true; |
495 | 492 |
PosCount: 1; |
493 |
PosSprite: sprWater), |
|
80 | 494 |
(NameId: sidPickHammer; |
843 | 495 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
496 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
497 |
NumberInCase: 1; |
263 | 498 |
Ammo: (Propz: ammoprop_ForwMsgs or |
542 | 499 |
ammoprop_AttackInMove or |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
500 |
ammoprop_NoCrosshair or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
501 |
ammoprop_DontHold; |
4 | 502 |
Count: 2; |
503 |
NumPerTurn: 0; |
|
504 |
Timer: 0; |
|
408 | 505 |
Pos: 0; |
4 | 506 |
AmmoType: amPickHammer); |
263 | 507 |
Slot: 6; |
351 | 508 |
TimeAfterTurn: 0; |
509 |
minAngle: 0; |
|
408 | 510 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
511 |
isDamaging: false; |
495 | 512 |
PosCount: 1; |
513 |
PosSprite: sprWater), |
|
80 | 514 |
(NameId: sidSkip; |
843 | 515 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
516 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
517 |
NumberInCase: 1; |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
518 |
Ammo: (Propz: ammoprop_DontHold; |
4 | 519 |
Count: AMMO_INFINITE; |
520 |
NumPerTurn: 0; |
|
521 |
Timer: 0; |
|
408 | 522 |
Pos: 0; |
4 | 523 |
AmmoType: amSkip); |
263 | 524 |
Slot: 8; |
351 | 525 |
TimeAfterTurn: 0; |
526 |
minAngle: 0; |
|
408 | 527 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
528 |
isDamaging: false; |
495 | 529 |
PosCount: 1; |
530 |
PosSprite: sprWater), |
|
80 | 531 |
(NameId: sidRope; |
843 | 532 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
533 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
534 |
NumberInCase: 3; |
263 | 535 |
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
|
536 |
ammoprop_AttackInMove or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
537 |
ammoprop_DontHold; |
4 | 538 |
Count: 5; |
539 |
NumPerTurn: 0; |
|
540 |
Timer: 0; |
|
408 | 541 |
Pos: 0; |
4 | 542 |
AmmoType: amRope); |
263 | 543 |
Slot: 7; |
304 | 544 |
TimeAfterTurn: 0; |
351 | 545 |
minAngle: 0; |
823
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
546 |
maxAngle: cMaxAngle div 2; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
547 |
isDamaging: false; |
495 | 548 |
PosCount: 1; |
549 |
PosSprite: sprWater), |
|
80 | 550 |
(NameId: sidMine; |
843 | 551 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
552 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
553 |
NumberInCase: 1; |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
554 |
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
|
555 |
ammoprop_DontHold; |
56 | 556 |
Count: 2; |
10 | 557 |
NumPerTurn: 0; |
558 |
Timer: 0; |
|
408 | 559 |
Pos: 0; |
10 | 560 |
AmmoType: amMine); |
79 | 561 |
Slot: 4; |
351 | 562 |
TimeAfterTurn: 5000; |
563 |
minAngle: 0; |
|
408 | 564 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
565 |
isDamaging: true; |
495 | 566 |
PosCount: 1; |
567 |
PosSprite: sprWater), |
|
80 | 568 |
(NameId: sidDEagle; |
843 | 569 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
570 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
571 |
NumberInCase: 2; |
37 | 572 |
Ammo: (Propz: 0; |
75 | 573 |
Count: 3; |
37 | 574 |
NumPerTurn: 3; |
575 |
Timer: 0; |
|
408 | 576 |
Pos: 0; |
37 | 577 |
AmmoType: amDEagle); |
578 |
Slot: 2; |
|
351 | 579 |
TimeAfterTurn: 3000; |
580 |
minAngle: 0; |
|
408 | 581 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
582 |
isDamaging: true; |
495 | 583 |
PosCount: 1; |
584 |
PosSprite: sprWater), |
|
408 | 585 |
(NameId: sidDynamite; |
843 | 586 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
587 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
588 |
NumberInCase: 1; |
408 | 589 |
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
|
590 |
ammoprop_AttackInMove or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
591 |
ammoprop_DontHold; |
408 | 592 |
Count: 1; |
593 |
NumPerTurn: 0; |
|
594 |
Timer: 0; |
|
595 |
Pos: 0; |
|
596 |
AmmoType: amDynamite); |
|
597 |
Slot: 4; |
|
598 |
TimeAfterTurn: 5000; |
|
351 | 599 |
minAngle: 0; |
408 | 600 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
601 |
isDamaging: true; |
495 | 602 |
PosCount: 1; |
603 |
PosSprite: sprWater), |
|
408 | 604 |
(NameId: sidFirePunch; |
843 | 605 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
606 |
Probability: 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
607 |
NumberInCase: 1; |
408 | 608 |
Ammo: (Propz: ammoprop_NoCrosshair or |
609 |
ammoprop_ForwMsgs or |
|
542 | 610 |
ammoprop_AttackInMove; |
408 | 611 |
Count: AMMO_INFINITE; |
612 |
NumPerTurn: 0; |
|
613 |
Timer: 0; |
|
614 |
Pos: 0; |
|
615 |
AmmoType: amFirePunch); |
|
616 |
Slot: 3; |
|
617 |
TimeAfterTurn: 3000; |
|
618 |
MinAngle: 0; |
|
619 |
maxAngle: 0; |
|
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
620 |
isDamaging: true; |
495 | 621 |
PosCount: 1; |
622 |
PosSprite: sprWater), |
|
408 | 623 |
(NameId: sidBaseballBat; |
843 | 624 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
625 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
626 |
NumberInCase: 1; |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
627 |
Ammo: (Propz: ammoprop_DontHold; |
408 | 628 |
Count: 1; |
629 |
NumPerTurn: 0; |
|
630 |
Timer: 0; |
|
631 |
Pos: 0; |
|
632 |
AmmoType: amBaseballBat); |
|
633 |
Slot: 3; |
|
634 |
TimeAfterTurn: 5000; |
|
351 | 635 |
minAngle: 0; |
408 | 636 |
maxAngle: cMaxAngle div 2; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
637 |
isDamaging: true; |
495 | 638 |
PosCount: 1; |
639 |
PosSprite: sprWater), |
|
211 | 640 |
(NameId: sidParachute; |
843 | 641 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
642 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
643 |
NumberInCase: 1; |
263 | 644 |
Ammo: (Propz: ammoprop_ForwMsgs or |
542 | 645 |
ammoprop_AttackInMove or |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
646 |
ammoprop_NoCrosshair or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
647 |
ammoprop_DontHold; |
211 | 648 |
Count: 2; |
649 |
NumPerTurn: 0; |
|
650 |
Timer: 0; |
|
408 | 651 |
Pos: 0; |
211 | 652 |
AmmoType: amParachute); |
263 | 653 |
Slot: 7; |
351 | 654 |
TimeAfterTurn: 0; |
655 |
minAngle: 0; |
|
408 | 656 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
657 |
isDamaging: false; |
495 | 658 |
PosCount: 1; |
659 |
PosSprite: sprWater), |
|
263 | 660 |
(NameId: sidAirAttack; |
843 | 661 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
662 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
663 |
NumberInCase: 1; |
263 | 664 |
Ammo: (Propz: ammoprop_NoCrosshair or |
665 |
ammoprop_NeedTarget or |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
666 |
ammoprop_AttackingPut or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
667 |
ammoprop_DontHold; |
285 | 668 |
Count: 1; |
263 | 669 |
NumPerTurn: 0; |
670 |
Timer: 0; |
|
408 | 671 |
Pos: 0; |
263 | 672 |
AmmoType: amAirAttack); |
673 |
Slot: 5; |
|
351 | 674 |
TimeAfterTurn: 0; |
675 |
minAngle: 0; |
|
408 | 676 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
677 |
isDamaging: true; |
408 | 678 |
PosCount: 2; |
679 |
PosSprite: sprAmAirplane), |
|
285 | 680 |
(NameId: sidMineStrike; |
843 | 681 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
682 |
Probability: 400; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
683 |
NumberInCase: 1; |
285 | 684 |
Ammo: (Propz: ammoprop_NoCrosshair or |
685 |
ammoprop_NeedTarget or |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
686 |
ammoprop_AttackingPut or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
687 |
ammoprop_DontHold; |
285 | 688 |
Count: 1; |
689 |
NumPerTurn: 0; |
|
690 |
Timer: 0; |
|
408 | 691 |
Pos: 0; |
285 | 692 |
AmmoType: amMineStrike); |
693 |
Slot: 5; |
|
351 | 694 |
TimeAfterTurn: 0; |
695 |
minAngle: 0; |
|
408 | 696 |
maxAngle: 0; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
697 |
isDamaging: true; |
408 | 698 |
PosCount: 2; |
699 |
PosSprite: sprAmAirplane), |
|
302 | 700 |
(NameId: sidBlowTorch; |
843 | 701 |
NameTex: nil; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
702 |
Probability: 100; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
703 |
NumberInCase: 2; |
302 | 704 |
Ammo: (Propz: ammoprop_ForwMsgs; |
705 |
Count: 1; |
|
706 |
NumPerTurn: 0; |
|
707 |
Timer: 0; |
|
408 | 708 |
Pos: 0; |
302 | 709 |
AmmoType: amBlowTorch); |
710 |
Slot: 6; |
|
304 | 711 |
TimeAfterTurn: 3000; |
305 | 712 |
minAngle: 768; |
408 | 713 |
maxAngle: 1280; |
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
714 |
isDamaging: false; |
495 | 715 |
PosCount: 1; |
716 |
PosSprite: sprWater), |
|
409 | 717 |
(NameId: sidGirder; |
843 | 718 |
NameTex: nil; |
409 | 719 |
Probability: 400; |
411 | 720 |
NumberInCase: 3; |
409 | 721 |
Ammo: (Propz: ammoprop_NoCrosshair or |
722 |
ammoprop_NeedTarget or |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
723 |
ammoprop_AttackingPut or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
724 |
ammoprop_DontHold; |
409 | 725 |
Count: 1; |
726 |
NumPerTurn: 0; |
|
727 |
Timer: 0; |
|
728 |
Pos: 0; |
|
729 |
AmmoType: amGirder); |
|
730 |
Slot: 6; |
|
731 |
TimeAfterTurn: 3000; |
|
732 |
minAngle: 0; |
|
733 |
maxAngle: 0; |
|
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
734 |
isDamaging: false; |
423 | 735 |
PosCount: 8; |
520 | 736 |
PosSprite: sprAmGirder), |
737 |
(NameId: sidTeleport; |
|
843 | 738 |
NameTex: nil; |
520 | 739 |
Probability: 400; |
740 |
NumberInCase: 1; |
|
525 | 741 |
Ammo: (Propz: ammoprop_ForwMsgs or |
742 |
ammoprop_NoCrosshair or |
|
520 | 743 |
ammoprop_NeedTarget or |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
744 |
ammoprop_AttackingPut or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
745 |
ammoprop_DontHold; |
520 | 746 |
Count: 2; |
747 |
NumPerTurn: 0; |
|
748 |
Timer: 0; |
|
749 |
Pos: 0; |
|
750 |
AmmoType: amTeleport); |
|
751 |
Slot: 7; |
|
752 |
TimeAfterTurn: 0; |
|
753 |
minAngle: 0; |
|
754 |
maxAngle: 0; |
|
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
755 |
isDamaging: false; |
520 | 756 |
PosCount: 1; |
534 | 757 |
PosSprite: sprWater), |
758 |
(NameId: sidSwitch; |
|
843 | 759 |
NameTex: nil; |
534 | 760 |
Probability: 100; |
761 |
NumberInCase: 1; |
|
762 |
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
|
763 |
ammoprop_NoCrosshair or |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
764 |
ammoprop_DontHold; |
534 | 765 |
Count: 3; |
766 |
NumPerTurn: 0; |
|
767 |
Timer: 0; |
|
768 |
Pos: 0; |
|
769 |
AmmoType: amSwitch); |
|
770 |
Slot: 8; |
|
771 |
TimeAfterTurn: 0; |
|
772 |
minAngle: 0; |
|
773 |
maxAngle: 0; |
|
830
f07267032194
- Add statistics info for ammo used in step and whether it is damaging ammo
unc0rr
parents:
829
diff
changeset
|
774 |
isDamaging: false; |
534 | 775 |
PosCount: 1; |
520 | 776 |
PosSprite: sprWater)); |
37 | 777 |
|
4 | 778 |
implementation |
779 |
||
780 |
end. |