author | unc0rr |
Wed, 12 Jul 2006 15:39:58 +0000 | |
changeset 78 | 66bb79dd248d |
parent 75 | d2b737858ff7 |
child 80 | 3c3dc6a148ca |
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 |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
67 |
if Targets.ar[i].Score >= 0 then |
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); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
84 |
Angle:= integer(Me.Angle) - Abs(Angle); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
85 |
if Angle > 0 then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
86 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
87 |
AddAction(BestActions, aia_Up, aim_push, 500); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
88 |
AddAction(BestActions, aia_Up, aim_release, Angle) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
89 |
end else if Angle < 0 then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
90 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
91 |
AddAction(BestActions, aia_Down, aim_push, 500); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
92 |
AddAction(BestActions, aia_Down, aim_release, -Angle) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
93 |
end; |
70 | 94 |
AddAction(BestActions, aia_attack, aim_push, 800); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
95 |
AddAction(BestActions, aia_attack, aim_release, Power); |
71 | 96 |
if ExplR > 0 then |
97 |
AddAction(BestActions, aia_AwareExpl, ExplR, 10, ExplX, ExplY); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
98 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
99 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
100 |
if a = High(TAmmoType) then a:= Low(TAmmoType) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
101 |
else inc(a) |
70 | 102 |
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
|
103 |
end |
64 | 104 |
end; |
4 | 105 |
|
64 | 106 |
procedure Walk(Me: PGear); |
75 | 107 |
const FallTicksForBranching = cHHRadius * 2 + 8; |
108 |
cBranchStackSize = 8; |
|
109 |
||
110 |
type TStackEntry = record |
|
111 |
WastedTicks: Longword; |
|
112 |
MadeActions: TActions; |
|
113 |
Hedgehog: TGear; |
|
114 |
end; |
|
115 |
||
116 |
var Stack: record |
|
117 |
Count: Longword; |
|
118 |
States: array[0..Pred(cBranchStackSize)] of TStackEntry; |
|
119 |
end; |
|
120 |
||
121 |
procedure Push(Ticks: Longword; const Actions: TActions; const Me: TGear; Dir: integer); |
|
122 |
begin |
|
123 |
if Stack.Count < cBranchStackSize then |
|
124 |
with Stack.States[Stack.Count] do |
|
125 |
begin |
|
126 |
WastedTicks:= Ticks; |
|
127 |
MadeActions:= Actions; |
|
128 |
Hedgehog:= Me; |
|
129 |
Hedgehog.Message:= Dir; |
|
130 |
inc(Stack.Count) |
|
131 |
end |
|
132 |
end; |
|
133 |
||
134 |
procedure Pop(out Ticks: Longword; out Actions: TActions; out Me: TGear); |
|
135 |
begin |
|
136 |
dec(Stack.Count); |
|
137 |
with Stack.States[Stack.Count] do |
|
138 |
begin |
|
139 |
Ticks:= WastedTicks; |
|
140 |
Actions:= MadeActions; |
|
141 |
Me:= Hedgehog |
|
142 |
end |
|
143 |
end; |
|
144 |
||
145 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
146 |
var Actions: TActions; |
75 | 147 |
ticks, maxticks, steps: Longword; |
148 |
BaseRate, BestRate, Rate: integer; |
|
149 |
GoInfo: TGoInfo; |
|
64 | 150 |
begin |
151 |
Actions.Count:= 0; |
|
152 |
Actions.Pos:= 0; |
|
75 | 153 |
Actions.Score:= 0; |
154 |
Stack.Count:= 0; |
|
155 |
||
156 |
Push(0, Actions, Me^, aia_Left); |
|
157 |
Push(0, Actions, Me^, aia_Right); |
|
158 |
||
159 |
if (Me.State and gstAttacked) = 0 then maxticks:= TurnTimeLeft - 5000 |
|
160 |
else maxticks:= TurnTimeLeft; |
|
161 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
162 |
if (Me.State and gstAttacked) = 0 then TestAmmos(Actions, Me); |
70 | 163 |
BestRate:= RatePlace(Me); |
75 | 164 |
BaseRate:= max(BestRate, 0); |
165 |
||
166 |
while (Stack.Count > 0) and not StopThinking do |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
167 |
begin |
75 | 168 |
Pop(ticks, Actions, Me^); |
169 |
AddAction(Actions, Me.Message, aim_push, 250); |
|
170 |
AddAction(Actions, aia_WaitX, round(Me.X), 0); |
|
171 |
AddAction(Actions, Me.Message, aim_release, 0); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
172 |
steps:= 0; |
75 | 173 |
|
174 |
while HHGo(Me, GoInfo) do |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
175 |
begin |
75 | 176 |
inc(ticks, GoInfo.Ticks); |
177 |
if ticks > maxticks then break; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
178 |
inc(steps); |
75 | 179 |
Actions.actions[Actions.Count - 2].Param:= round(Me.X); |
70 | 180 |
Rate:= RatePlace(Me); |
181 |
if Rate > BestRate then |
|
182 |
begin |
|
183 |
BestActions:= Actions; |
|
184 |
BestRate:= Rate; |
|
74 | 185 |
Me.State:= Me.State or gstAttacked // we have better place, go there and don't use ammo |
70 | 186 |
end |
75 | 187 |
else if Rate < BestRate then break; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
188 |
if ((Me.State and gstAttacked) = 0) |
70 | 189 |
and ((steps mod 4) = 0) then TestAmmos(Actions, Me); |
75 | 190 |
if GoInfo.FallTicks >= FallTicksForBranching then |
191 |
Push(ticks, Actions, Me^, Me^.Message xor 3); // aia_Left xor 3 = aia_Right |
|
192 |
if StopThinking then exit |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
193 |
end; |
75 | 194 |
|
195 |
if BestRate > BaseRate then exit |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
196 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
197 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
198 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
199 |
procedure Think(Me: PGear); cdecl; |
74 | 200 |
var BackMe, WalkMe: TGear; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
201 |
StartTicks: Longword; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
202 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
203 |
StartTicks:= GameTicks; |
74 | 204 |
BestActions.Count:= 0; |
205 |
BestActions.Pos:= 0; |
|
64 | 206 |
BestActions.Score:= Low(integer); |
74 | 207 |
BackMe:= Me^; |
208 |
WalkMe:= BackMe; |
|
209 |
if (Me.State and gstAttacked) = 0 then |
|
210 |
if Targets.Count > 0 then |
|
211 |
begin |
|
212 |
Walk(@WalkMe); |
|
213 |
if (StartTicks > GameTicks - 1500) then SDL_Delay(2000); |
|
214 |
end else OutError('AI: no targets!?') |
|
215 |
else begin |
|
216 |
Walk(@WalkMe); |
|
217 |
while (not StopThinking) and (BestActions.Count = 0) do |
|
218 |
begin |
|
219 |
SDL_Delay(100); |
|
220 |
FillBonuses(true); |
|
221 |
WalkMe:= BackMe; |
|
222 |
Walk(@WalkMe) |
|
75 | 223 |
end |
74 | 224 |
end; |
225 |
||
226 |
Me.State:= Me.State and not gstHHThinking; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
227 |
ThinkThread:= nil |
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 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
230 |
procedure StartThink(Me: PGear); |
75 | 231 |
var a: TAmmoType; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
232 |
begin |
70 | 233 |
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
|
234 |
Me.State:= Me.State or gstHHThinking; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
235 |
StopThinking:= false; |
70 | 236 |
ThinkingHH:= Me; |
237 |
FillTargets; |
|
238 |
FillBonuses((Me.State and gstAttacked) <> 0); |
|
75 | 239 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
240 |
CanUseAmmo[a]:= Assigned(AmmoTests[a]) and HHHasAmmo(PHedgehog(Me.Hedgehog), a); |
|
70 | 241 |
{$IFDEF DEBUGFILE}AddFileLog('Enter Think Thread');{$ENDIF} |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
242 |
ThinkThread:= SDL_CreateThread(@Think, Me) |
4 | 243 |
end; |
244 |
||
245 |
procedure ProcessBot; |
|
246 |
begin |
|
64 | 247 |
with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
248 |
if (Gear <> nil) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
249 |
and ((Gear.State and gstHHDriven) <> 0) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
250 |
and (TurnTimeLeft < 29990) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
251 |
and ((Gear.State and gstHHThinking) = 0) then |
75 | 252 |
if (BestActions.Pos >= BestActions.Count) then StartThink(Gear) |
253 |
else ProcessAction(BestActions, Gear) |
|
4 | 254 |
end; |
255 |
||
256 |
end. |