author | Xeli |
Tue, 09 Aug 2011 20:52:26 +0200 | |
branch | hedgeroid |
changeset 5504 | 96d735b83d43 |
parent 5495 | 272ed78e59a7 |
child 5516 | 8710987d3484 |
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, |
5504 | 34 |
uVariables, uCommands, uUtils, uDebug, uConsole; |
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 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
63 |
procedure TestAmmos(var Actions: TActions; Me: PGear; isMoved: boolean); |
3407 | 64 |
var BotLevel: Byte; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
65 |
ap: TAttackParams; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
66 |
Score, i: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
67 |
a, aa: TAmmoType; |
4 | 68 |
begin |
5504 | 69 |
WriteToConsole('testing ammo'); |
4372 | 70 |
BotLevel:= Me^.Hedgehog^.BotLevel; |
433 | 71 |
|
64 | 72 |
for i:= 0 to Pred(Targets.Count) do |
509 | 73 |
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
|
74 |
begin |
602 | 75 |
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
|
76 |
a:= CurAmmoType; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
77 |
aa:= a; |
5504 | 78 |
WriteToConsole('start walking'); |
79 |
SDL_delay(0); |
|
80 |
// ThreadSwitch(); |
|
81 |
WriteToConsole('start walking'); |
|
5396 | 82 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
83 |
repeat |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
84 |
if (CanUseAmmo[a]) and |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
85 |
((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
|
86 |
begin |
3407 | 87 |
{$HINTS OFF} |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
88 |
Score:= AmmoTests[a].proc(Me, Targets.ar[i].Point, BotLevel, ap); |
3407 | 89 |
{$HINTS ON} |
139 | 90 |
if Actions.Score + Score > BestActions.Score then |
3407 | 91 |
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
|
92 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
93 |
BestActions:= Actions; |
136 | 94 |
inc(BestActions.Score, Score); |
194 | 95 |
|
5162 | 96 |
if (ap.Angle > 0) then AddAction(BestActions, aia_LookRight, 0, 200, 0, 0) |
97 |
else if (ap.Angle < 0) then AddAction(BestActions, aia_LookLeft, 0, 200, 0, 0); |
|
98 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
99 |
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
|
100 |
if (ap.Time <> 0) then AddAction(BestActions, aia_Timer, ap.Time div 1000, 400, 0, 0); |
83 | 101 |
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
|
102 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
103 |
ap.Angle:= LongInt(Me^.Angle) - Abs(ap.Angle); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
104 |
if ap.Angle > 0 then |
83 | 105 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
106 |
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
|
107 |
AddAction(BestActions, aia_Up, aim_release, ap.Angle, 0, 0) |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
108 |
end else if ap.Angle < 0 then |
83 | 109 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
110 |
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
|
111 |
AddAction(BestActions, aia_Down, aim_release, -ap.Angle, 0, 0) |
83 | 112 |
end |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
113 |
end; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
114 |
if (Ammoz[a].Ammo.Propz and ammoprop_NeedTarget) <> 0 then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
115 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
116 |
AddAction(BestActions, aia_Put, 0, 1, ap.AttackPutX, ap.AttackPutY) |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
117 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
118 |
if (Ammoz[a].Ammo.Propz and ammoprop_AttackingPut) = 0 then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
119 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
120 |
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
|
121 |
AddAction(BestActions, aia_attack, aim_release, ap.Power, 0, 0); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
122 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
123 |
if ap.ExplR > 0 then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
124 |
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
|
125 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
126 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
127 |
if a = High(TAmmoType) then a:= Low(TAmmoType) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
128 |
else inc(a) |
509 | 129 |
until (a = aa) or |
2608 | 130 |
(CurrentHedgehog^.MultiShootAttacks > 0) or // shooting same weapon |
509 | 131 |
StopThinking |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
132 |
end |
64 | 133 |
end; |
4 | 134 |
|
64 | 135 |
procedure Walk(Me: PGear); |
80 | 136 |
const FallPixForBranching = cHHRadius * 2 + 8; |
433 | 137 |
cBranchStackSize = 12; |
138 |
||
139 |
type TStackEntry = record |
|
140 |
WastedTicks: Longword; |
|
141 |
MadeActions: TActions; |
|
142 |
Hedgehog: TGear; |
|
143 |
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
|
144 |
|
433 | 145 |
var Stack: record |
146 |
Count: Longword; |
|
147 |
States: array[0..Pred(cBranchStackSize)] of TStackEntry; |
|
148 |
end; |
|
149 |
||
150 |
function Push(Ticks: Longword; const Actions: TActions; const Me: TGear; Dir: integer): boolean; |
|
2695 | 151 |
var bRes: boolean; |
433 | 152 |
begin |
2695 | 153 |
bRes:= (Stack.Count < cBranchStackSize) and (Actions.Count < MAXACTIONS - 5); |
154 |
if bRes then |
|
433 | 155 |
with Stack.States[Stack.Count] do |
156 |
begin |
|
157 |
WastedTicks:= Ticks; |
|
158 |
MadeActions:= Actions; |
|
159 |
Hedgehog:= Me; |
|
160 |
Hedgehog.Message:= Dir; |
|
161 |
inc(Stack.Count) |
|
162 |
end; |
|
2695 | 163 |
Push:= bRes |
433 | 164 |
end; |
165 |
||
166 |
procedure Pop(var Ticks: Longword; var Actions: TActions; var Me: TGear); |
|
167 |
begin |
|
168 |
dec(Stack.Count); |
|
169 |
with Stack.States[Stack.Count] do |
|
170 |
begin |
|
171 |
Ticks:= WastedTicks; |
|
172 |
Actions:= MadeActions; |
|
173 |
Me:= Hedgehog |
|
174 |
end |
|
175 |
end; |
|
176 |
||
177 |
function PosInThinkStack(Me: PGear): boolean; |
|
178 |
var i: Longword; |
|
179 |
begin |
|
180 |
i:= 0; |
|
181 |
while (i < Stack.Count) do |
|
182 |
begin |
|
183 |
if(not(hwAbs(Stack.States[i].Hedgehog.X - Me^.X) + |
|
498 | 184 |
hwAbs(Stack.States[i].Hedgehog.Y - Me^.Y) > _2)) and |
433 | 185 |
(Stack.States[i].Hedgehog.Message = Me^.Message) then exit(true); |
186 |
inc(i) |
|
187 |
end; |
|
188 |
PosInThinkStack:= false |
|
189 |
end; |
|
190 |
||
191 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
192 |
var Actions: TActions; |
3407 | 193 |
ticks, maxticks, steps, tmp: Longword; |
433 | 194 |
BaseRate, BestRate, Rate: integer; |
75 | 195 |
GoInfo: TGoInfo; |
80 | 196 |
CanGo: boolean; |
197 |
AltMe: TGear; |
|
3407 | 198 |
BotLevel: Byte; |
64 | 199 |
begin |
3407 | 200 |
ticks:= 0; // avoid compiler hint |
433 | 201 |
Actions.Count:= 0; |
202 |
Actions.Pos:= 0; |
|
203 |
Actions.Score:= 0; |
|
204 |
Stack.Count:= 0; |
|
4372 | 205 |
BotLevel:= Me^.Hedgehog^.BotLevel; |
75 | 206 |
|
433 | 207 |
tmp:= random(2) + 1; |
208 |
Push(0, Actions, Me^, tmp); |
|
209 |
Push(0, Actions, Me^, tmp xor 3); |
|
5504 | 210 |
WriteToConsole('start walking'); |
433 | 211 |
|
4374 | 212 |
if (Me^.State and gstAttacked) = 0 then maxticks:= Max(0, TurnTimeLeft - 5000 - LongWord(4000 * BotLevel)) |
433 | 213 |
else maxticks:= TurnTimeLeft; |
5504 | 214 |
WriteToConsole('start walking'); |
75 | 215 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
216 |
if (Me^.State and gstAttacked) = 0 then TestAmmos(Actions, Me, false); |
5504 | 217 |
WriteToConsole('start walking'); |
433 | 218 |
BestRate:= RatePlace(Me); |
4374 | 219 |
BaseRate:= Max(BestRate, 0); |
5504 | 220 |
WriteToConsole('start walking'); |
75 | 221 |
|
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
|
222 |
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
|
223 |
AddAction(Actions, aia_Weapon, Longword(amNothing), 100 + random(200), 0, 0); |
5504 | 224 |
WriteToConsole('start walking'); |
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
|
225 |
|
2605 | 226 |
while (Stack.Count > 0) and (not StopThinking) and (GameFlags and gfArtillery = 0) do |
433 | 227 |
begin |
5504 | 228 |
WriteToConsole('start walking'); |
433 | 229 |
Pop(ticks, Actions, Me^); |
193 | 230 |
|
433 | 231 |
AddAction(Actions, Me^.Message, aim_push, 250, 0, 0); |
3894 | 232 |
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
|
233 |
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
|
234 |
steps:= 0; |
82 | 235 |
|
433 | 236 |
while (not StopThinking) and (not PosInThinkStack(Me)) do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
237 |
begin |
3407 | 238 |
{$HINTS OFF} |
80 | 239 |
CanGo:= HHGo(Me, @AltMe, GoInfo); |
3407 | 240 |
{$HINTS ON} |
75 | 241 |
inc(ticks, GoInfo.Ticks); |
242 |
if ticks > maxticks then break; |
|
5504 | 243 |
WriteToConsole('start walking'); |
194 | 244 |
|
136 | 245 |
if (BotLevel < 5) and (GoInfo.JumpType = jmpHJump) then // hjump support |
80 | 246 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
433 | 247 |
with Stack.States[Pred(Stack.Count)] do |
80 | 248 |
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
|
249 |
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
|
250 |
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
|
251 |
AddAction(MadeActions, aia_HJump, 0, 305 + random(50), 0, 0); |
369 | 252 |
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
|
253 |
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
|
254 |
else AddAction(MadeActions, aia_LookRight, 0, 200, 0, 0); |
80 | 255 |
end; |
136 | 256 |
if (BotLevel < 3) and (GoInfo.JumpType = jmpLJump) then // ljump support |
80 | 257 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
433 | 258 |
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
|
259 |
AddAction(MadeActions, aia_LJump, 0, 305 + random(50), 0, 0); |
433 | 260 |
|
80 | 261 |
if not CanGo then break; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
262 |
inc(steps); |
544 | 263 |
Actions.actions[Pred(Actions.Count)].Param:= hwRound(Me^.X); |
70 | 264 |
Rate:= RatePlace(Me); |
5504 | 265 |
WriteToConsole('start walking'); |
433 | 266 |
if Rate > BestRate then |
70 | 267 |
begin |
268 |
BestActions:= Actions; |
|
433 | 269 |
BestRate:= Rate; |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2376
diff
changeset
|
270 |
Me^.State:= Me^.State or gstAttacked // we have better place, go there and do not use ammo |
70 | 271 |
end |
433 | 272 |
else if Rate < BestRate then break; |
5504 | 273 |
WriteToConsole('start walking'); |
433 | 274 |
if ((Me^.State and gstAttacked) = 0) |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
275 |
and ((steps mod 4) = 0) then TestAmmos(Actions, Me, true); |
5504 | 276 |
WriteToConsole('start walking'); |
193 | 277 |
if GoInfo.FallPix >= FallPixForBranching then |
278 |
Push(ticks, Actions, Me^, Me^.Message xor 3); // aia_Left xor 3 = aia_Right |
|
433 | 279 |
end; |
193 | 280 |
|
433 | 281 |
if BestRate > BaseRate then exit |
282 |
end |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
283 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
284 |
|
508 | 285 |
function Think(Me: Pointer): ptrint; |
74 | 286 |
var BackMe, WalkMe: TGear; |
433 | 287 |
StartTicks: Longword; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
288 |
begin |
5504 | 289 |
WriteToConsole('starting to think'); |
509 | 290 |
InterlockedIncrement(hasThread); |
5504 | 291 |
WriteToConsole('bla'); |
433 | 292 |
StartTicks:= GameTicks; |
5504 | 293 |
WriteToConsole('bla'); |
500 | 294 |
BackMe:= PGear(Me)^; |
5504 | 295 |
WriteToConsole('bla'); |
509 | 296 |
|
500 | 297 |
if (PGear(Me)^.State and gstAttacked) = 0 then |
74 | 298 |
if Targets.Count > 0 then |
299 |
begin |
|
5504 | 300 |
WriteToConsole('blaaa'); |
301 |
||
509 | 302 |
WalkMe:= BackMe; |
5504 | 303 |
WriteToConsole('blaa'); |
74 | 304 |
Walk(@WalkMe); |
5504 | 305 |
WriteToConsole('blaa'); |
5394
924584407e01
This should improve performance on singlecore computers
unc0rr
parents:
5388
diff
changeset
|
306 |
if (StartTicks > GameTicks - 1500) and not StopThinking then SDL_Delay(1000); |
5504 | 307 |
WriteToConsole('bla'); |
308 |
||
433 | 309 |
if BestActions.Score < -1023 then |
146 | 310 |
begin |
5504 | 311 |
WriteToConsole('bla'); |
433 | 312 |
BestActions.Count:= 0; |
313 |
AddAction(BestActions, aia_Skip, 0, 250, 0, 0); |
|
5504 | 314 |
WriteToConsole('bla'); |
433 | 315 |
end; |
80 | 316 |
end else |
74 | 317 |
else begin |
433 | 318 |
while (not StopThinking) and (BestActions.Count = 0) do |
319 |
begin |
|
5504 | 320 |
WriteToConsole('bla loop'); |
433 | 321 |
FillBonuses(true); |
322 |
WalkMe:= BackMe; |
|
509 | 323 |
Walk(@WalkMe); |
324 |
if not StopThinking then SDL_Delay(100) |
|
433 | 325 |
end |
326 |
end; |
|
500 | 327 |
PGear(Me)^.State:= PGear(Me)^.State and not gstHHThinking; |
509 | 328 |
Think:= 0; |
5504 | 329 |
WriteToConsole('bla'); |
330 |
||
331 |
InterlockedDecrement(hasThread); |
|
332 |
WriteToConsole('bla end'); |
|
333 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
334 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
335 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
336 |
procedure StartThink(Me: PGear); |
75 | 337 |
var a: TAmmoType; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
338 |
begin |
542 | 339 |
if ((Me^.State and (gstAttacking or gstHHJumping or gstMoving)) <> 0) |
439 | 340 |
or isInMultiShoot then exit; |
506 | 341 |
|
2376 | 342 |
//DeleteCI(Me); // this might break demo |
369 | 343 |
Me^.State:= Me^.State or gstHHThinking; |
344 |
Me^.Message:= 0; |
|
509 | 345 |
|
346 |
BestActions.Count:= 0; |
|
347 |
BestActions.Pos:= 0; |
|
5163 | 348 |
BestActions.Score:= Low(LongInt); |
509 | 349 |
|
433 | 350 |
StopThinking:= false; |
351 |
ThinkingHH:= Me; |
|
509 | 352 |
|
70 | 353 |
FillTargets; |
80 | 354 |
if Targets.Count = 0 then |
355 |
begin |
|
369 | 356 |
OutError('AI: no targets!?', false); |
80 | 357 |
exit |
358 |
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
|
359 |
|
369 | 360 |
FillBonuses((Me^.State and gstAttacked) <> 0); |
75 | 361 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
4372 | 362 |
CanUseAmmo[a]:= Assigned(AmmoTests[a].proc) and HHHasAmmo(Me^.Hedgehog^, a); |
4900 | 363 |
AddFileLog('Enter Think Thread'); |
5504 | 364 |
//BeginThread(@Think, Me, ThinkThread) |
365 |
ThinkThread := SDL_CreateThread(@Think, Me); |
|
366 |
AddFileLog('Thread started'); |
|
433 | 367 |
end; |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
368 |
|
433 | 369 |
procedure ProcessBot; |
370 |
const StartTicks: Longword = 0; |
|
509 | 371 |
cStopThinkTime = 40; |
4 | 372 |
begin |
602 | 373 |
with CurrentHedgehog^ do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
374 |
if (Gear <> nil) |
369 | 375 |
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
|
376 |
and (TurnTimeLeft < cHedgehogTurnTime - 50) then |
433 | 377 |
if ((Gear^.State and gstHHThinking) = 0) then |
509 | 378 |
if (BestActions.Pos >= BestActions.Count) |
379 |
and (TurnTimeLeft > cStopThinkTime) then |
|
433 | 380 |
begin |
936
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
381 |
if Gear^.Message <> 0 then |
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
382 |
begin |
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
383 |
StopMessages(Gear^.Message); |
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
384 |
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
|
385 |
end; |
ba582673db7d
Fix 'AI may break demos playing' message while loading saves
unc0rr
parents:
883
diff
changeset
|
386 |
if Gear^.Message <> 0 then exit; |
433 | 387 |
StartThink(Gear); |
388 |
StartTicks:= GameTicks |
|
389 |
end else ProcessAction(BestActions, Gear) |
|
509 | 390 |
else if ((GameTicks - StartTicks) > cMaxAIThinkTime) |
391 |
or (TurnTimeLeft <= cStopThinkTime) then StopThinking:= true |
|
369 | 392 |
end; |
4 | 393 |
|
3038 | 394 |
procedure initModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
395 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
396 |
hasThread:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
397 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
398 |
|
3038 | 399 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
400 |
begin |
3617 | 401 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
402 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
403 |
|
4 | 404 |
end. |