author | koda |
Thu, 24 Nov 2011 16:18:45 +0100 | |
changeset 6415 | af2047bb4f70 |
parent 6395 | bb04d7a9f7e2 |
parent 6346 | db58a42bb5e7 |
child 6416 | 850b8dd3e6df |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2004-2011 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 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
4 | 21 |
unit uAI; |
22 |
interface |
|
351 | 23 |
uses uFloat; |
2630 | 24 |
|
3038 | 25 |
procedure initModule; |
26 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
27 |
|
433 | 28 |
procedure ProcessBot; |
64 | 29 |
procedure FreeActionsList; |
4 | 30 |
|
31 |
implementation |
|
4377 | 32 |
uses uConsts, SDLh, uAIMisc, uAIAmmoTests, uAIActions, |
5286 | 33 |
uAmmos, SysUtils{$IFDEF UNIX}{$IFNDEF ANDROID}, cthreads{$ENDIF}{$ENDIF}, uTypes, |
4403 | 34 |
uVariables, uCommands, uUtils, uDebug; |
4 | 35 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
36 |
var BestActions: TActions; |
509 | 37 |
CanUseAmmo: array [TAmmoType] of boolean; |
433 | 38 |
StopThinking: boolean; |
5504 | 39 |
ThinkThread: PSDL_Thread = nil; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
40 |
hasThread: LongInt; |
599 | 41 |
|
369 | 42 |
procedure FreeActionsList; |
64 | 43 |
begin |
4900 | 44 |
AddFileLog('FreeActionsList called'); |
509 | 45 |
if hasThread <> 0 then |
433 | 46 |
begin |
4900 | 47 |
AddFileLog('Waiting AI thread to finish'); |
433 | 48 |
StopThinking:= true; |
509 | 49 |
repeat |
50 |
SDL_Delay(10) |
|
51 |
until hasThread = 0 |
|
433 | 52 |
end; |
434 | 53 |
|
602 | 54 |
with CurrentHedgehog^ do |
445 | 55 |
if Gear <> nil then |
56 |
if BotLevel <> 0 then |
|
2289 | 57 |
StopMessages(Gear^.Message); |
740 | 58 |
|
64 | 59 |
BestActions.Count:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
60 |
BestActions.Pos:= 0 |
369 | 61 |
end; |
62 |
||
6392 | 63 |
|
64 |
||
65 |
const cBranchStackSize = 12; |
|
66 |
type TStackEntry = record |
|
67 |
WastedTicks: Longword; |
|
68 |
MadeActions: TActions; |
|
69 |
Hedgehog: TGear; |
|
70 |
end; |
|
71 |
||
72 |
var Stack: record |
|
73 |
Count: Longword; |
|
74 |
States: array[0..Pred(cBranchStackSize)] of TStackEntry; |
|
75 |
end; |
|
76 |
||
77 |
function Push(Ticks: Longword; const Actions: TActions; const Me: TGear; Dir: integer): boolean; |
|
78 |
var bRes: boolean; |
|
79 |
begin |
|
80 |
bRes:= (Stack.Count < cBranchStackSize) and (Actions.Count < MAXACTIONS - 5); |
|
81 |
if bRes then |
|
82 |
with Stack.States[Stack.Count] do |
|
83 |
begin |
|
84 |
WastedTicks:= Ticks; |
|
85 |
MadeActions:= Actions; |
|
86 |
Hedgehog:= Me; |
|
87 |
Hedgehog.Message:= Dir; |
|
88 |
inc(Stack.Count) |
|
89 |
end; |
|
90 |
Push:= bRes |
|
91 |
end; |
|
92 |
||
93 |
procedure Pop(var Ticks: Longword; var Actions: TActions; var Me: TGear); |
|
94 |
begin |
|
95 |
dec(Stack.Count); |
|
96 |
with Stack.States[Stack.Count] do |
|
97 |
begin |
|
98 |
Ticks:= WastedTicks; |
|
99 |
Actions:= MadeActions; |
|
100 |
Me:= Hedgehog |
|
101 |
end |
|
102 |
end; |
|
103 |
||
104 |
||
105 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
106 |
procedure TestAmmos(var Actions: TActions; Me: PGear; isMoved: boolean); |
3407 | 107 |
var BotLevel: Byte; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
108 |
ap: TAttackParams; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
109 |
Score, i: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
110 |
a, aa: TAmmoType; |
4 | 111 |
begin |
4372 | 112 |
BotLevel:= Me^.Hedgehog^.BotLevel; |
433 | 113 |
|
64 | 114 |
for i:= 0 to Pred(Targets.Count) do |
509 | 115 |
if (Targets.ar[i].Score >= 0) and (not StopThinking) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
116 |
begin |
602 | 117 |
with CurrentHedgehog^ do |
3836
833c0f32e326
Change all use of curslot/idx to CurAmmoType to try and avoid some bugs with use of last weapon.
nemo
parents:
3617
diff
changeset
|
118 |
a:= CurAmmoType; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
119 |
aa:= a; |
6027 | 120 |
SDL_delay(0); //ThreadSwitch was only a hint |
5396 | 121 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
122 |
repeat |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
123 |
if (CanUseAmmo[a]) and |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
124 |
((not isMoved) or ((AmmoTests[a].flags and amtest_OnTurn) = 0)) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
125 |
begin |
3407 | 126 |
{$HINTS OFF} |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
127 |
Score:= AmmoTests[a].proc(Me, Targets.ar[i].Point, BotLevel, ap); |
3407 | 128 |
{$HINTS ON} |
139 | 129 |
if Actions.Score + Score > BestActions.Score then |
3407 | 130 |
if (BestActions.Score < 0) or (Actions.Score + Score > BestActions.Score + Byte(BotLevel) * 2048) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
131 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
132 |
BestActions:= Actions; |
136 | 133 |
inc(BestActions.Score, Score); |
6395
bb04d7a9f7e2
Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents:
6393
diff
changeset
|
134 |
BestActions.isWalkingToABetterPlace:= false; |
194 | 135 |
|
5162 | 136 |
if (ap.Angle > 0) then AddAction(BestActions, aia_LookRight, 0, 200, 0, 0) |
137 |
else if (ap.Angle < 0) then AddAction(BestActions, aia_LookLeft, 0, 200, 0, 0); |
|
138 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
139 |
AddAction(BestActions, aia_Weapon, Longword(a), 300 + random(400), 0, 0); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
140 |
if (ap.Time <> 0) then AddAction(BestActions, aia_Timer, ap.Time div 1000, 400, 0, 0); |
83 | 141 |
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
|
142 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
143 |
ap.Angle:= LongInt(Me^.Angle) - Abs(ap.Angle); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
144 |
if ap.Angle > 0 then |
83 | 145 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
146 |
AddAction(BestActions, aia_Up, aim_push, 300 + random(250), 0, 0); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
147 |
AddAction(BestActions, aia_Up, aim_release, ap.Angle, 0, 0) |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
148 |
end else if ap.Angle < 0 then |
83 | 149 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
150 |
AddAction(BestActions, aia_Down, aim_push, 300 + random(250), 0, 0); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
151 |
AddAction(BestActions, aia_Down, aim_release, -ap.Angle, 0, 0) |
83 | 152 |
end |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
153 |
end; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
154 |
if (Ammoz[a].Ammo.Propz and ammoprop_NeedTarget) <> 0 then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
155 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
156 |
AddAction(BestActions, aia_Put, 0, 1, ap.AttackPutX, ap.AttackPutY) |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
157 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
158 |
if (Ammoz[a].Ammo.Propz and ammoprop_AttackingPut) = 0 then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
159 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
160 |
AddAction(BestActions, aia_attack, aim_push, 650 + random(300), 0, 0); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
161 |
AddAction(BestActions, aia_attack, aim_release, ap.Power, 0, 0); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
162 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
163 |
if ap.ExplR > 0 then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
164 |
AddAction(BestActions, aia_AwareExpl, ap.ExplR, 10, ap.ExplX, ap.ExplY); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
165 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
166 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
167 |
if a = High(TAmmoType) then a:= Low(TAmmoType) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
168 |
else inc(a) |
509 | 169 |
until (a = aa) or |
2608 | 170 |
(CurrentHedgehog^.MultiShootAttacks > 0) or // shooting same weapon |
509 | 171 |
StopThinking |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
172 |
end |
64 | 173 |
end; |
4 | 174 |
|
6393 | 175 |
procedure Walk(Me: PGear; var Actions: TActions); |
80 | 176 |
const FallPixForBranching = cHHRadius * 2 + 8; |
6393 | 177 |
var |
3407 | 178 |
ticks, maxticks, steps, tmp: Longword; |
433 | 179 |
BaseRate, BestRate, Rate: integer; |
75 | 180 |
GoInfo: TGoInfo; |
80 | 181 |
CanGo: boolean; |
182 |
AltMe: TGear; |
|
3407 | 183 |
BotLevel: Byte; |
6392 | 184 |
a: TAmmoType; |
64 | 185 |
begin |
3407 | 186 |
ticks:= 0; // avoid compiler hint |
433 | 187 |
Stack.Count:= 0; |
6392 | 188 |
|
189 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
|
190 |
CanUseAmmo[a]:= Assigned(AmmoTests[a].proc) and HHHasAmmo(Me^.Hedgehog^, a); |
|
191 |
||
4372 | 192 |
BotLevel:= Me^.Hedgehog^.BotLevel; |
75 | 193 |
|
433 | 194 |
tmp:= random(2) + 1; |
195 |
Push(0, Actions, Me^, tmp); |
|
196 |
Push(0, Actions, Me^, tmp xor 3); |
|
197 |
||
4374 | 198 |
if (Me^.State and gstAttacked) = 0 then maxticks:= Max(0, TurnTimeLeft - 5000 - LongWord(4000 * BotLevel)) |
433 | 199 |
else maxticks:= TurnTimeLeft; |
75 | 200 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
201 |
if (Me^.State and gstAttacked) = 0 then TestAmmos(Actions, Me, false); |
433 | 202 |
BestRate:= RatePlace(Me); |
4374 | 203 |
BaseRate:= Max(BestRate, 0); |
75 | 204 |
|
5148
73b3b4b8359c
Make AI switch to amNothing before trying to walk if it holds weapon which needs targeting (not tested)
unc0rr
parents:
4976
diff
changeset
|
205 |
if (Ammoz[Me^.Hedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) <> 0 then |
73b3b4b8359c
Make AI switch to amNothing before trying to walk if it holds weapon which needs targeting (not tested)
unc0rr
parents:
4976
diff
changeset
|
206 |
AddAction(Actions, aia_Weapon, Longword(amNothing), 100 + random(200), 0, 0); |
73b3b4b8359c
Make AI switch to amNothing before trying to walk if it holds weapon which needs targeting (not tested)
unc0rr
parents:
4976
diff
changeset
|
207 |
|
2605 | 208 |
while (Stack.Count > 0) and (not StopThinking) and (GameFlags and gfArtillery = 0) do |
433 | 209 |
begin |
210 |
Pop(ticks, Actions, Me^); |
|
193 | 211 |
|
433 | 212 |
AddAction(Actions, Me^.Message, aim_push, 250, 0, 0); |
3894 | 213 |
if (Me^.Message and gmLeft) <> 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
|
214 |
else AddAction(Actions, aia_WaitXR, hwRound(Me^.X), 0, 0, 0); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
215 |
steps:= 0; |
82 | 216 |
|
5600
c6da15eddab3
Remove PosInStack function, as bots behave better (they search more positions) without it
unc0rr
parents:
5396
diff
changeset
|
217 |
while (not StopThinking) do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
218 |
begin |
3407 | 219 |
{$HINTS OFF} |
80 | 220 |
CanGo:= HHGo(Me, @AltMe, GoInfo); |
3407 | 221 |
{$HINTS ON} |
75 | 222 |
inc(ticks, GoInfo.Ticks); |
223 |
if ticks > maxticks then break; |
|
194 | 224 |
|
136 | 225 |
if (BotLevel < 5) and (GoInfo.JumpType = jmpHJump) then // hjump support |
80 | 226 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
433 | 227 |
with Stack.States[Pred(Stack.Count)] do |
80 | 228 |
begin |
791
928d2830fd0c
Make AI aware of new high jump technique (there's still an issue with two successive jumps)
unc0rr
parents:
741
diff
changeset
|
229 |
if Me^.dX.isNegative then AddAction(MadeActions, aia_LookRight, 0, 200, 0, 0) |
928d2830fd0c
Make AI aware of new high jump technique (there's still an issue with two successive jumps)
unc0rr
parents:
741
diff
changeset
|
230 |
else AddAction(MadeActions, aia_LookLeft, 0, 200, 0, 0); |
928d2830fd0c
Make AI aware of new high jump technique (there's still an issue with two successive jumps)
unc0rr
parents:
741
diff
changeset
|
231 |
AddAction(MadeActions, aia_HJump, 0, 305 + random(50), 0, 0); |
369 | 232 |
AddAction(MadeActions, aia_HJump, 0, 350, 0, 0); |
791
928d2830fd0c
Make AI aware of new high jump technique (there's still an issue with two successive jumps)
unc0rr
parents:
741
diff
changeset
|
233 |
if Me^.dX.isNegative then AddAction(MadeActions, aia_LookLeft, 0, 200, 0, 0) |
928d2830fd0c
Make AI aware of new high jump technique (there's still an issue with two successive jumps)
unc0rr
parents:
741
diff
changeset
|
234 |
else AddAction(MadeActions, aia_LookRight, 0, 200, 0, 0); |
80 | 235 |
end; |
136 | 236 |
if (BotLevel < 3) and (GoInfo.JumpType = jmpLJump) then // ljump support |
80 | 237 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
433 | 238 |
with Stack.States[Pred(Stack.Count)] do |
791
928d2830fd0c
Make AI aware of new high jump technique (there's still an issue with two successive jumps)
unc0rr
parents:
741
diff
changeset
|
239 |
AddAction(MadeActions, aia_LJump, 0, 305 + random(50), 0, 0); |
433 | 240 |
|
80 | 241 |
if not CanGo then break; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
242 |
inc(steps); |
544 | 243 |
Actions.actions[Pred(Actions.Count)].Param:= hwRound(Me^.X); |
70 | 244 |
Rate:= RatePlace(Me); |
433 | 245 |
if Rate > BestRate then |
70 | 246 |
begin |
247 |
BestActions:= Actions; |
|
6395
bb04d7a9f7e2
Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents:
6393
diff
changeset
|
248 |
BestActions.isWalkingToABetterPlace:= true; |
433 | 249 |
BestRate:= Rate; |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2376
diff
changeset
|
250 |
Me^.State:= Me^.State or gstAttacked // we have better place, go there and do not use ammo |
70 | 251 |
end |
433 | 252 |
else if Rate < BestRate then break; |
253 |
if ((Me^.State and gstAttacked) = 0) |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
254 |
and ((steps mod 4) = 0) then TestAmmos(Actions, Me, true); |
193 | 255 |
if GoInfo.FallPix >= FallPixForBranching then |
256 |
Push(ticks, Actions, Me^, Me^.Message xor 3); // aia_Left xor 3 = aia_Right |
|
433 | 257 |
end; |
193 | 258 |
|
433 | 259 |
if BestRate > BaseRate then exit |
260 |
end |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
261 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
262 |
|
508 | 263 |
function Think(Me: Pointer): ptrint; |
74 | 264 |
var BackMe, WalkMe: TGear; |
6393 | 265 |
StartTicks, currHedgehogIndex, itHedgehog, switchesNum, i: Longword; |
266 |
switchImmediatelyAvailable, switchAvailable: boolean; |
|
267 |
Actions: TActions; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
268 |
begin |
509 | 269 |
InterlockedIncrement(hasThread); |
433 | 270 |
StartTicks:= GameTicks; |
6393 | 271 |
currHedgehogIndex:= CurrentTeam^.CurrHedgehog; |
272 |
itHedgehog:= currHedgehogIndex; |
|
273 |
switchesNum:= 0; |
|
274 |
||
275 |
switchImmediatelyAvailable:= (CurAmmoGear <> nil) and (CurAmmoGear^.Kind = gtSwitcher); |
|
276 |
switchAvailable:= HHHasAmmo(PGear(Me)^.Hedgehog^, amSwitch); |
|
509 | 277 |
|
500 | 278 |
if (PGear(Me)^.State and gstAttacked) = 0 then |
74 | 279 |
if Targets.Count > 0 then |
280 |
begin |
|
6393 | 281 |
// iterate over current team hedgehogs |
282 |
repeat |
|
283 |
WalkMe:= CurrentTeam^.Hedgehogs[itHedgehog].Gear^; |
|
284 |
||
285 |
Actions.Count:= 0; |
|
286 |
Actions.Pos:= 0; |
|
287 |
Actions.Score:= 0; |
|
288 |
if switchesNum > 0 then |
|
289 |
begin |
|
290 |
if not switchImmediatelyAvailable then |
|
291 |
begin |
|
292 |
// when AI has to use switcher, make it cost smth |
|
293 |
Actions.Score:= -20000; |
|
294 |
AddAction(Actions, aia_Weapon, Longword(amSwitch), 300 + random(200), 0, 0); |
|
295 |
AddAction(Actions, aia_attack, aim_push, 300 + random(300), 0, 0); |
|
296 |
AddAction(Actions, aia_attack, aim_release, 1, 0, 0); |
|
297 |
end; |
|
298 |
for i:= 1 to switchesNum do |
|
299 |
AddAction(Actions, aia_Switch, 0, 300 + random(200), 0, 0); |
|
300 |
end; |
|
301 |
Walk(@WalkMe, Actions); |
|
302 |
||
303 |
// find another hog in team |
|
304 |
repeat |
|
305 |
itHedgehog:= Succ(itHedgehog) mod CurrentTeam^.HedgehogsNumber; |
|
306 |
until (itHedgehog = currHedgehogIndex) or (CurrentTeam^.Hedgehogs[itHedgehog].Gear <> nil); |
|
307 |
||
308 |
inc(switchesNum); |
|
309 |
until (not (switchImmediatelyAvailable or switchAvailable)) |
|
310 |
or StopThinking |
|
6395
bb04d7a9f7e2
Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents:
6393
diff
changeset
|
311 |
or (itHedgehog = currHedgehogIndex) |
bb04d7a9f7e2
Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents:
6393
diff
changeset
|
312 |
or BestActions.isWalkingToABetterPlace; |
6393 | 313 |
|
314 |
if (StartTicks > GameTicks - 1500) and (not StopThinking) then SDL_Delay(1000); |
|
315 |
||
6395
bb04d7a9f7e2
Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents:
6393
diff
changeset
|
316 |
if (BestActions.Score < -1023) and (not BestActions.isWalkingToABetterPlace) then |
6393 | 317 |
begin |
318 |
BestActions.Count:= 0; |
|
319 |
AddAction(BestActions, aia_Skip, 0, 250, 0, 0); |
|
320 |
end; |
|
321 |
||
80 | 322 |
end else |
74 | 323 |
else begin |
6393 | 324 |
BackMe:= PGear(Me)^; |
325 |
while (not StopThinking) and (BestActions.Count = 0) do |
|
326 |
begin |
|
327 |
FillBonuses(true); |
|
328 |
WalkMe:= BackMe; |
|
329 |
Actions.Count:= 0; |
|
330 |
Actions.Pos:= 0; |
|
331 |
Actions.Score:= 0; |
|
332 |
Walk(@WalkMe, Actions); |
|
333 |
if not StopThinking then SDL_Delay(100) |
|
334 |
end |
|
335 |
end; |
|
336 |
||
500 | 337 |
PGear(Me)^.State:= PGear(Me)^.State and not gstHHThinking; |
509 | 338 |
Think:= 0; |
339 |
InterlockedDecrement(hasThread) |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
340 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
341 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
342 |
procedure StartThink(Me: PGear); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
343 |
begin |
542 | 344 |
if ((Me^.State and (gstAttacking or gstHHJumping or gstMoving)) <> 0) |
439 | 345 |
or isInMultiShoot then exit; |
506 | 346 |
|
2376 | 347 |
//DeleteCI(Me); // this might break demo |
369 | 348 |
Me^.State:= Me^.State or gstHHThinking; |
349 |
Me^.Message:= 0; |
|
509 | 350 |
|
351 |
BestActions.Count:= 0; |
|
352 |
BestActions.Pos:= 0; |
|
5163 | 353 |
BestActions.Score:= Low(LongInt); |
6395
bb04d7a9f7e2
Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents:
6393
diff
changeset
|
354 |
BestActions.isWalkingToABetterPlace:= false; |
509 | 355 |
|
433 | 356 |
StopThinking:= false; |
357 |
ThinkingHH:= Me; |
|
509 | 358 |
|
70 | 359 |
FillTargets; |
80 | 360 |
if Targets.Count = 0 then |
361 |
begin |
|
369 | 362 |
OutError('AI: no targets!?', false); |
80 | 363 |
exit |
364 |
end; |
|
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
936
diff
changeset
|
365 |
|
369 | 366 |
FillBonuses((Me^.State and gstAttacked) <> 0); |
4900 | 367 |
AddFileLog('Enter Think Thread'); |
6027 | 368 |
{$IFDEF IPHONEOS} |
369 |
//TODO: sdl_thread works on device but crashes in simulator, most likely because of outdated toolchain |
|
370 |
BeginThread(@Think, Me, ThinkThread); |
|
371 |
{$ELSE} |
|
6341 | 372 |
ThinkThread := SDL_CreateThread(@Think{$IFDEF SDL13}, nil{$ENDIF}, Me); |
6027 | 373 |
{$ENDIF} |
6343 | 374 |
{$ENDIF} |
5504 | 375 |
AddFileLog('Thread started'); |
433 | 376 |
end; |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
377 |
|
433 | 378 |
procedure ProcessBot; |
379 |
const StartTicks: Longword = 0; |
|
509 | 380 |
cStopThinkTime = 40; |
4 | 381 |
begin |
602 | 382 |
with CurrentHedgehog^ do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
383 |
if (Gear <> nil) |
369 | 384 |
and ((Gear^.State and gstHHDriven) <> 0) |
4225
ce9e2b05e9c1
Revert yet again for breaking stuff. No more chances on this. If there'd been a release, this would have been twice with serious breakage. P.S. - as per koda's complaint last time, only reverted the non-iphone, probably means iphone is now broken. Oh well.
nemo
parents:
4211
diff
changeset
|
385 |
and (TurnTimeLeft < cHedgehogTurnTime - 50) then |
433 | 386 |
if ((Gear^.State and gstHHThinking) = 0) then |
509 | 387 |
if (BestActions.Pos >= BestActions.Count) |
388 |
and (TurnTimeLeft > cStopThinkTime) then |
|
433 | 389 |
begin |
936
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
390 |
if Gear^.Message <> 0 then |
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
391 |
begin |
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
392 |
StopMessages(Gear^.Message); |
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
393 |
TryDo((Gear^.Message and gmAllStoppable) = 0, 'Engine bug: AI may break demos playing', true); |
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
394 |
end; |
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
395 |
if Gear^.Message <> 0 then exit; |
433 | 396 |
StartThink(Gear); |
397 |
StartTicks:= GameTicks |
|
398 |
end else ProcessAction(BestActions, Gear) |
|
509 | 399 |
else if ((GameTicks - StartTicks) > cMaxAIThinkTime) |
400 |
or (TurnTimeLeft <= cStopThinkTime) then StopThinking:= true |
|
369 | 401 |
end; |
4 | 402 |
|
3038 | 403 |
procedure initModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
404 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
405 |
hasThread:= 0; |
6025
cac1d5601d7c
reviewed the build system and parts of the previous merge, performed some code cleanup
koda
parents:
5611
diff
changeset
|
406 |
ThinkThread:= ThinkThread; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
407 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
408 |
|
3038 | 409 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
410 |
begin |
3617 | 411 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
412 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
413 |
|
4 | 414 |
end. |