author | nemo |
Thu, 27 Sep 2012 13:37:10 -0400 | |
changeset 7717 | 2684fdb9d874 |
parent 7627 | e1e112687fd6 |
child 7719 | eeae1cb6b6bf |
permissions | -rw-r--r-- |
6581 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
6700 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
6581 | 4 |
* |
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 |
|
8 |
* |
|
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. |
|
13 |
* |
|
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 |
|
17 |
*) |
|
18 |
||
19 |
{$INCLUDE "options.inc"} |
|
20 |
||
21 |
unit uGearsUtils; |
|
22 |
interface |
|
7066
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7053
diff
changeset
|
23 |
uses uTypes; |
6581 | 24 |
|
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
25 |
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword); inline; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
26 |
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword; const Tint: LongWord); |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
27 |
|
6581 | 28 |
function ModifyDamage(dmg: Longword; Gear: PGear): Longword; |
29 |
procedure ApplyDamage(Gear: PGear; AttackerHog: PHedgehog; Damage: Longword; Source: TDamageSource); |
|
30 |
procedure spawnHealthTagForHH(HHGear: PGear; dmg: Longword); |
|
31 |
procedure HHHurt(Hedgehog: PHedgehog; Source: TDamageSource); |
|
32 |
procedure CheckHHDamage(Gear: PGear); |
|
33 |
procedure CalcRotationDirAngle(Gear: PGear); |
|
34 |
procedure ResurrectHedgehog(gear: PGear); |
|
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
35 |
|
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
36 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); inline; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
37 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity: boolean); |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
38 |
|
6581 | 39 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
40 |
function CheckGearDrowning(Gear: PGear): boolean; |
|
7592 | 41 |
procedure CheckCollision(Gear: PGear); inline; |
42 |
procedure CheckCollisionWithLand(Gear: PGear); inline; |
|
6581 | 43 |
|
44 |
var doStepHandlers: array[TGearType] of TGearStepProcedure; |
|
45 |
||
46 |
||
47 |
implementation |
|
48 |
uses uFloat, uSound, uCollisions, uUtils, uConsts, uVisualGears, uAIMisc, |
|
49 |
uVariables, uLandGraphics, uScript, uStats, uCaptions, uTeams, uStore, |
|
50 |
uLocale, uTextures, uRenderUtils, uRandom, SDLh, uDebug, uGears, |
|
7066
12cc2bd84b0b
Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents:
7053
diff
changeset
|
51 |
uGearsList, Math; |
6581 | 52 |
|
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
53 |
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword); inline; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
54 |
begin |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
55 |
doMakeExplosion(X, Y, Radius, AttackingHog, Mask, $FFFFFFFF); |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
56 |
end; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
57 |
|
6581 | 58 |
procedure doMakeExplosion(X, Y, Radius: LongInt; AttackingHog: PHedgehog; Mask: Longword; const Tint: LongWord); |
59 |
var Gear: PGear; |
|
6769
44ad49a3a126
Add drowning to grenade too, try some little optimisations
nemo
parents:
6765
diff
changeset
|
60 |
dmg, dmgBase: LongInt; |
6765 | 61 |
fX, fY, tdX, tdY: hwFloat; |
6581 | 62 |
vg: PVisualGear; |
63 |
i, cnt: LongInt; |
|
64 |
begin |
|
65 |
if Radius > 4 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
66 |
if Radius > 25 then KickFlakes(Radius, X, Y); |
|
67 |
||
68 |
if ((Mask and EXPLNoGfx) = 0) then |
|
69 |
begin |
|
70 |
vg:= nil; |
|
71 |
if Radius > 50 then vg:= AddVisualGear(X, Y, vgtBigExplosion) |
|
72 |
else if Radius > 10 then vg:= AddVisualGear(X, Y, vgtExplosion); |
|
73 |
if vg <> nil then |
|
74 |
vg^.Tint:= Tint; |
|
75 |
end; |
|
76 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion); |
|
77 |
||
6765 | 78 |
(*if (Mask and EXPLAllDamageInRadius) = 0 then |
6581 | 79 |
dmgRadius:= Radius shl 1 |
80 |
else |
|
81 |
dmgRadius:= Radius; |
|
6765 | 82 |
dmgBase:= dmgRadius + cHHRadius div 2;*) |
83 |
dmgBase:= Radius shl 1 + cHHRadius div 2; |
|
6581 | 84 |
fX:= int2hwFloat(X); |
85 |
fY:= int2hwFloat(Y); |
|
86 |
Gear:= GearsList; |
|
87 |
while Gear <> nil do |
|
88 |
begin |
|
89 |
dmg:= 0; |
|
90 |
//dmg:= dmgRadius + cHHRadius div 2 - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
|
91 |
//if (dmg > 1) and |
|
92 |
if (Gear^.State and gstNoDamage) = 0 then |
|
93 |
begin |
|
94 |
case Gear^.Kind of |
|
95 |
gtHedgehog, |
|
96 |
gtMine, |
|
97 |
gtBall, |
|
98 |
gtMelonPiece, |
|
99 |
gtGrenade, |
|
100 |
gtClusterBomb, |
|
101 |
// gtCluster, too game breaking I think |
|
102 |
gtSMine, |
|
103 |
gtCase, |
|
104 |
gtTarget, |
|
105 |
gtFlame, |
|
106 |
gtExplosives, |
|
107 |
gtStructure: begin |
|
108 |
// Run the calcs only once we know we have a type that will need damage |
|
6765 | 109 |
tdX:= Gear^.X-fX; |
110 |
tdY:= Gear^.Y-fY; |
|
7625 | 111 |
if (tdX.Round + tdY.Round + 2) < dmgBase then |
7272
71df899c4163
Second part of the change. Make collision check use the new mask bit.
nemo
parents:
7190
diff
changeset
|
112 |
dmg:= dmgBase - hwRound(Distance(tdX, tdY)); |
6581 | 113 |
if dmg > 1 then |
114 |
begin |
|
115 |
dmg:= ModifyDamage(min(dmg div 2, Radius), Gear); |
|
116 |
//AddFileLog('Damage: ' + inttostr(dmg)); |
|
117 |
if (Mask and EXPLNoDamage) = 0 then |
|
118 |
begin |
|
119 |
if not Gear^.Invulnerable then |
|
120 |
ApplyDamage(Gear, AttackingHog, dmg, dsExplosion) |
|
121 |
else |
|
122 |
Gear^.State:= Gear^.State or gstWinner; |
|
123 |
end; |
|
124 |
if ((Mask and EXPLDoNotTouchAny) = 0) and (((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog)) then |
|
125 |
begin |
|
126 |
DeleteCI(Gear); |
|
6765 | 127 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, tdX)/(Gear^.Density/_3); |
128 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, tdY)/(Gear^.Density/_3); |
|
6581 | 129 |
|
130 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstLoser); |
|
131 |
if not Gear^.Invulnerable then |
|
132 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstWinner); |
|
133 |
Gear^.Active:= true; |
|
134 |
if Gear^.Kind <> gtFlame then FollowGear:= Gear |
|
135 |
end; |
|
136 |
if ((Mask and EXPLPoisoned) <> 0) and (Gear^.Kind = gtHedgehog) and (not Gear^.Invulnerable) then |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6990
diff
changeset
|
137 |
Gear^.Hedgehog^.Effects[hePoisoned] := 1; |
6581 | 138 |
end; |
139 |
||
140 |
end; |
|
141 |
gtGrave: begin |
|
142 |
// Run the calcs only once we know we have a type that will need damage |
|
6765 | 143 |
tdX:= Gear^.X-fX; |
144 |
tdY:= Gear^.Y-fY; |
|
7627 | 145 |
if (tdX.Round + tdY.Round + 2) < dmgBase then |
6765 | 146 |
dmg:= dmgBase - hwRound(Distance(tdX, tdY)); |
6581 | 147 |
if dmg > 1 then |
148 |
begin |
|
149 |
dmg:= ModifyDamage(min(dmg div 2, Radius), Gear); |
|
150 |
Gear^.dY:= - _0_004 * dmg; |
|
151 |
Gear^.Active:= true |
|
152 |
end |
|
153 |
end; |
|
154 |
end; |
|
155 |
end; |
|
156 |
Gear:= Gear^.NextGear |
|
157 |
end; |
|
158 |
||
159 |
if (Mask and EXPLDontDraw) = 0 then |
|
160 |
if (GameFlags and gfSolidLand) = 0 then |
|
161 |
begin |
|
162 |
cnt:= DrawExplosion(X, Y, Radius) div 1608; // approx 2 16x16 circles to erase per chunk |
|
163 |
if (cnt > 0) and (SpritesData[sprChunk].Texture <> nil) then |
|
164 |
for i:= 0 to cnt do |
|
165 |
AddVisualGear(X, Y, vgtChunk) |
|
166 |
end; |
|
167 |
||
168 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
|
169 |
end; |
|
170 |
||
171 |
function ModifyDamage(dmg: Longword; Gear: PGear): Longword; |
|
172 |
var i: hwFloat; |
|
173 |
begin |
|
174 |
(* Invulnerability cannot be placed in here due to still needing kicks |
|
175 |
Not without a new damage machine. |
|
176 |
King check should be in here instead of ApplyDamage since Tiy wants them kicked less |
|
177 |
*) |
|
178 |
i:= _1; |
|
179 |
if (CurrentHedgehog <> nil) and CurrentHedgehog^.King then |
|
180 |
i:= _1_5; |
|
181 |
if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.King) then |
|
182 |
ModifyDamage:= hwRound(_0_01 * cDamageModifier * dmg * i * cDamagePercent * _0_5) |
|
183 |
else |
|
184 |
ModifyDamage:= hwRound(_0_01 * cDamageModifier * dmg * i * cDamagePercent) |
|
185 |
end; |
|
186 |
||
187 |
procedure ApplyDamage(Gear: PGear; AttackerHog: PHedgehog; Damage: Longword; Source: TDamageSource); |
|
188 |
var s: shortstring; |
|
189 |
vampDmg, tmpDmg, i: Longword; |
|
190 |
vg: PVisualGear; |
|
191 |
begin |
|
192 |
if Damage = 0 then |
|
193 |
exit; // nothing to apply |
|
194 |
||
195 |
if (Gear^.Kind = gtHedgehog) then |
|
196 |
begin |
|
197 |
Gear^.LastDamage := AttackerHog; |
|
198 |
||
199 |
Gear^.Hedgehog^.Team^.Clan^.Flawless:= false; |
|
200 |
HHHurt(Gear^.Hedgehog, Source); |
|
201 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), Damage, Gear^.Hedgehog^.Team^.Clan^.Color); |
|
202 |
tmpDmg:= min(Damage, max(0,Gear^.Health-Gear^.Damage)); |
|
203 |
if (Gear <> CurrentHedgehog^.Gear) and (CurrentHedgehog^.Gear <> nil) and (tmpDmg >= 1) then |
|
204 |
begin |
|
205 |
if cVampiric then |
|
206 |
begin |
|
207 |
vampDmg:= hwRound(int2hwFloat(tmpDmg)*_0_8); |
|
208 |
if vampDmg >= 1 then |
|
209 |
begin |
|
210 |
// was considering pulsing on attack, Tiy thinks it should be permanent while in play |
|
211 |
//CurrentHedgehog^.Gear^.State:= CurrentHedgehog^.Gear^.State or gstVampiric; |
|
212 |
inc(CurrentHedgehog^.Gear^.Health,vampDmg); |
|
213 |
str(vampDmg, s); |
|
214 |
s:= '+' + s; |
|
215 |
AddCaption(s, CurrentHedgehog^.Team^.Clan^.Color, capgrpAmmoinfo); |
|
216 |
RenderHealth(CurrentHedgehog^); |
|
217 |
RecountTeamHealth(CurrentHedgehog^.Team); |
|
218 |
i:= 0; |
|
219 |
while i < vampDmg do |
|
220 |
begin |
|
221 |
vg:= AddVisualGear(hwRound(CurrentHedgehog^.Gear^.X), hwRound(CurrentHedgehog^.Gear^.Y), vgtStraightShot); |
|
222 |
if vg <> nil then |
|
223 |
with vg^ do |
|
224 |
begin |
|
225 |
Tint:= $FF0000FF; |
|
226 |
State:= ord(sprHealth) |
|
227 |
end; |
|
228 |
inc(i, 5); |
|
229 |
end; |
|
230 |
end |
|
231 |
end; |
|
232 |
if ((GameFlags and gfKarma) <> 0) and |
|
233 |
((GameFlags and gfInvulnerable) = 0) |
|
234 |
and (not CurrentHedgehog^.Gear^.Invulnerable) then |
|
235 |
begin // this cannot just use Damage or it interrupts shotgun and gets you called stupid |
|
236 |
inc(CurrentHedgehog^.Gear^.Karma, tmpDmg); |
|
237 |
CurrentHedgehog^.Gear^.LastDamage := CurrentHedgehog; |
|
238 |
spawnHealthTagForHH(CurrentHedgehog^.Gear, tmpDmg); |
|
239 |
end; |
|
240 |
uStats.HedgehogDamaged(Gear, AttackerHog, Damage, false); |
|
241 |
end; |
|
242 |
end |
|
243 |
else if Gear^.Kind <> gtStructure then // not gtHedgehog nor gtStructure |
|
244 |
Gear^.Hedgehog:= AttackerHog; |
|
245 |
inc(Gear^.Damage, Damage); |
|
246 |
||
247 |
ScriptCall('onGearDamage', Gear^.UID, Damage); |
|
248 |
end; |
|
249 |
||
250 |
procedure spawnHealthTagForHH(HHGear: PGear; dmg: Longword); |
|
251 |
var tag: PVisualGear; |
|
252 |
begin |
|
253 |
tag:= AddVisualGear(hwRound(HHGear^.X), hwRound(HHGear^.Y), vgtHealthTag, dmg); |
|
254 |
if (tag <> nil) then |
|
255 |
tag^.Hedgehog:= HHGear^.Hedgehog; // the tag needs the tag to determine the text color |
|
256 |
AllInactive:= false; |
|
257 |
HHGear^.Active:= true; |
|
258 |
end; |
|
259 |
||
260 |
procedure HHHurt(Hedgehog: PHedgehog; Source: TDamageSource); |
|
261 |
begin |
|
262 |
if (Source = dsFall) or (Source = dsExplosion) then |
|
263 |
case random(3) of |
|
7053 | 264 |
0: PlaySoundV(sndOoff1, Hedgehog^.Team^.voicepack); |
265 |
1: PlaySoundV(sndOoff2, Hedgehog^.Team^.voicepack); |
|
266 |
2: PlaySoundV(sndOoff3, Hedgehog^.Team^.voicepack); |
|
6581 | 267 |
end |
268 |
else if (Source = dsPoison) then |
|
269 |
case random(2) of |
|
7053 | 270 |
0: PlaySoundV(sndPoisonCough, Hedgehog^.Team^.voicepack); |
271 |
1: PlaySoundV(sndPoisonMoan, Hedgehog^.Team^.voicepack); |
|
6581 | 272 |
end |
273 |
else |
|
274 |
case random(4) of |
|
7053 | 275 |
0: PlaySoundV(sndOw1, Hedgehog^.Team^.voicepack); |
276 |
1: PlaySoundV(sndOw2, Hedgehog^.Team^.voicepack); |
|
277 |
2: PlaySoundV(sndOw3, Hedgehog^.Team^.voicepack); |
|
278 |
3: PlaySoundV(sndOw4, Hedgehog^.Team^.voicepack); |
|
6581 | 279 |
end |
280 |
end; |
|
281 |
||
282 |
procedure CheckHHDamage(Gear: PGear); |
|
283 |
var |
|
284 |
dmg: Longword; |
|
285 |
i: LongInt; |
|
286 |
particle: PVisualGear; |
|
287 |
begin |
|
288 |
if _0_4 < Gear^.dY then |
|
289 |
begin |
|
290 |
dmg := ModifyDamage(1 + hwRound((hwAbs(Gear^.dY) - _0_4) * 70), Gear); |
|
291 |
PlaySound(sndBump); |
|
292 |
if dmg < 1 then |
|
293 |
exit; |
|
294 |
||
295 |
for i:= min(12, (3 + dmg div 10)) downto 0 do |
|
296 |
begin |
|
297 |
particle := AddVisualGear(hwRound(Gear^.X) - 5 + Random(10), hwRound(Gear^.Y) + 12, vgtDust); |
|
298 |
if particle <> nil then |
|
299 |
particle^.dX := particle^.dX + (Gear^.dX.QWordValue / 21474836480); |
|
300 |
end; |
|
301 |
||
302 |
if (Gear^.Invulnerable) then |
|
303 |
exit; |
|
304 |
||
305 |
//if _0_6 < Gear^.dY then |
|
306 |
// PlaySound(sndOw4, Gear^.Hedgehog^.Team^.voicepack) |
|
307 |
//else |
|
308 |
// PlaySound(sndOw1, Gear^.Hedgehog^.Team^.voicepack); |
|
309 |
||
310 |
if Gear^.LastDamage <> nil then |
|
311 |
ApplyDamage(Gear, Gear^.LastDamage, dmg, dsFall) |
|
312 |
else |
|
313 |
ApplyDamage(Gear, CurrentHedgehog, dmg, dsFall); |
|
314 |
end |
|
315 |
end; |
|
316 |
||
317 |
||
318 |
procedure CalcRotationDirAngle(Gear: PGear); |
|
319 |
var |
|
320 |
dAngle: real; |
|
321 |
begin |
|
7614
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7603
diff
changeset
|
322 |
// Frac/Round to be kind to JS as of 2012-08-27 where there is yet no int64/uint64 |
3ae60c8a15f2
Starting to rewrite uFloat routines to avoid QWordValue - in the interests of JS which may get uint64/int64 in the spec in the future but does not have it now.
nemo
parents:
7603
diff
changeset
|
323 |
dAngle := (Gear^.dX.Round + Gear^.dY.Round) / 2 + (Gear^.dX.Frac+Gear^.dY.Frac) / $80000000; |
6581 | 324 |
if not Gear^.dX.isNegative then |
325 |
Gear^.DirAngle := Gear^.DirAngle + dAngle |
|
326 |
else |
|
327 |
Gear^.DirAngle := Gear^.DirAngle - dAngle; |
|
328 |
||
329 |
if Gear^.DirAngle < 0 then |
|
330 |
Gear^.DirAngle := Gear^.DirAngle + 360 |
|
331 |
else if 360 < Gear^.DirAngle then |
|
332 |
Gear^.DirAngle := Gear^.DirAngle - 360 |
|
333 |
end; |
|
334 |
||
335 |
function CheckGearDrowning(Gear: PGear): boolean; |
|
336 |
var |
|
337 |
skipSpeed, skipAngle, skipDecay: hwFloat; |
|
338 |
i, maxDrops, X, Y: LongInt; |
|
339 |
vdX, vdY: real; |
|
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
340 |
particle, splash: PVisualGear; |
6581 | 341 |
isSubmersible: boolean; |
342 |
begin |
|
343 |
// probably needs tweaking. might need to be in a case statement based upon gear type |
|
344 |
Y:= hwRound(Gear^.Y); |
|
345 |
if cWaterLine < Y + Gear^.Radius then |
|
346 |
begin |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7372
diff
changeset
|
347 |
if Gear^.State and gstInvisible <> 0 then |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7372
diff
changeset
|
348 |
begin |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7389
diff
changeset
|
349 |
if Gear^.Kind = gtGenericFaller then |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7389
diff
changeset
|
350 |
begin |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7389
diff
changeset
|
351 |
Gear^.X:= int2hwFloat(GetRandom(rightX-leftX)+leftX); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7389
diff
changeset
|
352 |
Gear^.Y:= int2hwFloat(GetRandom(LAND_HEIGHT-topY)+topY); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7389
diff
changeset
|
353 |
Gear^.dX:= _90-(GetRandomf*_360); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7389
diff
changeset
|
354 |
Gear^.dY:= _90-(GetRandomf*_360) |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7389
diff
changeset
|
355 |
end |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7389
diff
changeset
|
356 |
else DeleteGear(Gear); |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7372
diff
changeset
|
357 |
exit |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7372
diff
changeset
|
358 |
end; |
6581 | 359 |
isSubmersible:= (Gear = CurrentHedgehog^.Gear) and (CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amJetpack); |
360 |
skipSpeed := _0_25; |
|
361 |
skipAngle := _1_9; |
|
362 |
skipDecay := _0_87; |
|
363 |
X:= hwRound(Gear^.X); |
|
364 |
vdX:= hwFloat2Float(Gear^.dX); |
|
365 |
vdY:= hwFloat2Float(Gear^.dY); |
|
366 |
// this could perhaps be a tiny bit higher. |
|
367 |
if (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > skipSpeed) |
|
368 |
and (hwAbs(Gear^.dX) > skipAngle * hwAbs(Gear^.dY)) then |
|
369 |
begin |
|
370 |
Gear^.dY.isNegative := true; |
|
371 |
Gear^.dY := Gear^.dY * skipDecay; |
|
372 |
Gear^.dX := Gear^.dX * skipDecay; |
|
373 |
CheckGearDrowning := false; |
|
374 |
PlaySound(sndSkip) |
|
375 |
end |
|
376 |
else |
|
377 |
begin |
|
378 |
if not isSubmersible then |
|
379 |
begin |
|
380 |
CheckGearDrowning := true; |
|
381 |
Gear^.State := gstDrowning; |
|
382 |
Gear^.RenderTimer := false; |
|
383 |
if (Gear^.Kind <> gtSniperRifleShot) and (Gear^.Kind <> gtShotgunShot) |
|
384 |
and (Gear^.Kind <> gtDEagleShot) and (Gear^.Kind <> gtSineGunShot) then |
|
385 |
if Gear^.Kind = gtHedgehog then |
|
386 |
begin |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6990
diff
changeset
|
387 |
if Gear^.Hedgehog^.Effects[heResurrectable] <> 0 then |
6581 | 388 |
ResurrectHedgehog(Gear) |
389 |
else |
|
390 |
begin |
|
391 |
Gear^.doStep := @doStepDrowningGear; |
|
392 |
Gear^.State := Gear^.State and (not gstHHDriven); |
|
393 |
AddCaption(Format(GetEventString(eidDrowned), Gear^.Hedgehog^.Name), cWhiteColor, capgrpMessage); |
|
394 |
end |
|
395 |
end |
|
396 |
else |
|
397 |
Gear^.doStep := @doStepDrowningGear; |
|
398 |
if Gear^.Kind = gtFlake then |
|
399 |
exit // skip splashes |
|
400 |
end; |
|
401 |
if ((not isSubmersible) and (Y < cWaterLine + 64 + Gear^.Radius)) |
|
402 |
or (isSubmersible and (Y < cWaterLine + 2 + Gear^.Radius) and ((CurAmmoGear^.Pos = 0) |
|
403 |
and (CurAmmoGear^.dY < _0_01))) then |
|
6804 | 404 |
if Gear^.Density * Gear^.dY > _1 then |
405 |
PlaySound(sndSplash) |
|
406 |
else if Gear^.Density * Gear^.dY > _0_5 then |
|
407 |
PlaySound(sndSkip) |
|
408 |
else |
|
409 |
PlaySound(sndDroplet2); |
|
6581 | 410 |
end; |
411 |
||
412 |
if ((cReducedQuality and rqPlainSplash) = 0) |
|
413 |
and (((not isSubmersible) and (Y < cWaterLine + 64 + Gear^.Radius)) |
|
414 |
or (isSubmersible and (Y < cWaterLine + 2 + Gear^.Radius) and ((CurAmmoGear^.Pos = 0) |
|
415 |
and (CurAmmoGear^.dY < _0_01)))) then |
|
416 |
begin |
|
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
417 |
splash:= AddVisualGear(X, cWaterLine, vgtSplash); |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
418 |
if splash <> nil then |
7372
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
419 |
with splash^ do |
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
420 |
begin |
7372
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
421 |
Scale:= hwFloat2Float(Gear^.Density / _3 * Gear^.dY); |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
422 |
if Scale > 1 then Scale:= power(Scale,0.3333) |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
423 |
else Scale:= Scale + ((1-Scale) / 2); |
7420 | 424 |
if Scale > 1 then Timer:= round(min(Scale*0.0005/cGravityf,4)) |
7372
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
425 |
else Timer:= 1; |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
426 |
// Low Gravity |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
427 |
FrameTicks:= FrameTicks*Timer; |
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
428 |
end; |
6581 | 429 |
|
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
430 |
maxDrops := (hwRound(Gear^.Density) * 3) div 2 + round(vdX * hwRound(Gear^.Density) * 6) + round(vdY * hwRound(Gear^.Density) * 6); |
6581 | 431 |
for i:= max(maxDrops div 3, min(32, Random(maxDrops))) downto 0 do |
432 |
begin |
|
7372
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
433 |
particle := AddVisualGear(X - 3 + Random(7), cWaterLine, vgtDroplet); |
6581 | 434 |
if particle <> nil then |
7372
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
435 |
with particle^ do |
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
436 |
begin |
7372
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
437 |
dX := dX - vdX / 10; |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
438 |
dY := dY - vdY / 5; |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
439 |
if splash <> nil then |
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
440 |
begin |
7372
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
441 |
if splash^.Scale > 1 then |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
442 |
begin |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
443 |
dX:= dX * power(splash^.Scale,0.3333); // tone down the droplet height further |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
444 |
dY:= dY * power(splash^.Scale, 0.3333) |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
445 |
end |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
446 |
else |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
447 |
begin |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
448 |
dX:= dX * splash^.Scale; |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
449 |
dY:= dY * splash^.Scale |
fcc002658832
Spread the droplets around more so it looks less square (looked especially bad with piano). Slow down large splashes a bit for dramatic purposes, also taking low-g into account. Small splashes you can't really tell anyway.
nemo
parents:
7357
diff
changeset
|
450 |
end |
6803
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
451 |
end |
0e70f3ea3bf8
bit of an experiment in variable splash sizes based on object/speed. not sure if it looks good yet. need to drown more stuff.
nemo
parents:
6769
diff
changeset
|
452 |
end |
6581 | 453 |
end |
454 |
end; |
|
455 |
if isSubmersible and (CurAmmoGear^.Pos = 0) then |
|
456 |
CurAmmoGear^.Pos := 1000 |
|
457 |
end |
|
458 |
else |
|
459 |
CheckGearDrowning := false; |
|
460 |
end; |
|
461 |
||
462 |
||
463 |
procedure ResurrectHedgehog(gear: PGear); |
|
464 |
var tempTeam : PTeam; |
|
7092
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
465 |
sparkles: PVisualGear; |
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
466 |
gX, gY: LongInt; |
6581 | 467 |
begin |
7357
06454899d0d2
Score AI resurrection as a kill. These values will not be the same as the in-game scoring, since in-game scoring doesn't count friendlies.
nemo
parents:
7272
diff
changeset
|
468 |
if (Gear^.LastDamage <> nil) then |
06454899d0d2
Score AI resurrection as a kill. These values will not be the same as the in-game scoring, since in-game scoring doesn't count friendlies.
nemo
parents:
7272
diff
changeset
|
469 |
uStats.HedgehogDamaged(Gear, Gear^.LastDamage, 0, true) |
06454899d0d2
Score AI resurrection as a kill. These values will not be the same as the in-game scoring, since in-game scoring doesn't count friendlies.
nemo
parents:
7272
diff
changeset
|
470 |
else |
06454899d0d2
Score AI resurrection as a kill. These values will not be the same as the in-game scoring, since in-game scoring doesn't count friendlies.
nemo
parents:
7272
diff
changeset
|
471 |
uStats.HedgehogDamaged(Gear, CurrentHedgehog, 0, true); |
6581 | 472 |
AttackBar:= 0; |
473 |
gear^.dX := _0; |
|
474 |
gear^.dY := _0; |
|
475 |
gear^.Damage := 0; |
|
476 |
gear^.Health := gear^.Hedgehog^.InitialHealth; |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6990
diff
changeset
|
477 |
gear^.Hedgehog^.Effects[hePoisoned] := 0; |
7176
fb4b0c6dfdbd
Make watching AI v AI on ai survival a bit more entertaining
nemo
parents:
7168
diff
changeset
|
478 |
if (CurrentHedgehog^.Effects[heResurrectable] = 0) or ((CurrentHedgehog^.Effects[heResurrectable] <> 0) |
fb4b0c6dfdbd
Make watching AI v AI on ai survival a bit more entertaining
nemo
parents:
7168
diff
changeset
|
479 |
and (Gear^.Hedgehog^.Team^.Clan <> CurrentHedgehog^.Team^.Clan)) then |
6581 | 480 |
with CurrentHedgehog^ do |
481 |
begin |
|
482 |
inc(Team^.stats.AIKills); |
|
483 |
FreeTexture(Team^.AIKillsTex); |
|
484 |
Team^.AIKillsTex := RenderStringTex(inttostr(Team^.stats.AIKills), Team^.Clan^.Color, fnt16); |
|
485 |
end; |
|
486 |
tempTeam := gear^.Hedgehog^.Team; |
|
487 |
DeleteCI(gear); |
|
7092
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
488 |
gX := hwRound(gear^.X); |
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
489 |
gY := hwRound(gear^.Y); |
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
490 |
// might need more sparkles for a column |
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
491 |
sparkles:= AddVisualGear(gX, gY, vgtDust, 1); |
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
492 |
if sparkles <> nil then |
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
493 |
begin |
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
494 |
sparkles^.Tint:= tempTeam^.Clan^.Color shl 8 or $FF; |
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
495 |
//sparkles^.Angle:= random(360); |
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
496 |
end; |
6581 | 497 |
FindPlace(gear, false, 0, LAND_WIDTH, true); |
498 |
if gear <> nil then |
|
499 |
begin |
|
7092
c9ca770fd7fc
Add an emergency return to the timebox in the case of death of rest of team. Also add a small visual effect to AI survival
nemo
parents:
7066
diff
changeset
|
500 |
AddVisualGear(hwRound(gear^.X), hwRound(gear^.Y), vgtExplosion); |
7168
8defaabce92e
warp sound when AI survival hog respawns. attempt at a bit of a crate spawn animation (moar sparkles and a quick fadein)
nemo
parents:
7092
diff
changeset
|
501 |
PlaySound(sndWarp); |
6581 | 502 |
RenderHealth(gear^.Hedgehog^); |
503 |
ScriptCall('onGearResurrect', gear^.uid); |
|
504 |
gear^.State := gstWait; |
|
505 |
end; |
|
506 |
RecountTeamHealth(tempTeam); |
|
507 |
end; |
|
508 |
||
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
509 |
function CountNonZeroz(x, y, r, c: LongInt; mask: LongWord): LongInt; |
6581 | 510 |
var i: LongInt; |
511 |
count: LongInt = 0; |
|
512 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
513 |
if (y and LAND_HEIGHT_MASK) = 0 then |
7509 | 514 |
for i:= max(x - r, 0) to min(x + r, LAND_WIDTH - 4) do |
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
515 |
if Land[y, i] and mask <> 0 then |
6581 | 516 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
517 |
inc(count); |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
518 |
if count = c then |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
519 |
begin |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
520 |
CountNonZeroz:= count; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
521 |
exit |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
522 |
end; |
6581 | 523 |
end; |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
524 |
CountNonZeroz:= count; |
6581 | 525 |
end; |
526 |
||
6888 | 527 |
|
528 |
function NoGearsToAvoid(mX, mY: LongInt; rX, rY: LongInt): boolean; |
|
529 |
var t: PGear; |
|
530 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
531 |
NoGearsToAvoid:= false; |
6888 | 532 |
t:= GearsList; |
533 |
rX:= sqr(rX); |
|
534 |
rY:= sqr(rY); |
|
535 |
while t <> nil do |
|
536 |
begin |
|
537 |
if t^.Kind <= gtExplosives then |
|
538 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
539 |
exit; |
6888 | 540 |
t:= t^.NextGear |
541 |
end; |
|
542 |
NoGearsToAvoid:= true |
|
543 |
end; |
|
544 |
||
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
545 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); inline; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
546 |
begin |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
547 |
FindPlace(Gear, withFall, Left, Right, false); |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6888
diff
changeset
|
548 |
end; |
6888 | 549 |
|
6581 | 550 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt; skipProximity: boolean); |
551 |
var x: LongInt; |
|
552 |
y, sy: LongInt; |
|
553 |
ar: array[0..511] of TPoint; |
|
554 |
ar2: array[0..1023] of TPoint; |
|
555 |
cnt, cnt2: Longword; |
|
556 |
delta: LongInt; |
|
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
557 |
ignoreNearObjects, ignoreOverlap, tryAgain: boolean; |
6581 | 558 |
begin |
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
559 |
ignoreNearObjects:= false; // try not skipping proximity at first |
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
560 |
ignoreOverlap:= false; // this not only skips proximity, but allows overlapping objects (barrels, mines, hogs, crates). Saving it for a 3rd pass. With this active, winning AI Survival goes back to virtual impossibility |
6581 | 561 |
tryAgain:= true; |
562 |
while tryAgain do |
|
563 |
begin |
|
564 |
delta:= 250; |
|
565 |
cnt2:= 0; |
|
566 |
repeat |
|
567 |
x:= Left + LongInt(GetRandom(Delta)); |
|
568 |
repeat |
|
569 |
inc(x, Delta); |
|
570 |
cnt:= 0; |
|
7603
e9c3c67b5dfd
reducing this value is sufficient to ensure crates drop just below top border or a girder
nemo
parents:
7599
diff
changeset
|
571 |
y:= min(1024, topY) - 2 * Gear^.Radius; |
6581 | 572 |
while y < cWaterLine do |
573 |
begin |
|
574 |
repeat |
|
575 |
inc(y, 2); |
|
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
576 |
until (y >= cWaterLine) or |
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
577 |
(not ignoreOverlap and (CountNonZeroz(x, y, Gear^.Radius - 1, 1, $FFFF) = 0)) or |
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
578 |
(ignoreOverlap and (CountNonZeroz(x, y, Gear^.Radius - 1, 1, $FF00) = 0)); |
6581 | 579 |
|
580 |
sy:= y; |
|
581 |
||
582 |
repeat |
|
583 |
inc(y); |
|
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
584 |
until (y >= cWaterLine) or |
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
585 |
(not ignoreOverlap and (CountNonZeroz(x, y, Gear^.Radius - 1, 1, $FFFF) <> 0)) or |
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
586 |
(ignoreOverlap and (CountNonZeroz(x, y, Gear^.Radius - 1, 1, $FF00) <> 0)); |
6581 | 587 |
|
588 |
if (y - sy > Gear^.Radius * 2) |
|
589 |
and (((Gear^.Kind = gtExplosives) |
|
590 |
and (y < cWaterLine) |
|
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
591 |
and (ignoreNearObjects or NoGearsToAvoid(x, y - Gear^.Radius, 60, 60)) |
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
592 |
and (CountNonZeroz(x, y+1, Gear^.Radius - 1, Gear^.Radius+1, $FFFF) > Gear^.Radius)) |
6581 | 593 |
or |
594 |
((Gear^.Kind <> gtExplosives) |
|
595 |
and (y < cWaterLine) |
|
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
596 |
and (ignoreNearObjects or NoGearsToAvoid(x, y - Gear^.Radius, 110, 110)) |
6888 | 597 |
)) then |
598 |
begin |
|
6581 | 599 |
ar[cnt].X:= x; |
600 |
if withFall then |
|
601 |
ar[cnt].Y:= sy + Gear^.Radius |
|
602 |
else |
|
603 |
ar[cnt].Y:= y - Gear^.Radius; |
|
604 |
inc(cnt) |
|
605 |
end; |
|
606 |
||
7603
e9c3c67b5dfd
reducing this value is sufficient to ensure crates drop just below top border or a girder
nemo
parents:
7599
diff
changeset
|
607 |
inc(y, 10) |
6581 | 608 |
end; |
609 |
||
610 |
if cnt > 0 then |
|
611 |
with ar[GetRandom(cnt)] do |
|
612 |
begin |
|
613 |
ar2[cnt2].x:= x; |
|
614 |
ar2[cnt2].y:= y; |
|
615 |
inc(cnt2) |
|
616 |
end |
|
617 |
until (x + Delta > Right); |
|
618 |
||
619 |
dec(Delta, 60) |
|
620 |
until (cnt2 > 0) or (Delta < 70); |
|
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
621 |
// if either of these has not been tried, do another pass |
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
622 |
if (cnt2 = 0) and skipProximity and (not ignoreOverlap) then |
6581 | 623 |
tryAgain:= true |
624 |
else tryAgain:= false; |
|
7190
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
625 |
if ignoreNearObjects then ignoreOverlap:= true; |
aa8d68817c32
Make it AI survival almost definitely impossible by adding a 3rd pass to FindGear. 1st pass normal, 2nd pass allow close to objects, 3rd pass, allow overlapping objects.
nemo
parents:
7176
diff
changeset
|
626 |
ignoreNearObjects:= true; |
6581 | 627 |
end; |
628 |
||
629 |
if cnt2 > 0 then |
|
630 |
with ar2[GetRandom(cnt2)] do |
|
631 |
begin |
|
632 |
Gear^.X:= int2hwFloat(x); |
|
633 |
Gear^.Y:= int2hwFloat(y); |
|
634 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
635 |
end |
|
636 |
else |
|
637 |
begin |
|
638 |
OutError('Can''t find place for Gear', false); |
|
639 |
if Gear^.Kind = gtHedgehog then |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6990
diff
changeset
|
640 |
Gear^.Hedgehog^.Effects[heResurrectable] := 0; |
6581 | 641 |
DeleteGear(Gear); |
642 |
Gear:= nil |
|
643 |
end |
|
644 |
end; |
|
645 |
||
646 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
|
647 |
var t: PGear; |
|
648 |
begin |
|
649 |
t:= GearsList; |
|
650 |
rX:= sqr(rX); |
|
651 |
rY:= sqr(rY); |
|
652 |
||
653 |
while t <> nil do |
|
654 |
begin |
|
655 |
if (t <> Gear) and (t^.Kind = Kind) then |
|
656 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
657 |
begin |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
658 |
CheckGearNear:= t; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
659 |
exit; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
660 |
end; |
6581 | 661 |
t:= t^.NextGear |
662 |
end; |
|
663 |
||
664 |
CheckGearNear:= nil |
|
665 |
end; |
|
666 |
||
7592 | 667 |
procedure CheckCollision(Gear: PGear); inline; |
668 |
begin |
|
669 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
|
670 |
or (TestCollisionYwithGear(Gear, hwSign(Gear^.dY)) <> 0) then |
|
671 |
Gear^.State := Gear^.State or gstCollision |
|
672 |
else |
|
673 |
Gear^.State := Gear^.State and (not gstCollision) |
|
674 |
end; |
|
675 |
||
676 |
procedure CheckCollisionWithLand(Gear: PGear); inline; |
|
677 |
begin |
|
678 |
if TestCollisionX(Gear, hwSign(Gear^.dX)) |
|
679 |
or TestCollisionY(Gear, hwSign(Gear^.dY)) then |
|
680 |
Gear^.State := Gear^.State or gstCollision |
|
681 |
else |
|
682 |
Gear^.State := Gear^.State and (not gstCollision) |
|
683 |
end; |
|
684 |
||
6581 | 685 |
end. |