author | unc0rr |
Tue, 13 Feb 2007 21:22:00 +0000 | |
changeset 441 | f2920f08ea5f |
parent 439 | c336ed82e76d |
child 442 | 57ed1444606e |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
393 | 3 |
* Copyright (c) 2005-2007 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 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 |
|
4 | 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. |
|
4 | 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 |
|
4 | 17 |
*) |
18 |
||
19 |
unit uAI; |
|
20 |
interface |
|
351 | 21 |
uses uFloat; |
4 | 22 |
{$INCLUDE options.inc} |
433 | 23 |
procedure ProcessBot; |
64 | 24 |
procedure FreeActionsList; |
4 | 25 |
|
26 |
implementation |
|
369 | 27 |
uses uTeams, uConsts, SDLh, uAIMisc, uGears, uAIAmmoTests, uAIActions, uMisc, |
433 | 28 |
uAmmos; |
4 | 29 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
30 |
var BestActions: TActions; |
433 | 31 |
ThinkThread: PSDL_Thread = nil; |
32 |
StopThinking: boolean; |
|
75 | 33 |
CanUseAmmo: array [TAmmoType] of boolean; |
4 | 34 |
|
369 | 35 |
procedure FreeActionsList; |
64 | 36 |
begin |
433 | 37 |
{$IFDEF DEBUGFILE}AddFileLog('FreeActionsList called');{$ENDIF} |
38 |
if ThinkThread <> nil then |
|
39 |
begin |
|
40 |
{$IFDEF DEBUGFILE}AddFileLog('Waiting AI thread to finish');{$ENDIF} |
|
41 |
StopThinking:= true; |
|
42 |
SDL_WaitThread(ThinkThread, nil); |
|
43 |
ThinkThread:= nil |
|
44 |
end; |
|
434 | 45 |
|
64 | 46 |
BestActions.Count:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
47 |
BestActions.Pos:= 0 |
369 | 48 |
end; |
49 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
50 |
procedure TestAmmos(var Actions: TActions; Me: PGear); |
136 | 51 |
var Time, BotLevel: Longword; |
371 | 52 |
Angle, Power, Score, ExplX, ExplY, ExplR: LongInt; |
53 |
i: LongInt; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
54 |
a, aa: TAmmoType; |
4 | 55 |
begin |
369 | 56 |
BotLevel:= PHedgehog(Me^.Hedgehog)^.BotLevel; |
433 | 57 |
|
64 | 58 |
for i:= 0 to Pred(Targets.Count) do |
80 | 59 |
if (Targets.ar[i].Score >= 0) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
60 |
begin |
369 | 61 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
62 |
a:= Ammo^[CurSlot, CurAmmo].AmmoType; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
63 |
aa:= a; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
64 |
repeat |
75 | 65 |
if CanUseAmmo[a] then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
66 |
begin |
136 | 67 |
Score:= AmmoTests[a](Me, Targets.ar[i].Point, BotLevel, Time, Angle, Power, ExplX, ExplY, ExplR); |
139 | 68 |
if Actions.Score + Score > BestActions.Score then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
69 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
70 |
BestActions:= Actions; |
136 | 71 |
inc(BestActions.Score, Score); |
194 | 72 |
|
369 | 73 |
AddAction(BestActions, aia_Weapon, Longword(a), 500, 0, 0); |
74 |
if Time <> 0 then AddAction(BestActions, aia_Timer, Time div 1000, 400, 0, 0); |
|
75 |
if (Angle > 0) then AddAction(BestActions, aia_LookRight, 0, 200, 0, 0) |
|
76 |
else if (Angle < 0) then AddAction(BestActions, aia_LookLeft, 0, 200, 0, 0); |
|
83 | 77 |
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
|
78 |
begin |
439 | 79 |
Angle:= LongInt(Me^.Angle) - Abs(Angle); |
83 | 80 |
if Angle > 0 then |
81 |
begin |
|
369 | 82 |
AddAction(BestActions, aia_Up, aim_push, 500, 0, 0); |
83 |
AddAction(BestActions, aia_Up, aim_release, Angle, 0, 0) |
|
83 | 84 |
end else if Angle < 0 then |
85 |
begin |
|
369 | 86 |
AddAction(BestActions, aia_Down, aim_push, 500, 0, 0); |
87 |
AddAction(BestActions, aia_Down, aim_release, -Angle, 0, 0) |
|
83 | 88 |
end |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
89 |
end; |
369 | 90 |
AddAction(BestActions, aia_attack, aim_push, 800, 0, 0); |
91 |
AddAction(BestActions, aia_attack, aim_release, Power, 0, 0); |
|
71 | 92 |
if ExplR > 0 then |
93 |
AddAction(BestActions, aia_AwareExpl, ExplR, 10, ExplX, ExplY); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
94 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
95 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
96 |
if a = High(TAmmoType) then a:= Low(TAmmoType) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
97 |
else inc(a) |
433 | 98 |
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
|
99 |
end |
64 | 100 |
end; |
4 | 101 |
|
64 | 102 |
procedure Walk(Me: PGear); |
80 | 103 |
const FallPixForBranching = cHHRadius * 2 + 8; |
433 | 104 |
cBranchStackSize = 12; |
105 |
||
106 |
type TStackEntry = record |
|
107 |
WastedTicks: Longword; |
|
108 |
MadeActions: TActions; |
|
109 |
Hedgehog: TGear; |
|
110 |
end; |
|
111 |
||
112 |
var Stack: record |
|
113 |
Count: Longword; |
|
114 |
States: array[0..Pred(cBranchStackSize)] of TStackEntry; |
|
115 |
end; |
|
116 |
||
117 |
function Push(Ticks: Longword; const Actions: TActions; const Me: TGear; Dir: integer): boolean; |
|
118 |
var Result: boolean; |
|
119 |
begin |
|
120 |
Result:= (Stack.Count < cBranchStackSize) and (Actions.Count < MAXACTIONS - 5); |
|
121 |
if Result then |
|
122 |
with Stack.States[Stack.Count] do |
|
123 |
begin |
|
124 |
WastedTicks:= Ticks; |
|
125 |
MadeActions:= Actions; |
|
126 |
Hedgehog:= Me; |
|
127 |
Hedgehog.Message:= Dir; |
|
128 |
inc(Stack.Count) |
|
129 |
end; |
|
130 |
Push:= Result |
|
131 |
end; |
|
132 |
||
133 |
procedure Pop(var Ticks: Longword; var Actions: TActions; var Me: TGear); |
|
134 |
begin |
|
135 |
dec(Stack.Count); |
|
136 |
with Stack.States[Stack.Count] do |
|
137 |
begin |
|
138 |
Ticks:= WastedTicks; |
|
139 |
Actions:= MadeActions; |
|
140 |
Me:= Hedgehog |
|
141 |
end |
|
142 |
end; |
|
143 |
||
144 |
function PosInThinkStack(Me: PGear): boolean; |
|
145 |
var i: Longword; |
|
146 |
begin |
|
147 |
i:= 0; |
|
148 |
while (i < Stack.Count) do |
|
149 |
begin |
|
150 |
if(not(hwAbs(Stack.States[i].Hedgehog.X - Me^.X) + |
|
151 |
hwAbs(Stack.States[i].Hedgehog.Y - Me^.Y) > 2)) and |
|
152 |
(Stack.States[i].Hedgehog.Message = Me^.Message) then exit(true); |
|
153 |
inc(i) |
|
154 |
end; |
|
155 |
PosInThinkStack:= false |
|
156 |
end; |
|
157 |
||
158 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
159 |
var Actions: TActions; |
433 | 160 |
ticks, maxticks, steps, BotLevel, tmp: Longword; |
161 |
BaseRate, BestRate, Rate: integer; |
|
75 | 162 |
GoInfo: TGoInfo; |
80 | 163 |
CanGo: boolean; |
164 |
AltMe: TGear; |
|
64 | 165 |
begin |
433 | 166 |
Actions.Count:= 0; |
167 |
Actions.Pos:= 0; |
|
168 |
Actions.Score:= 0; |
|
169 |
Stack.Count:= 0; |
|
369 | 170 |
BotLevel:= PHedgehog(Me^.Hedgehog)^.BotLevel; |
75 | 171 |
|
433 | 172 |
tmp:= random(2) + 1; |
173 |
Push(0, Actions, Me^, tmp); |
|
174 |
Push(0, Actions, Me^, tmp xor 3); |
|
175 |
||
369 | 176 |
if (Me^.State and gstAttacked) = 0 then maxticks:= max(0, TurnTimeLeft - 5000 - 4000 * BotLevel) |
433 | 177 |
else maxticks:= TurnTimeLeft; |
75 | 178 |
|
433 | 179 |
if (Me^.State and gstAttacked) = 0 then TestAmmos(Actions, Me); |
180 |
BestRate:= RatePlace(Me); |
|
181 |
BaseRate:= max(BestRate, 0); |
|
75 | 182 |
|
433 | 183 |
while (Stack.Count > 0) and not StopThinking do |
184 |
begin |
|
185 |
Pop(ticks, Actions, Me^); |
|
193 | 186 |
|
433 | 187 |
AddAction(Actions, Me^.Message, aim_push, 250, 0, 0); |
369 | 188 |
if (Me^.Message and gm_Left) <> 0 then AddAction(Actions, aia_WaitXL, hwRound(Me^.X), 0, 0, 0) |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
189 |
else AddAction(Actions, aia_WaitXR, hwRound(Me^.X), 0, 0, 0); |
369 | 190 |
AddAction(Actions, Me^.Message, aim_release, 0, 0, 0); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
191 |
steps:= 0; |
82 | 192 |
|
433 | 193 |
while (not StopThinking) and (not PosInThinkStack(Me)) do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
194 |
begin |
80 | 195 |
CanGo:= HHGo(Me, @AltMe, GoInfo); |
75 | 196 |
inc(ticks, GoInfo.Ticks); |
197 |
if ticks > maxticks then break; |
|
194 | 198 |
|
136 | 199 |
if (BotLevel < 5) and (GoInfo.JumpType = jmpHJump) then // hjump support |
80 | 200 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
433 | 201 |
with Stack.States[Pred(Stack.Count)] do |
80 | 202 |
begin |
369 | 203 |
AddAction(MadeActions, aia_HJump, 0, 305, 0, 0); |
204 |
AddAction(MadeActions, aia_HJump, 0, 350, 0, 0); |
|
80 | 205 |
end; |
136 | 206 |
if (BotLevel < 3) and (GoInfo.JumpType = jmpLJump) then // ljump support |
80 | 207 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
433 | 208 |
with Stack.States[Pred(Stack.Count)] do |
369 | 209 |
AddAction(MadeActions, aia_LJump, 0, 305, 0, 0); |
433 | 210 |
|
80 | 211 |
if not CanGo then break; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
212 |
inc(steps); |
369 | 213 |
Actions.actions[Actions.Count - 2].Param:= hwRound(Me^.X); |
70 | 214 |
Rate:= RatePlace(Me); |
433 | 215 |
if Rate > BestRate then |
70 | 216 |
begin |
217 |
BestActions:= Actions; |
|
433 | 218 |
BestRate:= Rate; |
219 |
Me^.State:= Me^.State or gstAttacked // we have better place, go there and don't use ammo |
|
70 | 220 |
end |
433 | 221 |
else if Rate < BestRate then break; |
222 |
if ((Me^.State and gstAttacked) = 0) |
|
223 |
and ((steps mod 4) = 0) then TestAmmos(Actions, Me); |
|
193 | 224 |
if GoInfo.FallPix >= FallPixForBranching then |
225 |
Push(ticks, Actions, Me^, Me^.Message xor 3); // aia_Left xor 3 = aia_Right |
|
433 | 226 |
end; |
193 | 227 |
|
433 | 228 |
if BestRate > BaseRate then exit |
229 |
end |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
230 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
231 |
|
433 | 232 |
procedure Think(Me: PGear); cdecl; |
74 | 233 |
var BackMe, WalkMe: TGear; |
433 | 234 |
StartTicks: Longword; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
235 |
begin |
433 | 236 |
StartTicks:= GameTicks; |
237 |
BestActions.Count:= 0; |
|
238 |
BestActions.Pos:= 0; |
|
239 |
BestActions.Score:= Low(integer); |
|
74 | 240 |
BackMe:= Me^; |
241 |
WalkMe:= BackMe; |
|
369 | 242 |
if (Me^.State and gstAttacked) = 0 then |
74 | 243 |
if Targets.Count > 0 then |
244 |
begin |
|
245 |
Walk(@WalkMe); |
|
433 | 246 |
if (StartTicks > GameTicks - 1500) and not StopThinking then SDL_Delay(2000); |
247 |
if BestActions.Score < -1023 then |
|
146 | 248 |
begin |
433 | 249 |
BestActions.Count:= 0; |
250 |
AddAction(BestActions, aia_Skip, 0, 250, 0, 0); |
|
251 |
end; |
|
80 | 252 |
end else |
74 | 253 |
else begin |
193 | 254 |
Walk(@WalkMe); |
433 | 255 |
while (not StopThinking) and (BestActions.Count = 0) do |
256 |
begin |
|
257 |
SDL_Delay(100); |
|
258 |
FillBonuses(true); |
|
259 |
WalkMe:= BackMe; |
|
260 |
Walk(@WalkMe) |
|
261 |
end |
|
262 |
end; |
|
263 |
Me^.State:= Me^.State and not gstHHThinking |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
264 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
265 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
266 |
procedure StartThink(Me: PGear); |
75 | 267 |
var a: TAmmoType; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
268 |
begin |
439 | 269 |
if ((Me^.State and (gstAttacking or gstHHJumping or gstFalling or gstMoving)) <> 0) |
270 |
or isInMultiShoot then exit; |
|
369 | 271 |
Me^.State:= Me^.State or gstHHThinking; |
272 |
Me^.Message:= 0; |
|
433 | 273 |
StopThinking:= false; |
274 |
ThinkingHH:= Me; |
|
70 | 275 |
FillTargets; |
80 | 276 |
if Targets.Count = 0 then |
277 |
begin |
|
369 | 278 |
OutError('AI: no targets!?', false); |
80 | 279 |
exit |
280 |
end; |
|
369 | 281 |
FillBonuses((Me^.State and gstAttacked) <> 0); |
75 | 282 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
369 | 283 |
CanUseAmmo[a]:= Assigned(AmmoTests[a]) and HHHasAmmo(PHedgehog(Me^.Hedgehog), a); |
433 | 284 |
{$IFDEF DEBUGFILE}AddFileLog('Enter Think Thread');{$ENDIF} |
285 |
ThinkThread:= SDL_CreateThread(@Think, Me) |
|
286 |
end; |
|
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
287 |
|
433 | 288 |
procedure ProcessBot; |
289 |
const StartTicks: Longword = 0; |
|
4 | 290 |
begin |
369 | 291 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
292 |
if (Gear <> nil) |
369 | 293 |
and ((Gear^.State and gstHHDriven) <> 0) |
144 | 294 |
and (TurnTimeLeft < cHedgehogTurnTime - 50) then |
433 | 295 |
if ((Gear^.State and gstHHThinking) = 0) then |
296 |
if (BestActions.Pos >= BestActions.Count) then |
|
297 |
begin |
|
298 |
StartThink(Gear); |
|
299 |
StartTicks:= GameTicks |
|
300 |
end else ProcessAction(BestActions, Gear) |
|
301 |
else if (GameTicks - StartTicks) > cMaxAIThinkTime then StopThinking:= true |
|
369 | 302 |
end; |
4 | 303 |
|
433 | 304 |
|
4 | 305 |
end. |