author | koda |
Sun, 20 Nov 2011 19:07:59 +0100 | |
changeset 6409 | ca93f38a1aab |
parent 6396 | 71dd6b8494e5 |
child 6474 | 42e9773eedfd |
permissions | -rw-r--r-- |
71 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4977
c89cca0a8785
Try to make AI aware of dud mines by clearing gstAttacking on dud, and adding some rules on mine health/damage/dud probability to AI weighting.
nemo
parents:
4976
diff
changeset
|
3 |
* Copyright (c) 2005-2011 Andrey Korotaev <unC0Rr@gmail.com> |
71 | 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 |
|
71 | 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. |
|
71 | 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 |
|
71 | 17 |
*) |
18 |
||
2599 | 19 |
{$INCLUDE "options.inc"} |
2587
0dfa56a8513c
fix a segfault in the iphone simulator by moving options.inc at the beginning of the file
koda
parents:
2376
diff
changeset
|
20 |
|
4 | 21 |
unit uAIMisc; |
22 |
interface |
|
4368 | 23 |
uses SDLh, uConsts, uFloat, uTypes; |
369 | 24 |
|
3370 | 25 |
const MAXBONUS = 1024; |
26 |
||
64 | 27 |
type TTarget = record |
28 |
Point: TPoint; |
|
371 | 29 |
Score: LongInt; |
64 | 30 |
end; |
31 |
TTargets = record |
|
32 |
Count: Longword; |
|
1799 | 33 |
ar: array[0..Pred(cMaxHHs)] of TTarget; |
4 | 34 |
end; |
80 | 35 |
TJumpType = (jmpNone, jmpHJump, jmpLJump); |
75 | 36 |
TGoInfo = record |
37 |
Ticks: Longword; |
|
80 | 38 |
FallPix: Longword; |
39 |
JumpType: TJumpType; |
|
75 | 40 |
end; |
3370 | 41 |
TBonus = record |
42 |
X, Y: LongInt; |
|
43 |
Radius: LongInt; |
|
44 |
Score: LongInt; |
|
45 |
end; |
|
64 | 46 |
|
3038 | 47 |
procedure initModule; |
48 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
49 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
50 |
procedure FillTargets; |
3370 | 51 |
procedure FillBonuses(isAfterAttack: boolean; filter: TGearsType = []); |
371 | 52 |
procedure AwareOfExplosion(x, y, r: LongInt); |
53 |
function RatePlace(Gear: PGear): LongInt; |
|
2616
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
54 |
function TestCollExcludingMe(Me: PGear; x, y, r: LongInt): boolean; |
371 | 55 |
function TestColl(x, y, r: LongInt): boolean; |
56 |
function RateExplosion(Me: PGear; x, y, r: LongInt): LongInt; |
|
57 |
function RateShove(Me: PGear; x, y, r, power: LongInt): LongInt; |
|
509 | 58 |
function RateShotgun(Me: PGear; x, y: LongInt): LongInt; |
5645 | 59 |
function RateHammer(Me: PGear): LongInt; |
369 | 60 |
function HHGo(Gear, AltGear: PGear; var GoInfo: TGoInfo): boolean; |
371 | 61 |
function AIrndSign(num: LongInt): LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
62 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
63 |
var ThinkingHH: PGear; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
64 |
Targets: TTargets; |
921
8dd71d960cbc
If there's more hedgehogs in AI's team than in others, then it will be less afraid to give damage to friend hedgehog
unc0rr
parents:
883
diff
changeset
|
65 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
66 |
bonuses: record |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
67 |
Count: Longword; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
68 |
ar: array[0..Pred(MAXBONUS)] of TBonus; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
69 |
end; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
70 |
|
3370 | 71 |
implementation |
4403 | 72 |
uses uCollisions, uVariables, uUtils, uDebug; |
3370 | 73 |
|
74 |
const KillScore = 200; |
|
75 |
||
76 |
var friendlyfactor: LongInt = 300; |
|
77 |
KnownExplosion: record |
|
78 |
X, Y, Radius: LongInt |
|
3697 | 79 |
end = (X: 0; Y: 0; Radius: 0); |
4 | 80 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
81 |
procedure FillTargets; |
547 | 82 |
var i, t: Longword; |
6011
519f8a58c021
Fix a bunch of warnings (also improves speed a bit in 32 bit code)
unC0Rr
parents:
5881
diff
changeset
|
83 |
f, e: LongInt; |
4 | 84 |
begin |
85 |
Targets.Count:= 0; |
|
921
8dd71d960cbc
If there's more hedgehogs in AI's team than in others, then it will be less afraid to give damage to friend hedgehog
unc0rr
parents:
883
diff
changeset
|
86 |
f:= 0; |
8dd71d960cbc
If there's more hedgehogs in AI's team than in others, then it will be less afraid to give damage to friend hedgehog
unc0rr
parents:
883
diff
changeset
|
87 |
e:= 0; |
547 | 88 |
for t:= 0 to Pred(TeamsCount) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
89 |
with TeamsArray[t]^ do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
90 |
if not hasGone then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
91 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
92 |
for i:= 0 to cMaxHHIndex do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
93 |
if (Hedgehogs[i].Gear <> nil) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
94 |
and (Hedgehogs[i].Gear <> ThinkingHH) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
95 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
96 |
with Targets.ar[Targets.Count], Hedgehogs[i] do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
97 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
98 |
Point.X:= hwRound(Gear^.X); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
99 |
Point.Y:= hwRound(Gear^.Y); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
100 |
if Clan <> CurrentTeam^.Clan then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
101 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
102 |
Score:= Gear^.Health; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
103 |
inc(e) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
104 |
end else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
105 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
106 |
Score:= -Gear^.Health; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
107 |
inc(f) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
108 |
end |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
109 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
110 |
inc(Targets.Count) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
111 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
112 |
end; |
921
8dd71d960cbc
If there's more hedgehogs in AI's team than in others, then it will be less afraid to give damage to friend hedgehog
unc0rr
parents:
883
diff
changeset
|
113 |
|
8dd71d960cbc
If there's more hedgehogs in AI's team than in others, then it will be less afraid to give damage to friend hedgehog
unc0rr
parents:
883
diff
changeset
|
114 |
if e > f then friendlyfactor:= 300 + (e - f) * 30 |
5881 | 115 |
else friendlyfactor:= max(30, 300 - f * 80 div max(1,e)) |
4 | 116 |
end; |
117 |
||
3370 | 118 |
procedure FillBonuses(isAfterAttack: boolean; filter: TGearsType); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
119 |
var Gear: PGear; |
549 | 120 |
MyClan: PClan; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
121 |
|
371 | 122 |
procedure AddBonus(x, y: LongInt; r: Longword; s: LongInt); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
123 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
124 |
bonuses.ar[bonuses.Count].x:= x; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
125 |
bonuses.ar[bonuses.Count].y:= y; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
126 |
bonuses.ar[bonuses.Count].Radius:= r; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
127 |
bonuses.ar[bonuses.Count].Score:= s; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
128 |
inc(bonuses.Count); |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
129 |
TryDo(bonuses.Count <= MAXBONUS, 'Bonuses overflow', true) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
130 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
131 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
132 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
133 |
bonuses.Count:= 0; |
4372 | 134 |
MyClan:= ThinkingHH^.Hedgehog^.Team^.Clan; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
135 |
Gear:= GearsList; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
136 |
while Gear <> nil do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
137 |
begin |
5244
1b408b965c01
Don't stick to enemies when there are more than 2 clans
unc0rr
parents:
4977
diff
changeset
|
138 |
if (filter = []) or (Gear^.Kind in filter) then |
3370 | 139 |
case Gear^.Kind of |
140 |
gtCase: AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 33, 25); |
|
141 |
gtFlame: if (Gear^.State and gsttmpFlag) <> 0 then |
|
142 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 20, -50); |
|
4977
c89cca0a8785
Try to make AI aware of dud mines by clearing gstAttacking on dud, and adding some rules on mine health/damage/dud probability to AI weighting.
nemo
parents:
4976
diff
changeset
|
143 |
// avoid mines unless they are very likely to be duds, or are duds. also avoid if they are about to blow |
c89cca0a8785
Try to make AI aware of dud mines by clearing gstAttacking on dud, and adding some rules on mine health/damage/dud probability to AI weighting.
nemo
parents:
4976
diff
changeset
|
144 |
gtMine: if ((Gear^.State and gstAttacking) = 0) and |
c89cca0a8785
Try to make AI aware of dud mines by clearing gstAttacking on dud, and adding some rules on mine health/damage/dud probability to AI weighting.
nemo
parents:
4976
diff
changeset
|
145 |
(((cMineDudPercent < 90) and (Gear^.Health <> 0)) or |
6396
71dd6b8494e5
Only make AI avoid damaged dead mines and dangerously smoking barrels once the attack is finished.
nemo
parents:
6347
diff
changeset
|
146 |
(isAfterAttack and (Gear^.Health = 0) and (Gear^.Damage > 30))) then |
4977
c89cca0a8785
Try to make AI aware of dud mines by clearing gstAttacking on dud, and adding some rules on mine health/damage/dud probability to AI weighting.
nemo
parents:
4976
diff
changeset
|
147 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 50, -50) |
c89cca0a8785
Try to make AI aware of dud mines by clearing gstAttacking on dud, and adding some rules on mine health/damage/dud probability to AI weighting.
nemo
parents:
4976
diff
changeset
|
148 |
else if (Gear^.State and gstAttacking) <> 0 then |
c89cca0a8785
Try to make AI aware of dud mines by clearing gstAttacking on dud, and adding some rules on mine health/damage/dud probability to AI weighting.
nemo
parents:
4976
diff
changeset
|
149 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 100, -50); // mine is on |
6396
71dd6b8494e5
Only make AI avoid damaged dead mines and dangerously smoking barrels once the attack is finished.
nemo
parents:
6347
diff
changeset
|
150 |
gtExplosives: if isAfterAttack then AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 75, -60+Gear^.Health); |
5604 | 151 |
gtSMine: AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 50, -30); |
3370 | 152 |
gtDynamite: AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 150, -75); |
153 |
gtHedgehog: begin |
|
154 |
if Gear^.Damage >= Gear^.Health then |
|
155 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 60, -25) |
|
156 |
else |
|
157 |
if isAfterAttack and (ThinkingHH^.Hedgehog <> Gear^.Hedgehog) then |
|
5244
1b408b965c01
Don't stick to enemies when there are more than 2 clans
unc0rr
parents:
4977
diff
changeset
|
158 |
if (ClansCount > 2) or (MyClan = Gear^.Hedgehog^.Team^.Clan) then |
3370 | 159 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 150, -3) // hedgehog-friend |
160 |
else |
|
161 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 100, 3) |
|
162 |
end; |
|
163 |
end; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
164 |
Gear:= Gear^.NextGear |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
165 |
end; |
71 | 166 |
if isAfterAttack and (KnownExplosion.Radius > 0) then |
167 |
with KnownExplosion do |
|
74 | 168 |
AddBonus(X, Y, Radius + 10, -Radius); |
71 | 169 |
end; |
170 |
||
371 | 171 |
procedure AwareOfExplosion(x, y, r: LongInt); |
71 | 172 |
begin |
173 |
KnownExplosion.X:= x; |
|
174 |
KnownExplosion.Y:= y; |
|
175 |
KnownExplosion.Radius:= r |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
176 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
177 |
|
371 | 178 |
function RatePlace(Gear: PGear): LongInt; |
179 |
var i, r: LongInt; |
|
2695 | 180 |
rate: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
181 |
begin |
2695 | 182 |
rate:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
183 |
for i:= 0 to Pred(bonuses.Count) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
184 |
with bonuses.ar[i] do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
185 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
186 |
r:= hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
187 |
if r < Radius then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
188 |
inc(rate, Score * (Radius - r)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
189 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
190 |
RatePlace:= rate; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
191 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
192 |
|
2616
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
193 |
// Wrapper to test various approaches. If it works reasonably, will just replace. |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
194 |
// Right now, converting to hwFloat is a tad inefficient since the x/y were hwFloat to begin with... |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
195 |
function TestCollExcludingMe(Me: PGear; x, y, r: LongInt): boolean; |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
196 |
var MeX, MeY: LongInt; |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
197 |
begin |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
198 |
if ((x and LAND_WIDTH_MASK) = 0) and ((y and LAND_HEIGHT_MASK) = 0) then |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
199 |
begin |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
200 |
MeX:= hwRound(Me^.X); |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
201 |
MeY:= hwRound(Me^.Y); |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
202 |
// We are still inside the hog. Skip radius test |
3697 | 203 |
if ((((x-MeX)*(x-MeX)) + ((y-MeY)*(y-MeY))) < 256) and |
2616
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
204 |
((Land[y, x] and $FF00) = 0) then exit(false); |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
205 |
end; |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
206 |
exit(TestColl(x, y, r)) |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
207 |
end; |
6e2b341dc408
AI fire w/o moving for artillery. Needs testing, but seems to work quickly and w/o AI screwups.
nemo
parents:
2599
diff
changeset
|
208 |
|
371 | 209 |
function TestColl(x, y, r: LongInt): boolean; |
369 | 210 |
var b: boolean; |
4 | 211 |
begin |
1753 | 212 |
b:= (((x-r) and LAND_WIDTH_MASK) = 0)and(((y-r) and LAND_HEIGHT_MASK) = 0) and (Land[y-r, x-r] <> 0); |
369 | 213 |
if b then exit(true); |
1753 | 214 |
b:=(((x-r) and LAND_WIDTH_MASK) = 0)and(((y+r) and LAND_HEIGHT_MASK) = 0) and (Land[y+r, x-r] <> 0); |
369 | 215 |
if b then exit(true); |
1753 | 216 |
b:=(((x+r) and LAND_WIDTH_MASK) = 0)and(((y-r) and LAND_HEIGHT_MASK) = 0) and (Land[y-r, x+r] <> 0); |
369 | 217 |
if b then exit(true); |
1753 | 218 |
TestColl:=(((x+r) and LAND_WIDTH_MASK) = 0)and(((y+r) and LAND_HEIGHT_MASK) = 0) and (Land[y+r, x+r] <> 0) |
4 | 219 |
end; |
220 |
||
371 | 221 |
function RateExplosion(Me: PGear; x, y, r: LongInt): LongInt; |
2695 | 222 |
var i, dmg, rate: LongInt; |
4 | 223 |
begin |
2695 | 224 |
rate:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
225 |
// add our virtual position |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
226 |
with Targets.ar[Targets.Count] do |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
227 |
begin |
369 | 228 |
Point.x:= hwRound(Me^.X); |
229 |
Point.y:= hwRound(Me^.Y); |
|
230 |
Score:= - ThinkingHH^.Health |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
231 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
232 |
// rate explosion |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
233 |
for i:= 0 to Targets.Count do |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
234 |
with Targets.ar[i] do |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
235 |
begin |
5642 | 236 |
dmg:= hwRound(_0_01 * cDamageModifier |
6011
519f8a58c021
Fix a bunch of warnings (also improves speed a bit in 32 bit code)
unC0Rr
parents:
5881
diff
changeset
|
237 |
* min((r + cHHRadius div 2 - LongInt(DistanceI(Point.x - x, Point.y - y).Round)) div 2, r) * cDamagePercent); |
5642 | 238 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
239 |
if dmg > 0 then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
240 |
begin |
509 | 241 |
if dmg >= abs(Score) then |
2695 | 242 |
if Score > 0 then inc(rate, KillScore) |
243 |
else dec(rate, KillScore * friendlyfactor div 100) |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
244 |
else |
2695 | 245 |
if Score > 0 then inc(rate, dmg) |
246 |
else dec(rate, dmg * friendlyfactor div 100) |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
247 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
248 |
end; |
2695 | 249 |
RateExplosion:= rate * 1024; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
250 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
251 |
|
371 | 252 |
function RateShove(Me: PGear; x, y, r, power: LongInt): LongInt; |
2695 | 253 |
var i, dmg, rate: LongInt; |
79 | 254 |
begin |
3407 | 255 |
Me:= Me; // avoid compiler hint |
2695 | 256 |
rate:= 0; |
433 | 257 |
for i:= 0 to Pred(Targets.Count) do |
79 | 258 |
with Targets.ar[i] do |
259 |
begin |
|
498 | 260 |
dmg:= r - hwRound(DistanceI(Point.x - x, Point.y - y)); |
5642 | 261 |
dmg:= hwRound(_0_01 * cDamageModifier * dmg * cDamagePercent); |
79 | 262 |
if dmg > 0 then |
263 |
begin |
|
509 | 264 |
if power >= abs(Score) then |
2695 | 265 |
if Score > 0 then inc(rate, KillScore) |
266 |
else dec(rate, KillScore * friendlyfactor div 100) |
|
79 | 267 |
else |
2695 | 268 |
if Score > 0 then inc(rate, power) |
269 |
else dec(rate, power * friendlyfactor div 100) |
|
79 | 270 |
end; |
271 |
end; |
|
2695 | 272 |
RateShove:= rate * 1024 |
79 | 273 |
end; |
274 |
||
509 | 275 |
function RateShotgun(Me: PGear; x, y: LongInt): LongInt; |
2695 | 276 |
var i, dmg, rate: LongInt; |
509 | 277 |
begin |
2695 | 278 |
rate:= 0; |
509 | 279 |
// add our virtual position |
280 |
with Targets.ar[Targets.Count] do |
|
281 |
begin |
|
282 |
Point.x:= hwRound(Me^.X); |
|
283 |
Point.y:= hwRound(Me^.Y); |
|
284 |
Score:= - ThinkingHH^.Health |
|
285 |
end; |
|
286 |
// rate shot |
|
287 |
for i:= 0 to Targets.Count do |
|
288 |
with Targets.ar[i] do |
|
289 |
begin |
|
5642 | 290 |
dmg:= min(cHHRadius + cShotgunRadius + 4 - hwRound(DistanceI(Point.x - x, Point.y - y)), 25); |
291 |
dmg:= hwRound(_0_01 * cDamageModifier * dmg * cDamagePercent); |
|
509 | 292 |
if dmg > 0 then |
293 |
begin |
|
1941 | 294 |
if dmg >= abs(Score) then dmg := KillScore; |
2695 | 295 |
if Score > 0 then inc(rate, dmg) |
296 |
else dec(rate, dmg * friendlyfactor div 100); |
|
509 | 297 |
end; |
5642 | 298 |
end; |
2695 | 299 |
RateShotgun:= rate * 1024; |
509 | 300 |
end; |
301 |
||
5645 | 302 |
function RateHammer(Me: PGear): LongInt; |
303 |
var x, y, i, r, rate: LongInt; |
|
304 |
begin |
|
305 |
// hammer hit shift against attecker hog is 10 |
|
306 |
x:= hwRound(Me^.X) + hwSign(Me^.dX) * 10; |
|
307 |
y:= hwRound(Me^.Y); |
|
308 |
rate:= 0; |
|
309 |
||
310 |
for i:= 0 to Pred(Targets.Count) do |
|
311 |
with Targets.ar[i] do |
|
312 |
begin |
|
313 |
// hammer hit radius is 8, shift is 10 |
|
314 |
r:= hwRound(DistanceI(Point.x - x, Point.y - y)); |
|
315 |
||
316 |
if r <= 18 then |
|
317 |
if Score > 0 then |
|
318 |
inc(rate, Score div 3) |
|
319 |
else |
|
320 |
inc(rate, Score div 3 * friendlyfactor div 100) |
|
321 |
end; |
|
322 |
RateHammer:= rate * 1024; |
|
323 |
end; |
|
324 |
||
369 | 325 |
function HHJump(Gear: PGear; JumpType: TJumpType; var GoInfo: TGoInfo): boolean; |
371 | 326 |
var bX, bY: LongInt; |
2695 | 327 |
bRes: boolean; |
80 | 328 |
begin |
2695 | 329 |
bRes:= false; |
80 | 330 |
GoInfo.Ticks:= 0; |
331 |
GoInfo.JumpType:= jmpNone; |
|
369 | 332 |
bX:= hwRound(Gear^.X); |
333 |
bY:= hwRound(Gear^.Y); |
|
80 | 334 |
case JumpType of |
2695 | 335 |
jmpNone: exit(bRes); |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
336 |
jmpHJump: if TestCollisionYwithGear(Gear, -1) = 0 then |
80 | 337 |
begin |
369 | 338 |
Gear^.dY:= -_0_2; |
339 |
SetLittle(Gear^.dX); |
|
542 | 340 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
2695 | 341 |
end else exit(bRes); |
80 | 342 |
jmpLJump: begin |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
343 |
if TestCollisionYwithGear(Gear, -1) <> 0 then |
498 | 344 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - int2hwFloat(2) else |
345 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
369 | 346 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
347 |
or (TestCollisionYwithGear(Gear, -1) <> 0)) then |
80 | 348 |
begin |
433 | 349 |
Gear^.dY:= -_0_15; |
498 | 350 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
542 | 351 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping |
2695 | 352 |
end else exit(bRes) |
80 | 353 |
end |
354 |
end; |
|
2376 | 355 |
|
80 | 356 |
repeat |
2695 | 357 |
if not (hwRound(Gear^.Y) + cHHRadius < cWaterLine) then exit(bRes); |
542 | 358 |
if (Gear^.State and gstMoving) <> 0 then |
80 | 359 |
begin |
360 |
if (GoInfo.Ticks = 350) then |
|
433 | 361 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
80 | 362 |
begin |
369 | 363 |
Gear^.dY:= -_0_25; |
498 | 364 |
Gear^.dX:= SignAs(_0_02, Gear^.dX) |
80 | 365 |
end; |
369 | 366 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
367 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
80 | 368 |
inc(GoInfo.Ticks); |
369 | 369 |
Gear^.dY:= Gear^.dY + cGravity; |
2695 | 370 |
if Gear^.dY > _0_4 then exit(bRes); |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
371 |
if (Gear^.dY.isNegative)and (TestCollisionYwithGear(Gear, -1) <> 0) then Gear^.dY:= _0; |
369 | 372 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
373 |
if (not Gear^.dY.isNegative)and (TestCollisionYwithGear(Gear, 1) <> 0) then |
80 | 374 |
begin |
542 | 375 |
Gear^.State:= Gear^.State and not (gstMoving or gstHHJumping); |
498 | 376 |
Gear^.dY:= _0; |
80 | 377 |
case JumpType of |
498 | 378 |
jmpHJump: if bY - hwRound(Gear^.Y) > 5 then |
80 | 379 |
begin |
2695 | 380 |
bRes:= true; |
80 | 381 |
GoInfo.JumpType:= jmpHJump; |
382 |
inc(GoInfo.Ticks, 300 + 300) // 300 before jump, 300 after |
|
383 |
end; |
|
498 | 384 |
jmpLJump: if abs(bX - hwRound(Gear^.X)) > 30 then |
80 | 385 |
begin |
2695 | 386 |
bRes:= true; |
80 | 387 |
GoInfo.JumpType:= jmpLJump; |
388 |
inc(GoInfo.Ticks, 300 + 300) // 300 before jump, 300 after |
|
389 |
end; |
|
390 |
end; |
|
2695 | 391 |
exit(bRes) |
80 | 392 |
end; |
393 |
end; |
|
369 | 394 |
until false |
80 | 395 |
end; |
396 |
||
369 | 397 |
function HHGo(Gear, AltGear: PGear; var GoInfo: TGoInfo): boolean; |
371 | 398 |
var pX, pY: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
399 |
begin |
80 | 400 |
AltGear^:= Gear^; |
401 |
||
75 | 402 |
GoInfo.Ticks:= 0; |
80 | 403 |
GoInfo.FallPix:= 0; |
404 |
GoInfo.JumpType:= jmpNone; |
|
4 | 405 |
repeat |
369 | 406 |
pX:= hwRound(Gear^.X); |
407 |
pY:= hwRound(Gear^.Y); |
|
375 | 408 |
if pY + cHHRadius >= cWaterLine then exit(false); |
542 | 409 |
if (Gear^.State and gstMoving) <> 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
410 |
begin |
75 | 411 |
inc(GoInfo.Ticks); |
369 | 412 |
Gear^.dY:= Gear^.dY + cGravity; |
413 |
if Gear^.dY > _0_4 then |
|
75 | 414 |
begin |
80 | 415 |
Goinfo.FallPix:= 0; |
568 | 416 |
HHJump(AltGear, jmpLJump, GoInfo); // try ljump instead of fall with damage |
5425 | 417 |
exit(false) |
75 | 418 |
end; |
369 | 419 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
420 |
if hwRound(Gear^.Y) > pY then inc(GoInfo.FallPix); |
|
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
421 |
if TestCollisionYwithGear(Gear, 1) <> 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
422 |
begin |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1352
diff
changeset
|
423 |
inc(GoInfo.Ticks, 410); |
542 | 424 |
Gear^.State:= Gear^.State and not (gstMoving or gstHHJumping); |
498 | 425 |
Gear^.dY:= _0; |
82 | 426 |
HHJump(AltGear, jmpLJump, GoInfo); // try ljump instead of fall |
5425 | 427 |
exit(true) |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
428 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
429 |
continue |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
430 |
end; |
3894 | 431 |
if (Gear^.Message and gmLeft )<>0 then Gear^.dX:= -cLittle else |
5425 | 432 |
if (Gear^.Message and gmRight )<>0 then Gear^.dX:= cLittle else exit(false); |
369 | 433 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
434 |
begin |
498 | 435 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
436 |
or (TestCollisionYwithGear(Gear, -1) <> 0)) then Gear^.Y:= Gear^.Y - _1; |
498 | 437 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
438 |
or (TestCollisionYwithGear(Gear, -1) <> 0)) then Gear^.Y:= Gear^.Y - _1; |
498 | 439 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
440 |
or (TestCollisionYwithGear(Gear, -1) <> 0)) then Gear^.Y:= Gear^.Y - _1; |
498 | 441 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
442 |
or (TestCollisionYwithGear(Gear, -1) <> 0)) then Gear^.Y:= Gear^.Y - _1; |
498 | 443 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
444 |
or (TestCollisionYwithGear(Gear, -1) <> 0)) then Gear^.Y:= Gear^.Y - _1; |
498 | 445 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
446 |
or (TestCollisionYwithGear(Gear, -1) <> 0)) then Gear^.Y:= Gear^.Y - _1; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
447 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
448 |
|
369 | 449 |
if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
75 | 450 |
begin |
498 | 451 |
Gear^.X:= Gear^.X + int2hwFloat(hwSign(Gear^.dX)); |
75 | 452 |
inc(GoInfo.Ticks, cHHStepTicks) |
453 |
end; |
|
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
454 |
if TestCollisionYwithGear(Gear, 1) = 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
455 |
begin |
498 | 456 |
Gear^.Y:= Gear^.Y + _1; |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
457 |
if TestCollisionYwithGear(Gear, 1) = 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
458 |
begin |
498 | 459 |
Gear^.Y:= Gear^.Y + _1; |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
460 |
if TestCollisionYwithGear(Gear, 1) = 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
461 |
begin |
498 | 462 |
Gear^.Y:= Gear^.Y + _1; |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
463 |
if TestCollisionYwithGear(Gear, 1) = 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
464 |
begin |
498 | 465 |
Gear^.Y:= Gear^.Y + _1; |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
466 |
if TestCollisionYwithGear(Gear, 1) = 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
467 |
begin |
498 | 468 |
Gear^.Y:= Gear^.Y + _1; |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
469 |
if TestCollisionYwithGear(Gear, 1) = 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
470 |
begin |
498 | 471 |
Gear^.Y:= Gear^.Y + _1; |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6011
diff
changeset
|
472 |
if TestCollisionYwithGear(Gear, 1) = 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
473 |
begin |
498 | 474 |
Gear^.Y:= Gear^.Y - _6; |
475 |
Gear^.dY:= _0; |
|
542 | 476 |
Gear^.State:= Gear^.State or gstMoving |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
477 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
478 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
479 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
480 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
481 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
482 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
483 |
end; |
542 | 484 |
if (pX <> hwRound(Gear^.X)) and ((Gear^.State and gstMoving) = 0) then |
375 | 485 |
exit(true); |
542 | 486 |
until (pX = hwRound(Gear^.X)) and (pY = hwRound(Gear^.Y)) and ((Gear^.State and gstMoving) = 0); |
375 | 487 |
HHJump(AltGear, jmpHJump, GoInfo); |
5425 | 488 |
HHGo:= false; |
4 | 489 |
end; |
490 |
||
371 | 491 |
function AIrndSign(num: LongInt): LongInt; |
136 | 492 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
493 |
if random(2) = 0 then AIrndSign:= num |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
494 |
else AIrndSign:= - num |
2376 | 495 |
end; |
136 | 496 |
|
3038 | 497 |
procedure initModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
498 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
499 |
friendlyfactor:= 300; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
500 |
KnownExplosion.X:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
501 |
KnownExplosion.Y:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
502 |
KnownExplosion.Radius:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
503 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
504 |
|
3038 | 505 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
506 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
507 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
508 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
509 |
|
4 | 510 |
end. |