author | displacer |
Sun, 01 Oct 2006 20:14:30 +0000 | |
changeset 177 | c67c15e6fae3 |
parent 146 | 458f4f58c1b6 |
child 183 | 57c2ef19f719 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
51 | 3 |
* Copyright (c) 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*) |
|
33 |
||
34 |
unit uAI; |
|
35 |
interface |
|
36 |
{$INCLUDE options.inc} |
|
37 |
procedure ProcessBot; |
|
64 | 38 |
procedure FreeActionsList; |
4 | 39 |
|
40 |
implementation |
|
64 | 41 |
uses uTeams, uConsts, SDLh, uAIMisc, uGears, uAIAmmoTests, uAIActions, uMisc; |
4 | 42 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
43 |
var BestActions: TActions; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
44 |
ThinkThread: PSDL_Thread = nil; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
45 |
StopThinking: boolean; |
75 | 46 |
CanUseAmmo: array [TAmmoType] of boolean; |
4 | 47 |
|
64 | 48 |
procedure FreeActionsList; |
49 |
begin |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
50 |
if ThinkThread <> nil then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
51 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
52 |
StopThinking:= true; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
53 |
SDL_WaitThread(ThinkThread, nil); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
54 |
ThinkThread:= nil |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
55 |
end; |
64 | 56 |
BestActions.Count:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
57 |
BestActions.Pos:= 0 |
64 | 58 |
end; |
4 | 59 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
60 |
procedure TestAmmos(var Actions: TActions; Me: PGear); |
136 | 61 |
var Time, BotLevel: Longword; |
71 | 62 |
Angle, Power, Score, ExplX, ExplY, ExplR: integer; |
64 | 63 |
i: integer; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
64 |
a, aa: TAmmoType; |
4 | 65 |
begin |
136 | 66 |
BotLevel:= PHedgehog(Me.Hedgehog).BotLevel; |
67 |
||
64 | 68 |
for i:= 0 to Pred(Targets.Count) do |
80 | 69 |
if (Targets.ar[i].Score >= 0) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
70 |
begin |
75 | 71 |
with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
72 |
a:= Ammo[CurSlot, CurAmmo].AmmoType; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
73 |
aa:= a; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
74 |
repeat |
75 | 75 |
if CanUseAmmo[a] then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
76 |
begin |
136 | 77 |
Score:= AmmoTests[a](Me, Targets.ar[i].Point, BotLevel, Time, Angle, Power, ExplX, ExplY, ExplR); |
139 | 78 |
if Actions.Score + Score > BestActions.Score then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
79 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
80 |
BestActions:= Actions; |
136 | 81 |
inc(BestActions.Score, Score); |
146 | 82 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
83 |
AddAction(BestActions, aia_Weapon, Longword(a), 500); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
84 |
if Time <> 0 then AddAction(BestActions, aia_Timer, Time div 1000, 400); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
85 |
if (Angle > 0) then AddAction(BestActions, aia_LookRight, 0, 200) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
86 |
else if (Angle < 0) then AddAction(BestActions, aia_LookLeft, 0, 200); |
83 | 87 |
if (Ammoz[a].Ammo.Propz and ammoprop_NoCrosshair) = 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
88 |
begin |
83 | 89 |
Angle:= integer(Me.Angle) - Abs(Angle); |
90 |
if Angle > 0 then |
|
91 |
begin |
|
92 |
AddAction(BestActions, aia_Up, aim_push, 500); |
|
93 |
AddAction(BestActions, aia_Up, aim_release, Angle) |
|
94 |
end else if Angle < 0 then |
|
95 |
begin |
|
96 |
AddAction(BestActions, aia_Down, aim_push, 500); |
|
97 |
AddAction(BestActions, aia_Down, aim_release, -Angle) |
|
98 |
end |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
99 |
end; |
70 | 100 |
AddAction(BestActions, aia_attack, aim_push, 800); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
101 |
AddAction(BestActions, aia_attack, aim_release, Power); |
71 | 102 |
if ExplR > 0 then |
103 |
AddAction(BestActions, aia_AwareExpl, ExplR, 10, ExplX, ExplY); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
104 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
105 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
106 |
if a = High(TAmmoType) then a:= Low(TAmmoType) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
107 |
else inc(a) |
70 | 108 |
until (a = aa) or (CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].AttacksNum > 0) |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
109 |
end |
64 | 110 |
end; |
4 | 111 |
|
64 | 112 |
procedure Walk(Me: PGear); |
80 | 113 |
const FallPixForBranching = cHHRadius * 2 + 8; |
114 |
cBranchStackSize = 12; |
|
75 | 115 |
|
116 |
type TStackEntry = record |
|
117 |
WastedTicks: Longword; |
|
118 |
MadeActions: TActions; |
|
119 |
Hedgehog: TGear; |
|
120 |
end; |
|
121 |
||
122 |
var Stack: record |
|
123 |
Count: Longword; |
|
124 |
States: array[0..Pred(cBranchStackSize)] of TStackEntry; |
|
125 |
end; |
|
126 |
||
80 | 127 |
function Push(Ticks: Longword; const Actions: TActions; const Me: TGear; Dir: integer): boolean; |
75 | 128 |
begin |
80 | 129 |
Result:= (Stack.Count < cBranchStackSize) and (Actions.Count < MAXACTIONS - 5); |
130 |
if Result then |
|
75 | 131 |
with Stack.States[Stack.Count] do |
132 |
begin |
|
133 |
WastedTicks:= Ticks; |
|
134 |
MadeActions:= Actions; |
|
135 |
Hedgehog:= Me; |
|
136 |
Hedgehog.Message:= Dir; |
|
137 |
inc(Stack.Count) |
|
138 |
end |
|
139 |
end; |
|
140 |
||
141 |
procedure Pop(out Ticks: Longword; out Actions: TActions; out Me: TGear); |
|
142 |
begin |
|
143 |
dec(Stack.Count); |
|
144 |
with Stack.States[Stack.Count] do |
|
145 |
begin |
|
146 |
Ticks:= WastedTicks; |
|
147 |
Actions:= MadeActions; |
|
148 |
Me:= Hedgehog |
|
149 |
end |
|
150 |
end; |
|
151 |
||
82 | 152 |
function PosInThinkStack(Me: PGear): boolean; |
153 |
var i: Longword; |
|
154 |
begin |
|
155 |
i:= 0; |
|
156 |
Result:= false; |
|
157 |
while (i < Stack.Count) and not Result do |
|
158 |
begin |
|
83 | 159 |
Result:= (abs(Stack.States[i].Hedgehog.X - Me.X) + |
160 |
abs(Stack.States[i].Hedgehog.Y - Me.Y) <= 2) |
|
161 |
and (Stack.States[i].Hedgehog.Message = Me.Message); |
|
82 | 162 |
inc(i) |
163 |
end |
|
164 |
end; |
|
165 |
||
75 | 166 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
167 |
var Actions: TActions; |
144 | 168 |
ticks, maxticks, steps, BotLevel, tmp: Longword; |
75 | 169 |
BaseRate, BestRate, Rate: integer; |
170 |
GoInfo: TGoInfo; |
|
80 | 171 |
CanGo: boolean; |
172 |
AltMe: TGear; |
|
64 | 173 |
begin |
174 |
Actions.Count:= 0; |
|
175 |
Actions.Pos:= 0; |
|
75 | 176 |
Actions.Score:= 0; |
177 |
Stack.Count:= 0; |
|
136 | 178 |
BotLevel:= PHedgehog(Me.Hedgehog).BotLevel; |
75 | 179 |
|
144 | 180 |
tmp:= random(2) + 1; |
181 |
Push(0, Actions, Me^, tmp); |
|
182 |
Push(0, Actions, Me^, tmp xor 3); |
|
75 | 183 |
|
136 | 184 |
if (Me.State and gstAttacked) = 0 then maxticks:= max(0, TurnTimeLeft - 5000 - 4000 * BotLevel) |
75 | 185 |
else maxticks:= TurnTimeLeft; |
186 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
187 |
if (Me.State and gstAttacked) = 0 then TestAmmos(Actions, Me); |
70 | 188 |
BestRate:= RatePlace(Me); |
75 | 189 |
BaseRate:= max(BestRate, 0); |
190 |
||
191 |
while (Stack.Count > 0) and not StopThinking do |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
192 |
begin |
75 | 193 |
Pop(ticks, Actions, Me^); |
144 | 194 |
|
75 | 195 |
AddAction(Actions, Me.Message, aim_push, 250); |
196 |
AddAction(Actions, aia_WaitX, round(Me.X), 0); |
|
197 |
AddAction(Actions, Me.Message, aim_release, 0); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
198 |
steps:= 0; |
82 | 199 |
|
200 |
while (not StopThinking) and (not PosInThinkStack(Me)) do |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
201 |
begin |
80 | 202 |
CanGo:= HHGo(Me, @AltMe, GoInfo); |
75 | 203 |
inc(ticks, GoInfo.Ticks); |
204 |
if ticks > maxticks then break; |
|
144 | 205 |
|
136 | 206 |
if (BotLevel < 5) and (GoInfo.JumpType = jmpHJump) then // hjump support |
80 | 207 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
208 |
with Stack.States[Pred(Stack.Count)] do |
|
209 |
begin |
|
210 |
AddAction(MadeActions, aia_HJump, 0, 305); |
|
211 |
AddAction(MadeActions, aia_HJump, 0, 350); |
|
212 |
end; |
|
136 | 213 |
if (BotLevel < 3) and (GoInfo.JumpType = jmpLJump) then // ljump support |
80 | 214 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
215 |
with Stack.States[Pred(Stack.Count)] do |
|
216 |
AddAction(MadeActions, aia_LJump, 0, 305); |
|
144 | 217 |
|
80 | 218 |
if not CanGo then break; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
219 |
inc(steps); |
75 | 220 |
Actions.actions[Actions.Count - 2].Param:= round(Me.X); |
70 | 221 |
Rate:= RatePlace(Me); |
222 |
if Rate > BestRate then |
|
223 |
begin |
|
224 |
BestActions:= Actions; |
|
225 |
BestRate:= Rate; |
|
74 | 226 |
Me.State:= Me.State or gstAttacked // we have better place, go there and don't use ammo |
70 | 227 |
end |
75 | 228 |
else if Rate < BestRate then break; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
229 |
if ((Me.State and gstAttacked) = 0) |
70 | 230 |
and ((steps mod 4) = 0) then TestAmmos(Actions, Me); |
80 | 231 |
if GoInfo.FallPix >= FallPixForBranching then |
75 | 232 |
Push(ticks, Actions, Me^, Me^.Message xor 3); // aia_Left xor 3 = aia_Right |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
233 |
end; |
75 | 234 |
|
235 |
if BestRate > BaseRate then exit |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
236 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
237 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
238 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
239 |
procedure Think(Me: PGear); cdecl; |
74 | 240 |
var BackMe, WalkMe: TGear; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
241 |
StartTicks: Longword; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
242 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
243 |
StartTicks:= GameTicks; |
74 | 244 |
BestActions.Count:= 0; |
245 |
BestActions.Pos:= 0; |
|
64 | 246 |
BestActions.Score:= Low(integer); |
74 | 247 |
BackMe:= Me^; |
248 |
WalkMe:= BackMe; |
|
249 |
if (Me.State and gstAttacked) = 0 then |
|
250 |
if Targets.Count > 0 then |
|
251 |
begin |
|
252 |
Walk(@WalkMe); |
|
82 | 253 |
if (StartTicks > GameTicks - 1500) and not StopThinking then SDL_Delay(2000); |
146 | 254 |
if BestActions.Score < -1023 then |
255 |
begin |
|
256 |
BestActions.Count:= 0; |
|
257 |
AddAction(BestActions, aia_Skip, 0, 250); |
|
258 |
end; |
|
80 | 259 |
end else |
74 | 260 |
else begin |
261 |
Walk(@WalkMe); |
|
262 |
while (not StopThinking) and (BestActions.Count = 0) do |
|
263 |
begin |
|
264 |
SDL_Delay(100); |
|
265 |
FillBonuses(true); |
|
266 |
WalkMe:= BackMe; |
|
267 |
Walk(@WalkMe) |
|
75 | 268 |
end |
74 | 269 |
end; |
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
95
diff
changeset
|
270 |
Me.State:= Me.State and not gstHHThinking |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
271 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
272 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
273 |
procedure StartThink(Me: PGear); |
75 | 274 |
var a: TAmmoType; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
275 |
begin |
70 | 276 |
if ((Me.State and gstAttacking) <> 0) or isInMultiShoot then exit; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
277 |
Me.State:= Me.State or gstHHThinking; |
144 | 278 |
Me.Message:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
279 |
StopThinking:= false; |
70 | 280 |
ThinkingHH:= Me; |
281 |
FillTargets; |
|
80 | 282 |
if Targets.Count = 0 then |
283 |
begin |
|
284 |
OutError('AI: no targets!?'); |
|
285 |
exit |
|
286 |
end; |
|
70 | 287 |
FillBonuses((Me.State and gstAttacked) <> 0); |
75 | 288 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
289 |
CanUseAmmo[a]:= Assigned(AmmoTests[a]) and HHHasAmmo(PHedgehog(Me.Hedgehog), a); |
|
70 | 290 |
{$IFDEF DEBUGFILE}AddFileLog('Enter Think Thread');{$ENDIF} |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
291 |
ThinkThread:= SDL_CreateThread(@Think, Me) |
4 | 292 |
end; |
293 |
||
294 |
procedure ProcessBot; |
|
143 | 295 |
const StartTicks: Longword = 0; |
4 | 296 |
begin |
64 | 297 |
with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
298 |
if (Gear <> nil) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
299 |
and ((Gear.State and gstHHDriven) <> 0) |
144 | 300 |
and (TurnTimeLeft < cHedgehogTurnTime - 50) then |
143 | 301 |
if ((Gear.State and gstHHThinking) = 0) then |
302 |
if (BestActions.Pos >= BestActions.Count) then |
|
303 |
begin |
|
304 |
StartThink(Gear); |
|
305 |
StartTicks:= GameTicks |
|
306 |
end else ProcessAction(BestActions, Gear) |
|
307 |
else if (GameTicks - StartTicks) > cMaxAIThinkTime then StopThinking:= true |
|
4 | 308 |
end; |
309 |
||
310 |
end. |