author | sheepluva |
Wed, 30 Jun 2010 03:26:15 +0200 | |
changeset 3592 | 0bcad5c38c9e |
parent 3407 | dcc129c4352e |
child 3697 | d5b30d6373fc |
permissions | -rw-r--r-- |
71 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
3236
4ab3917d7d44
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents:
3038
diff
changeset
|
3 |
* Copyright (c) 2005-2010 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 |
|
351 | 23 |
uses SDLh, uConsts, uGears, uFloat; |
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; |
369 | 59 |
function HHGo(Gear, AltGear: PGear; var GoInfo: TGoInfo): boolean; |
371 | 60 |
function AIrndSign(num: LongInt): LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
61 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
62 |
var ThinkingHH: PGear; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
63 |
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
|
64 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
65 |
bonuses: record |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
66 |
Count: Longword; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
67 |
ar: array[0..Pred(MAXBONUS)] of TBonus; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
68 |
end; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
69 |
|
3370 | 70 |
implementation |
71 |
uses uTeams, uMisc, uLand, uCollisions; |
|
72 |
||
73 |
||
74 |
const KillScore = 200; |
|
75 |
||
76 |
var friendlyfactor: LongInt = 300; |
|
77 |
KnownExplosion: record |
|
78 |
X, Y, Radius: LongInt |
|
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; |
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
|
83 |
f, e: Longword; |
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 |
922 | 115 |
else friendlyfactor:= max(30, 300 - f * 80 div 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; |
549 | 134 |
MyClan:= PHedgehog(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 |
3370 | 138 |
if (filter = []) or (Gear^.Kind in filter) then |
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); |
|
143 |
gtMine: if (Gear^.State and gstAttacking) = 0 then |
|
144 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 50, -50) |
|
145 |
else |
|
146 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 100, -50); // mine is on |
|
147 |
gtDynamite: AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 150, -75); |
|
148 |
gtHedgehog: begin |
|
149 |
if Gear^.Damage >= Gear^.Health then |
|
150 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 60, -25) |
|
151 |
else |
|
152 |
if isAfterAttack and (ThinkingHH^.Hedgehog <> Gear^.Hedgehog) then |
|
153 |
if (MyClan = PHedgehog(Gear^.Hedgehog)^.Team^.Clan) then |
|
154 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 150, -3) // hedgehog-friend |
|
155 |
else |
|
156 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 100, 3) |
|
157 |
end; |
|
158 |
end; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
159 |
Gear:= Gear^.NextGear |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
160 |
end; |
71 | 161 |
if isAfterAttack and (KnownExplosion.Radius > 0) then |
162 |
with KnownExplosion do |
|
74 | 163 |
AddBonus(X, Y, Radius + 10, -Radius); |
71 | 164 |
end; |
165 |
||
371 | 166 |
procedure AwareOfExplosion(x, y, r: LongInt); |
71 | 167 |
begin |
168 |
KnownExplosion.X:= x; |
|
169 |
KnownExplosion.Y:= y; |
|
170 |
KnownExplosion.Radius:= r |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
171 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
172 |
|
371 | 173 |
function RatePlace(Gear: PGear): LongInt; |
174 |
var i, r: LongInt; |
|
2695 | 175 |
rate: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
176 |
begin |
2695 | 177 |
rate:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
178 |
for i:= 0 to Pred(bonuses.Count) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
179 |
with bonuses.ar[i] do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
180 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
181 |
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
|
182 |
if r < Radius then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
183 |
inc(rate, Score * (Radius - r)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
184 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
185 |
RatePlace:= rate; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
186 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
187 |
|
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
|
188 |
// 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
|
189 |
// 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
|
190 |
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
|
191 |
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
|
192 |
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
|
193 |
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
|
194 |
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
|
195 |
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
|
196 |
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
|
197 |
// We are still inside the hog. Skip radius test |
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-MeX)*(x-MeX)) + ((y-MeY)*(y-MeY))) < 256) and |
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 |
((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
|
200 |
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
|
201 |
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
|
202 |
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
|
203 |
|
371 | 204 |
function TestColl(x, y, r: LongInt): boolean; |
369 | 205 |
var b: boolean; |
4 | 206 |
begin |
1753 | 207 |
b:= (((x-r) and LAND_WIDTH_MASK) = 0)and(((y-r) and LAND_HEIGHT_MASK) = 0) and (Land[y-r, x-r] <> 0); |
369 | 208 |
if b then exit(true); |
1753 | 209 |
b:=(((x-r) and LAND_WIDTH_MASK) = 0)and(((y+r) and LAND_HEIGHT_MASK) = 0) and (Land[y+r, x-r] <> 0); |
369 | 210 |
if b then exit(true); |
1753 | 211 |
b:=(((x+r) and LAND_WIDTH_MASK) = 0)and(((y-r) and LAND_HEIGHT_MASK) = 0) and (Land[y-r, x+r] <> 0); |
369 | 212 |
if b then exit(true); |
1753 | 213 |
TestColl:=(((x+r) and LAND_WIDTH_MASK) = 0)and(((y+r) and LAND_HEIGHT_MASK) = 0) and (Land[y+r, x+r] <> 0) |
4 | 214 |
end; |
215 |
||
371 | 216 |
function RateExplosion(Me: PGear; x, y, r: LongInt): LongInt; |
2695 | 217 |
var i, dmg, rate: LongInt; |
4 | 218 |
begin |
2695 | 219 |
rate:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
220 |
// add our virtual position |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
221 |
with Targets.ar[Targets.Count] do |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
222 |
begin |
369 | 223 |
Point.x:= hwRound(Me^.X); |
224 |
Point.y:= hwRound(Me^.Y); |
|
225 |
Score:= - ThinkingHH^.Health |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
226 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
227 |
// rate explosion |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
228 |
for i:= 0 to Targets.Count do |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
229 |
with Targets.ar[i] do |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
230 |
begin |
1141 | 231 |
dmg:= r + cHHRadius div 2 - hwRound(DistanceI(Point.x - x, Point.y - y)); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
232 |
if dmg > 0 then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
233 |
begin |
1141 | 234 |
dmg:= min(dmg div 2, r); |
509 | 235 |
if dmg >= abs(Score) then |
2695 | 236 |
if Score > 0 then inc(rate, KillScore) |
237 |
else dec(rate, KillScore * friendlyfactor div 100) |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
238 |
else |
2695 | 239 |
if Score > 0 then inc(rate, dmg) |
240 |
else dec(rate, dmg * friendlyfactor div 100) |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
241 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
242 |
end; |
2695 | 243 |
RateExplosion:= rate * 1024; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
244 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
245 |
|
371 | 246 |
function RateShove(Me: PGear; x, y, r, power: LongInt): LongInt; |
2695 | 247 |
var i, dmg, rate: LongInt; |
79 | 248 |
begin |
3407 | 249 |
Me:= Me; // avoid compiler hint |
2695 | 250 |
rate:= 0; |
433 | 251 |
for i:= 0 to Pred(Targets.Count) do |
79 | 252 |
with Targets.ar[i] do |
253 |
begin |
|
498 | 254 |
dmg:= r - hwRound(DistanceI(Point.x - x, Point.y - y)); |
79 | 255 |
if dmg > 0 then |
256 |
begin |
|
509 | 257 |
if power >= abs(Score) then |
2695 | 258 |
if Score > 0 then inc(rate, KillScore) |
259 |
else dec(rate, KillScore * friendlyfactor div 100) |
|
79 | 260 |
else |
2695 | 261 |
if Score > 0 then inc(rate, power) |
262 |
else dec(rate, power * friendlyfactor div 100) |
|
79 | 263 |
end; |
264 |
end; |
|
2695 | 265 |
RateShove:= rate * 1024 |
79 | 266 |
end; |
267 |
||
509 | 268 |
function RateShotgun(Me: PGear; x, y: LongInt): LongInt; |
1941 | 269 |
const |
270 |
REUSE_BONUS = 1.35; |
|
2695 | 271 |
var i, dmg, rate: LongInt; |
509 | 272 |
begin |
2695 | 273 |
rate:= 0; |
509 | 274 |
// add our virtual position |
275 |
with Targets.ar[Targets.Count] do |
|
276 |
begin |
|
277 |
Point.x:= hwRound(Me^.X); |
|
278 |
Point.y:= hwRound(Me^.Y); |
|
279 |
Score:= - ThinkingHH^.Health |
|
280 |
end; |
|
281 |
// rate shot |
|
282 |
for i:= 0 to Targets.Count do |
|
283 |
with Targets.ar[i] do |
|
284 |
begin |
|
285 |
dmg:= min(cHHRadius + cShotgunRadius - hwRound(DistanceI(Point.x - x, Point.y - y)), 25); |
|
1941 | 286 |
dmg := round(dmg * REUSE_BONUS); |
509 | 287 |
if dmg > 0 then |
288 |
begin |
|
1941 | 289 |
if dmg >= abs(Score) then dmg := KillScore; |
2695 | 290 |
if Score > 0 then inc(rate, dmg) |
291 |
else dec(rate, dmg * friendlyfactor div 100); |
|
509 | 292 |
end; |
293 |
end; |
|
2695 | 294 |
RateShotgun:= rate * 1024; |
509 | 295 |
end; |
296 |
||
369 | 297 |
function HHJump(Gear: PGear; JumpType: TJumpType; var GoInfo: TGoInfo): boolean; |
371 | 298 |
var bX, bY: LongInt; |
2695 | 299 |
bRes: boolean; |
80 | 300 |
begin |
2695 | 301 |
bRes:= false; |
80 | 302 |
GoInfo.Ticks:= 0; |
303 |
GoInfo.FallPix:= 0; |
|
304 |
GoInfo.JumpType:= jmpNone; |
|
369 | 305 |
bX:= hwRound(Gear^.X); |
306 |
bY:= hwRound(Gear^.Y); |
|
80 | 307 |
case JumpType of |
2695 | 308 |
jmpNone: exit(bRes); |
80 | 309 |
jmpHJump: if not TestCollisionYwithGear(Gear, -1) then |
310 |
begin |
|
369 | 311 |
Gear^.dY:= -_0_2; |
312 |
SetLittle(Gear^.dX); |
|
542 | 313 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
2695 | 314 |
end else exit(bRes); |
80 | 315 |
jmpLJump: begin |
316 |
if not TestCollisionYwithGear(Gear, -1) then |
|
498 | 317 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - int2hwFloat(2) else |
318 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
369 | 319 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
80 | 320 |
or TestCollisionYwithGear(Gear, -1)) then |
321 |
begin |
|
433 | 322 |
Gear^.dY:= -_0_15; |
498 | 323 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
542 | 324 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping |
2695 | 325 |
end else exit(bRes) |
80 | 326 |
end |
327 |
end; |
|
2376 | 328 |
|
80 | 329 |
repeat |
2695 | 330 |
if not (hwRound(Gear^.Y) + cHHRadius < cWaterLine) then exit(bRes); |
542 | 331 |
if (Gear^.State and gstMoving) <> 0 then |
80 | 332 |
begin |
333 |
if (GoInfo.Ticks = 350) then |
|
433 | 334 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
80 | 335 |
begin |
369 | 336 |
Gear^.dY:= -_0_25; |
498 | 337 |
Gear^.dX:= SignAs(_0_02, Gear^.dX) |
80 | 338 |
end; |
369 | 339 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
340 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
80 | 341 |
inc(GoInfo.Ticks); |
369 | 342 |
Gear^.dY:= Gear^.dY + cGravity; |
2695 | 343 |
if Gear^.dY > _0_4 then exit(bRes); |
498 | 344 |
if (Gear^.dY.isNegative)and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0; |
369 | 345 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
346 |
if (not Gear^.dY.isNegative)and TestCollisionYwithGear(Gear, 1) then |
|
80 | 347 |
begin |
542 | 348 |
Gear^.State:= Gear^.State and not (gstMoving or gstHHJumping); |
498 | 349 |
Gear^.dY:= _0; |
80 | 350 |
case JumpType of |
498 | 351 |
jmpHJump: if bY - hwRound(Gear^.Y) > 5 then |
80 | 352 |
begin |
2695 | 353 |
bRes:= true; |
80 | 354 |
GoInfo.JumpType:= jmpHJump; |
355 |
inc(GoInfo.Ticks, 300 + 300) // 300 before jump, 300 after |
|
356 |
end; |
|
498 | 357 |
jmpLJump: if abs(bX - hwRound(Gear^.X)) > 30 then |
80 | 358 |
begin |
2695 | 359 |
bRes:= true; |
80 | 360 |
GoInfo.JumpType:= jmpLJump; |
361 |
inc(GoInfo.Ticks, 300 + 300) // 300 before jump, 300 after |
|
362 |
end; |
|
363 |
end; |
|
2695 | 364 |
exit(bRes) |
80 | 365 |
end; |
366 |
end; |
|
369 | 367 |
until false |
80 | 368 |
end; |
369 |
||
369 | 370 |
function HHGo(Gear, AltGear: PGear; var GoInfo: TGoInfo): boolean; |
371 | 371 |
var pX, pY: LongInt; |
2695 | 372 |
bRes: boolean; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
373 |
begin |
2695 | 374 |
bRes:= false; |
80 | 375 |
AltGear^:= Gear^; |
376 |
||
75 | 377 |
GoInfo.Ticks:= 0; |
80 | 378 |
GoInfo.FallPix:= 0; |
379 |
GoInfo.JumpType:= jmpNone; |
|
4 | 380 |
repeat |
369 | 381 |
pX:= hwRound(Gear^.X); |
382 |
pY:= hwRound(Gear^.Y); |
|
375 | 383 |
if pY + cHHRadius >= cWaterLine then exit(false); |
542 | 384 |
if (Gear^.State and gstMoving) <> 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
385 |
begin |
75 | 386 |
inc(GoInfo.Ticks); |
369 | 387 |
Gear^.dY:= Gear^.dY + cGravity; |
388 |
if Gear^.dY > _0_4 then |
|
75 | 389 |
begin |
80 | 390 |
Goinfo.FallPix:= 0; |
568 | 391 |
HHJump(AltGear, jmpLJump, GoInfo); // try ljump instead of fall with damage |
2695 | 392 |
exit(bRes) |
75 | 393 |
end; |
369 | 394 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
395 |
if hwRound(Gear^.Y) > pY then inc(GoInfo.FallPix); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
396 |
if TestCollisionYwithGear(Gear, 1) then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
397 |
begin |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1352
diff
changeset
|
398 |
inc(GoInfo.Ticks, 410); |
542 | 399 |
Gear^.State:= Gear^.State and not (gstMoving or gstHHJumping); |
498 | 400 |
Gear^.dY:= _0; |
2695 | 401 |
bRes:= true; |
82 | 402 |
HHJump(AltGear, jmpLJump, GoInfo); // try ljump instead of fall |
2695 | 403 |
exit(bRes) |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
404 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
405 |
continue |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
406 |
end; |
369 | 407 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
2695 | 408 |
if (Gear^.Message and gm_Right )<>0 then Gear^.dX:= cLittle else exit(bRes); |
369 | 409 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
410 |
begin |
498 | 411 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
412 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
413 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
414 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
415 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
416 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
417 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
418 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
419 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
420 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
421 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
422 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
423 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
424 |
|
369 | 425 |
if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
75 | 426 |
begin |
498 | 427 |
Gear^.X:= Gear^.X + int2hwFloat(hwSign(Gear^.dX)); |
75 | 428 |
inc(GoInfo.Ticks, cHHStepTicks) |
429 |
end; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
430 |
if not TestCollisionYwithGear(Gear, 1) then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
431 |
begin |
498 | 432 |
Gear^.Y:= Gear^.Y + _1; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
433 |
if not TestCollisionYwithGear(Gear, 1) then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
434 |
begin |
498 | 435 |
Gear^.Y:= Gear^.Y + _1; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
436 |
if not TestCollisionYwithGear(Gear, 1) then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
437 |
begin |
498 | 438 |
Gear^.Y:= Gear^.Y + _1; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
439 |
if not TestCollisionYwithGear(Gear, 1) then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
440 |
begin |
498 | 441 |
Gear^.Y:= Gear^.Y + _1; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
442 |
if not TestCollisionYwithGear(Gear, 1) then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
443 |
begin |
498 | 444 |
Gear^.Y:= Gear^.Y + _1; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
445 |
if not TestCollisionYwithGear(Gear, 1) then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
446 |
begin |
498 | 447 |
Gear^.Y:= Gear^.Y + _1; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
448 |
if not TestCollisionYwithGear(Gear, 1) then |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
449 |
begin |
498 | 450 |
Gear^.Y:= Gear^.Y - _6; |
451 |
Gear^.dY:= _0; |
|
542 | 452 |
Gear^.State:= Gear^.State or gstMoving |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
453 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
454 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
455 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
456 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
457 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
458 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
459 |
end; |
542 | 460 |
if (pX <> hwRound(Gear^.X)) and ((Gear^.State and gstMoving) = 0) then |
375 | 461 |
exit(true); |
542 | 462 |
until (pX = hwRound(Gear^.X)) and (pY = hwRound(Gear^.Y)) and ((Gear^.State and gstMoving) = 0); |
375 | 463 |
HHJump(AltGear, jmpHJump, GoInfo); |
2695 | 464 |
HHGo:= bRes; |
4 | 465 |
end; |
466 |
||
371 | 467 |
function AIrndSign(num: LongInt): LongInt; |
136 | 468 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
369
diff
changeset
|
469 |
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
|
470 |
else AIrndSign:= - num |
2376 | 471 |
end; |
136 | 472 |
|
3038 | 473 |
procedure initModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
474 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
475 |
friendlyfactor:= 300; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
476 |
KnownExplosion.X:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
477 |
KnownExplosion.Y:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
478 |
KnownExplosion.Radius:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
479 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
480 |
|
3038 | 481 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
482 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
483 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
484 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
485 |
|
4 | 486 |
end. |