author | unc0rr |
Fri, 02 Jan 2009 21:39:51 +0000 | |
changeset 1573 | cf88e0ace609 |
parent 1507 | d18c67b7ad4c |
child 1601 | 0cff69c8c4cf |
permissions | -rw-r--r-- |
71 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2005-2008 Andrey Korotaev <unC0Rr@gmail.com> |
71 | 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 |
|
71 | 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. |
|
71 | 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 |
|
71 | 17 |
*) |
18 |
||
4 | 19 |
unit uAIAmmoTests; |
20 |
interface |
|
351 | 21 |
uses SDLh, uGears, uConsts, uFloat; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
22 |
const amtest_OnTurn = $00000001; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
23 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
24 |
type TAttackParams = record |
1507 | 25 |
Time: Longword; |
26 |
Angle, Power: LongInt; |
|
27 |
ExplX, ExplY, ExplR: LongInt; |
|
28 |
AttackPutX, AttackPutY: LongInt; |
|
29 |
end; |
|
433 | 30 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
31 |
function TestBazooka(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
32 |
function TestGrenade(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
994 | 33 |
function TestMortar(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
34 |
function TestShotgun(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
35 |
function TestDesertEagle(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
36 |
function TestBaseballBat(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
37 |
function TestFirePunch(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
38 |
function TestAirAttack(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
39 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
40 |
type TAmmoTestProc = function (Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
1507 | 41 |
TAmmoTest = record |
42 |
proc: TAmmoTestProc; |
|
43 |
flags: Longword; |
|
44 |
end; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
45 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
46 |
const AmmoTests: array[TAmmoType] of TAmmoTest = |
1507 | 47 |
( |
48 |
(proc: @TestGrenade; flags: 0), // amGrenade |
|
49 |
(proc: nil; flags: 0), // amClusterBomb |
|
50 |
(proc: @TestBazooka; flags: 0), // amBazooka |
|
51 |
(proc: nil; flags: 0), // amUFO |
|
52 |
(proc: @TestShotgun; flags: 0), // amShotgun |
|
53 |
(proc: nil; flags: 0), // amPickHammer |
|
54 |
(proc: nil; flags: 0), // amSkip |
|
55 |
(proc: nil; flags: 0), // amRope |
|
56 |
(proc: nil; flags: 0), // amMine |
|
57 |
(proc: @TestDesertEagle; flags: 0), // amDEagle |
|
58 |
(proc: nil; flags: 0), // amDynamite |
|
59 |
(proc: @TestFirePunch; flags: 0), // amFirePunch |
|
60 |
(proc: nil; flags: 0), // amWhip |
|
61 |
(proc: @TestBaseballBat; flags: 0), // amBaseballBat |
|
62 |
(proc: nil; flags: 0), // amParachute |
|
63 |
(proc: @TestAirAttack; flags: amtest_OnTurn), // amAirAttack |
|
64 |
(proc: nil; flags: 0), // amMineStrike |
|
65 |
(proc: nil; flags: 0), // amBlowTorch |
|
66 |
(proc: nil; flags: 0), // amGirder |
|
67 |
(proc: nil; flags: amtest_OnTurn), // amTeleport |
|
68 |
(proc: nil; flags: 0), // amSwitch |
|
69 |
(proc: @TestMortar; flags: 0), // amMortar |
|
70 |
(proc: nil; flags: 0), // amKamikaze |
|
71 |
(proc: nil; flags: 0), // amCake |
|
72 |
(proc: nil; flags: 0), // amSeduction |
|
73 |
(proc: nil; flags: 0), // amBanana |
|
74 |
(proc: nil; flags: 0), // amHellishBomb |
|
1573 | 75 |
(proc: nil; flags: 0), // amNapalm |
76 |
(proc: nil; flags: 0) // amDrill |
|
1507 | 77 |
); |
4 | 78 |
|
439 | 79 |
const BadTurn = Low(LongInt) div 4; |
369 | 80 |
|
4 | 81 |
implementation |
75 | 82 |
uses uMisc, uAIMisc, uLand; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
83 |
|
371 | 84 |
function Metric(x1, y1, x2, y2: LongInt): LongInt; |
4 | 85 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
86 |
Metric:= abs(x1 - x2) + abs(y1 - y2) |
4 | 87 |
end; |
88 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
89 |
function TestBazooka(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
351 | 90 |
var Vx, Vy, r: hwFloat; |
498 | 91 |
rTime: LongInt; |
371 | 92 |
Score, EX, EY: LongInt; |
93 |
Result: LongInt; |
|
4 | 94 |
|
371 | 95 |
function CheckTrace: LongInt; |
351 | 96 |
var x, y, dX, dY: hwFloat; |
371 | 97 |
t: LongInt; |
98 |
Result: LongInt; |
|
4 | 99 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
100 |
x:= Me^.X; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
101 |
y:= Me^.Y; |
4 | 102 |
dX:= Vx; |
103 |
dY:= -Vy; |
|
498 | 104 |
t:= rTime; |
4 | 105 |
repeat |
106 |
x:= x + dX; |
|
107 |
y:= y + dY; |
|
108 |
dX:= dX + cWindSpeed; |
|
109 |
dY:= dY + cGravity; |
|
110 |
dec(t) |
|
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
111 |
until TestColl(hwRound(x), hwRound(y), 5) or (t <= 0); |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
112 |
EX:= hwRound(x); |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
113 |
EY:= hwRound(y); |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
114 |
Result:= RateExplosion(Me, EX, EY, 101); |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
115 |
if Result = 0 then Result:= - Metric(Targ.X, Targ.Y, EX, EY) div 64; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
116 |
CheckTrace:= Result |
4 | 117 |
end; |
118 |
||
119 |
begin |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
120 |
ap.Time:= 0; |
375 | 121 |
rTime:= 350; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
122 |
ap.ExplR:= 0; |
70 | 123 |
Result:= BadTurn; |
4 | 124 |
repeat |
375 | 125 |
rTime:= rTime + 300 + Level * 50 + random(300); |
556
49675457d76e
Bots aims not directly at the center of enemy hedgehog
unc0rr
parents:
554
diff
changeset
|
126 |
Vx:= - cWindSpeed * rTime * _0_5 + (int2hwFloat(Targ.X + AIrndSign(2)) - Me^.X) / int2hwFloat(rTime); |
498 | 127 |
Vy:= cGravity * rTime * _0_5 - (int2hwFloat(Targ.Y) - Me^.Y) / int2hwFloat(rTime); |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
128 |
r:= Distance(Vx, Vy); |
498 | 129 |
if not (r > _1) then |
4 | 130 |
begin |
64 | 131 |
Score:= CheckTrace; |
132 |
if Result <= Score then |
|
133 |
begin |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
134 |
ap.Angle:= DxDy2AttackAngle(Vx, Vy) + AIrndSign(random((Level - 1) * 9)); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
135 |
ap.Power:= hwRound(r * cMaxPower) - random((Level - 1) * 17 + 1); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
136 |
ap.ExplR:= 100; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
137 |
ap.ExplX:= EX; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
138 |
ap.ExplY:= EY; |
143 | 139 |
Result:= Score |
64 | 140 |
end; |
4 | 141 |
end |
375 | 142 |
until (rTime > 4250); |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
143 |
TestBazooka:= Result |
39 | 144 |
end; |
374 | 145 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
146 |
function TestGrenade(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
70 | 147 |
const tDelta = 24; |
351 | 148 |
var Vx, Vy, r: hwFloat; |
374 | 149 |
Score, EX, EY, Result: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
150 |
TestTime: Longword; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
151 |
|
371 | 152 |
function CheckTrace: LongInt; |
351 | 153 |
var x, y, dY: hwFloat; |
371 | 154 |
t: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
155 |
begin |
374 | 156 |
x:= Me^.X; |
157 |
y:= Me^.Y; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
158 |
dY:= -Vy; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
159 |
t:= TestTime; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
160 |
repeat |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
161 |
x:= x + Vx; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
162 |
y:= y + dY; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
163 |
dY:= dY + cGravity; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
164 |
dec(t) |
374 | 165 |
until TestColl(hwRound(x), hwRound(y), 5) or (t = 0); |
166 |
EX:= hwRound(x); |
|
167 |
EY:= hwRound(y); |
|
168 |
if t < 50 then CheckTrace:= RateExplosion(Me, EX, EY, 101) |
|
994 | 169 |
else CheckTrace:= BadTurn |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
170 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
171 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
172 |
begin |
70 | 173 |
Result:= BadTurn; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
174 |
TestTime:= 0; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
175 |
ap.ExplR:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
176 |
repeat |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
177 |
inc(TestTime, 1000); |
498 | 178 |
Vx:= (int2hwFloat(Targ.X) - Me^.X) / int2hwFloat(TestTime + tDelta); |
179 |
Vy:= cGravity * ((TestTime + tDelta) div 2) - (int2hwFloat(Targ.Y) - Me^.Y) / int2hwFloat(TestTime + tDelta); |
|
374 | 180 |
r:= Distance(Vx, Vy); |
498 | 181 |
if not (r > _1) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
182 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
183 |
Score:= CheckTrace; |
70 | 184 |
if Result < Score then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
185 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
186 |
ap.Angle:= DxDy2AttackAngle(Vx, Vy) + AIrndSign(random(Level)); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
187 |
ap.Power:= hwRound(r * cMaxPower) + AIrndSign(random(Level) * 15); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
188 |
ap.Time:= TestTime; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
189 |
ap.ExplR:= 100; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
190 |
ap.ExplX:= EX; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
191 |
ap.ExplY:= EY; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
192 |
Result:= Score |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
193 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
194 |
end |
439 | 195 |
until (TestTime = 4000); |
374 | 196 |
TestGrenade:= Result |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
197 |
end; |
375 | 198 |
|
994 | 199 |
function TestMortar(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
200 |
const tDelta = 24; |
|
1001 | 201 |
var Vx, Vy: hwFloat; |
994 | 202 |
Score, EX, EY, Result: LongInt; |
203 |
TestTime: Longword; |
|
204 |
||
205 |
function CheckTrace: LongInt; |
|
206 |
var x, y, dY: hwFloat; |
|
998 | 207 |
Result: LongInt; |
994 | 208 |
begin |
998 | 209 |
x:= Me^.X; |
210 |
y:= Me^.Y; |
|
211 |
dY:= -Vy; |
|
212 |
||
213 |
repeat |
|
214 |
x:= x + Vx; |
|
215 |
y:= y + dY; |
|
216 |
dY:= dY + cGravity; |
|
217 |
EX:= hwRound(x); |
|
218 |
EY:= hwRound(y); |
|
219 |
until TestColl(EX, EY, 5) or (EY > 1000); |
|
220 |
||
1176
2969efb7050f
Disallow AI to hurts itself with mortar (in quite rare cases it tries to shoot directly up)
unc0rr
parents:
1089
diff
changeset
|
221 |
if (EY < 1000) and not dY.isNegative then |
998 | 222 |
begin |
223 |
Result:= RateExplosion(Me, EX, EY, 91); |
|
224 |
if (Result = 0) then |
|
225 |
if (dY > _0_15) then |
|
1024 | 226 |
Result:= - abs(Targ.Y - EY) div 32 |
998 | 227 |
else |
228 |
Result:= BadTurn |
|
229 |
else if (Result < 0) then Result:= BadTurn |
|
230 |
end |
|
231 |
else |
|
232 |
Result:= BadTurn; |
|
233 |
||
234 |
CheckTrace:= Result |
|
994 | 235 |
end; |
236 |
||
237 |
function Solve: LongWord; |
|
238 |
var A, B, D, T: hwFloat; |
|
239 |
C: LongInt; |
|
240 |
begin |
|
998 | 241 |
A:= hwSqr(cGravity) * _0_25; |
242 |
B:= - cGravity * (Targ.Y - hwRound(Me^.Y)) - _1; |
|
243 |
C:= sqr(Targ.Y - hwRound(Me^.Y)) + sqr(Targ.X - hwRound(Me^.X)); |
|
244 |
D:= hwSqr(B) - (A * C * 4); |
|
994 | 245 |
if D.isNegative = false then |
998 | 246 |
begin |
247 |
D:= ( - B + hwSqrt(D)) * _0_5 / A; |
|
248 |
if D.isNegative = false then |
|
249 |
T:= hwSqrt(D) |
|
250 |
else |
|
251 |
T:= _0; |
|
252 |
Solve:= hwRound(T) |
|
253 |
end else Solve:= 0 |
|
994 | 254 |
end; |
255 |
||
256 |
begin |
|
257 |
Result:= BadTurn; |
|
258 |
ap.ExplR:= 0; |
|
259 |
||
998 | 260 |
if (Level > 2) then exit(BadTurn); |
994 | 261 |
|
262 |
TestTime:= Solve; |
|
263 |
||
998 | 264 |
if TestTime = 0 then exit(BadTurn); |
994 | 265 |
|
266 |
Vx:= (int2hwFloat(Targ.X) - Me^.X) / int2hwFloat(TestTime); |
|
267 |
Vy:= cGravity * (TestTime div 2) - (int2hwFloat(Targ.Y) - Me^.Y) / int2hwFloat(TestTime); |
|
268 |
||
269 |
Score:= CheckTrace; |
|
270 |
if Result < Score then |
|
271 |
begin |
|
272 |
ap.Angle:= DxDy2AttackAngle(Vx, Vy) + AIrndSign(random(Level)); |
|
273 |
ap.Power:= 1; |
|
274 |
ap.ExplR:= 100; |
|
275 |
ap.ExplX:= EX; |
|
276 |
ap.ExplY:= EY; |
|
277 |
Result:= Score |
|
278 |
end; |
|
279 |
||
280 |
TestMortar:= Result |
|
281 |
end; |
|
282 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
283 |
function TestShotgun(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
351 | 284 |
var Vx, Vy, x, y: hwFloat; |
375 | 285 |
rx, ry, Result: LongInt; |
286 |
begin |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
287 |
ap.ExplR:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
288 |
ap.Time:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
289 |
ap.Power:= 1; |
439 | 290 |
if Metric(hwRound(Me^.X), hwRound(Me^.Y), Targ.X, Targ.Y) < 80 then |
291 |
exit(BadTurn); |
|
498 | 292 |
Vx:= (int2hwFloat(Targ.X) - Me^.X) * _1div1024; |
293 |
Vy:= (int2hwFloat(Targ.Y) - Me^.Y) * _1div1024; |
|
375 | 294 |
x:= Me^.X; |
295 |
y:= Me^.Y; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
296 |
ap.Angle:= DxDy2AttackAngle(Vx, -Vy); |
70 | 297 |
repeat |
298 |
x:= x + vX; |
|
299 |
y:= y + vY; |
|
375 | 300 |
rx:= hwRound(x); |
301 |
ry:= hwRound(y); |
|
302 |
if TestColl(rx, ry, 2) then |
|
70 | 303 |
begin |
509 | 304 |
x:= x + vX * 8; |
305 |
y:= y + vY * 8; |
|
306 |
Result:= RateShotgun(Me, rx, ry) * 2; |
|
375 | 307 |
if Result = 0 then Result:= - Metric(Targ.X, Targ.Y, rx, ry) div 64 |
143 | 308 |
else dec(Result, Level * 4000); |
375 | 309 |
exit(Result) |
70 | 310 |
end |
498 | 311 |
until (Abs(Targ.X - hwRound(x)) + Abs(Targ.Y - hwRound(y)) < 4) or (x < _0) or (y < _0) or (x > _2048) or (y > _1024); |
375 | 312 |
TestShotgun:= BadTurn |
70 | 313 |
end; |
438 | 314 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
315 |
function TestDesertEagle(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
351 | 316 |
var Vx, Vy, x, y, t: hwFloat; |
75 | 317 |
d: Longword; |
438 | 318 |
Result: LongInt; |
75 | 319 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
320 |
ap.ExplR:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
321 |
ap.Time:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
322 |
ap.Power:= 1; |
498 | 323 |
if Abs(hwRound(Me^.X) - Targ.X) + Abs(hwRound(Me^.Y) - Targ.Y) < 80 then |
439 | 324 |
exit(BadTurn); |
498 | 325 |
t:= _0_5 / Distance(int2hwFloat(Targ.X) - Me^.X, int2hwFloat(Targ.Y) - Me^.Y); |
326 |
Vx:= (int2hwFloat(Targ.X) - Me^.X) * t; |
|
327 |
Vy:= (int2hwFloat(Targ.Y) - Me^.Y) * t; |
|
438 | 328 |
x:= Me^.X; |
329 |
y:= Me^.Y; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
330 |
ap.Angle:= DxDy2AttackAngle(Vx, -Vy); |
75 | 331 |
d:= 0; |
332 |
repeat |
|
333 |
x:= x + vX; |
|
334 |
y:= y + vY; |
|
438 | 335 |
if ((hwRound(x) and $FFFFF800) = 0)and((hwRound(y) and $FFFFFC00) = 0) |
336 |
and (Land[hwRound(y), hwRound(x)] <> 0) then inc(d); |
|
498 | 337 |
until (Abs(Targ.X - hwRound(x)) + Abs(Targ.Y - hwRound(y)) < 4) or (x < _0) or (y < _0) or (x > _2048) or (y > _1024) or (d > 200); |
338 |
if Abs(Targ.X - hwRound(x)) + Abs(Targ.Y - hwRound(y)) < 3 then Result:= max(0, (4 - d div 50) * 7 * 1024) |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
339 |
else Result:= BadTurn; |
438 | 340 |
TestDesertEagle:= Result |
75 | 341 |
end; |
438 | 342 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
343 |
function TestBaseballBat(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
433 | 344 |
var Result: LongInt; |
79 | 345 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
346 |
ap.ExplR:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
347 |
if (Level > 2) or (Abs(hwRound(Me^.X) - Targ.X) + Abs(hwRound(Me^.Y) - Targ.Y) > 25) then |
433 | 348 |
exit(BadTurn); |
349 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
350 |
ap.Time:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
351 |
ap.Power:= 1; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
352 |
if (Targ.X) - hwRound(Me^.X) >= 0 then ap.Angle:= cMaxAngle div 4 |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
353 |
else ap.Angle:= - cMaxAngle div 4; |
498 | 354 |
Result:= RateShove(Me, hwRound(Me^.X) + 10 * hwSign(int2hwFloat(Targ.X) - Me^.X), hwRound(Me^.Y), 15, 30); |
433 | 355 |
if Result <= 0 then Result:= BadTurn else inc(Result); |
356 |
TestBaseballBat:= Result |
|
79 | 357 |
end; |
358 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
359 |
function TestFirePunch(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
433 | 360 |
var i, Result: LongInt; |
82 | 361 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
362 |
ap.ExplR:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
363 |
ap.Time:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
364 |
ap.Power:= 1; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
365 |
ap.Angle:= 0; |
1292
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
366 |
if (Abs(hwRound(Me^.X) - Targ.X) > 25) |
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
367 |
or (Abs(hwRound(Me^.Y) - 50 - Targ.Y) > 50) then |
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
368 |
begin |
1296
d7fffad44b7e
Prevent AI to damage a teammate when trying to dig with firepunch (patch not tested)
unc0rr
parents:
1293
diff
changeset
|
369 |
if TestColl(hwRound(Me^.Y), hwRound(Me^.Y) - 16, 6) |
d7fffad44b7e
Prevent AI to damage a teammate when trying to dig with firepunch (patch not tested)
unc0rr
parents:
1293
diff
changeset
|
370 |
and (RateShove(Me, hwRound(Me^.X) + 10 * hwSign(Me^.dX), hwRound(Me^.Y) - 40, 30, 30) = 0) then |
1293 | 371 |
Result:= Succ(BadTurn) |
1292
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
372 |
else |
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
373 |
Result:= BadTurn; |
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
374 |
exit(Result) |
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
375 |
end; |
433 | 376 |
|
82 | 377 |
Result:= 0; |
378 |
for i:= 0 to 4 do |
|
1292
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
379 |
Result:= Result + RateShove(Me, hwRound(Me^.X) + 10 * hwSign(int2hwFloat(Targ.X) - Me^.X), |
498 | 380 |
hwRound(Me^.Y) - 20 * i - 5, 10, 30); |
1292
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
381 |
if Result <= 0 then |
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
382 |
Result:= BadTurn |
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
383 |
else |
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
384 |
inc(Result); |
a63a13eda583
Bot could use firepunch if it doesn't find anything else useful, and it has land above his head
unc0rr
parents:
1263
diff
changeset
|
385 |
|
433 | 386 |
TestFirePunch:= Result |
82 | 387 |
end; |
433 | 388 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
389 |
function TestAirAttack(Me: PGear; Targ: TPoint; Level: LongInt; var ap: TAttackParams): LongInt; |
556
49675457d76e
Bots aims not directly at the center of enemy hedgehog
unc0rr
parents:
554
diff
changeset
|
390 |
const cShift = 4; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
391 |
var X, Y, dY: hwFloat; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
392 |
b: array[0..9] of boolean; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
393 |
dmg: array[0..9] of LongInt; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
394 |
fexit: boolean; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
395 |
i, t, Result: LongInt; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
396 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
397 |
ap.ExplR:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
398 |
ap.Time:= 0; |
554 | 399 |
if (Level > 3) then exit(BadTurn); |
400 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
401 |
ap.AttackPutX:= Targ.X; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
402 |
ap.AttackPutY:= Targ.Y; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
403 |
|
556
49675457d76e
Bots aims not directly at the center of enemy hedgehog
unc0rr
parents:
554
diff
changeset
|
404 |
X:= int2hwFloat(Targ.X - 135 - cShift); // hh center - cShift |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
405 |
X:= X - cBombsSpeed * hwSqrt(int2hwFloat((Targ.Y + 128) * 2) / cGravity); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
406 |
Y:= -_128; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
407 |
dY:= _0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
408 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
409 |
for i:= 0 to 9 do |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
410 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
411 |
b[i]:= true; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
412 |
dmg[i]:= 0 |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
413 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
414 |
Result:= 0; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
415 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
416 |
repeat |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
417 |
X:= X + cBombsSpeed; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
418 |
Y:= Y + dY; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
419 |
dY:= dY + cGravity; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
420 |
fexit:= true; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
421 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
422 |
for i:= 0 to 9 do |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
423 |
if b[i] then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
424 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
425 |
fexit:= false; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
426 |
if TestColl(hwRound(X) + i * 30, hwRound(Y), 4) then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
427 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
428 |
b[i]:= false; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
429 |
dmg[i]:= RateExplosion(Me, hwRound(X) + i * 30, hwRound(Y), 58) |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
430 |
// 58 (instead of 60) for better prediction (hh moves after explosion of one of the rockets) |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
431 |
end |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
432 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
433 |
until fexit or (Y > _1024); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
434 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
435 |
for i:= 0 to 5 do inc(Result, dmg[i]); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
436 |
t:= Result; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
437 |
ap.AttackPutX:= Targ.X - 60; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
438 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
439 |
for i:= 0 to 3 do |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
440 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
441 |
dec(t, dmg[i]); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
442 |
inc(t, dmg[i + 6]); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
443 |
if t > Result then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
444 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
445 |
Result:= t; |
556
49675457d76e
Bots aims not directly at the center of enemy hedgehog
unc0rr
parents:
554
diff
changeset
|
446 |
ap.AttackPutX:= Targ.X - 30 - cShift + i * 30 |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
447 |
end |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
448 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
449 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
450 |
if Result <= 0 then Result:= BadTurn; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
451 |
TestAirAttack:= Result |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
452 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
534
diff
changeset
|
453 |
|
4 | 454 |
end. |