author | unc0rr |
Sun, 25 Oct 2009 18:16:40 +0000 | |
changeset 2589 | 4329597c85c8 |
parent 2568 | e654cbfb23ba |
child 2597 | f777ac80ffef |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1689 | 3 |
* Copyright (c) 2004-2009 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 uGears; |
|
20 |
interface |
|
351 | 21 |
uses SDLh, uConsts, uFloat; |
4 | 22 |
{$INCLUDE options.inc} |
23 |
const AllInactive: boolean = false; |
|
868 | 24 |
PrvInactive: boolean = false; |
4 | 25 |
|
26 |
type PGear = ^TGear; |
|
1259 | 27 |
TGearStepProcedure = procedure (Gear: PGear); |
28 |
TGear = record |
|
29 |
NextGear, PrevGear: PGear; |
|
30 |
Active: Boolean; |
|
1849 | 31 |
Invulnerable: Boolean; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
32 |
RenderTimer: Boolean; |
1259 | 33 |
Ammo : PAmmo; |
34 |
State : Longword; |
|
35 |
X : hwFloat; |
|
36 |
Y : hwFloat; |
|
37 |
dX: hwFloat; |
|
38 |
dY: hwFloat; |
|
39 |
Kind: TGearType; |
|
40 |
Pos: Longword; |
|
41 |
doStep: TGearStepProcedure; |
|
42 |
Radius: LongInt; |
|
43 |
Angle, Power : Longword; |
|
44 |
DirAngle: real; |
|
45 |
Timer : LongWord; |
|
46 |
Elasticity: hwFloat; |
|
47 |
Friction : hwFloat; |
|
48 |
Message, MsgParam : Longword; |
|
49 |
Hedgehog: pointer; |
|
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
50 |
Health, Damage, Karma: LongInt; |
1259 | 51 |
CollisionIndex: LongInt; |
52 |
Tag: LongInt; |
|
53 |
Tex: PTexture; |
|
54 |
Z: Longword; |
|
55 |
IntersectGear: PGear; |
|
56 |
TriggerId: Longword; |
|
2428 | 57 |
FlightTime: Longword; |
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2031
diff
changeset
|
58 |
uid: Longword |
1259 | 59 |
end; |
4 | 60 |
|
371 | 61 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
4 | 62 |
procedure ProcessGears; |
1849 | 63 |
procedure ResetUtilities; |
2017 | 64 |
procedure ApplyDamage(Gear: PGear; Damage: Longword); |
4 | 65 |
procedure SetAllToActive; |
66 |
procedure SetAllHHToActive; |
|
956 | 67 |
procedure DrawGears; |
4 | 68 |
procedure FreeGearsList; |
10 | 69 |
procedure AddMiscGears; |
4 | 70 |
procedure AssignHHCoords; |
294 | 71 |
procedure InsertGearToList(Gear: PGear); |
72 |
procedure RemoveGearFromList(Gear: PGear); |
|
4 | 73 |
|
74 |
var CurAmmoGear: PGear = nil; |
|
68 | 75 |
GearsList: PGear = nil; |
307 | 76 |
KilledHHs: Longword = 0; |
2017 | 77 |
SuddenDeathDmg: Boolean = false; |
78 |
SpeechType: Longword = 1; |
|
79 |
SpeechText: shortstring; |
|
2428 | 80 |
TrainingTargetGear: PGear = nil; |
70 | 81 |
|
4 | 82 |
implementation |
81 | 83 |
uses uWorld, uMisc, uStore, uConsole, uSound, uTeams, uRandom, uCollisions, |
2376 | 84 |
uLand, uIO, uLandGraphics, uAIMisc, uLocale, uAI, uAmmos, uTriggers, |
2152 | 85 |
{$IFDEF GLES11} |
1906 | 86 |
gles11, |
87 |
{$ELSE} |
|
88 |
GL, |
|
89 |
{$ENDIF} |
|
1259 | 90 |
uStats, uVisualGears; |
789 | 91 |
|
1207
ceaab010269e
Some adjusting... it still doesn't solve problem fully
unc0rr
parents:
1200
diff
changeset
|
92 |
const MAXROPEPOINTS = 384; |
68 | 93 |
var RopePoints: record |
4 | 94 |
Count: Longword; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
95 |
HookAngle: GLfloat; |
789 | 96 |
ar: array[0..MAXROPEPOINTS] of record |
351 | 97 |
X, Y: hwFloat; |
98 |
dLen: hwFloat; |
|
4 | 99 |
b: boolean; |
100 |
end; |
|
2391 | 101 |
rounded: array[0..MAXROPEPOINTS + 2] of TVertex2f; |
2362 | 102 |
end; |
4 | 103 |
|
1515 | 104 |
procedure DeleteGear(Gear: PGear); forward; |
371 | 105 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); forward; |
106 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); forward; |
|
1433 | 107 |
//procedure AmmoFlameWork(Ammo: PGear); forward; |
371 | 108 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; forward; |
15 | 109 |
procedure SpawnBoxOfSmth; forward; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
24
diff
changeset
|
110 |
procedure AfterAttack; forward; |
1515 | 111 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); forward; |
302 | 112 |
procedure HedgehogStep(Gear: PGear); forward; |
1528 | 113 |
procedure doStepHedgehogMoving(Gear: PGear); forward; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
114 |
procedure HedgehogChAngle(Gear: PGear); forward; |
506 | 115 |
procedure ShotgunShot(Gear: PGear); forward; |
1689 | 116 |
procedure PickUp(HH, Gear: PGear); forward; |
1964 | 117 |
procedure HHSetWeapon(Gear: PGear); forward; |
118 |
||
4 | 119 |
|
120 |
{$INCLUDE GSHandlers.inc} |
|
121 |
{$INCLUDE HHHandlers.inc} |
|
122 |
||
123 |
const doStepHandlers: array[TGearType] of TGearStepProcedure = ( |
|
1259 | 124 |
@doStepBomb, |
125 |
@doStepHedgehog, |
|
126 |
@doStepGrenade, |
|
127 |
@doStepHealthTag, |
|
128 |
@doStepGrave, |
|
129 |
@doStepUFO, |
|
130 |
@doStepShotgunShot, |
|
131 |
@doStepPickHammer, |
|
132 |
@doStepRope, |
|
133 |
@doStepSmokeTrace, |
|
134 |
@doStepExplosion, |
|
135 |
@doStepMine, |
|
136 |
@doStepCase, |
|
137 |
@doStepDEagleShot, |
|
138 |
@doStepDynamite, |
|
139 |
@doStepBomb, |
|
140 |
@doStepCluster, |
|
141 |
@doStepShover, |
|
142 |
@doStepFlame, |
|
143 |
@doStepFirePunch, |
|
144 |
@doStepActionTimer, |
|
145 |
@doStepActionTimer, |
|
146 |
@doStepActionTimer, |
|
147 |
@doStepParachute, |
|
148 |
@doStepAirAttack, |
|
149 |
@doStepAirBomb, |
|
150 |
@doStepBlowTorch, |
|
151 |
@doStepGirder, |
|
152 |
@doStepTeleport, |
|
153 |
@doStepSwitcher, |
|
2460 | 154 |
@doStepTarget, |
1259 | 155 |
@doStepMortar, |
156 |
@doStepWhip, |
|
157 |
@doStepKamikaze, |
|
158 |
@doStepCake, |
|
1261 | 159 |
@doStepSeduction, |
1279 | 160 |
@doStepWatermelon, |
1263 | 161 |
@doStepCluster, |
162 |
@doStepBomb, |
|
1298 | 163 |
@doStepSmokeTrace, |
1573 | 164 |
@doStepWaterUp, |
1601 | 165 |
@doStepDrill, |
166 |
@doStepBallgun, |
|
1689 | 167 |
@doStepBomb, |
2017 | 168 |
@doStepRCPlane, |
2177
c045698e044f
Initial attempt at jetpack. Pluses, more like lunar lander (takes fall damage). Minuses, can't seem to cancel it or use alt weapon
nemo
parents:
2168
diff
changeset
|
169 |
@doStepSniperRifleShot, |
2457
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2455
diff
changeset
|
170 |
@doStepJetpack, |
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2455
diff
changeset
|
171 |
@doStepMolotov |
1259 | 172 |
); |
4 | 173 |
|
294 | 174 |
procedure InsertGearToList(Gear: PGear); |
803 | 175 |
var tmp, ptmp: PGear; |
294 | 176 |
begin |
177 |
if GearsList = nil then |
|
1505 | 178 |
GearsList:= Gear |
179 |
else begin |
|
180 |
tmp:= GearsList; |
|
181 |
ptmp:= GearsList; |
|
182 |
while (tmp <> nil) and (tmp^.Z <= Gear^.Z) do |
|
183 |
begin |
|
184 |
ptmp:= tmp; |
|
185 |
tmp:= tmp^.NextGear |
|
186 |
end; |
|
294 | 187 |
|
1505 | 188 |
if ptmp <> nil then |
189 |
begin |
|
190 |
Gear^.NextGear:= ptmp^.NextGear; |
|
191 |
Gear^.PrevGear:= ptmp; |
|
192 |
if ptmp^.NextGear <> nil then ptmp^.NextGear^.PrevGear:= Gear; |
|
193 |
ptmp^.NextGear:= Gear |
|
194 |
end |
|
195 |
else GearsList:= Gear |
|
196 |
end |
|
294 | 197 |
end; |
198 |
||
199 |
procedure RemoveGearFromList(Gear: PGear); |
|
200 |
begin |
|
351 | 201 |
if Gear^.NextGear <> nil then Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
1505 | 202 |
if Gear^.PrevGear <> nil then |
203 |
Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
204 |
else |
|
205 |
GearsList:= Gear^.NextGear |
|
294 | 206 |
end; |
207 |
||
371 | 208 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
79 | 209 |
const Counter: Longword = 0; |
351 | 210 |
var Result: PGear; |
4 | 211 |
begin |
79 | 212 |
inc(Counter); |
1495 | 213 |
{$IFDEF DEBUGFILE} |
1503 | 214 |
AddFileLog('AddGear: #' + inttostr(Counter) + ' (' + inttostr(x) + ',' + inttostr(y) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 215 |
{$ENDIF} |
216 |
||
4 | 217 |
New(Result); |
218 |
FillChar(Result^, sizeof(TGear), 0); |
|
498 | 219 |
Result^.X:= int2hwFloat(X); |
220 |
Result^.Y:= int2hwFloat(Y); |
|
351 | 221 |
Result^.Kind := Kind; |
222 |
Result^.State:= State; |
|
223 |
Result^.Active:= true; |
|
224 |
Result^.dX:= dX; |
|
225 |
Result^.dY:= dY; |
|
226 |
Result^.doStep:= doStepHandlers[Kind]; |
|
511 | 227 |
Result^.CollisionIndex:= -1; |
351 | 228 |
Result^.Timer:= Timer; |
1270 | 229 |
Result^.Z:= cUsualZ; |
2428 | 230 |
Result^.FlightTime:= 0; |
1503 | 231 |
Result^.uid:= Counter; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
232 |
|
4 | 233 |
if CurrentTeam <> nil then |
1505 | 234 |
begin |
235 |
Result^.Hedgehog:= CurrentHedgehog; |
|
236 |
Result^.IntersectGear:= CurrentHedgehog^.Gear |
|
237 |
end; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
789
diff
changeset
|
238 |
|
4 | 239 |
case Kind of |
915 | 240 |
gtAmmo_Bomb, |
241 |
gtClusterBomb: begin |
|
351 | 242 |
Result^.Radius:= 4; |
243 |
Result^.Elasticity:= _0_6; |
|
997 | 244 |
Result^.Friction:= _0_96; |
2302 | 245 |
Result^.RenderTimer:= true; |
246 |
if Result^.Timer = 0 then Result^.Timer:= 3000 |
|
4 | 247 |
end; |
1261 | 248 |
gtWatermelon: begin |
249 |
Result^.Radius:= 4; |
|
250 |
Result^.Elasticity:= _0_8; |
|
251 |
Result^.Friction:= _0_995; |
|
2302 | 252 |
Result^.RenderTimer:= true; |
253 |
if Result^.Timer = 0 then Result^.Timer:= 3000 |
|
1261 | 254 |
end; |
4 | 255 |
gtHedgehog: begin |
351 | 256 |
Result^.Radius:= cHHRadius; |
257 |
Result^.Elasticity:= _0_35; |
|
258 |
Result^.Friction:= _0_999; |
|
259 |
Result^.Angle:= cMaxAngle div 2; |
|
260 |
Result^.Z:= cHHZ; |
|
4 | 261 |
end; |
2488 | 262 |
gtAmmo_Grenade: begin // bazooka |
351 | 263 |
Result^.Radius:= 4; |
4 | 264 |
end; |
265 |
gtHealthTag: begin |
|
351 | 266 |
Result^.Timer:= 1500; |
2017 | 267 |
Result^.Z:= 2002; |
268 |
end; |
|
4 | 269 |
gtGrave: begin |
351 | 270 |
Result^.Radius:= 10; |
271 |
Result^.Elasticity:= _0_6; |
|
4 | 272 |
end; |
273 |
gtUFO: begin |
|
351 | 274 |
Result^.Radius:= 5; |
275 |
Result^.Timer:= 500; |
|
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
276 |
Result^.RenderTimer:= true; |
351 | 277 |
Result^.Elasticity:= _0_9 |
4 | 278 |
end; |
279 |
gtShotgunShot: begin |
|
351 | 280 |
Result^.Timer:= 900; |
281 |
Result^.Radius:= 2 |
|
4 | 282 |
end; |
283 |
gtPickHammer: begin |
|
351 | 284 |
Result^.Radius:= 10; |
285 |
Result^.Timer:= 4000 |
|
4 | 286 |
end; |
1263 | 287 |
gtSmokeTrace, |
288 |
gtEvilTrace: begin |
|
498 | 289 |
Result^.X:= Result^.X - _16; |
290 |
Result^.Y:= Result^.Y - _16; |
|
1270 | 291 |
Result^.State:= 8; |
292 |
Result^.Z:= cSmokeZ |
|
4 | 293 |
end; |
294 |
gtRope: begin |
|
351 | 295 |
Result^.Radius:= 3; |
498 | 296 |
Result^.Friction:= _450; |
4 | 297 |
RopePoints.Count:= 0; |
298 |
end; |
|
9 | 299 |
gtExplosion: begin |
1012 | 300 |
Result^.X:= Result^.X; |
301 |
Result^.Y:= Result^.Y; |
|
9 | 302 |
end; |
10 | 303 |
gtMine: begin |
503 | 304 |
Result^.State:= Result^.State or gstMoving; |
915 | 305 |
Result^.Radius:= 2; |
351 | 306 |
Result^.Elasticity:= _0_55; |
307 |
Result^.Friction:= _0_995; |
|
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2028
diff
changeset
|
308 |
if cMinesTime < 0 then |
2121 | 309 |
Result^.Timer:= getrandom(4)*1000 |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2028
diff
changeset
|
310 |
else |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2028
diff
changeset
|
311 |
Result^.Timer:= cMinesTime*1; |
10 | 312 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
313 |
gtCase: begin |
351 | 314 |
Result^.Radius:= 16; |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
315 |
Result^.Elasticity:= _0_3 |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
316 |
end; |
37 | 317 |
gtDEagleShot: begin |
351 | 318 |
Result^.Radius:= 1; |
319 |
Result^.Health:= 50 |
|
37 | 320 |
end; |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
321 |
gtSniperRifleShot: begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
322 |
Result^.Radius:= 1; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
323 |
Result^.Health:= 50 |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
324 |
end; |
39 | 325 |
gtDynamite: begin |
351 | 326 |
Result^.Radius:= 3; |
327 |
Result^.Elasticity:= _0_55; |
|
328 |
Result^.Friction:= _0_03; |
|
329 |
Result^.Timer:= 5000; |
|
39 | 330 |
end; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
331 |
gtCluster: begin |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
332 |
Result^.Radius:= 2; |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
333 |
Result^.RenderTimer:= true |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
334 |
end; |
878 | 335 |
gtShover: Result^.Radius:= 20; |
79 | 336 |
gtFlame: begin |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
337 |
Result^.Tag:= GetRandom(32); |
351 | 338 |
Result^.Radius:= 1; |
1586 | 339 |
Result^.Health:= 5; |
1555 | 340 |
if (Result^.dY.QWordValue = 0) and (Result^.dX.QWordValue = 0) then |
341 |
begin |
|
342 |
Result^.dY:= (getrandom - _0_8) * _0_03; |
|
343 |
Result^.dX:= (getrandom - _0_5) * _0_4 |
|
344 |
end |
|
79 | 345 |
end; |
82 | 346 |
gtFirePunch: begin |
351 | 347 |
Result^.Radius:= 15; |
348 |
Result^.Tag:= Y |
|
82 | 349 |
end; |
302 | 350 |
gtAirBomb: begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
351 |
Result^.Radius:= 5; |
302 | 352 |
end; |
353 |
gtBlowTorch: begin |
|
511 | 354 |
Result^.Radius:= cHHRadius + cBlowTorchC; |
2208
7d1a084d11ab
disable timers on a few silly items, trying out a timer on cake
nemo
parents:
2204
diff
changeset
|
355 |
Result^.Timer:= 7500 |
302 | 356 |
end; |
540 | 357 |
gtSwitcher: begin |
358 |
Result^.Z:= cCurrHHZ |
|
359 |
end; |
|
593 | 360 |
gtTarget: begin |
2460 | 361 |
Result^.Radius:= 10; |
362 |
Result^.Elasticity:= _0_3; |
|
363 |
Result^.Timer:= 0 |
|
593 | 364 |
end; |
924 | 365 |
gtMortar: begin |
994 | 366 |
Result^.Radius:= 4; |
924 | 367 |
Result^.Elasticity:= _0_2; |
368 |
Result^.Friction:= _0_08 |
|
369 |
end; |
|
925 | 370 |
gtWhip: Result^.Radius:= 20; |
984 | 371 |
gtKamikaze: begin |
372 |
Result^.Health:= 2048; |
|
373 |
Result^.Radius:= 20 |
|
374 |
end; |
|
1089 | 375 |
gtCake: begin |
1261 | 376 |
Result^.Health:= 2048; |
1103 | 377 |
Result^.Radius:= 7; |
1109 | 378 |
Result^.Z:= cOnHHZ; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
379 |
Result^.RenderTimer:= true; |
2388
76ccf12faf22
Fix cake going wrong way bug (triggered by disallowing "negative zero" in hwSign)
unc0rr
parents:
2376
diff
changeset
|
380 |
if not dX.isNegative then Result^.Angle:= 1 else Result^.Angle:= 3 |
1089 | 381 |
end; |
1263 | 382 |
gtHellishBomb: begin |
383 |
Result^.Radius:= 4; |
|
384 |
Result^.Elasticity:= _0_5; |
|
385 |
Result^.Friction:= _0_96; |
|
2302 | 386 |
Result^.RenderTimer:= true; |
387 |
Result^.Timer:= 5000 |
|
1263 | 388 |
end; |
1573 | 389 |
gtDrill: begin |
390 |
Result^.Timer:= 5000; |
|
2208
7d1a084d11ab
disable timers on a few silly items, trying out a timer on cake
nemo
parents:
2204
diff
changeset
|
391 |
Result^.Radius:= 4 |
1573 | 392 |
end; |
1601 | 393 |
gtBall: begin |
394 |
Result^.Radius:= 5; |
|
395 |
Result^.Tag:= random(8); |
|
396 |
Result^.Timer:= 5000; |
|
397 |
Result^.Elasticity:= _0_7; |
|
398 |
Result^.Friction:= _0_995; |
|
399 |
end; |
|
400 |
gtBallgun: begin |
|
401 |
Result^.Timer:= 5001; |
|
402 |
end; |
|
1689 | 403 |
gtRCPlane: begin |
404 |
Result^.Timer:= 15000; |
|
405 |
Result^.Health:= 3; |
|
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
406 |
Result^.Radius:= 8 |
1689 | 407 |
end; |
2177
c045698e044f
Initial attempt at jetpack. Pluses, more like lunar lander (takes fall damage). Minuses, can't seem to cancel it or use alt weapon
nemo
parents:
2168
diff
changeset
|
408 |
gtJetpack: begin |
c045698e044f
Initial attempt at jetpack. Pluses, more like lunar lander (takes fall damage). Minuses, can't seem to cancel it or use alt weapon
nemo
parents:
2168
diff
changeset
|
409 |
Result^.Health:= 2000; |
c045698e044f
Initial attempt at jetpack. Pluses, more like lunar lander (takes fall damage). Minuses, can't seem to cancel it or use alt weapon
nemo
parents:
2168
diff
changeset
|
410 |
end; |
2488 | 411 |
gtMolotov: begin |
412 |
Result^.Radius:= 8; |
|
413 |
end; |
|
4 | 414 |
end; |
351 | 415 |
InsertGearToList(Result); |
416 |
AddGear:= Result |
|
4 | 417 |
end; |
418 |
||
1515 | 419 |
procedure DeleteGear(Gear: PGear); |
48 | 420 |
var team: PTeam; |
1515 | 421 |
t: Longword; |
4 | 422 |
begin |
503 | 423 |
DeleteCI(Gear); |
762 | 424 |
|
425 |
if Gear^.Tex <> nil then |
|
1495 | 426 |
begin |
427 |
FreeTexture(Gear^.Tex); |
|
428 |
Gear^.Tex:= nil |
|
429 |
end; |
|
762 | 430 |
|
351 | 431 |
if Gear^.Kind = gtHedgehog then |
2079 | 432 |
if (CurAmmoGear <> nil) and (CurrentHedgehog^.Gear = Gear) then |
1495 | 433 |
begin |
434 |
Gear^.Message:= gm_Destroy; |
|
435 |
CurAmmoGear^.Message:= gm_Destroy; |
|
436 |
exit |
|
437 |
end |
|
438 |
else |
|
439 |
begin |
|
2076
aa3263e57b8f
increase # of mines to 50, limit max depth of drowning damage tag
nemo
parents:
2074
diff
changeset
|
440 |
if (hwRound(Gear^.Y) >= cWaterLine) then |
1495 | 441 |
begin |
442 |
t:= max(Gear^.Damage, Gear^.Health); |
|
443 |
Gear^.Damage:= t; |
|
2076
aa3263e57b8f
increase # of mines to 50, limit max depth of drowning damage tag
nemo
parents:
2074
diff
changeset
|
444 |
AddGear(hwRound(Gear^.X), min(hwRound(Gear^.Y),cWaterLine+cVisibleWater+32), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
1495 | 445 |
uStats.HedgehogDamaged(Gear) |
446 |
end; |
|
2376 | 447 |
|
1495 | 448 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
449 |
if CurrentHedgehog^.Gear = Gear then |
|
450 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
|
2376 | 451 |
|
1495 | 452 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
453 |
inc(KilledHHs); |
|
1515 | 454 |
RecountTeamHealth(team) |
1495 | 455 |
end; |
456 |
{$IFDEF DEBUGFILE} |
|
1503 | 457 |
with Gear^ do AddFileLog('Delete: #' + inttostr(uid) + ' (' + inttostr(hwRound(x)) + ',' + inttostr(hwRound(y)) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 458 |
{$ENDIF} |
459 |
||
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
593
diff
changeset
|
460 |
if Gear^.TriggerId <> 0 then TickTrigger(Gear^.TriggerId); |
82 | 461 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 462 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 463 |
RemoveGearFromList(Gear); |
1515 | 464 |
Dispose(Gear) |
4 | 465 |
end; |
466 |
||
467 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
468 |
var Gear: PGear; |
|
1849 | 469 |
dmg: LongInt; |
4 | 470 |
begin |
351 | 471 |
CheckNoDamage:= true; |
4 | 472 |
Gear:= GearsList; |
473 |
while Gear <> nil do |
|
867 | 474 |
begin |
475 |
if Gear^.Kind = gtHedgehog then |
|
1861 | 476 |
begin |
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
477 |
if (not isInMultiShoot) then inc(Gear^.Damage, Gear^.Karma); |
1849 | 478 |
if (Gear^.Damage <> 0) and |
479 |
(not Gear^.Invulnerable) then |
|
1861 | 480 |
begin |
481 |
CheckNoDamage:= false; |
|
482 |
uStats.HedgehogDamaged(Gear); |
|
483 |
dmg:= Gear^.Damage; |
|
484 |
if Gear^.Health < dmg then |
|
485 |
Gear^.Health:= 0 |
|
486 |
else |
|
487 |
dec(Gear^.Health, dmg); |
|
351 | 488 |
|
2017 | 489 |
if (PHedgehog(Gear^.Hedgehog)^.Team = CurrentTeam) and |
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
490 |
(Gear^.Damage <> Gear^.Karma) and |
2017 | 491 |
not SuddenDeathDmg then |
492 |
Gear^.State:= Gear^.State or gstLoser; |
|
493 |
||
1861 | 494 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12, |
495 |
gtHealthTag, dmg, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
867 | 496 |
|
1861 | 497 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
498 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
1505 | 499 |
|
1861 | 500 |
end; |
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
501 |
if (not isInMultiShoot) then Gear^.Karma:= 0; |
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
502 |
Gear^.Damage:= 0 |
1861 | 503 |
end; |
867 | 504 |
Gear:= Gear^.NextGear |
505 |
end; |
|
2017 | 506 |
SuddenDeathDmg:= false; |
4 | 507 |
end; |
508 |
||
1054 | 509 |
procedure HealthMachine; |
510 |
var Gear: PGear; |
|
511 |
begin |
|
512 |
Gear:= GearsList; |
|
513 |
||
514 |
while Gear <> nil do |
|
515 |
begin |
|
516 |
if Gear^.Kind = gtHedgehog then |
|
517 |
Gear^.Damage:= min(cHealthDecrease, Gear^.Health - 1); |
|
518 |
||
519 |
Gear:= Gear^.NextGear |
|
520 |
end; |
|
521 |
end; |
|
522 |
||
4 | 523 |
procedure ProcessGears; |
614 | 524 |
const delay: LongWord = 0; |
1797 | 525 |
step: (stDelay, stChDmg, stSweep, stTurnReact, |
1495 | 526 |
stAfterDelay, stChWin, stWater, stChWin2, stHealth, |
527 |
stSpawn, stNTurn) = stDelay; |
|
1054 | 528 |
|
4 | 529 |
var Gear, t: PGear; |
530 |
begin |
|
868 | 531 |
PrvInactive:= AllInactive; |
4 | 532 |
AllInactive:= true; |
1495 | 533 |
|
4 | 534 |
t:= GearsList; |
1054 | 535 |
while t <> nil do |
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
536 |
begin |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
537 |
Gear:= t; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
538 |
t:= Gear^.NextGear; |
2376 | 539 |
if Gear^.Active then |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
540 |
begin |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
541 |
if Gear^.RenderTimer and (Gear^.Timer > 500) and ((Gear^.Timer mod 1000) = 0) then |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
542 |
begin |
2376 | 543 |
if Gear^.Tex <> nil then FreeTexture(Gear^.Tex); |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
544 |
Gear^.Tex:= RenderStringTex(inttostr(Gear^.Timer div 1000), $FFFFFFFF, fntSmall); |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
545 |
end; |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
546 |
Gear^.doStep(Gear); |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
547 |
end |
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
548 |
end; |
89 | 549 |
|
4 | 550 |
if AllInactive then |
1343 | 551 |
case step of |
552 |
stDelay: begin |
|
553 |
if delay = 0 then |
|
554 |
delay:= cInactDelay |
|
555 |
else |
|
556 |
dec(delay); |
|
614 | 557 |
|
1343 | 558 |
if delay = 0 then |
559 |
inc(step) |
|
560 |
end; |
|
1797 | 561 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
562 |
stSweep: if SweepDirty then |
|
1792 | 563 |
begin |
1918 | 564 |
SetAllToActive; |
1792 | 565 |
step:= stChDmg |
1797 | 566 |
end else inc(step); |
1343 | 567 |
stTurnReact: begin |
568 |
if (not bBetweenTurns) and (not isInMultiShoot) then |
|
569 |
begin |
|
570 |
uStats.TurnReaction; |
|
571 |
inc(step) |
|
572 |
end else |
|
573 |
inc(step, 2); |
|
574 |
end; |
|
575 |
stAfterDelay: begin |
|
576 |
if delay = 0 then |
|
577 |
delay:= cInactDelay |
|
578 |
else |
|
579 |
dec(delay); |
|
815 | 580 |
|
1343 | 581 |
if delay = 0 then |
582 |
inc(step) |
|
583 |
end; |
|
584 |
stChWin: begin |
|
585 |
CheckForWin; |
|
586 |
inc(step) |
|
587 |
end; |
|
588 |
stWater: if (not bBetweenTurns) and (not isInMultiShoot) then |
|
589 |
begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
590 |
if TotalRounds = cSuddenDTurns + 2 then bWaterRising:= true; |
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
591 |
|
1343 | 592 |
if bWaterRising then |
593 |
AddGear(0, 0, gtWaterUp, 0, _0, _0, 0); |
|
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
594 |
|
1343 | 595 |
inc(step) |
596 |
end else inc(step); |
|
597 |
stChWin2: begin |
|
598 |
CheckForWin; |
|
599 |
inc(step) |
|
600 |
end; |
|
601 |
stHealth: begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
602 |
if (TotalRounds = cSuddenDTurns) and (cHealthDecrease = 0) then |
1343 | 603 |
begin |
604 |
cHealthDecrease:= 5; |
|
2217 | 605 |
AddCaption(trmsg[sidSuddenDeath], $FFFFFF, capgrpGameState); |
606 |
playSound(sndSuddenDeath, false, nil); |
|
1343 | 607 |
end; |
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
608 |
|
1343 | 609 |
if (cHealthDecrease = 0) |
610 |
or bBetweenTurns |
|
611 |
or isInMultiShoot |
|
612 |
or (TotalRounds = 0) then inc(step) |
|
613 |
else begin |
|
614 |
bBetweenTurns:= true; |
|
615 |
HealthMachine; |
|
2017 | 616 |
SuddenDeathDmg:= true; |
1343 | 617 |
step:= stChDmg |
618 |
end |
|
619 |
end; |
|
620 |
stSpawn: begin |
|
621 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
622 |
inc(step) |
|
623 |
end; |
|
624 |
stNTurn: begin |
|
625 |
if isInMultiShoot then isInMultiShoot:= false |
|
626 |
else begin |
|
2468
0b62498c201a
openal fix, training map selection and rcplane adjustments from Smaxx (untested, but look reasonable). Bunch of new graphics from Tiy, new translation for pt-pt from inu_
nemo
parents:
2460
diff
changeset
|
627 |
// delayed till after 0.9.12 |
0b62498c201a
openal fix, training map selection and rcplane adjustments from Smaxx (untested, but look reasonable). Bunch of new graphics from Tiy, new translation for pt-pt from inu_
nemo
parents:
2460
diff
changeset
|
628 |
// reset to default zoom |
0b62498c201a
openal fix, training map selection and rcplane adjustments from Smaxx (untested, but look reasonable). Bunch of new graphics from Tiy, new translation for pt-pt from inu_
nemo
parents:
2460
diff
changeset
|
629 |
//ZoomValue:= ZoomDefault; |
2289 | 630 |
ResetUtilities; |
2376 | 631 |
|
2289 | 632 |
FreeActionsList; // could send -left, -right and similar commands, so should be called before /nextturn |
2376 | 633 |
|
1343 | 634 |
ParseCommand('/nextturn', true); |
635 |
SwitchHedgehog; |
|
1298 | 636 |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
637 |
inc(step); // FIXME wtf is that, it overflows step, and does nothing |
1298 | 638 |
|
1343 | 639 |
AfterSwitchHedgehog; |
640 |
bBetweenTurns:= false |
|
641 |
end; |
|
642 |
step:= Low(step) |
|
643 |
end; |
|
644 |
end; |
|
15 | 645 |
|
4 | 646 |
if TurnTimeLeft > 0 then |
870 | 647 |
if CurrentHedgehog^.Gear <> nil then |
648 |
if ((CurrentHedgehog^.Gear^.State and gstAttacking) = 0) |
|
649 |
and not isInMultiShoot then |
|
650 |
begin |
|
651 |
if (TurnTimeLeft = 5000) |
|
652 |
and (CurrentHedgehog^.Gear <> nil) |
|
1669 | 653 |
and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then |
654 |
PlaySound(sndHurry, false, CurrentTeam^.voicepack); |
|
870 | 655 |
dec(TurnTimeLeft) |
656 |
end; |
|
351 | 657 |
|
2134 | 658 |
if ((GameTicks and $FFFF) = $FFFF) then |
917 | 659 |
begin |
2134 | 660 |
if (not CurrentTeam^.ExtDriven) then |
661 |
SendIPCTimeInc; |
|
662 |
||
663 |
if (not CurrentTeam^.ExtDriven) or CurrentTeam^.hasGone then |
|
664 |
inc(hiTicks) // we do not recieve a message for this |
|
917 | 665 |
end; |
656
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
666 |
|
515 | 667 |
inc(GameTicks) |
4 | 668 |
end; |
669 |
||
1854 | 670 |
//Purpose, to reset all transient attributes toggled by a utility. |
671 |
//If any of these are set as permanent toggles in the frontend, that needs to be checked and skipped here. |
|
1849 | 672 |
procedure ResetUtilities; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
673 |
var i: LongInt; |
1849 | 674 |
begin |
2221 | 675 |
SpeechText:= ''; // in case it has not been consumed |
2017 | 676 |
|
1895 | 677 |
if (GameFlags and gfLowGravity) = 0 then |
678 |
cGravity:= cMaxWindSpeed; |
|
679 |
||
2017 | 680 |
if (GameFlags and gfVampiric) = 0 then |
681 |
cVampiric:= false; |
|
682 |
||
1849 | 683 |
cDamageModifier:= _1; |
1895 | 684 |
|
685 |
if (GameFlags and gfLaserSight) = 0 then |
|
686 |
cLaserSighting:= false; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
687 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
688 |
if (GameFlags and gfArtillery) = 0 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
689 |
cArtillery:= false; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
690 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
691 |
// have to sweep *all* current team hedgehogs since it is theoretically possible if you have enough invulnerabilities and switch turns to make your entire team invulnerable |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
692 |
if (CurrentTeam <> nil) then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
693 |
with CurrentTeam^ do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
694 |
for i:= 0 to cMaxHHIndex do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
695 |
with Hedgehogs[i] do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
696 |
begin |
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
697 |
if (SpeechGear <> nil) then |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
698 |
begin |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
699 |
DeleteVisualGear(SpeechGear); // remove to restore persisting beyond end of turn. Tiy says was too much of a gameplay issue |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
700 |
SpeechGear:= nil |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
701 |
end; |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
702 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
703 |
if (Gear <> nil) then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
704 |
if (GameFlags and gfInvulnerable) = 0 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
705 |
Gear^.Invulnerable:= false; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
706 |
end; |
1849 | 707 |
end; |
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
708 |
|
2017 | 709 |
procedure ApplyDamage(Gear: PGear; Damage: Longword); |
710 |
var s: shortstring; |
|
2428 | 711 |
vampDmg, tmpDmg, i: Longword; |
712 |
vg: PVisualGear; |
|
2017 | 713 |
begin |
2074 | 714 |
if (Gear^.Kind = gtHedgehog) and (Damage>=1) then |
2017 | 715 |
begin |
716 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), Damage, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color); |
|
2067
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
717 |
tmpDmg:= min(Damage, max(0,Gear^.Health-Gear^.Damage)); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
718 |
if (Gear <> CurrentHedgehog^.Gear) and (CurrentHedgehog^.Gear <> nil) and (tmpDmg >= 1) then |
2017 | 719 |
begin |
720 |
if cVampiric then |
|
721 |
begin |
|
2067
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
722 |
vampDmg:= hwRound(int2hwFloat(tmpDmg)*_0_8); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
723 |
if vampDmg >= 1 then |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
724 |
begin |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
725 |
// was considering pulsing on attack, Tiy thinks it should be permanent while in play |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
726 |
//CurrentHedgehog^.Gear^.State:= CurrentHedgehog^.Gear^.State or gstVampiric; |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
727 |
inc(CurrentHedgehog^.Gear^.Health,vampDmg); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
728 |
str(vampDmg, s); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
729 |
s:= '+' + s; |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
730 |
AddCaption(s, CurrentHedgehog^.Team^.Clan^.Color, capgrpAmmoinfo); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
731 |
RenderHealth(CurrentHedgehog^); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
732 |
RecountTeamHealth(CurrentHedgehog^.Team); |
2428 | 733 |
i:= 0; |
734 |
while i < vampDmg do |
|
735 |
begin |
|
736 |
vg:= AddVisualGear(hwRound(CurrentHedgehog^.Gear^.X), hwRound(CurrentHedgehog^.Gear^.Y), vgtHealth); |
|
737 |
if vg <> nil then vg^.Frame:= 10; |
|
738 |
inc(i, 5); |
|
739 |
end; |
|
2067
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
740 |
end |
2017 | 741 |
end; |
2376 | 742 |
if ((GameFlags and gfKarma) <> 0) and |
2017 | 743 |
((GameFlags and gfInvulnerable) = 0) and |
744 |
not CurrentHedgehog^.Gear^.Invulnerable then |
|
745 |
begin // this cannot just use Damage or it interrupts shotgun and gets you called stupid |
|
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
746 |
inc(CurrentHedgehog^.Gear^.Karma, tmpDmg); |
2376 | 747 |
AddGear(hwRound(CurrentHedgehog^.Gear^.X), |
748 |
hwRound(CurrentHedgehog^.Gear^.Y), |
|
2067
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
749 |
gtHealthTag, tmpDmg, _0, _0, 0)^.Hedgehog:= CurrentHedgehog; |
2017 | 750 |
end; |
751 |
end; |
|
752 |
end; |
|
2057
cf0d84479251
Prevent gaining more health than hedgehog actually has
nemo
parents:
2053
diff
changeset
|
753 |
inc(Gear^.Damage, Damage); |
2017 | 754 |
end; |
1849 | 755 |
|
4 | 756 |
procedure SetAllToActive; |
757 |
var t: PGear; |
|
758 |
begin |
|
759 |
AllInactive:= false; |
|
760 |
t:= GearsList; |
|
351 | 761 |
while t <> nil do |
1505 | 762 |
begin |
763 |
t^.Active:= true; |
|
764 |
t:= t^.NextGear |
|
765 |
end |
|
4 | 766 |
end; |
767 |
||
768 |
procedure SetAllHHToActive; |
|
769 |
var t: PGear; |
|
770 |
begin |
|
771 |
AllInactive:= false; |
|
772 |
t:= GearsList; |
|
351 | 773 |
while t <> nil do |
1505 | 774 |
begin |
775 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
|
776 |
t:= t^.NextGear |
|
777 |
end |
|
4 | 778 |
end; |
779 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
780 |
procedure DrawHH(Gear: PGear); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
781 |
var i, t: LongInt; |
822 | 782 |
amt: TAmmoType; |
2020 | 783 |
hx, hy, cx, cy, tx, ty, sx, sy, m: LongInt; // hedgehog, crosshair, temp, sprite, direction |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
784 |
lx, ly, dx, dy, ax, ay, aAngle, dAngle: real; // laser, change |
1253 | 785 |
defaultPos, HatVisible: boolean; |
1906 | 786 |
VertexBuffer: array [0..1] of TVertex2f; |
292 | 787 |
begin |
2020 | 788 |
m:= 1; |
2137 | 789 |
if ((Gear^.State and gstHHHJump) <> 0) and not cArtillery then m:= -1; |
868 | 790 |
if (Gear^.State and gstHHDeath) <> 0 then |
791 |
begin |
|
792 |
DrawSprite(sprHHDeath, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 26 + WorldDy, Gear^.Pos); |
|
793 |
exit |
|
794 |
end; |
|
1002 | 795 |
|
824 | 796 |
defaultPos:= true; |
1253 | 797 |
HatVisible:= false; |
847 | 798 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
799 |
sx:= hwRound(Gear^.X) + 1 + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
800 |
sy:= hwRound(Gear^.Y) - 3 + WorldDy; |
1002 | 801 |
if (Gear^.State and gstDrowning) <> 0 then |
802 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
803 |
DrawHedgehog(sx, sy, |
1002 | 804 |
hwSign(Gear^.dX), |
805 |
1, |
|
806 |
7, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
807 |
0); |
1002 | 808 |
defaultPos:= false |
809 |
end else |
|
2376 | 810 |
if ((Gear^.State and gstWinner) <> 0) and |
1892 | 811 |
((CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtPickHammer)) then |
1011 | 812 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
813 |
DrawHedgehog(sx, sy, |
1011 | 814 |
hwSign(Gear^.dX), |
815 |
2, |
|
816 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
817 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
818 |
defaultPos:= false |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
819 |
end else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
820 |
if (Gear^.State and gstLoser) <> 0 then // for now using the jackhammer for its kind of bemused "oops" look |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
821 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
822 |
DrawHedgehog(sx, sy, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
823 |
hwSign(Gear^.dX), |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
824 |
2, |
2053
9a8a4add3eff
Use shrug frame for injuring yourself/team-mate, add custom theme music to Sheep theme
nemo
parents:
2045
diff
changeset
|
825 |
3, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
826 |
0); |
1011 | 827 |
defaultPos:= false |
828 |
end else |
|
829 |
||
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
830 |
if (Gear^.State and gstHHDriven) <> 0 then |
966 | 831 |
begin |
2376 | 832 |
if ((Gear^.State and gstHHThinking) = 0) and |
833 |
ShowCrosshair and |
|
2028 | 834 |
((Gear^.State and (gstAttacked or gstAnimation)) = 0) then |
835 |
begin |
|
836 |
(* These calculations are a little complex for a few reasons: |
|
837 |
1: I need to draw the laser from weapon origin to nearest land |
|
2376 | 838 |
2: I need to start the beam outside the hedgie for attractiveness. |
839 |
3: I need to extend the beam beyond land. |
|
2028 | 840 |
This routine perhaps should be pushed into uStore or somesuch instead of continuuing the increase in size of this function. |
841 |
*) |
|
842 |
dx:= hwSign(Gear^.dX) * m * Sin(Gear^.Angle * pi / cMaxAngle); |
|
843 |
dy:= - Cos(Gear^.Angle * pi / cMaxAngle); |
|
844 |
if cLaserSighting then |
|
845 |
begin |
|
846 |
lx:= hwRound(Gear^.X); |
|
847 |
ly:= hwRound(Gear^.Y); |
|
848 |
lx:= lx + dx * 16; |
|
849 |
ly:= ly + dy * 16; |
|
850 |
||
851 |
ax:= dx * 4; |
|
852 |
ay:= dy * 4; |
|
853 |
||
854 |
tx:= round(lx); |
|
855 |
ty:= round(ly); |
|
856 |
hx:= tx; |
|
857 |
hy:= ty; |
|
858 |
while ((ty and LAND_HEIGHT_MASK) = 0) and |
|
859 |
((tx and LAND_WIDTH_MASK) = 0) and |
|
860 |
(Land[ty, tx] = 0) do |
|
861 |
begin |
|
862 |
lx:= lx + ax; |
|
863 |
ly:= ly + ay; |
|
864 |
tx:= round(lx); |
|
865 |
ty:= round(ly) |
|
866 |
end; |
|
867 |
// reached edge of land. assume infinite beam. Extend it way out past camera |
|
868 |
if ((ty and LAND_HEIGHT_MASK) <> 0) or ((tx and LAND_WIDTH_MASK) <> 0) then |
|
869 |
begin |
|
870 |
tx:= round(lx + ax * (LAND_WIDTH div 4)); |
|
871 |
ty:= round(ly + ay * (LAND_WIDTH div 4)); |
|
872 |
end; |
|
2376 | 873 |
|
2028 | 874 |
//if (abs(lx-tx)>8) or (abs(ly-ty)>8) then |
875 |
begin |
|
876 |
glDisable(GL_TEXTURE_2D); |
|
877 |
glEnable(GL_LINE_SMOOTH); |
|
878 |
||
2362 | 879 |
glLineWidth(1.0); |
2376 | 880 |
|
2028 | 881 |
glColor4ub($FF, $00, $00, $C0); |
882 |
VertexBuffer[0].X:= hx + WorldDx; |
|
883 |
VertexBuffer[0].Y:= hy + WorldDy; |
|
884 |
VertexBuffer[1].X:= tx + WorldDx; |
|
885 |
VertexBuffer[1].Y:= ty + WorldDy; |
|
2376 | 886 |
|
2028 | 887 |
glEnableClientState(GL_VERTEX_ARRAY); |
888 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
|
889 |
glDrawArrays(GL_LINES, 0, Length(VertexBuffer)); |
|
890 |
glColor4f(1, 1, 1, 1); |
|
891 |
glEnable(GL_TEXTURE_2D); |
|
892 |
glDisable(GL_LINE_SMOOTH); |
|
893 |
end; |
|
894 |
end; |
|
895 |
// draw crosshair |
|
896 |
cx:= Round(hwRound(Gear^.X) + dx * 80); |
|
897 |
cy:= Round(hwRound(Gear^.Y) + dy * 80); |
|
898 |
DrawRotatedTex(PHedgehog(Gear^.Hedgehog)^.Team^.CrosshairTex, |
|
899 |
12, 12, cx + WorldDx, cy + WorldDy, 0, |
|
900 |
hwSign(Gear^.dX) * (Gear^.Angle * 180.0) / cMaxAngle); |
|
901 |
end; |
|
1002 | 902 |
hx:= hwRound(Gear^.X) + 1 + 8 * hwSign(Gear^.dX) + WorldDx; |
903 |
hy:= hwRound(Gear^.Y) - 2 + WorldDy; |
|
904 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
874 | 905 |
|
1002 | 906 |
if CurAmmoGear <> nil then |
907 |
begin |
|
908 |
case CurAmmoGear^.Kind of |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
909 |
gtShotgunShot: begin |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
910 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
911 |
DrawRotated(sprShotgun, hx, hy, hwSign(Gear^.dX), aangle) |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
912 |
else |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
913 |
DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
914 |
end; |
1002 | 915 |
gtDEagleShot: DrawRotated(sprDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
916 |
gtSniperRifleShot: begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
917 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
918 |
DrawRotatedF(sprSniperRifle, hx, hy, 1, hwSign(Gear^.dX), aangle) |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
919 |
else |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
920 |
DrawRotatedF(sprSniperRifle, hx, hy, 0, hwSign(Gear^.dX), aangle) |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
921 |
end; |
1601 | 922 |
gtBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 923 |
gtRCPlane: begin |
924 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
925 |
defaultPos:= false |
|
926 |
end; |
|
1002 | 927 |
gtRope: begin |
928 |
if Gear^.X < CurAmmoGear^.X then |
|
929 |
begin |
|
930 |
dAngle:= 0; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
931 |
i:= 1 |
1002 | 932 |
end else |
933 |
begin |
|
934 |
dAngle:= 180; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
935 |
i:= -1 |
966 | 936 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
937 |
sx:= hwRound(Gear^.X) + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
938 |
sy:= hwRound(Gear^.Y) + WorldDy; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
939 |
DrawHedgehog(sx, sy, |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
940 |
i, |
1002 | 941 |
1, |
942 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
943 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle); |
1002 | 944 |
defaultPos:= false |
945 |
end; |
|
946 |
gtBlowTorch: begin |
|
947 |
DrawRotated(sprBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
948 |
DrawHedgehog(sx, sy, |
1002 | 949 |
hwSign(Gear^.dX), |
950 |
3, |
|
1113 | 951 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
952 |
0); |
1002 | 953 |
defaultPos:= false |
954 |
end; |
|
955 |
gtShover: DrawRotated(sprHandBaseball, hx, hy, hwSign(Gear^.dX), aangle + 180); |
|
956 |
gtFirePunch: begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
957 |
DrawHedgehog(sx, sy, |
1002 | 958 |
hwSign(Gear^.dX), |
959 |
1, |
|
960 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
961 |
0); |
1002 | 962 |
defaultPos:= false |
963 |
end; |
|
1892 | 964 |
gtPickHammer: begin |
965 |
defaultPos:= false; |
|
966 |
dec(sy,20); |
|
967 |
end; |
|
1002 | 968 |
gtTeleport: defaultPos:= false; |
1010 | 969 |
gtWhip: begin |
970 |
DrawRotatedF(sprWhip, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
971 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
972 |
sy, |
1010 | 973 |
1, |
974 |
hwSign(Gear^.dX), |
|
975 |
0); |
|
976 |
defaultPos:= false |
|
977 |
end; |
|
1002 | 978 |
gtKamikaze: begin |
1286 | 979 |
if CurAmmoGear^.Pos = 0 then |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
980 |
DrawHedgehog(sx, sy, |
1286 | 981 |
hwSign(Gear^.dX), |
982 |
1, |
|
983 |
6, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
984 |
0) |
1286 | 985 |
else |
986 |
DrawRotatedF(sprKamikaze, |
|
987 |
hwRound(Gear^.X) + WorldDx, |
|
988 |
hwRound(Gear^.Y) + WorldDy, |
|
989 |
CurAmmoGear^.Pos - 1, |
|
2025
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2023
diff
changeset
|
990 |
hwSign(Gear^.dX), |
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2023
diff
changeset
|
991 |
aangle); |
1286 | 992 |
defaultPos:= false |
993 |
end; |
|
994 |
gtSeduction: begin |
|
995 |
if CurAmmoGear^.Pos >= 6 then |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
996 |
DrawHedgehog(sx, sy, |
1286 | 997 |
hwSign(Gear^.dX), |
998 |
2, |
|
999 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1000 |
0) |
1286 | 1001 |
else |
1002 |
begin |
|
1003 |
DrawRotatedF(sprDress, |
|
1004 |
hwRound(Gear^.X) + WorldDx, |
|
1005 |
hwRound(Gear^.Y) + WorldDy, |
|
1006 |
CurAmmoGear^.Pos, |
|
1007 |
hwSign(Gear^.dX), |
|
1008 |
0); |
|
1009 |
DrawSprite(sprCensored, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 20 + WorldDy, 0) |
|
1010 |
end; |
|
1011 |
defaultPos:= false |
|
1012 |
end; |
|
1002 | 1013 |
end; |
1014 |
||
1015 |
case CurAmmoGear^.Kind of |
|
1016 |
gtShotgunShot, |
|
1017 |
gtDEagleShot, |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1018 |
gtSniperRifleShot, |
1002 | 1019 |
gtShover: begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1020 |
DrawHedgehog(sx, sy, |
1002 | 1021 |
hwSign(Gear^.dX), |
1022 |
0, |
|
1023 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1024 |
0); |
1977 | 1025 |
defaultPos:= false; |
1026 |
HatVisible:= true |
|
1002 | 1027 |
end |
1028 |
end |
|
1029 |
end else |
|
876 | 1030 |
|
1002 | 1031 |
if ((Gear^.State and gstHHJumping) <> 0) then |
1032 |
begin |
|
2020 | 1033 |
DrawHedgehog(sx, sy, |
1034 |
hwSign(Gear^.dX)*m, |
|
1035 |
1, |
|
1036 |
1, |
|
1037 |
0); |
|
1038 |
HatVisible:= true; |
|
2017 | 1039 |
HatVisible:= true; |
1002 | 1040 |
defaultPos:= false |
1041 |
end else |
|
874 | 1042 |
|
1913 | 1043 |
if (Gear^.Message and (gm_Left or gm_Right) <> 0) and (not isCursorVisible) then |
824 | 1044 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1045 |
DrawHedgehog(sx, sy, |
1002 | 1046 |
hwSign(Gear^.dX), |
1047 |
0, |
|
1048 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1049 |
0); |
1257 | 1050 |
defaultPos:= false; |
1051 |
HatVisible:= true |
|
1002 | 1052 |
end |
1053 |
else |
|
1054 |
||
1033 | 1055 |
if ((Gear^.State and gstAnimation) <> 0) then |
1056 |
begin |
|
1034 | 1057 |
DrawRotatedF(Wavez[TWave(Gear^.Tag)].Sprite, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1058 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1059 |
sy, |
1033 | 1060 |
Gear^.Pos, |
1061 |
hwSign(Gear^.dX), |
|
1062 |
0.0); |
|
1063 |
defaultPos:= false |
|
1064 |
end |
|
1065 |
else |
|
1002 | 1066 |
if ((Gear^.State and gstAttacked) = 0) then |
1067 |
begin |
|
1068 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
|
1069 |
case amt of |
|
1070 |
amBazooka, |
|
1717 | 1071 |
amMortar: DrawRotated(sprHandBazooka, hx, hy, hwSign(Gear^.dX), aangle); |
2457
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2455
diff
changeset
|
1072 |
amMolotov: DrawRotated(sprHandMolotov, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 1073 |
amBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
1074 |
amDrill: DrawRotated(sprHandDrill, hx, hy, hwSign(Gear^.dX), aangle); |
|
1002 | 1075 |
amRope: DrawRotated(sprHandRope, hx, hy, hwSign(Gear^.dX), aangle); |
1076 |
amShotgun: DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
1077 |
amDEagle: DrawRotated(sprHandDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1078 |
amSniperRifle: DrawRotatedF(sprSniperRifle, hx, hy, 0, hwSign(Gear^.dX), aangle); |
1002 | 1079 |
amBlowTorch: DrawRotated(sprHandBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 1080 |
amRCPlane: begin |
1081 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
1082 |
defaultPos:= false |
|
1083 |
end; |
|
1939 | 1084 |
amGirder: begin |
2376 | 1085 |
DrawSpriteClipped(sprGirder, |
1086 |
sx-256, |
|
1087 |
sy-256, |
|
1088 |
LongInt(topY)+WorldDy, |
|
1089 |
LongInt(rightX)+WorldDx, |
|
1939 | 1090 |
cWaterLine+WorldDy, |
1091 |
LongInt(leftX)+WorldDx); |
|
1092 |
end; |
|
1002 | 1093 |
end; |
1094 |
||
1095 |
case amt of |
|
1096 |
amAirAttack, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1097 |
amMineStrike: DrawRotated(sprHandAirAttack, sx, hwRound(Gear^.Y) + WorldDy, hwSign(Gear^.dX), 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1098 |
amPickHammer: DrawHedgehog(sx, sy, |
1002 | 1099 |
hwSign(Gear^.dX), |
1100 |
1, |
|
1101 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1102 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1103 |
amBlowTorch: DrawHedgehog(sx, sy, |
1002 | 1104 |
hwSign(Gear^.dX), |
1105 |
1, |
|
1106 |
3, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1107 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1108 |
amTeleport: DrawRotatedF(sprTeleport, sx, sy, 0, hwSign(Gear^.dX), 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1109 |
amKamikaze: DrawHedgehog(sx, sy, |
1002 | 1110 |
hwSign(Gear^.dX), |
1111 |
1, |
|
1112 |
5, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1113 |
0); |
1221 | 1114 |
amWhip: DrawRotatedF(sprWhip, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1115 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1116 |
sy, |
1010 | 1117 |
0, |
1118 |
hwSign(Gear^.dX), |
|
1119 |
0); |
|
1002 | 1120 |
else |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1121 |
DrawHedgehog(sx, sy, |
822 | 1122 |
hwSign(Gear^.dX), |
1123 |
0, |
|
1002 | 1124 |
4, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1125 |
0); |
2376 | 1126 |
|
1253 | 1127 |
HatVisible:= true; |
1128 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
1129 |
if (HatTex <> nil) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1130 |
and (HatVisibility > 0) then |
1253 | 1131 |
DrawTextureF(HatTex, |
1132 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1133 |
sx, |
1253 | 1134 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1135 |
0, |
|
1136 |
hwSign(Gear^.dX), |
|
1137 |
32); |
|
1002 | 1138 |
end; |
966 | 1139 |
|
1002 | 1140 |
case amt of |
1141 |
amBaseballBat: DrawRotated(sprHandBaseball, |
|
1142 |
hwRound(Gear^.X) + 1 - 4 * hwSign(Gear^.dX) + WorldDx, |
|
1143 |
hwRound(Gear^.Y) + 6 + WorldDy, hwSign(Gear^.dX), aangle); |
|
1144 |
end; |
|
966 | 1145 |
|
1002 | 1146 |
defaultPos:= false |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1147 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1148 |
|
1002 | 1149 |
end else // not gstHHDriven |
1012 | 1150 |
begin |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1151 |
if (Gear^.Damage > 0) |
2028 | 1152 |
and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1153 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1154 |
DrawHedgehog(sx, sy, |
1012 | 1155 |
hwSign(Gear^.dX), |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1156 |
2, |
1012 | 1157 |
1, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1158 |
Gear^.DirAngle); |
1012 | 1159 |
defaultPos:= false |
1020 | 1160 |
end else |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1161 |
|
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1162 |
if ((Gear^.State and gstHHJumping) <> 0) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1163 |
begin |
2020 | 1164 |
DrawHedgehog(sx, sy, |
1165 |
hwSign(Gear^.dX)*m, |
|
1166 |
1, |
|
1167 |
1, |
|
1168 |
0); |
|
1169 |
defaultPos:= false |
|
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1170 |
end; |
1012 | 1171 |
end; |
834 | 1172 |
|
1251 | 1173 |
with PHedgehog(Gear^.Hedgehog)^ do |
970 | 1174 |
begin |
1251 | 1175 |
if defaultPos then |
1176 |
begin |
|
1177 |
DrawRotatedF(sprHHIdle, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1178 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1179 |
sy, |
1251 | 1180 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
1181 |
hwSign(Gear^.dX), |
|
1182 |
0); |
|
1253 | 1183 |
HatVisible:= true; |
1184 |
end; |
|
1185 |
||
1186 |
if HatVisible then |
|
1251 | 1187 |
if HatVisibility < 1.0 then |
1254 | 1188 |
HatVisibility:= HatVisibility + 0.2 |
1253 | 1189 |
else |
1251 | 1190 |
else |
1191 |
if HatVisibility > 0.0 then |
|
1254 | 1192 |
HatVisibility:= HatVisibility - 0.2; |
2376 | 1193 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1194 |
if (HatTex <> nil) |
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
1195 |
and (HatVisibility > 0) then |
1255 | 1196 |
if DefaultPos then |
1197 |
DrawTextureF(HatTex, |
|
1198 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1199 |
sx, |
1255 | 1200 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1201 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
1202 |
hwSign(Gear^.dX), |
|
1203 |
32) |
|
1204 |
else |
|
1205 |
DrawTextureF(HatTex, |
|
1206 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1207 |
sx, |
1255 | 1208 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1209 |
0, |
|
2020 | 1210 |
hwSign(Gear^.dX)*m, |
1255 | 1211 |
32); |
970 | 1212 |
end; |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1213 |
if (Gear^.State and gstHHDriven) <> 0 then |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1214 |
begin |
2186
5ec3e4a03d51
disable selection sprite, nudge ship into the air on launch
nemo
parents:
2182
diff
changeset
|
1215 |
(* if (CurAmmoGear = nil) then |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1216 |
begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1217 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1218 |
case amt of |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1219 |
amJetpack: DrawSprite(sprJetpack, sx-32, sy-32, 0); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1220 |
end |
2186
5ec3e4a03d51
disable selection sprite, nudge ship into the air on launch
nemo
parents:
2182
diff
changeset
|
1221 |
end; *) |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1222 |
if CurAmmoGear <> nil then |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1223 |
begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1224 |
case CurAmmoGear^.Kind of |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1225 |
gtJetpack: begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1226 |
DrawSprite(sprJetpack, sx-32, sy-32, 0); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1227 |
if (CurAmmoGear^.MsgParam and gm_Up) <> 0 then DrawSprite(sprJetpack, sx-32, sy-32, 1); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1228 |
if (CurAmmoGear^.MsgParam and gm_Left) <> 0 then DrawSprite(sprJetpack, sx-32, sy-32, 2); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1229 |
if (CurAmmoGear^.MsgParam and gm_Right) <> 0 then DrawSprite(sprJetpack, sx-32, sy-32, 3); |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
1230 |
if CurAmmoGear^.Tex <> nil then DrawCentered(sx, sy - 40, CurAmmoGear^.Tex) |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1231 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1232 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1233 |
end |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1234 |
end; |
1251 | 1235 |
|
351 | 1236 |
with PHedgehog(Gear^.Hedgehog)^ do |
994 | 1237 |
begin |
1011 | 1238 |
if ((Gear^.State and not gstWinner) = 0) |
994 | 1239 |
or (bShowFinger and ((Gear^.State and gstHHDriven) <> 0)) then |
958 | 1240 |
begin |
1660 | 1241 |
t:= hwRound(Gear^.Y) - cHHRadius - 12 + WorldDy; |
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1242 |
if (cTagsMasks[cTagsMaskIndex] and htTransparent) <> 0 then |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1243 |
glColor4f(1, 1, 1, 0.5); |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1244 |
if ((cTagsMasks[cTagsMaskIndex] and htHealth) <> 0) and ((GameFlags and gfInvulnerable) = 0) then |
1660 | 1245 |
begin |
1246 |
dec(t, HealthTagTex^.h + 2); |
|
1247 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTagTex) |
|
1248 |
end; |
|
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1249 |
if (cTagsMasks[cTagsMaskIndex] and htName) <> 0 then |
1660 | 1250 |
begin |
1251 |
dec(t, NameTagTex^.h + 2); |
|
1252 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTagTex) |
|
1253 |
end; |
|
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1254 |
if (cTagsMasks[cTagsMaskIndex] and htTeamName) <> 0 then |
1660 | 1255 |
begin |
1256 |
dec(t, Team^.NameTagTex^.h + 2); |
|
1257 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTagTex) |
|
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1258 |
end; |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1259 |
if (cTagsMasks[cTagsMaskIndex] and htTransparent) <> 0 then |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1260 |
glColor4f(1, 1, 1, 1) |
958 | 1261 |
end; |
994 | 1262 |
if (Gear^.State and gstHHDriven) <> 0 then // Current hedgehog |
958 | 1263 |
begin |
1264 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
|
1265 |
DrawSprite(sprFinger, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 64 + WorldDy, |
|
1266 |
GameTicks div 32 mod 16); |
|
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
1267 |
|
958 | 1268 |
if (Gear^.State and gstDrowning) = 0 then |
1269 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
1270 |
DrawSprite(sprQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, 0) |
|
2028 | 1271 |
end |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1272 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1273 |
|
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1274 |
if Gear^.Invulnerable then |
2017 | 1275 |
begin |
2428 | 1276 |
glColor4f(1, 1, 1, 0.25 + abs(1 - ((RealTicks div 2) mod 1500) / 750)); |
1277 |
DrawSprite(sprInvulnerable, sx - 24, sy - 24, 0); |
|
1278 |
glColor4f(1, 1, 1, 1); |
|
2017 | 1279 |
end; |
1280 |
if cVampiric and |
|
2376 | 1281 |
(CurrentHedgehog^.Gear <> nil) and |
2017 | 1282 |
(CurrentHedgehog^.Gear = Gear) then |
1283 |
begin |
|
2428 | 1284 |
glColor4f(1, 1, 1, 0.25 + abs(1 - (RealTicks mod 1500) / 750)); |
2017 | 1285 |
DrawSprite(sprVampiric, sx - 24, sy - 24, 0); |
2428 | 1286 |
glColor4f(1, 1, 1, 1); |
2017 | 1287 |
end; |
292 | 1288 |
end; |
1289 |
||
2362 | 1290 |
procedure DrawRopeLinesRQ(Gear: PGear); |
1291 |
begin |
|
1292 |
with RopePoints do |
|
2365 | 1293 |
begin |
1294 |
rounded[Count].X:= hwRound(Gear^.X); |
|
1295 |
rounded[Count].Y:= hwRound(Gear^.Y); |
|
1296 |
rounded[Count + 1].X:= hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X); |
|
1297 |
rounded[Count + 1].Y:= hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y); |
|
1298 |
end; |
|
2362 | 1299 |
|
2365 | 1300 |
if (RopePoints.Count > 0) or (Gear^.Elasticity.QWordValue > 0) then |
2362 | 1301 |
begin |
1302 |
glDisable(GL_TEXTURE_2D); |
|
2366
b38efe489615
Disable smoothing and alpha for low quality rope rendering
unc0rr
parents:
2365
diff
changeset
|
1303 |
//glEnable(GL_LINE_SMOOTH); |
2365 | 1304 |
|
1305 |
glPushMatrix; |
|
1306 |
||
1307 |
glTranslatef(WorldDx, WorldDy, 0); |
|
2376 | 1308 |
|
2362 | 1309 |
glLineWidth(4.0); |
1310 |
||
2391 | 1311 |
glColor4f(0.8, 0.8, 0.8, 1); |
2362 | 1312 |
|
1313 |
glEnableClientState(GL_VERTEX_ARRAY); |
|
2390 | 1314 |
glVertexPointer(2, GL_FLOAT, 0, @RopePoints.rounded[0]); |
2365 | 1315 |
glDrawArrays(GL_LINE_STRIP, 0, RopePoints.Count + 2); |
2362 | 1316 |
glColor4f(1, 1, 1, 1); |
2365 | 1317 |
|
1318 |
glPopMatrix; |
|
2376 | 1319 |
|
2362 | 1320 |
glEnable(GL_TEXTURE_2D); |
2366
b38efe489615
Disable smoothing and alpha for low quality rope rendering
unc0rr
parents:
2365
diff
changeset
|
1321 |
//glDisable(GL_LINE_SMOOTH) |
2362 | 1322 |
end |
1323 |
end; |
|
1324 |
||
1325 |
procedure DrawRope(Gear: PGear); |
|
1326 |
var roplen: LongInt; |
|
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2391
diff
changeset
|
1327 |
i: Longword; |
2362 | 1328 |
|
1329 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
|
1330 |
var eX, eY, dX, dY: LongInt; |
|
1331 |
i, sX, sY, x, y, d: LongInt; |
|
1332 |
b: boolean; |
|
1333 |
begin |
|
1334 |
if (X1 = X2) and (Y1 = Y2) then |
|
1335 |
begin |
|
1336 |
//OutError('WARNING: zero length rope line!', false); |
|
1337 |
exit |
|
1338 |
end; |
|
1339 |
eX:= 0; |
|
1340 |
eY:= 0; |
|
1341 |
dX:= X2 - X1; |
|
1342 |
dY:= Y2 - Y1; |
|
1343 |
||
1344 |
if (dX > 0) then sX:= 1 |
|
1345 |
else |
|
1346 |
if (dX < 0) then |
|
1347 |
begin |
|
1348 |
sX:= -1; |
|
1349 |
dX:= -dX |
|
1350 |
end else sX:= dX; |
|
1351 |
||
1352 |
if (dY > 0) then sY:= 1 |
|
1353 |
else |
|
1354 |
if (dY < 0) then |
|
1355 |
begin |
|
1356 |
sY:= -1; |
|
1357 |
dY:= -dY |
|
1358 |
end else sY:= dY; |
|
1359 |
||
1360 |
if (dX > dY) then d:= dX |
|
1361 |
else d:= dY; |
|
1362 |
||
1363 |
x:= X1; |
|
1364 |
y:= Y1; |
|
1365 |
||
1366 |
for i:= 0 to d do |
|
1367 |
begin |
|
1368 |
inc(eX, dX); |
|
1369 |
inc(eY, dY); |
|
1370 |
b:= false; |
|
1371 |
if (eX > d) then |
|
1372 |
begin |
|
1373 |
dec(eX, d); |
|
1374 |
inc(x, sX); |
|
1375 |
b:= true |
|
1376 |
end; |
|
1377 |
if (eY > d) then |
|
1378 |
begin |
|
1379 |
dec(eY, d); |
|
1380 |
inc(y, sY); |
|
1381 |
b:= true |
|
1382 |
end; |
|
1383 |
if b then |
|
1384 |
begin |
|
1385 |
inc(roplen); |
|
1386 |
if (roplen mod 4) = 0 then DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
|
1387 |
end |
|
1388 |
end |
|
1389 |
end; |
|
1390 |
begin |
|
1391 |
if cReducedQuality then |
|
1392 |
DrawRopeLinesRQ(Gear) |
|
1393 |
else |
|
1394 |
begin |
|
1395 |
roplen:= 0; |
|
1396 |
if RopePoints.Count > 0 then |
|
1397 |
begin |
|
1398 |
i:= 0; |
|
1399 |
while i < Pred(RopePoints.Count) do |
|
1400 |
begin |
|
1401 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
|
1402 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
1403 |
inc(i) |
|
1404 |
end; |
|
1405 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
|
1406 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
1407 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
1408 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
1409 |
end else |
|
1410 |
if Gear^.Elasticity.QWordValue > 0 then |
|
1411 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
1412 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
1413 |
end; |
|
1414 |
||
1415 |
||
1416 |
if RopePoints.Count > 0 then |
|
1417 |
DrawRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
|
1418 |
else |
|
1419 |
if Gear^.Elasticity.QWordValue > 0 then |
|
1420 |
DrawRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
1421 |
end; |
|
1422 |
||
956 | 1423 |
procedure DrawGears; |
853 | 1424 |
var Gear, HHGear: PGear; |
4 | 1425 |
i: Longword; |
1426 |
begin |
|
1427 |
Gear:= GearsList; |
|
1428 |
while Gear<>nil do |
|
1689 | 1429 |
begin |
1430 |
case Gear^.Kind of |
|
822 | 1431 |
gtAmmo_Bomb: DrawRotated(sprBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
2457
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2455
diff
changeset
|
1432 |
gtMolotov: DrawRotated(sprMolotov, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1689 | 1433 |
|
2428 | 1434 |
gtRCPlane: begin |
1435 |
if (Gear^.Tag = -1) then |
|
1689 | 1436 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, -1, DxDy2Angle(Gear^.dX, Gear^.dY) + 90) |
1437 |
else |
|
1438 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy,0,DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
2428 | 1439 |
if ((TrainingFlags and tfRCPlane) <> 0) and (TrainingTargetGear <> nil) and ((Gear^.State and gstDrowning) = 0) then |
1440 |
DrawRotatedf(sprFinger, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, GameTicks div 32 mod 16, 0, DxDy2Angle(Gear^.X - TrainingTargetGear^.X, TrainingTargetGear^.Y - Gear^.Y)); |
|
1441 |
end; |
|
1601 | 1442 |
gtBall: DrawRotatedf(sprBalls, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tag,0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
2376 | 1443 |
|
1573 | 1444 |
gtDrill: DrawRotated(sprDrill, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
2376 | 1445 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1446 |
gtHedgehog: DrawHH(Gear); |
2376 | 1447 |
|
822 | 1448 |
gtAmmo_Grenade: DrawRotated(sprGrenade, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
2376 | 1449 |
|
1505 | 1450 |
gtHealthTag: if Gear^.Tex <> nil then DrawCentered(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tex); |
2017 | 1451 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1452 |
gtGrave: DrawSurfSprite(hwRound(Gear^.X) + WorldDx - 16, hwRound(Gear^.Y) + WorldDy - 16, 32, (GameTicks shr 7) and 7, PHedgehog(Gear^.Hedgehog)^.Team^.GraveTex); |
2376 | 1453 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1454 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4); |
2376 | 1455 |
|
848 | 1456 |
gtPickHammer: DrawSprite(sprPHammer, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 50 + LongInt(((GameTicks shr 5) and 1) * 2) + WorldDy, 0); |
2362 | 1457 |
gtRope: DrawRope(Gear); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1458 |
gtSmokeTrace: if Gear^.State < 8 then DrawSprite(sprSmokeTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
1012 | 1459 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 32 + WorldDy, Gear^.State); |
351 | 1460 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
822 | 1461 |
then DrawRotated(sprMineOff, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle) |
1462 |
else DrawRotated(sprMineOn, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
|
351 | 1463 |
gtCase: case Gear^.Pos of |
1794 | 1464 |
posCaseAmmo : begin |
1465 |
i:= (GameTicks shr 6) mod 64; |
|
1466 |
if i > 18 then i:= 0; |
|
1467 |
DrawSprite(sprCase, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
|
1468 |
end; |
|
1009 | 1469 |
posCaseHealth: begin |
1863 | 1470 |
i:= ((GameTicks shr 6) + 38) mod 64; |
1471 |
if i > 13 then i:= 0; |
|
1009 | 1472 |
DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
1473 |
end; |
|
1861 | 1474 |
posCaseUtility: begin |
1863 | 1475 |
i:= (GameTicks shr 6) mod 70; |
1476 |
if i > 23 then i:= 0; |
|
1909 | 1477 |
i:= i mod 12; |
1863 | 1478 |
DrawSprite(sprUtility, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
1861 | 1479 |
end; |
42 | 1480 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1481 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1); |
822 | 1482 |
gtClusterBomb: DrawRotated(sprClusterBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1483 |
gtCluster: DrawSprite(sprClusterParticle, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, 0); |
2455
cc54dd148cc2
Remove sheepluva's simple 45 deg bouncing from r2472, add various flame sizes for Tiy
nemo
parents:
2451
diff
changeset
|
1484 |
gtFlame: DrawTextureF(SpritesData[sprFlame].Texture, 1 / (Gear^.Tag mod 3 + 2), hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, (GameTicks div 128 + LongWord(Gear^.Tag)) mod 8, 1, 8); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1485 |
gtParachute: DrawSprite(sprParachute, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 48 + WorldDy, 0); |
2168 | 1486 |
gtAirAttack: if Gear^.Tag > 0 then DrawSprite(sprAirplane, hwRound(Gear^.X) - SpritesData[sprAirplane].Width div 2 + WorldDx, hwRound(Gear^.Y) - SpritesData[sprAirplane].Height div 2 + WorldDy, 0) |
1487 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - SpritesData[sprAirplane].Width div 2 + WorldDx, hwRound(Gear^.Y) - SpritesData[sprAirplane].Height div 2 + WorldDy, 1); |
|
822 | 1488 |
gtAirBomb: DrawRotated(sprAirBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
853 | 1489 |
gtTeleport: begin |
1490 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1491 |
DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
1492 |
DrawRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
1493 |
end; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1494 |
gtSwitcher: DrawSprite(sprSwitch, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 56 + WorldDy, (GameTicks shr 6) mod 12); |
2460 | 1495 |
gtTarget: begin |
1496 |
glColor4f(1, 1, 1, Gear^.Timer / 1000); |
|
1497 |
DrawSprite(sprTarget, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
|
1498 |
glColor4f(1, 1, 1, 1); |
|
1499 |
end; |
|
959 | 1500 |
gtMortar: DrawRotated(sprMortar, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1108 | 1501 |
gtCake: if Gear^.Pos = 6 then |
2025
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2023
diff
changeset
|
1502 |
DrawRotatedf(sprCakeWalk, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, (GameTicks div 40) mod 6, hwSign(Gear^.dX), Gear^.DirAngle * hwSign(Gear^.dX) + 90) |
1108 | 1503 |
else |
1262 | 1504 |
DrawRotatedf(sprCakeDown, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 5 - Gear^.Pos, hwSign(Gear^.dX), 0); |
1367 | 1505 |
gtSeduction: if Gear^.Pos >= 14 then DrawSprite(sprSeduction, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
1262 | 1506 |
gtWatermelon: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, 0, Gear^.DirAngle); |
1507 |
gtMelonPiece: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 1, 0, Gear^.DirAngle); |
|
1263 | 1508 |
gtHellishBomb: DrawRotated(sprHellishBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1509 |
gtEvilTrace: if Gear^.State < 8 then DrawSprite(sprEvilTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
|
1510 |
end; |
|
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
1511 |
if Gear^.RenderTimer and (Gear^.Tex <> nil) then DrawCentered(hwRound(Gear^.X) + 8 + WorldDx, hwRound(Gear^.Y) + 8 + WorldDy, Gear^.Tex); |
351 | 1512 |
Gear:= Gear^.NextGear |
4 | 1513 |
end; |
1514 |
end; |
|
1515 |
||
1516 |
procedure FreeGearsList; |
|
1517 |
var t, tt: PGear; |
|
1518 |
begin |
|
1519 |
tt:= GearsList; |
|
1520 |
GearsList:= nil; |
|
1505 | 1521 |
while tt <> nil do |
1522 |
begin |
|
1523 |
t:= tt; |
|
1524 |
tt:= tt^.NextGear; |
|
1525 |
Dispose(t) |
|
1526 |
end; |
|
4 | 1527 |
end; |
1528 |
||
10 | 1529 |
procedure AddMiscGears; |
371 | 1530 |
var i: LongInt; |
1515 | 1531 |
Gear: PGear; |
4 | 1532 |
begin |
498 | 1533 |
AddGear(0, 0, gtATStartGame, 0, _0, _0, 2000); |
1435
d4b32ee3caa6
Fix using freed memory (could be the cause of queue error problem and other bugs)
unc0rr
parents:
1434
diff
changeset
|
1534 |
|
2428 | 1535 |
if (TrainingFlags and tfSpawnTargets) <> 0 then |
1536 |
begin |
|
1537 |
TrainingTargetGear:= AddGear(0, 0, gtTarget, 0, _0, _0, 0); |
|
1538 |
FindPlace(TrainingTargetGear, false, 0, LAND_WIDTH); |
|
1539 |
end; |
|
1540 |
||
1895 | 1541 |
if ((GameFlags and gfForts) = 0) and ((GameFlags and gfMines) <> 0) then |
1435
d4b32ee3caa6
Fix using freed memory (could be the cause of queue error problem and other bugs)
unc0rr
parents:
1434
diff
changeset
|
1542 |
for i:= 0 to Pred(cLandAdditions) do |
1515 | 1543 |
begin |
1544 |
Gear:= AddGear(0, 0, gtMine, 0, _0, _0, 0); |
|
2333 | 1545 |
Gear^.TriggerId:= i + 1; |
1546 |
FindPlace(Gear, false, 0, LAND_WIDTH); |
|
1547 |
{ if(Gear <> nil) then |
|
1548 |
ParseCommand('addtrig s' + inttostr(Gear^.TriggerId) + ' 1 5 11 ' + |
|
1549 |
inttostr(hwRound(Gear^.X)) + ' ' + inttostr(hwRound(Gear^.Y)) + |
|
1550 |
' ' + inttostr(Gear^.TriggerId), true); |
|
1551 |
} end; |
|
1895 | 1552 |
|
1553 |
if (GameFlags and gfLowGravity) <> 0 then |
|
1554 |
cGravity:= cMaxWindSpeed / 2; |
|
1555 |
||
2017 | 1556 |
if (GameFlags and gfVampiric) <> 0 then |
1557 |
cVampiric:= true; |
|
1558 |
||
1895 | 1559 |
Gear:= GearsList; |
1560 |
if (GameFlags and gfInvulnerable) <> 0 then |
|
1561 |
while Gear <> nil do |
|
1562 |
begin |
|
1563 |
Gear^.Invulnerable:= true; // this is only checked on hogs right now, so no need for gear type check |
|
1564 |
Gear:= Gear^.NextGear |
|
1565 |
end; |
|
1566 |
||
1567 |
if (GameFlags and gfLaserSight) <> 0 then |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1568 |
cLaserSighting:= true; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1569 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1570 |
if (GameFlags and gfArtillery) <> 0 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1571 |
cArtillery:= true |
4 | 1572 |
end; |
1573 |
||
371 | 1574 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); |
4 | 1575 |
var Gear: PGear; |
506 | 1576 |
dmg, dmgRadius: LongInt; |
4 | 1577 |
begin |
1578 |
TargetPoint.X:= NoPointX; |
|
1434 | 1579 |
{$IFDEF DEBUGFILE}if Radius > 4 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF} |
1049 | 1580 |
if (Radius > 10) then AddGear(X, Y, gtExplosion, 0, _0, _0, 0); |
1669 | 1581 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion, false, nil); |
1433 | 1582 |
|
1583 |
if (Mask and EXPLAllDamageInRadius) = 0 then |
|
1584 |
dmgRadius:= Radius shl 1 |
|
1585 |
else |
|
1586 |
dmgRadius:= Radius; |
|
1587 |
||
4 | 1588 |
Gear:= GearsList; |
1589 |
while Gear <> nil do |
|
1200 | 1590 |
begin |
1591 |
dmg:= dmgRadius + cHHRadius div 2 - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
|
1592 |
if (dmg > 1) and |
|
1593 |
((Gear^.State and gstNoDamage) = 0) then |
|
1594 |
begin |
|
1861 | 1595 |
dmg:= modifyDamage(min(dmg div 2, Radius)); |
1200 | 1596 |
case Gear^.Kind of |
1597 |
gtHedgehog, |
|
1598 |
gtMine, |
|
1599 |
gtCase, |
|
1600 |
gtTarget, |
|
1601 |
gtFlame: begin |
|
1346 | 1602 |
//{$IFDEF DEBUGFILE}AddFileLog('Damage: ' + inttostr(dmg));{$ENDIF} |
1200 | 1603 |
if (Mask and EXPLNoDamage) = 0 then |
1604 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1605 |
if not Gear^.Invulnerable then |
2017 | 1606 |
ApplyDamage(Gear, dmg) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1607 |
else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1608 |
Gear^.State:= Gear^.State or gstWinner; |
1200 | 1609 |
end; |
1610 |
if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog) then |
|
1611 |
begin |
|
1612 |
DeleteCI(Gear); |
|
1613 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, Gear^.X - int2hwFloat(X)); |
|
1614 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, Gear^.Y - int2hwFloat(Y)); |
|
1868 | 1615 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstLoser); |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1616 |
if not Gear^.Invulnerable then |
1868 | 1617 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstWinner); |
1200 | 1618 |
Gear^.Active:= true; |
1619 |
FollowGear:= Gear |
|
1620 |
end; |
|
1621 |
end; |
|
1622 |
gtGrave: begin |
|
1623 |
Gear^.dY:= - _0_004 * dmg; |
|
1624 |
Gear^.Active:= true; |
|
1625 |
end; |
|
1626 |
end; |
|
1627 |
end; |
|
1628 |
Gear:= Gear^.NextGear |
|
1629 |
end; |
|
1630 |
||
621 | 1631 |
if (Mask and EXPLDontDraw) = 0 then |
1200 | 1632 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(X, Y, Radius); |
1633 |
||
498 | 1634 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
4 | 1635 |
end; |
1636 |
||
506 | 1637 |
procedure ShotgunShot(Gear: PGear); |
1638 |
var t: PGear; |
|
955 | 1639 |
dmg: LongInt; |
506 | 1640 |
begin |
509 | 1641 |
Gear^.Radius:= cShotgunRadius; |
506 | 1642 |
t:= GearsList; |
1643 |
while t <> nil do |
|
1286 | 1644 |
begin |
1861 | 1645 |
dmg:= modifyDamage(min(Gear^.Radius + t^.Radius - hwRound(Distance(Gear^.X - t^.X, Gear^.Y - t^.Y)), 25)); |
1286 | 1646 |
if dmg > 0 then |
1647 |
case t^.Kind of |
|
1648 |
gtHedgehog, |
|
1649 |
gtMine, |
|
1650 |
gtCase, |
|
1651 |
gtTarget: begin |
|
1854 | 1652 |
if (not t^.Invulnerable) then |
2017 | 1653 |
ApplyDamage(t, dmg) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1654 |
else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1655 |
Gear^.State:= Gear^.State or gstWinner; |
867 | 1656 |
|
1286 | 1657 |
DeleteCI(t); |
1658 |
t^.dX:= t^.dX + Gear^.dX * dmg * _0_01 + SignAs(cHHKick, Gear^.dX); |
|
1659 |
t^.dY:= t^.dY + Gear^.dY * dmg * _0_01; |
|
1660 |
t^.State:= t^.State or gstMoving; |
|
1661 |
t^.Active:= true; |
|
1662 |
FollowGear:= t |
|
1663 |
end; |
|
1664 |
gtGrave: begin |
|
1665 |
t^.dY:= - _0_1; |
|
1666 |
t^.Active:= true |
|
1667 |
end; |
|
1668 |
end; |
|
1669 |
t:= t^.NextGear |
|
1670 |
end; |
|
621 | 1671 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius) |
506 | 1672 |
end; |
1673 |
||
371 | 1674 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); |
53 | 1675 |
var t: PGearArray; |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1676 |
Gear: PGear; |
371 | 1677 |
i: LongInt; |
38 | 1678 |
begin |
53 | 1679 |
t:= CheckGearsCollision(Ammo); |
351 | 1680 |
i:= t^.Count; |
1506 | 1681 |
|
1861 | 1682 |
Damage:= modifyDamage(Damage); |
1683 |
||
2489 | 1684 |
if (Ammo^.Kind = gtFlame) and (i > 0) then Ammo^.Health:= 0; |
53 | 1685 |
while i > 0 do |
981 | 1686 |
begin |
1687 |
dec(i); |
|
2428 | 1688 |
Gear:= t^.ar[i]; |
1689 |
if (Gear^.State and gstNoDamage) = 0 then |
|
1690 |
begin |
|
2492
9e80b7fc4017
Tweak of molotov based on burp's play, a little bit more specificity in homerun.
nemo
parents:
2491
diff
changeset
|
1691 |
if (Gear^.Kind = gtHedgehog) and (Ammo^.State and gsttmpFlag <> 0) and (Ammo^.Kind = gtShover) then Gear^.FlightTime:= 1; |
2428 | 1692 |
|
1693 |
case Gear^.Kind of |
|
981 | 1694 |
gtHedgehog, |
1695 |
gtMine, |
|
1696 |
gtTarget, |
|
1697 |
gtCase: begin |
|
1573 | 1698 |
if (Ammo^.Kind = gtDrill) then begin Ammo^.Timer:= 0; exit; end; |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1699 |
if (not Gear^.Invulnerable) then |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1700 |
ApplyDamage(Gear, Damage) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1701 |
else |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1702 |
Gear^.State:= Gear^.State or gstWinner; |
867 | 1703 |
|
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1704 |
DeleteCI(Gear); |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1705 |
Gear^.dX:= Ammo^.dX * Power * _0_01; |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1706 |
Gear^.dY:= Ammo^.dY * Power * _0_01; |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1707 |
Gear^.Active:= true; |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1708 |
Gear^.State:= Gear^.State or gstMoving; |
867 | 1709 |
|
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1710 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
981 | 1711 |
begin |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1712 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1713 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1714 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1715 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1716 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1717 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
981 | 1718 |
end; |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1719 |
|
2537
aceebf0653f7
Disable followgear on ammoshove for napalm fire damage
nemo
parents:
2492
diff
changeset
|
1720 |
if (Ammo^.Kind <> gtFlame) or ((Ammo^.State and gsttmpFlag) = 0) then FollowGear:= Gear |
981 | 1721 |
end; |
1722 |
end |
|
2428 | 1723 |
end; |
981 | 1724 |
end; |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1725 |
if i <> 0 then SetAllToActive |
38 | 1726 |
end; |
1727 |
||
4 | 1728 |
procedure AssignHHCoords; |
955 | 1729 |
var i, t, p, j: LongInt; |
1760 | 1730 |
ar: array[0..Pred(cMaxHHs)] of PHedgehog; |
1731 |
Count: Longword; |
|
4 | 1732 |
begin |
1428 | 1733 |
if (GameFlags and (gfForts or gfDivideTeams)) <> 0 then |
955 | 1734 |
begin |
1735 |
t:= 0; |
|
1428 | 1736 |
TryDo(ClansCount = 2, 'More or less than 2 clans on map in divided teams mode!', true); |
955 | 1737 |
for p:= 0 to 1 do |
1738 |
begin |
|
1739 |
with ClansArray[p]^ do |
|
1740 |
for j:= 0 to Pred(TeamsNumber) do |
|
1741 |
with Teams[j]^ do |
|
1742 |
for i:= 0 to cMaxHHIndex do |
|
1743 |
with Hedgehogs[i] do |
|
958 | 1744 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
1745 |
begin |
|
1760 | 1746 |
FindPlace(Gear, false, t, t + LAND_WIDTH div 2);// could make Gear == nil |
1515 | 1747 |
if Gear <> nil then |
1748 |
begin |
|
1784 | 1749 |
Gear^.Pos:= GetRandom(49); |
1515 | 1750 |
Gear^.dX.isNegative:= p = 1; |
1751 |
end |
|
958 | 1752 |
end; |
1760 | 1753 |
t:= LAND_WIDTH div 2 |
955 | 1754 |
end |
1755 |
end else // mix hedgehogs |
|
1756 |
begin |
|
1757 |
Count:= 0; |
|
1758 |
for p:= 0 to Pred(TeamsCount) do |
|
1759 |
with TeamsArray[p]^ do |
|
1760 |
begin |
|
1761 |
for i:= 0 to cMaxHHIndex do |
|
1762 |
with Hedgehogs[i] do |
|
1763 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
|
1764 |
begin |
|
1515 | 1765 |
ar[Count]:= @Hedgehogs[i]; |
955 | 1766 |
inc(Count) |
1767 |
end; |
|
1768 |
end; |
|
1792 | 1769 |
// unC0Rr, while it is true user can watch value on map screen, IMO this (and check above) should be enforced in UI |
1770 |
// - is there a good place to put values for the different widgets to check? Right now they are kind of disconnected. |
|
1965 | 1771 |
//it would be nice if divide teams, forts mode and hh per map could all be checked by the team widget, or maybe disable start button |
1795 | 1772 |
TryDo(Count <= MaxHedgehogs, 'Too many hedgehogs for this map! (max # is ' + inttostr(MaxHedgehogs) + ')', true); |
955 | 1773 |
while (Count > 0) do |
1774 |
begin |
|
1775 |
i:= GetRandom(Count); |
|
1760 | 1776 |
FindPlace(ar[i]^.Gear, false, 0, LAND_WIDTH); |
1515 | 1777 |
if ar[i]^.Gear <> nil then |
1778 |
begin |
|
1760 | 1779 |
ar[i]^.Gear^.dX.isNegative:= hwRound(ar[i]^.Gear^.X) > LAND_WIDTH div 2; |
1776 | 1780 |
ar[i]^.Gear^.Pos:= GetRandom(19) |
1515 | 1781 |
end; |
1776 | 1782 |
ar[i]:= ar[Count - 1]; |
955 | 1783 |
dec(Count) |
1784 |
end |
|
1785 |
end |
|
4 | 1786 |
end; |
1787 |
||
371 | 1788 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
10 | 1789 |
var t: PGear; |
1790 |
begin |
|
1791 |
t:= GearsList; |
|
1792 |
rX:= sqr(rX); |
|
1793 |
rY:= sqr(rY); |
|
1433 | 1794 |
|
10 | 1795 |
while t <> nil do |
1433 | 1796 |
begin |
1797 |
if (t <> Gear) and (t^.Kind = Kind) then |
|
1798 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
|
1799 |
exit(t); |
|
1800 |
t:= t^.NextGear |
|
1801 |
end; |
|
1802 |
||
351 | 1803 |
CheckGearNear:= nil |
15 | 1804 |
end; |
1805 |
||
1433 | 1806 |
{procedure AmmoFlameWork(Ammo: PGear); |
79 | 1807 |
var t: PGear; |
1808 |
begin |
|
1809 |
t:= GearsList; |
|
1810 |
while t <> nil do |
|
1295 | 1811 |
begin |
1812 |
if (t^.Kind = gtHedgehog) and (t^.Y < Ammo^.Y) then |
|
1813 |
if not (hwSqr(Ammo^.X - t^.X) + hwSqr(Ammo^.Y - t^.Y - int2hwFloat(cHHRadius)) * 2 > _2) then |
|
1814 |
begin |
|
2017 | 1815 |
ApplyDamage(t, 5); |
1295 | 1816 |
t^.dX:= t^.dX + (t^.X - Ammo^.X) * _0_02; |
1817 |
t^.dY:= - _0_25; |
|
1818 |
t^.Active:= true; |
|
1819 |
DeleteCI(t); |
|
1820 |
FollowGear:= t |
|
1821 |
end; |
|
1822 |
t:= t^.NextGear |
|
1823 |
end; |
|
1433 | 1824 |
end;} |
79 | 1825 |
|
371 | 1826 |
function CheckGearsNear(mX, mY: LongInt; Kind: TGearsType; rX, rY: LongInt): PGear; |
16 | 1827 |
var t: PGear; |
1828 |
begin |
|
1829 |
t:= GearsList; |
|
1830 |
rX:= sqr(rX); |
|
1831 |
rY:= sqr(rY); |
|
1832 |
while t <> nil do |
|
1515 | 1833 |
begin |
1834 |
if t^.Kind in Kind then |
|
1835 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
|
1836 |
exit(t); |
|
1837 |
t:= t^.NextGear |
|
1838 |
end; |
|
351 | 1839 |
CheckGearsNear:= nil |
16 | 1840 |
end; |
1841 |
||
1842 |
function CountGears(Kind: TGearType): Longword; |
|
1843 |
var t: PGear; |
|
351 | 1844 |
Result: Longword; |
16 | 1845 |
begin |
1846 |
Result:= 0; |
|
1847 |
t:= GearsList; |
|
1848 |
while t <> nil do |
|
1515 | 1849 |
begin |
1850 |
if t^.Kind = Kind then inc(Result); |
|
1851 |
t:= t^.NextGear |
|
1852 |
end; |
|
351 | 1853 |
CountGears:= Result |
16 | 1854 |
end; |
1855 |
||
15 | 1856 |
procedure SpawnBoxOfSmth; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1857 |
var t: LongInt; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1858 |
i: TAmmoType; |
15 | 1859 |
begin |
614 | 1860 |
if (cCaseFactor = 0) or |
1861 |
(CountGears(gtCase) >= 5) or |
|
1862 |
(getrandom(cCaseFactor) <> 0) then exit; |
|
1295 | 1863 |
|
1948 | 1864 |
FollowGear:= nil; |
1865 |
||
2145 | 1866 |
if shoppa then // FIXME - TEMPORARY REMOVE WHEN CRATE PROBABILITY IS ADDED |
1966 | 1867 |
t:= 7 |
1868 |
else |
|
1869 |
t:= getrandom(20); |
|
1870 |
||
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1871 |
// avoid health crates if all hogs are invulnerable |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1872 |
if (t < 13) and ((GameFlags and gfInvulnerable) <> 0) then t:= t * 13 div 20 + 7; |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1873 |
|
1966 | 1874 |
//case getrandom(20) of |
1875 |
case t of |
|
1861 | 1876 |
0..6: begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1877 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
351 | 1878 |
FollowGear^.Health:= 25; |
2143
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2137
diff
changeset
|
1879 |
FollowGear^.Pos:= posCaseHealth; |
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2137
diff
changeset
|
1880 |
AddCaption(GetEventString(eidNewHealthPack), $FFFFFF, capgrpGameState); |
295 | 1881 |
end; |
1861 | 1882 |
7..13: begin |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1883 |
t:= 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1884 |
for i:= Low(TAmmoType) to High(TAmmoType) do |
1861 | 1885 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then |
1886 |
inc(t, Ammoz[i].Probability); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1887 |
if (t > 0) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1888 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1889 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1890 |
t:= GetRandom(t); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1891 |
i:= Low(TAmmoType); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1892 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1893 |
dec(t, Ammoz[i].Probability); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1894 |
while t >= 0 do |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1895 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1896 |
inc(i); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1897 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1898 |
dec(t, Ammoz[i].Probability) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1899 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1900 |
FollowGear^.Pos:= posCaseAmmo; |
2143
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2137
diff
changeset
|
1901 |
FollowGear^.State:= Longword(i); |
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2137
diff
changeset
|
1902 |
AddCaption(GetEventString(eidNewAmmoPack), $FFFFFF, capgrpGameState); |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1903 |
end |
295 | 1904 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1905 |
14..19: begin |
1861 | 1906 |
t:= 0; |
1907 |
for i:= Low(TAmmoType) to High(TAmmoType) do |
|
1908 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0 then |
|
1909 |
inc(t, Ammoz[i].Probability); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1910 |
if (t > 0) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1911 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1912 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1913 |
t:= GetRandom(t); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1914 |
i:= Low(TAmmoType); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1915 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1916 |
dec(t, Ammoz[i].Probability); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1917 |
while t >= 0 do |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1918 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1919 |
inc(i); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1920 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1921 |
dec(t, Ammoz[i].Probability) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1922 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1923 |
FollowGear^.Pos:= posCaseUtility; |
2143
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2137
diff
changeset
|
1924 |
FollowGear^.State:= Longword(i); |
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2137
diff
changeset
|
1925 |
AddCaption(GetEventString(eidNewUtilityPack), $FFFFFF, capgrpGameState); |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1926 |
end |
1861 | 1927 |
end; |
295 | 1928 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1929 |
// handles case of no ammo or utility crates - considered also placing booleans in uAmmos and altering probabilities |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1930 |
if (FollowGear <> nil) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1931 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1932 |
FindPlace(FollowGear, true, 0, LAND_WIDTH); |
2376 | 1933 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1934 |
if (FollowGear <> nil) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1935 |
PlaySound(sndReinforce, false, CurrentTeam^.voicepack) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1936 |
end |
70 | 1937 |
end; |
1938 |
||
1515 | 1939 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); |
70 | 1940 |
|
1515 | 1941 |
function CountNonZeroz(x, y, r: LongInt): LongInt; |
1942 |
var i: LongInt; |
|
1943 |
Result: LongInt; |
|
1944 |
begin |
|
1945 |
Result:= 0; |
|
1753 | 1946 |
if (y and LAND_HEIGHT_MASK) = 0 then |
1760 | 1947 |
for i:= max(x - r, 0) to min(x + r, LAND_WIDTH - 4) do |
1515 | 1948 |
if Land[y, i] <> 0 then inc(Result); |
1949 |
CountNonZeroz:= Result |
|
1950 |
end; |
|
70 | 1951 |
|
495 | 1952 |
var x: LongInt; |
1515 | 1953 |
y, sy: LongInt; |
1954 |
ar: array[0..511] of TPoint; |
|
1955 |
ar2: array[0..1023] of TPoint; |
|
1956 |
cnt, cnt2: Longword; |
|
1957 |
delta: LongInt; |
|
70 | 1958 |
begin |
386 | 1959 |
delta:= 250; |
1960 |
cnt2:= 0; |
|
16 | 1961 |
repeat |
1515 | 1962 |
x:= Left + LongInt(GetRandom(Delta)); |
1963 |
repeat |
|
1964 |
inc(x, Delta); |
|
1965 |
cnt:= 0; |
|
1939 | 1966 |
if topY > 1024 then |
1967 |
y:= 1024-Gear^.Radius * 2 |
|
2376 | 1968 |
else |
1939 | 1969 |
y:= topY-Gear^.Radius * 2; |
1753 | 1970 |
while y < LAND_HEIGHT do |
1515 | 1971 |
begin |
1972 |
repeat |
|
1973 |
inc(y, 2); |
|
1760 | 1974 |
until (y >= LAND_HEIGHT) or (CountNonZeroz(x, y, Gear^.Radius - 1) = 0); |
2376 | 1975 |
|
1515 | 1976 |
sy:= y; |
1977 |
||
1978 |
repeat |
|
1979 |
inc(y); |
|
1760 | 1980 |
until (y >= LAND_HEIGHT) or (CountNonZeroz(x, y, Gear^.Radius - 1) <> 0); |
2376 | 1981 |
|
1515 | 1982 |
if (y - sy > Gear^.Radius * 2) |
1753 | 1983 |
and (y < LAND_HEIGHT) |
2451
5affd0840927
New data files from Tiy, add gtFlame to avoidance list
nemo
parents:
2428
diff
changeset
|
1984 |
and (CheckGearsNear(x, y - Gear^.Radius, [gtFlame, gtHedgehog, gtMine, gtCase], 110, 110) = nil) then |
1515 | 1985 |
begin |
1986 |
ar[cnt].X:= x; |
|
1987 |
if withFall then ar[cnt].Y:= sy + Gear^.Radius |
|
1988 |
else ar[cnt].Y:= y - Gear^.Radius; |
|
1989 |
inc(cnt) |
|
1990 |
end; |
|
2376 | 1991 |
|
1515 | 1992 |
inc(y, 45) |
1993 |
end; |
|
2376 | 1994 |
|
1515 | 1995 |
if cnt > 0 then |
1996 |
with ar[GetRandom(cnt)] do |
|
1997 |
begin |
|
1998 |
ar2[cnt2].x:= x; |
|
1999 |
ar2[cnt2].y:= y; |
|
2000 |
inc(cnt2) |
|
2001 |
end |
|
2002 |
until (x + Delta > Right); |
|
2376 | 2003 |
|
1515 | 2004 |
dec(Delta, 60) |
386 | 2005 |
until (cnt2 > 0) or (Delta < 70); |
1515 | 2006 |
|
386 | 2007 |
if cnt2 > 0 then |
1515 | 2008 |
with ar2[GetRandom(cnt2)] do |
2009 |
begin |
|
2010 |
Gear^.X:= int2hwFloat(x); |
|
2011 |
Gear^.Y:= int2hwFloat(y); |
|
2012 |
{$IFDEF DEBUGFILE} |
|
2013 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
2014 |
{$ENDIF} |
|
2015 |
end |
|
2016 |
else |
|
2017 |
begin |
|
2018 |
OutError('Can''t find place for Gear', false); |
|
2019 |
DeleteGear(Gear); |
|
2020 |
Gear:= nil |
|
2021 |
end |
|
10 | 2022 |
end; |
2023 |
||
4 | 2024 |
initialization |
2025 |
||
2026 |
finalization |
|
95 | 2027 |
FreeGearsList; |
4 | 2028 |
|
2451
5affd0840927
New data files from Tiy, add gtFlame to avoidance list
nemo
parents:
2428
diff
changeset
|
2029 |
end. |