author | unc0rr |
Sun, 11 Feb 2007 15:33:19 +0000 | |
changeset 433 | 9f8f22094c0e |
parent 409 | 4f1841929ccc |
child 434 | 2c6ccce17f39 |
permissions | -rw-r--r-- |
71 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
393 | 3 |
* Copyright (c) 2005-2007 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; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
22 |
|
371 | 23 |
function TestBazooka(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
374 | 24 |
function TestGrenade(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
375 | 25 |
function TestShotgun(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
26 |
(*function TestDesertEagle(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
|
433 | 27 |
*) |
371 | 28 |
function TestBaseballBat(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
29 |
function TestFirePunch(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
|
433 | 30 |
|
371 | 31 |
type TAmmoTestProc = function (Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
32 |
const AmmoTests: array[TAmmoType] of TAmmoTestProc = |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
33 |
( |
374 | 34 |
{amGrenade} @TestGrenade, |
78 | 35 |
{amClusterBomb} nil, |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
36 |
{amBazooka} @TestBazooka, |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
37 |
{amUFO} nil, |
433 | 38 |
{amShotgun} nil,//@TestShotgun, |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
39 |
{amPickHammer} nil, |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
40 |
{amSkip} nil, |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
41 |
{amRope} nil, |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
42 |
{amMine} nil, |
369 | 43 |
{amDEagle} nil,//TestDesertEagle, |
79 | 44 |
{amDynamite} nil, |
433 | 45 |
{amFirePunch} @TestFirePunch, |
46 |
{amBaseballBat} @TestBaseballBat, |
|
263 | 47 |
{amParachute} nil, |
285 | 48 |
{amAirAttack} nil, |
302 | 49 |
{amMineStrike} nil, |
409 | 50 |
{amBlowTorch} nil, |
51 |
{amGirder} nil |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
52 |
); |
4 | 53 |
|
371 | 54 |
const BadTurn = Low(LongInt); |
369 | 55 |
|
143 | 56 |
|
4 | 57 |
implementation |
75 | 58 |
uses uMisc, uAIMisc, uLand; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
59 |
|
371 | 60 |
function Metric(x1, y1, x2, y2: LongInt): LongInt; |
4 | 61 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
62 |
Metric:= abs(x1 - x2) + abs(y1 - y2) |
4 | 63 |
end; |
64 |
||
371 | 65 |
function TestBazooka(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
351 | 66 |
var Vx, Vy, r: hwFloat; |
67 |
rTime: hwFloat; |
|
371 | 68 |
Score, EX, EY: LongInt; |
69 |
Result: LongInt; |
|
4 | 70 |
|
371 | 71 |
function CheckTrace: LongInt; |
351 | 72 |
var x, y, dX, dY: hwFloat; |
371 | 73 |
t: LongInt; |
74 |
Result: LongInt; |
|
4 | 75 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
76 |
x:= Me^.X; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
77 |
y:= Me^.Y; |
4 | 78 |
dX:= Vx; |
79 |
dY:= -Vy; |
|
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
80 |
t:= hwRound(rTime); |
4 | 81 |
repeat |
82 |
x:= x + dX; |
|
83 |
y:= y + dY; |
|
84 |
dX:= dX + cWindSpeed; |
|
85 |
dY:= dY + cGravity; |
|
86 |
dec(t) |
|
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
87 |
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
|
88 |
EX:= hwRound(x); |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
89 |
EY:= hwRound(y); |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
90 |
Result:= RateExplosion(Me, EX, EY, 101); |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
91 |
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
|
92 |
CheckTrace:= Result |
4 | 93 |
end; |
94 |
||
95 |
begin |
|
96 |
Time:= 0; |
|
375 | 97 |
rTime:= 350; |
71 | 98 |
ExplR:= 0; |
70 | 99 |
Result:= BadTurn; |
4 | 100 |
repeat |
375 | 101 |
rTime:= rTime + 300 + Level * 50 + random(300); |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
102 |
Vx:= - cWindSpeed * rTime * _0_5 + (Targ.X - hwRound(Me^.X)) / rTime; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
103 |
Vy:= cGravity * rTime * _0_5 - (Targ.Y - hwRound(Me^.Y)) / rTime; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
104 |
r:= Distance(Vx, Vy); |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
105 |
if not (r > 1) then |
4 | 106 |
begin |
64 | 107 |
Score:= CheckTrace; |
108 |
if Result <= Score then |
|
109 |
begin |
|
433 | 110 |
Angle:= DxDy2AttackAngle(Vx, Vy) + AIrndSign(random((Level - 1) * 11)); |
111 |
Power:= hwRound(r * cMaxPower) - random((Level - 1) * 17 + 1); |
|
74 | 112 |
ExplR:= 100; |
71 | 113 |
ExplX:= EX; |
114 |
ExplY:= EY; |
|
143 | 115 |
Result:= Score |
64 | 116 |
end; |
4 | 117 |
end |
375 | 118 |
until (rTime > 4250); |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
119 |
TestBazooka:= Result |
39 | 120 |
end; |
374 | 121 |
|
371 | 122 |
function TestGrenade(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
70 | 123 |
const tDelta = 24; |
351 | 124 |
var Vx, Vy, r: hwFloat; |
374 | 125 |
Score, EX, EY, Result: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
126 |
TestTime: Longword; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
127 |
|
371 | 128 |
function CheckTrace: LongInt; |
351 | 129 |
var x, y, dY: hwFloat; |
371 | 130 |
t: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
131 |
begin |
374 | 132 |
x:= Me^.X; |
133 |
y:= Me^.Y; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
134 |
dY:= -Vy; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
135 |
t:= TestTime; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
136 |
repeat |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
137 |
x:= x + Vx; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
138 |
y:= y + dY; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
139 |
dY:= dY + cGravity; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
140 |
dec(t) |
374 | 141 |
until TestColl(hwRound(x), hwRound(y), 5) or (t = 0); |
142 |
EX:= hwRound(x); |
|
143 |
EY:= hwRound(y); |
|
144 |
if t < 50 then CheckTrace:= RateExplosion(Me, EX, EY, 101) |
|
145 |
else CheckTrace:= Low(LongInt) |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
146 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
147 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
148 |
begin |
70 | 149 |
Result:= BadTurn; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
150 |
TestTime:= 0; |
71 | 151 |
ExplR:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
152 |
repeat |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
153 |
inc(TestTime, 1000); |
374 | 154 |
Vx:= (Targ.X - Me^.X) / (TestTime + tDelta); |
155 |
Vy:= cGravity * ((TestTime + tDelta) div 2) - (Targ.Y - Me^.Y) / (TestTime + tDelta); |
|
156 |
r:= Distance(Vx, Vy); |
|
157 |
if not (r > 1) then |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
158 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
159 |
Score:= CheckTrace; |
70 | 160 |
if Result < Score then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
161 |
begin |
374 | 162 |
Angle:= DxDy2AttackAngle(Vx, Vy) + AIrndSign(random(Level)); |
433 | 163 |
Power:= hwRound(r * cMaxPower) + AIrndSign(random(Level) * 15); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
164 |
Time:= TestTime; |
74 | 165 |
ExplR:= 100; |
71 | 166 |
ExplX:= EX; |
167 |
ExplY:= EY; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
168 |
Result:= Score |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
169 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
170 |
end |
374 | 171 |
until (TestTime = 5000); |
172 |
TestGrenade:= Result |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
173 |
end; |
375 | 174 |
|
371 | 175 |
function TestShotgun(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
351 | 176 |
var Vx, Vy, x, y: hwFloat; |
375 | 177 |
rx, ry, Result: LongInt; |
178 |
begin |
|
79 | 179 |
ExplR:= 0; |
375 | 180 |
if Metric(hwRound(Me^.X), hwRound(Me^.Y), Targ.X, Targ.Y) < 80 then |
70 | 181 |
begin |
182 |
Result:= BadTurn; |
|
183 |
exit |
|
184 |
end; |
|
185 |
Time:= 0; |
|
186 |
Power:= 1; |
|
375 | 187 |
Vx:= (Targ.X - Me^.X) * _1div1024; |
188 |
Vy:= (Targ.Y - Me^.Y) * _1div1024; |
|
189 |
x:= Me^.X; |
|
190 |
y:= Me^.Y; |
|
70 | 191 |
Angle:= DxDy2AttackAngle(Vx, -Vy); |
192 |
repeat |
|
193 |
x:= x + vX; |
|
194 |
y:= y + vY; |
|
375 | 195 |
rx:= hwRound(x); |
196 |
ry:= hwRound(y); |
|
197 |
if TestColl(rx, ry, 2) then |
|
70 | 198 |
begin |
375 | 199 |
Result:= RateShove(Me, rx, ry, 25, 25) * 2; |
200 |
if Result = 0 then Result:= - Metric(Targ.X, Targ.Y, rx, ry) div 64 |
|
143 | 201 |
else dec(Result, Level * 4000); |
375 | 202 |
exit(Result) |
70 | 203 |
end |
375 | 204 |
until (hwAbs(Targ.X - x) + hwAbs(Targ.Y - y) < 4) or (x < 0) or (y < 0) or (x > 2048) or (y > 1024); |
205 |
TestShotgun:= BadTurn |
|
70 | 206 |
end; |
375 | 207 |
{ |
371 | 208 |
function TestDesertEagle(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
351 | 209 |
var Vx, Vy, x, y, t: hwFloat; |
75 | 210 |
d: Longword; |
211 |
begin |
|
79 | 212 |
ExplR:= 0; |
75 | 213 |
if abs(Me.X - Targ.X) + abs(Me.Y - Targ.Y) < 80 then |
214 |
begin |
|
215 |
Result:= BadTurn; |
|
216 |
exit |
|
217 |
end; |
|
218 |
Time:= 0; |
|
219 |
Power:= 1; |
|
220 |
t:= sqrt(sqr(Targ.X - Me.X) + sqr(Targ.Y - Me.Y)) * 2; |
|
221 |
Vx:= (Targ.X - Me.X) / t; |
|
222 |
Vy:= (Targ.Y - Me.Y) / t; |
|
223 |
x:= Me.X; |
|
224 |
y:= Me.Y; |
|
225 |
Angle:= DxDy2AttackAngle(Vx, -Vy); |
|
226 |
d:= 0; |
|
227 |
repeat |
|
228 |
x:= x + vX; |
|
229 |
y:= y + vY; |
|
230 |
if ((round(x) and $FFFFF800) = 0)and((round(y) and $FFFFFC00) = 0) |
|
231 |
and (Land[round(y), round(x)] <> 0) then inc(d); |
|
232 |
until (abs(Targ.X - x) + abs(Targ.Y - y) < 2) or (x < 0) or (y < 0) or (x > 2048) or (y > 1024) or (d > 200); |
|
233 |
if abs(Targ.X - x) + abs(Targ.Y - y) < 2 then Result:= max(0, (4 - d div 50) * 7 * 1024) |
|
371 | 234 |
else Result:= Low(LongInt) |
75 | 235 |
end; |
433 | 236 |
} |
371 | 237 |
function TestBaseballBat(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
433 | 238 |
var Result: LongInt; |
79 | 239 |
begin |
240 |
ExplR:= 0; |
|
433 | 241 |
if (Level > 2) and not (hwAbs(Me^.X - Targ.X) + hwAbs(Me^.Y - Targ.Y) < 25) then |
242 |
exit(BadTurn); |
|
243 |
||
79 | 244 |
Time:= 0; |
245 |
Power:= 1; |
|
433 | 246 |
Angle:= DxDy2AttackAngle(hwSign(Targ.X - Me^.X), 1); |
247 |
Result:= RateShove(Me, hwRound(Me^.X) + 10 * hwSign(Targ.X - Me^.X), hwRound(Me^.Y), 15, 30); |
|
248 |
if Result <= 0 then Result:= BadTurn else inc(Result); |
|
249 |
TestBaseballBat:= Result |
|
79 | 250 |
end; |
251 |
||
371 | 252 |
function TestFirePunch(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt; |
433 | 253 |
var i, Result: LongInt; |
82 | 254 |
begin |
255 |
ExplR:= 0; |
|
256 |
Time:= 0; |
|
257 |
Power:= 1; |
|
433 | 258 |
Angle:= 0; |
259 |
if (hwAbs(Me^.X - Targ.X) > 25) or (hwAbs(Me^.Y - 50 - Targ.Y) > 50) then |
|
260 |
exit(BadTurn); |
|
261 |
||
82 | 262 |
Result:= 0; |
263 |
for i:= 0 to 4 do |
|
433 | 264 |
Result:= Result + RateShove(Me, hwRound(Me^.X) + 10 * hwSign(Targ.X - Me^.X), hwRound(Me^.Y) - 20 * i - 5, 10, 30); |
265 |
if Result <= 0 then Result:= BadTurn; |
|
266 |
TestFirePunch:= Result |
|
82 | 267 |
end; |
433 | 268 |
|
4 | 269 |
end. |