author | unc0rr |
Sat, 26 Aug 2006 09:41:33 +0000 | |
changeset 124 | 75b892eff74d |
parent 111 | 30ca06092a64 |
child 136 | 89970b70b076 |
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); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
61 |
var Time: 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 |
64 | 66 |
for i:= 0 to Pred(Targets.Count) do |
80 | 67 |
if (Targets.ar[i].Score >= 0) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
68 |
begin |
75 | 69 |
with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
70 |
a:= Ammo[CurSlot, CurAmmo].AmmoType; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
71 |
aa:= a; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
72 |
repeat |
75 | 73 |
if CanUseAmmo[a] then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
74 |
begin |
71 | 75 |
Score:= AmmoTests[a](Me, Targets.ar[i].Point, Time, Angle, Power, ExplX, ExplY, ExplR); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
76 |
if Actions.Score + Score + Targets.ar[i].Score > BestActions.Score then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
77 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
78 |
BestActions:= Actions; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
79 |
inc(BestActions.Score, Score + Targets.ar[i].Score); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
80 |
AddAction(BestActions, aia_Weapon, Longword(a), 500); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
81 |
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
|
82 |
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
|
83 |
else if (Angle < 0) then AddAction(BestActions, aia_LookLeft, 0, 200); |
83 | 84 |
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
|
85 |
begin |
83 | 86 |
Angle:= integer(Me.Angle) - Abs(Angle); |
87 |
if Angle > 0 then |
|
88 |
begin |
|
89 |
AddAction(BestActions, aia_Up, aim_push, 500); |
|
90 |
AddAction(BestActions, aia_Up, aim_release, Angle) |
|
91 |
end else if Angle < 0 then |
|
92 |
begin |
|
93 |
AddAction(BestActions, aia_Down, aim_push, 500); |
|
94 |
AddAction(BestActions, aia_Down, aim_release, -Angle) |
|
95 |
end |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
96 |
end; |
70 | 97 |
AddAction(BestActions, aia_attack, aim_push, 800); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
98 |
AddAction(BestActions, aia_attack, aim_release, Power); |
71 | 99 |
if ExplR > 0 then |
100 |
AddAction(BestActions, aia_AwareExpl, ExplR, 10, ExplX, ExplY); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
101 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
102 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
103 |
if a = High(TAmmoType) then a:= Low(TAmmoType) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
104 |
else inc(a) |
70 | 105 |
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
|
106 |
end |
64 | 107 |
end; |
4 | 108 |
|
64 | 109 |
procedure Walk(Me: PGear); |
80 | 110 |
const FallPixForBranching = cHHRadius * 2 + 8; |
111 |
cBranchStackSize = 12; |
|
75 | 112 |
|
113 |
type TStackEntry = record |
|
114 |
WastedTicks: Longword; |
|
115 |
MadeActions: TActions; |
|
116 |
Hedgehog: TGear; |
|
117 |
end; |
|
118 |
||
119 |
var Stack: record |
|
120 |
Count: Longword; |
|
121 |
States: array[0..Pred(cBranchStackSize)] of TStackEntry; |
|
122 |
end; |
|
123 |
||
80 | 124 |
function Push(Ticks: Longword; const Actions: TActions; const Me: TGear; Dir: integer): boolean; |
75 | 125 |
begin |
80 | 126 |
Result:= (Stack.Count < cBranchStackSize) and (Actions.Count < MAXACTIONS - 5); |
127 |
if Result then |
|
75 | 128 |
with Stack.States[Stack.Count] do |
129 |
begin |
|
130 |
WastedTicks:= Ticks; |
|
131 |
MadeActions:= Actions; |
|
132 |
Hedgehog:= Me; |
|
133 |
Hedgehog.Message:= Dir; |
|
134 |
inc(Stack.Count) |
|
135 |
end |
|
136 |
end; |
|
137 |
||
138 |
procedure Pop(out Ticks: Longword; out Actions: TActions; out Me: TGear); |
|
139 |
begin |
|
140 |
dec(Stack.Count); |
|
141 |
with Stack.States[Stack.Count] do |
|
142 |
begin |
|
143 |
Ticks:= WastedTicks; |
|
144 |
Actions:= MadeActions; |
|
145 |
Me:= Hedgehog |
|
146 |
end |
|
147 |
end; |
|
148 |
||
82 | 149 |
function PosInThinkStack(Me: PGear): boolean; |
150 |
var i: Longword; |
|
151 |
begin |
|
152 |
i:= 0; |
|
153 |
Result:= false; |
|
154 |
while (i < Stack.Count) and not Result do |
|
155 |
begin |
|
83 | 156 |
Result:= (abs(Stack.States[i].Hedgehog.X - Me.X) + |
157 |
abs(Stack.States[i].Hedgehog.Y - Me.Y) <= 2) |
|
158 |
and (Stack.States[i].Hedgehog.Message = Me.Message); |
|
82 | 159 |
inc(i) |
160 |
end |
|
161 |
end; |
|
162 |
||
75 | 163 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
164 |
var Actions: TActions; |
75 | 165 |
ticks, maxticks, steps: Longword; |
166 |
BaseRate, BestRate, Rate: integer; |
|
167 |
GoInfo: TGoInfo; |
|
80 | 168 |
CanGo: boolean; |
169 |
AltMe: TGear; |
|
64 | 170 |
begin |
171 |
Actions.Count:= 0; |
|
172 |
Actions.Pos:= 0; |
|
75 | 173 |
Actions.Score:= 0; |
174 |
Stack.Count:= 0; |
|
175 |
||
176 |
Push(0, Actions, Me^, aia_Left); |
|
177 |
Push(0, Actions, Me^, aia_Right); |
|
178 |
||
80 | 179 |
if (Me.State and gstAttacked) = 0 then maxticks:= max(0, integer(TurnTimeLeft) - 10000) |
75 | 180 |
else maxticks:= TurnTimeLeft; |
181 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
182 |
if (Me.State and gstAttacked) = 0 then TestAmmos(Actions, Me); |
70 | 183 |
BestRate:= RatePlace(Me); |
75 | 184 |
BaseRate:= max(BestRate, 0); |
185 |
||
186 |
while (Stack.Count > 0) and not StopThinking do |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
187 |
begin |
75 | 188 |
Pop(ticks, Actions, Me^); |
189 |
AddAction(Actions, Me.Message, aim_push, 250); |
|
190 |
AddAction(Actions, aia_WaitX, round(Me.X), 0); |
|
191 |
AddAction(Actions, Me.Message, aim_release, 0); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
192 |
steps:= 0; |
82 | 193 |
|
194 |
while (not StopThinking) and (not PosInThinkStack(Me)) do |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
195 |
begin |
80 | 196 |
CanGo:= HHGo(Me, @AltMe, GoInfo); |
75 | 197 |
inc(ticks, GoInfo.Ticks); |
198 |
if ticks > maxticks then break; |
|
80 | 199 |
if GoInfo.JumpType = jmpHJump then // hjump support |
200 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
|
201 |
with Stack.States[Pred(Stack.Count)] do |
|
202 |
begin |
|
203 |
AddAction(MadeActions, aia_HJump, 0, 305); |
|
204 |
AddAction(MadeActions, aia_HJump, 0, 350); |
|
205 |
end; |
|
206 |
if GoInfo.JumpType = jmpLJump then // ljump support |
|
207 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
|
208 |
with Stack.States[Pred(Stack.Count)] do |
|
209 |
AddAction(MadeActions, aia_LJump, 0, 305); |
|
210 |
if not CanGo then break; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
211 |
inc(steps); |
75 | 212 |
Actions.actions[Actions.Count - 2].Param:= round(Me.X); |
70 | 213 |
Rate:= RatePlace(Me); |
214 |
if Rate > BestRate then |
|
215 |
begin |
|
216 |
BestActions:= Actions; |
|
217 |
BestRate:= Rate; |
|
74 | 218 |
Me.State:= Me.State or gstAttacked // we have better place, go there and don't use ammo |
70 | 219 |
end |
75 | 220 |
else if Rate < BestRate then break; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
221 |
if ((Me.State and gstAttacked) = 0) |
70 | 222 |
and ((steps mod 4) = 0) then TestAmmos(Actions, Me); |
80 | 223 |
if GoInfo.FallPix >= FallPixForBranching then |
75 | 224 |
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
|
225 |
end; |
75 | 226 |
|
227 |
if BestRate > BaseRate then exit |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
228 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
229 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
230 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
231 |
procedure Think(Me: PGear); cdecl; |
74 | 232 |
var BackMe, WalkMe: TGear; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
233 |
StartTicks: Longword; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
234 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
235 |
StartTicks:= GameTicks; |
74 | 236 |
BestActions.Count:= 0; |
237 |
BestActions.Pos:= 0; |
|
64 | 238 |
BestActions.Score:= Low(integer); |
74 | 239 |
BackMe:= Me^; |
240 |
WalkMe:= BackMe; |
|
241 |
if (Me.State and gstAttacked) = 0 then |
|
242 |
if Targets.Count > 0 then |
|
243 |
begin |
|
244 |
Walk(@WalkMe); |
|
82 | 245 |
if (StartTicks > GameTicks - 1500) and not StopThinking then SDL_Delay(2000); |
80 | 246 |
end else |
74 | 247 |
else begin |
248 |
Walk(@WalkMe); |
|
249 |
while (not StopThinking) and (BestActions.Count = 0) do |
|
250 |
begin |
|
251 |
SDL_Delay(100); |
|
252 |
FillBonuses(true); |
|
253 |
WalkMe:= BackMe; |
|
254 |
Walk(@WalkMe) |
|
75 | 255 |
end |
74 | 256 |
end; |
257 |
||
111
30ca06092a64
- 'net nickname' and 'server address' options are on PageNet
unc0rr
parents:
95
diff
changeset
|
258 |
Me.State:= Me.State and not gstHHThinking |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
259 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
260 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
261 |
procedure StartThink(Me: PGear); |
75 | 262 |
var a: TAmmoType; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
263 |
begin |
70 | 264 |
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
|
265 |
Me.State:= Me.State or gstHHThinking; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
266 |
StopThinking:= false; |
70 | 267 |
ThinkingHH:= Me; |
268 |
FillTargets; |
|
80 | 269 |
if Targets.Count = 0 then |
270 |
begin |
|
271 |
OutError('AI: no targets!?'); |
|
272 |
exit |
|
273 |
end; |
|
70 | 274 |
FillBonuses((Me.State and gstAttacked) <> 0); |
75 | 275 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
276 |
CanUseAmmo[a]:= Assigned(AmmoTests[a]) and HHHasAmmo(PHedgehog(Me.Hedgehog), a); |
|
70 | 277 |
{$IFDEF DEBUGFILE}AddFileLog('Enter Think Thread');{$ENDIF} |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
278 |
ThinkThread:= SDL_CreateThread(@Think, Me) |
4 | 279 |
end; |
280 |
||
281 |
procedure ProcessBot; |
|
282 |
begin |
|
64 | 283 |
with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
284 |
if (Gear <> nil) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
285 |
and ((Gear.State and gstHHDriven) <> 0) |
95 | 286 |
and (TurnTimeLeft < cHedgehogTurnTime - 5) |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
287 |
and ((Gear.State and gstHHThinking) = 0) then |
75 | 288 |
if (BestActions.Pos >= BestActions.Count) then StartThink(Gear) |
289 |
else ProcessAction(BestActions, Gear) |
|
4 | 290 |
end; |
291 |
||
292 |
end. |