author | antonc27 <antonc27@mail.ru> |
Tue, 17 Nov 2015 15:12:24 +0100 | |
branch | ios-revival |
changeset 11407 | 7ed8fa4a2b6a |
parent 11046 | 47a8c19ecb60 |
child 13463 | f1d349a52bc7 |
permissions | -rw-r--r-- |
71 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10015
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 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; |
7161
21a9c70b2070
Name the flags for fall tracking and indicating whether the explosion erases terrain.
nemo
parents:
7154
diff
changeset
|
26 |
|
21a9c70b2070
Name the flags for fall tracking and indicating whether the explosion erases terrain.
nemo
parents:
7154
diff
changeset
|
27 |
afTrackFall = $00000001; |
21a9c70b2070
Name the flags for fall tracking and indicating whether the explosion erases terrain.
nemo
parents:
7154
diff
changeset
|
28 |
afErasesLand = $00000002; |
21a9c70b2070
Name the flags for fall tracking and indicating whether the explosion erases terrain.
nemo
parents:
7154
diff
changeset
|
29 |
afSetSkip = $00000004; |
21a9c70b2070
Name the flags for fall tracking and indicating whether the explosion erases terrain.
nemo
parents:
7154
diff
changeset
|
30 |
|
8013 | 31 |
BadTurn = Low(LongInt) div 4; |
7161
21a9c70b2070
Name the flags for fall tracking and indicating whether the explosion erases terrain.
nemo
parents:
7154
diff
changeset
|
32 |
|
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
33 |
type TTarget = record // starting to look more and more like a gear |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
34 |
Point: TPoint; |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
35 |
Score, Radius: LongInt; |
8969 | 36 |
State: LongWord; |
8952
a6ee1e7310fb
trying to make AI aware of mine/explosive break point. also remove redundant test.
nemo
parents:
8951
diff
changeset
|
37 |
Density: real; |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
38 |
skip, matters, dead: boolean; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
39 |
Kind: TGearType; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
40 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
41 |
TTargets = record |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
42 |
Count: Longword; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
43 |
ar: array[0..Pred(256)] of TTarget; |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
44 |
reset: boolean; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
45 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
46 |
TJumpType = (jmpNone, jmpHJump, jmpLJump); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
47 |
TGoInfo = record |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
48 |
Ticks: Longword; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
49 |
FallPix: Longword; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
50 |
JumpType: TJumpType; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
51 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
52 |
TBonus = record |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
53 |
X, Y: LongInt; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
54 |
Radius: LongInt; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
55 |
Score: LongInt; |
10015 | 56 |
end; |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8013
diff
changeset
|
57 |
|
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
58 |
TBonuses = record |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
59 |
activity: boolean; |
10015 | 60 |
Count : Longword; |
61 |
ar : array[0..Pred(MAXBONUS)] of TBonus; |
|
62 |
end; |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8013
diff
changeset
|
63 |
|
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8013
diff
changeset
|
64 |
Twalkbonuses = record |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8013
diff
changeset
|
65 |
Count: Longword; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8013
diff
changeset
|
66 |
ar: array[0..Pred(MAXBONUS div 8)] of TBonus; // don't use too many |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8013
diff
changeset
|
67 |
end; |
64 | 68 |
|
3038 | 69 |
procedure initModule; |
70 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
71 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
72 |
procedure FillTargets; |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
73 |
procedure ResetTargets; inline; |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
74 |
procedure AddBonus(x, y: LongInt; r: Longword; s: LongInt); inline; |
6888 | 75 |
procedure FillBonuses(isAfterAttack: boolean); |
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
76 |
procedure AwareOfExplosion(x, y, r: LongInt); inline; |
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
77 |
|
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
78 |
function RatePlace(Gear: PGear): LongInt; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
79 |
function TestColl(x, y, r: LongInt): boolean; inline; |
7208
62e36dc45098
Ignore all objects for fall tracing with shove to avoid considering checkins as obstacles. many objects will get knocked by the kick anyway, so end result should be pretty good. Oh, and ditch the sniper rifle doubling.
nemo
parents:
7164
diff
changeset
|
80 |
function TestCollExcludingObjects(x, y, r: LongInt): boolean; inline; |
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
81 |
function TestCollExcludingMe(Me: PGear; x, y, r: LongInt): boolean; inline; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
82 |
|
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
83 |
function RateExplosion(Me: PGear; x, y, r: LongInt): LongInt; inline; |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
84 |
function RateExplosion(Me: PGear; x, y, r: LongInt; Flags: LongWord): LongInt; inline; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
85 |
function RealRateExplosion(Me: PGear; x, y, r: LongInt; Flags: LongWord): LongInt; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
86 |
function RateShove(Me: PGear; x, y, r, power, kick: LongInt; gdX, gdY: real; Flags: LongWord): LongInt; |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
87 |
function RateShotgun(Me: PGear; gdX, gdY: real; x, y: LongInt): LongInt; |
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
88 |
function RateHammer(Me: PGear): LongInt; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
89 |
|
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
90 |
function HHGo(Gear, AltGear: PGear; var GoInfo: TGoInfo): boolean; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
91 |
function AIrndSign(num: LongInt): LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
92 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
93 |
var ThinkingHH: PGear; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
94 |
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
|
95 |
|
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
96 |
bonuses: TBonuses; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
97 |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
8013
diff
changeset
|
98 |
walkbonuses: Twalkbonuses; |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
99 |
|
7471 | 100 |
const KillScore = 200; |
101 |
var friendlyfactor: LongInt = 300; |
|
8884
08fe08651130
set translucency on fruit theme water, clamp size to even number (same sdl window resize) and honouring min size, reduce calls to dmgmod a bit
nemo
parents:
8845
diff
changeset
|
102 |
var dmgMod: real = 1.0; |
7716 | 103 |
|
3370 | 104 |
implementation |
10015 | 105 |
uses uCollisions, uVariables, uUtils, uGearsUtils; |
3370 | 106 |
|
8924 | 107 |
var |
3370 | 108 |
KnownExplosion: record |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
109 |
X, Y, Radius: LongInt |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
110 |
end = (X: 0; Y: 0; Radius: 0); |
4 | 111 |
|
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
112 |
procedure ResetTargets; inline; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
113 |
var i: LongWord; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
114 |
begin |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
115 |
if Targets.reset then |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
116 |
for i:= 0 to Targets.Count do |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
117 |
Targets.ar[i].dead:= false; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
118 |
Targets.reset:= false; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
119 |
end; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
120 |
procedure FillTargets; |
9137
d987230b85ed
fixed all engine compilation hints and notes (that I could see)
sheepluva
parents:
9080
diff
changeset
|
121 |
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
|
122 |
f, e: LongInt; |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
123 |
Gear: PGear; |
4 | 124 |
begin |
125 |
Targets.Count:= 0; |
|
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
126 |
Targets.reset:= false; |
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
|
127 |
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
|
128 |
e:= 0; |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
129 |
Gear:= GearsList; |
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
130 |
while Gear <> nil do |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
131 |
begin |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
132 |
if (((Gear^.Kind = gtHedgehog) and |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
133 |
(Gear <> ThinkingHH) and |
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
134 |
(Gear^.Health > Gear^.Damage) and |
9136 | 135 |
(not Gear^.Hedgehog^.Team^.hasgone)) or |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
136 |
((Gear^.Kind = gtExplosives) and |
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
137 |
(Gear^.Health > Gear^.Damage)) or |
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
138 |
((Gear^.Kind = gtMine) and |
8972
f01b836d702e
I was using this to test firepunching likely duds, but most of the time that would probably just make him bazooka them
nemo
parents:
8971
diff
changeset
|
139 |
(Gear^.Health = 0) and |
f01b836d702e
I was using this to test firepunching likely duds, but most of the time that would probably just make him bazooka them
nemo
parents:
8971
diff
changeset
|
140 |
(Gear^.Damage < 35)) |
10015 | 141 |
) and |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
142 |
(Targets.Count < 256) then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
143 |
begin |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
144 |
with Targets.ar[Targets.Count] do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
145 |
begin |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
146 |
skip:= false; |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
147 |
dead:= false; |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
148 |
Kind:= Gear^.Kind; |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
149 |
Radius:= Gear^.Radius; |
8963
1a8335f0d968
Apply radius consistently. Still doesn't explain AI fail I think, although I can't run it right now.
nemo
parents:
8962
diff
changeset
|
150 |
Density:= hwFloat2Float(Gear^.Density)/3; |
8969 | 151 |
State:= Gear^.State; |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
152 |
matters:= (Gear^.AIHints and aihDoesntMatter) = 0; |
8924 | 153 |
|
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
154 |
Point.X:= hwRound(Gear^.X); |
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
155 |
Point.Y:= hwRound(Gear^.Y); |
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
156 |
if (Gear^.Kind = gtHedgehog) then |
8952
a6ee1e7310fb
trying to make AI aware of mine/explosive break point. also remove redundant test.
nemo
parents:
8951
diff
changeset
|
157 |
begin |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
158 |
if (Gear^.Hedgehog^.Team^.Clan = CurrentTeam^.Clan) then |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
159 |
begin |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
160 |
Score:= Gear^.Damage - Gear^.Health; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
161 |
inc(f) |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
162 |
end |
10015 | 163 |
else |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
164 |
begin |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
165 |
Score:= Gear^.Health - Gear^.Damage; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
166 |
inc(e) |
8952
a6ee1e7310fb
trying to make AI aware of mine/explosive break point. also remove redundant test.
nemo
parents:
8951
diff
changeset
|
167 |
end; |
a6ee1e7310fb
trying to make AI aware of mine/explosive break point. also remove redundant test.
nemo
parents:
8951
diff
changeset
|
168 |
end |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
169 |
else if Gear^.Kind = gtExplosives then |
8963
1a8335f0d968
Apply radius consistently. Still doesn't explain AI fail I think, although I can't run it right now.
nemo
parents:
8962
diff
changeset
|
170 |
Score:= Gear^.Health - Gear^.Damage |
10015 | 171 |
else if Gear^.Kind = gtMine then |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
172 |
Score:= max(0,35-Gear^.Damage); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
173 |
end; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
174 |
inc(Targets.Count) |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
175 |
end; |
8956
e0e914642e73
Also have AI consider mines that will almost certainly be duds by the time he gets to them. I'm mostly using it to test AI behaviour w/ firepunch/whip/bat on a mine-heavy map.
nemo
parents:
8955
diff
changeset
|
176 |
Gear:= Gear^.NextGear |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
177 |
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
|
178 |
|
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
|
179 |
if e > f then friendlyfactor:= 300 + (e - f) * 30 |
5881 | 180 |
else friendlyfactor:= max(30, 300 - f * 80 div max(1,e)) |
4 | 181 |
end; |
182 |
||
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
183 |
procedure AddBonus(x, y: LongInt; r: Longword; s: LongInt); inline; |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6396
diff
changeset
|
184 |
begin |
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
185 |
if(bonuses.Count < MAXBONUS) then |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
186 |
begin |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
187 |
bonuses.ar[bonuses.Count].x:= x; |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
188 |
bonuses.ar[bonuses.Count].y:= y; |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
189 |
bonuses.ar[bonuses.Count].Radius:= r; |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
190 |
bonuses.ar[bonuses.Count].Score:= s; |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
191 |
inc(bonuses.Count); |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
192 |
end; |
6474
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6396
diff
changeset
|
193 |
end; |
42e9773eedfd
- Improve renderer a bit, disallow nested functions
unc0rr
parents:
6396
diff
changeset
|
194 |
|
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
195 |
procedure AddWalkBonus(x, y: LongInt; r: Longword; s: LongInt); inline; |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
196 |
begin |
7378
ac9ce7f033df
Reduce number of walk bonuses further, doubt even 128 are needed. Fix count reset.
nemo
parents:
7375
diff
changeset
|
197 |
if(walkbonuses.Count < MAXBONUS div 8) then |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
198 |
begin |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
199 |
walkbonuses.ar[walkbonuses.Count].x:= x; |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
200 |
walkbonuses.ar[walkbonuses.Count].y:= y; |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
201 |
walkbonuses.ar[walkbonuses.Count].Radius:= r; |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
202 |
walkbonuses.ar[walkbonuses.Count].Score:= s; |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
203 |
inc(walkbonuses.Count); |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
204 |
end; |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
205 |
end; |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
206 |
|
6888 | 207 |
procedure FillBonuses(isAfterAttack: boolean); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
208 |
var Gear: PGear; |
549 | 209 |
MyClan: PClan; |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
210 |
i: Longint; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
211 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
212 |
bonuses.Count:= 0; |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
213 |
bonuses.activity:= false; |
4372 | 214 |
MyClan:= ThinkingHH^.Hedgehog^.Team^.Clan; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
215 |
Gear:= GearsList; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
216 |
while Gear <> nil do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
217 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
218 |
case Gear^.Kind of |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
219 |
gtGrenade |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
220 |
, gtClusterBomb |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
221 |
, gtGasBomb |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
222 |
, gtShell |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
223 |
, gtAirAttack |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
224 |
, gtMortar |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
225 |
, gtWatermelon |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
226 |
, gtDrill |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
227 |
, gtAirBomb |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
228 |
, gtCluster |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
229 |
, gtMelonPiece |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
230 |
, gtMolotov: bonuses.activity:= true; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
231 |
gtCase: |
7433
c7fff3e61d49
- Implement AI land marks which only used to tracks visited areas on the map for now. Significantly reduces wasting of cpu time by AI checking same place several times (10x or even more in rare cases)
unc0rr
parents:
7430
diff
changeset
|
232 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y) + 3, 37, 25); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
233 |
gtFlame: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
234 |
if (Gear^.State and gsttmpFlag) <> 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
235 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 20, -50); |
8924 | 236 |
// avoid mines unless they are very likely to be duds, or are duds. also avoid if they are about to blow |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
237 |
gtMine: begin |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
238 |
if (Gear^.State and gstMoving) <> 0 then bonuses.activity:= true; |
10510 | 239 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
240 |
if ((Gear^.State and gstAttacking) = 0) and (((cMineDudPercent < 90) and (Gear^.Health <> 0)) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
241 |
or (isAfterAttack and (Gear^.Health = 0) and (Gear^.Damage > 30))) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
242 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 50, -50) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
243 |
else if (Gear^.State and gstAttacking) <> 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
244 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 100, -50); // mine is on |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
245 |
end; |
8924 | 246 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
247 |
gtExplosives: |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
248 |
begin |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
249 |
//if (Gear^.State and gstMoving) <> 0 then bonuses.activity:= true; |
8924 | 250 |
|
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
251 |
if isAfterAttack then |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
252 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 75, -60 + Gear^.Health); |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
253 |
end; |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
254 |
|
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
255 |
gtSMine: begin |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
256 |
if (Gear^.State and (gstMoving or gstAttacking)) <> 0 then bonuses.activity:= true; |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
257 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
258 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 50, -30); |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
259 |
end; |
8924 | 260 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
261 |
gtDynamite: |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
262 |
begin |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
263 |
bonuses.activity:= true; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
264 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 150, -75); |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
265 |
end; |
8924 | 266 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
267 |
gtHedgehog: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
268 |
begin |
10510 | 269 |
if (ThinkingHH <> Gear) |
270 |
and (((Gear^.State and (gstMoving or gstDrowning or gstHHDeath)) <> 0) |
|
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
271 |
or (Gear^.Health = 0) |
10510 | 272 |
or (Gear^.Damage >= Gear^.Health)) |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
273 |
then begin |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
274 |
bonuses.activity:= true; |
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
275 |
end; |
10510 | 276 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
277 |
if Gear^.Damage >= Gear^.Health then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
278 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 60, -25) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
279 |
else |
7385
4acb5c021cb9
Don't consider moving hedgehogs in place rating in after attack mode
unc0rr
parents:
7378
diff
changeset
|
280 |
if isAfterAttack |
4acb5c021cb9
Don't consider moving hedgehogs in place rating in after attack mode
unc0rr
parents:
7378
diff
changeset
|
281 |
and (ThinkingHH^.Hedgehog <> Gear^.Hedgehog) |
4acb5c021cb9
Don't consider moving hedgehogs in place rating in after attack mode
unc0rr
parents:
7378
diff
changeset
|
282 |
and ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_1) then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
283 |
if (ClansCount > 2) or (MyClan = Gear^.Hedgehog^.Team^.Clan) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
284 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 150, -3) // hedgehog-friend |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
285 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
286 |
AddBonus(hwRound(Gear^.X), hwRound(Gear^.Y), 100, 3) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
287 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
288 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
289 |
Gear:= Gear^.NextGear |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
290 |
end; |
10164
0570d4b22187
AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents:
10140
diff
changeset
|
291 |
|
71 | 292 |
if isAfterAttack and (KnownExplosion.Radius > 0) then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
293 |
with KnownExplosion do |
74 | 294 |
AddBonus(X, Y, Radius + 10, -Radius); |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
295 |
if isAfterAttack then |
7378
ac9ce7f033df
Reduce number of walk bonuses further, doubt even 128 are needed. Fix count reset.
nemo
parents:
7375
diff
changeset
|
296 |
begin |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
297 |
for i:= 0 to Pred(walkbonuses.Count) do |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
298 |
with walkbonuses.ar[i] do |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
299 |
AddBonus(X, Y, Radius, Score); |
7378
ac9ce7f033df
Reduce number of walk bonuses further, doubt even 128 are needed. Fix count reset.
nemo
parents:
7375
diff
changeset
|
300 |
walkbonuses.Count:= 0 |
ac9ce7f033df
Reduce number of walk bonuses further, doubt even 128 are needed. Fix count reset.
nemo
parents:
7375
diff
changeset
|
301 |
end; |
71 | 302 |
end; |
303 |
||
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
304 |
procedure AwareOfExplosion(x, y, r: LongInt); inline; |
71 | 305 |
begin |
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
306 |
KnownExplosion.X:= x; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
307 |
KnownExplosion.Y:= y; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
308 |
KnownExplosion.Radius:= r |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
309 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
310 |
|
371 | 311 |
function RatePlace(Gear: PGear): LongInt; |
312 |
var i, r: LongInt; |
|
2695 | 313 |
rate: LongInt; |
6778 | 314 |
gX, gY: real; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
315 |
begin |
6778 | 316 |
gX:= hwFloat2Float(Gear^.X); |
317 |
gY:= hwFloat2Float(Gear^.Y); |
|
2695 | 318 |
rate:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
319 |
for i:= 0 to Pred(bonuses.Count) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
320 |
with bonuses.ar[i] do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
321 |
begin |
6778 | 322 |
r:= Radius; |
323 |
if abs(gX-X)+abs(gY-Y) < Radius then |
|
324 |
r:= trunc(sqrt(sqr(gX - X)+sqr(gY - Y))); |
|
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
325 |
if r < 20 then |
6777
fb71556205f4
Avoid local rate minimums around hog (within 15 pixels). Not tested.
unc0rr
parents:
6776
diff
changeset
|
326 |
inc(rate, Score * Radius) |
fb71556205f4
Avoid local rate minimums around hog (within 15 pixels). Not tested.
unc0rr
parents:
6776
diff
changeset
|
327 |
else if r < Radius then |
fb71556205f4
Avoid local rate minimums around hog (within 15 pixels). Not tested.
unc0rr
parents:
6776
diff
changeset
|
328 |
inc(rate, Score * (Radius - r)) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
329 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
330 |
RatePlace:= rate; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
331 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
332 |
|
8845
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
333 |
function CheckBounds(x, y, r: Longint): boolean; inline; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
334 |
begin |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
335 |
CheckBounds := (((x-r) and LAND_WIDTH_MASK) = 0) and |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
336 |
(((x+r) and LAND_WIDTH_MASK) = 0) and |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
337 |
(((y-r) and LAND_HEIGHT_MASK) = 0) and |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
338 |
(((y+r) and LAND_HEIGHT_MASK) = 0); |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
339 |
end; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
340 |
|
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
341 |
|
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
342 |
function TestCollWithEverything(x, y, r: LongInt): boolean; inline; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
343 |
begin |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
344 |
if not CheckBounds(x, y, r) then |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
345 |
exit(false); |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
346 |
|
8958
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
347 |
if (Land[y-r, x-r] <> 0) or |
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
348 |
(Land[y+r, x-r] <> 0) or |
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
349 |
(Land[y-r, x+r] <> 0) or |
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
350 |
(Land[y+r, x+r] <> 0) then |
8845
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
351 |
exit(true); |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
352 |
|
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
353 |
TestCollWithEverything := false; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
354 |
end; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
355 |
|
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
356 |
function TestCollExcludingObjects(x, y, r: LongInt): boolean; inline; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
357 |
begin |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
358 |
if not CheckBounds(x, y, r) then |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
359 |
exit(false); |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
360 |
|
8958
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
361 |
if (Land[y-r, x-r] > lfAllObjMask) or |
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
362 |
(Land[y+r, x-r] > lfAllObjMask) or |
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
363 |
(Land[y-r, x-r] > lfAllObjMask) or |
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
364 |
(Land[y+r, x+r] > lfAllObjMask) then |
8845
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
365 |
exit(true); |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
366 |
|
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
367 |
TestCollExcludingObjects:= false; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
368 |
end; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
369 |
|
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
370 |
function TestColl(x, y, r: LongInt): boolean; inline; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
371 |
begin |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
372 |
if not CheckBounds(x, y, r) then |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
373 |
exit(false); |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
374 |
|
8958
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
375 |
if (Land[y-r, x-r] and lfNotCurrentMask <> 0) or |
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
376 |
(Land[y+r, x-r] and lfNotCurrentMask <> 0) or |
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
377 |
(Land[y+r, x-r] and lfNotCurrentMask <> 0) or |
3818b38d72c0
simplify mine/explosive damage calc. clear dX in stable explosives. remove 0/4096 in trace routines.
nemo
parents:
8957
diff
changeset
|
378 |
(Land[y+r, x+r] and lfNotCurrentMask <> 0) then |
8845
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
379 |
exit(true); |
8924 | 380 |
|
8845
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
381 |
TestColl:= false; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
382 |
end; |
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
383 |
|
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
384 |
|
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
|
385 |
// 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
|
386 |
// Right now, converting to hwFloat is a tad inefficient since the x/y were hwFloat to begin with... |
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
387 |
function TestCollExcludingMe(Me: PGear; x, y, r: LongInt): boolean; inline; |
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
|
388 |
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
|
389 |
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
|
390 |
if ((x and LAND_WIDTH_MASK) = 0) and ((y and LAND_HEIGHT_MASK) = 0) then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
391 |
begin |
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
|
392 |
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
|
393 |
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
|
394 |
// We are still inside the hog. Skip radius test |
8845
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
395 |
if ((sqr(x-MeX) + sqr(y-MeY)) < 256) and (Land[y, x] and lfObjMask = 0) then |
7041 | 396 |
exit(false); |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
397 |
end; |
8845
8cf1ed3bae45
Fix AI collision detection with crates and overlapping hedgehogs. Remove duplicating code
jaree@jaree-VirtualBox
parents:
8810
diff
changeset
|
398 |
TestCollExcludingMe:= TestCollWithEverything(x, y, r) |
7208
62e36dc45098
Ignore all objects for fall tracing with shove to avoid considering checkins as obstacles. many objects will get knocked by the kick anyway, so end result should be pretty good. Oh, and ditch the sniper rifle doubling.
nemo
parents:
7164
diff
changeset
|
399 |
end; |
62e36dc45098
Ignore all objects for fall tracing with shove to avoid considering checkins as obstacles. many objects will get knocked by the kick anyway, so end result should be pretty good. Oh, and ditch the sniper rifle doubling.
nemo
parents:
7164
diff
changeset
|
400 |
|
4 | 401 |
|
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
402 |
|
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
403 |
function TraceFall(eX, eY: LongInt; var x, y: Real; dX, dY: Real; r: LongWord; Target: TTarget): LongInt; |
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
404 |
var skipLandCheck: boolean; |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
405 |
rCorner, dxdy, odX, odY: real; |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
406 |
dmg: LongInt; |
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
407 |
begin |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
408 |
odX:= dX; |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
409 |
odY:= dY; |
6769
44ad49a3a126
Add drowning to grenade too, try some little optimisations
nemo
parents:
6768
diff
changeset
|
410 |
skipLandCheck:= true; |
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
411 |
// ok. attempt approximate search for an unbroken trajectory into water. if it continues far enough, assume out of map |
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
412 |
rCorner:= r * 0.75; |
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
413 |
while true do |
8952
a6ee1e7310fb
trying to make AI aware of mine/explosive break point. also remove redundant test.
nemo
parents:
8951
diff
changeset
|
414 |
begin |
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
415 |
x:= x + dX; |
6768 | 416 |
y:= y + dY; |
417 |
dY:= dY + cGravityf; |
|
6769
44ad49a3a126
Add drowning to grenade too, try some little optimisations
nemo
parents:
6768
diff
changeset
|
418 |
skipLandCheck:= skipLandCheck and (r <> 0) and (abs(eX-x) + abs(eY-y) < r) and ((abs(eX-x) < rCorner) or (abs(eY-y) < rCorner)); |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
419 |
if not skipLandCheck and TestCollExcludingObjects(trunc(x), trunc(y), Target.Radius) then |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
420 |
with Target do |
8952
a6ee1e7310fb
trying to make AI aware of mine/explosive break point. also remove redundant test.
nemo
parents:
8951
diff
changeset
|
421 |
begin |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
422 |
if (Kind = gtHedgehog) and (0.4 < dY) then |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
423 |
begin |
8966
5ab59d79bc9a
remove redundant abs, and some incorrect 1+ to damage
nemo
parents:
8964
diff
changeset
|
424 |
dmg := 1 + trunc((dY - 0.4) * 70); |
5ab59d79bc9a
remove redundant abs, and some incorrect 1+ to damage
nemo
parents:
8964
diff
changeset
|
425 |
exit(dmg) |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
426 |
end |
10015 | 427 |
else |
8952
a6ee1e7310fb
trying to make AI aware of mine/explosive break point. also remove redundant test.
nemo
parents:
8951
diff
changeset
|
428 |
begin |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
429 |
dxdy:= abs(dX)+abs(dY); |
10015 | 430 |
if ((Kind = gtMine) and (dxdy > 0.35)) or |
431 |
((Kind = gtExplosives) and |
|
8969 | 432 |
(((State and gstTmpFlag <> 0) and (dxdy > 0.35)) or |
10015 | 433 |
((State and gstTmpFlag = 0) and |
434 |
((abs(odX) > 0.15) or ((abs(odY) > 0.15) and |
|
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
435 |
(abs(odX) > 0.02))) and (dxdy > 0.35)))) then |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
436 |
begin |
8966
5ab59d79bc9a
remove redundant abs, and some incorrect 1+ to damage
nemo
parents:
8964
diff
changeset
|
437 |
dmg := trunc(dxdy * 25); |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
438 |
exit(dmg) |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
439 |
end |
9136 | 440 |
else if (Kind = gtExplosives) and (not(abs(odX) > 0.15) or ((abs(odY) > 0.15) and (abs(odX) > 0.02))) and (dY > 0.2) then |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
441 |
begin |
8966
5ab59d79bc9a
remove redundant abs, and some incorrect 1+ to damage
nemo
parents:
8964
diff
changeset
|
442 |
dmg := trunc(dy * 70); |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
443 |
exit(dmg) |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
444 |
end |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
445 |
end; |
7041 | 446 |
exit(0) |
8952
a6ee1e7310fb
trying to make AI aware of mine/explosive break point. also remove redundant test.
nemo
parents:
8951
diff
changeset
|
447 |
end; |
10354 | 448 |
if CheckCoordInWater(round(x), round(y)) then exit(-1) |
8952
a6ee1e7310fb
trying to make AI aware of mine/explosive break point. also remove redundant test.
nemo
parents:
8951
diff
changeset
|
449 |
end |
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
450 |
end; |
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
451 |
|
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
452 |
function TraceShoveFall(var x, y: Real; dX, dY: Real; Target: TTarget): LongInt; |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
453 |
var dmg: LongInt; |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
454 |
dxdy, odX, odY: real; |
6770
7d2c6cdb816a
Start on adding drowning bonus to bat/firepunch/whip. AI still is not smart enough to change direction when firepunching to face the water, or change the angle of the bat.
nemo
parents:
6769
diff
changeset
|
455 |
begin |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
456 |
odX:= dX; |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
457 |
odY:= dY; |
7716 | 458 |
//v:= random($FFFFFFFF); |
6770
7d2c6cdb816a
Start on adding drowning bonus to bat/firepunch/whip. AI still is not smart enough to change direction when firepunching to face the water, or change the angle of the bat.
nemo
parents:
6769
diff
changeset
|
459 |
while true do |
8957
bdeb52d57dae
explosive/mine damage for shove fall. AI still seems to refuse to bat dud mines :(
nemo
parents:
8956
diff
changeset
|
460 |
begin |
6770
7d2c6cdb816a
Start on adding drowning bonus to bat/firepunch/whip. AI still is not smart enough to change direction when firepunching to face the water, or change the angle of the bat.
nemo
parents:
6769
diff
changeset
|
461 |
x:= x + dX; |
7d2c6cdb816a
Start on adding drowning bonus to bat/firepunch/whip. AI still is not smart enough to change direction when firepunching to face the water, or change the angle of the bat.
nemo
parents:
6769
diff
changeset
|
462 |
y:= y + dY; |
7d2c6cdb816a
Start on adding drowning bonus to bat/firepunch/whip. AI still is not smart enough to change direction when firepunching to face the water, or change the angle of the bat.
nemo
parents:
6769
diff
changeset
|
463 |
dY:= dY + cGravityf; |
7435
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
464 |
|
8924 | 465 |
{ if ((trunc(y) and LAND_HEIGHT_MASK) = 0) and ((trunc(x) and LAND_WIDTH_MASK) = 0) then |
7210
2ff30b79d2b0
- Adjust some consts so whip and firepunch work perfectly
unc0rr
parents:
7208
diff
changeset
|
466 |
begin |
2ff30b79d2b0
- Adjust some consts so whip and firepunch work perfectly
unc0rr
parents:
7208
diff
changeset
|
467 |
LandPixels[trunc(y), trunc(x)]:= v; |
2ff30b79d2b0
- Adjust some consts so whip and firepunch work perfectly
unc0rr
parents:
7208
diff
changeset
|
468 |
UpdateLandTexture(trunc(X), 1, trunc(Y), 1, true); |
7435
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
469 |
end;} |
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
470 |
|
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
471 |
if TestCollExcludingObjects(trunc(x), trunc(y), Target.Radius) then |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
472 |
with Target do |
8957
bdeb52d57dae
explosive/mine damage for shove fall. AI still seems to refuse to bat dud mines :(
nemo
parents:
8956
diff
changeset
|
473 |
begin |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
474 |
if (Kind = gtHedgehog) and (0.4 < dY) then |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
475 |
begin |
8966
5ab59d79bc9a
remove redundant abs, and some incorrect 1+ to damage
nemo
parents:
8964
diff
changeset
|
476 |
dmg := trunc((dY - 0.4) * 70); |
5ab59d79bc9a
remove redundant abs, and some incorrect 1+ to damage
nemo
parents:
8964
diff
changeset
|
477 |
exit(dmg); |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
478 |
end |
10015 | 479 |
else |
8957
bdeb52d57dae
explosive/mine damage for shove fall. AI still seems to refuse to bat dud mines :(
nemo
parents:
8956
diff
changeset
|
480 |
begin |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
481 |
dxdy:= abs(dX)+abs(dY); |
10015 | 482 |
if ((Kind = gtMine) and (dxdy > 0.4)) or |
483 |
((Kind = gtExplosives) and |
|
8971
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
484 |
(((State and gstTmpFlag <> 0) and (dxdy > 0.4)) or |
10015 | 485 |
((State and gstTmpFlag = 0) and |
486 |
((abs(odX) > 0.15) or ((abs(odY) > 0.15) and |
|
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
487 |
(abs(odX) > 0.02))) and (dxdy > 0.35)))) then |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
488 |
begin |
8971
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
489 |
dmg := trunc(dxdy * 50); |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
490 |
exit(dmg) |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
491 |
end |
9136 | 492 |
else if (Kind = gtExplosives) and (not(abs(odX) > 0.15) or ((abs(odY) > 0.15) and (abs(odX) > 0.02))) and (dY > 0.2) then |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
493 |
begin |
8966
5ab59d79bc9a
remove redundant abs, and some incorrect 1+ to damage
nemo
parents:
8964
diff
changeset
|
494 |
dmg := trunc(dy * 70); |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
495 |
exit(dmg) |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
496 |
end |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
497 |
end; |
7041 | 498 |
exit(0) |
6770
7d2c6cdb816a
Start on adding drowning bonus to bat/firepunch/whip. AI still is not smart enough to change direction when firepunching to face the water, or change the angle of the bat.
nemo
parents:
6769
diff
changeset
|
499 |
end; |
10354 | 500 |
if CheckCoordInWater(round(x), round(y)) then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
501 |
// returning -1 for drowning so it can be considered in the Rate routine |
7041 | 502 |
exit(-1) |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
503 |
end; |
6770
7d2c6cdb816a
Start on adding drowning bonus to bat/firepunch/whip. AI still is not smart enough to change direction when firepunching to face the water, or change the angle of the bat.
nemo
parents:
6769
diff
changeset
|
504 |
end; |
7d2c6cdb816a
Start on adding drowning bonus to bat/firepunch/whip. AI still is not smart enough to change direction when firepunching to face the water, or change the angle of the bat.
nemo
parents:
6769
diff
changeset
|
505 |
|
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
506 |
function RateExplosion(Me: PGear; x, y, r: LongInt): LongInt; inline; |
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
507 |
begin |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
508 |
RateExplosion:= RealRateExplosion(Me, x, y, r, 0); |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
509 |
ResetTargets; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
510 |
end; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
511 |
function RateExplosion(Me: PGear; x, y, r: LongInt; Flags: LongWord): LongInt; inline; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
512 |
begin |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
513 |
RateExplosion:= RealRateExplosion(Me, x, y, r, Flags); |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
514 |
ResetTargets; |
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
515 |
end; |
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6952
diff
changeset
|
516 |
|
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
517 |
function RealRateExplosion(Me: PGear; x, y, r: LongInt; Flags: LongWord): LongInt; |
8951
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
518 |
var i, fallDmg, dmg, dmgBase, rate, subrate, erasure: LongInt; |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
519 |
pX, pY, dX, dY: real; |
8013 | 520 |
hadSkips: boolean; |
4 | 521 |
begin |
6783 | 522 |
fallDmg:= 0; |
2695 | 523 |
rate:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
524 |
// add our virtual position |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
525 |
with Targets.ar[Targets.Count] do |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
526 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
527 |
Point.x:= hwRound(Me^.X); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
528 |
Point.y:= hwRound(Me^.Y); |
8013 | 529 |
skip:= false; |
530 |
matters:= true; |
|
8960 | 531 |
Kind:= gtHedgehog; |
8961 | 532 |
Density:= 1; |
8963
1a8335f0d968
Apply radius consistently. Still doesn't explain AI fail I think, although I can't run it right now.
nemo
parents:
8962
diff
changeset
|
533 |
Radius:= cHHRadius; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
534 |
Score:= - ThinkingHH^.Health |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
535 |
end; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
536 |
// rate explosion |
8013 | 537 |
|
7161
21a9c70b2070
Name the flags for fall tracking and indicating whether the explosion erases terrain.
nemo
parents:
7154
diff
changeset
|
538 |
if (Flags and afErasesLand <> 0) and (GameFlags and gfSolidLand = 0) then erasure:= r |
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
539 |
else erasure:= 0; |
8013 | 540 |
|
541 |
hadSkips:= false; |
|
542 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
543 |
for i:= 0 to Targets.Count do |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
544 |
if not Targets.ar[i].dead then |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
545 |
with Targets.ar[i] do |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
546 |
if not matters then hadSkips:= true |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
547 |
else |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
548 |
begin |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
549 |
dmg:= 0; |
8963
1a8335f0d968
Apply radius consistently. Still doesn't explain AI fail I think, although I can't run it right now.
nemo
parents:
8962
diff
changeset
|
550 |
dmgBase:= r + Radius div 2; |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
551 |
if abs(Point.x - x) + abs(Point.y - y) < dmgBase then |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
552 |
dmg:= trunc(dmgMod * min((dmgBase - trunc(sqrt(sqr(Point.x - x)+sqr(Point.y - y)))) div 2, r)); |
5642 | 553 |
|
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
554 |
if dmg > 0 then |
6767
ccbf07b38a43
First pass at making AI drowning aware. No concerns of performance, only applied to bazooka (not bat/fp etc)
nemo
parents:
6766
diff
changeset
|
555 |
begin |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
556 |
pX:= Point.x; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
557 |
pY:= Point.y; |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
558 |
fallDmg:= 0; |
10635
8e8b320eefad
nil out CurrentHedgehog in FreeModule, add a test for nil'd CurrentHedgehog in DelCI since I'd still like to use DeleteGear for the other stuff it does. Move some variable initialiasations in AI Misc to hopefully avoid some uninit val errors.
nemo
parents:
10510
diff
changeset
|
559 |
dX:= 0; |
8971
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
560 |
if (Flags and afTrackFall <> 0) and (Score > 0) and (dmg < Score) then |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
561 |
begin |
8955 | 562 |
dX:= (0.005 * dmg + 0.01) / Density; |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
563 |
dY:= dX; |
10015 | 564 |
if (Kind = gtExplosives) and (State and gstTmpFlag = 0) and |
10140 | 565 |
(((abs(dY) >= 0.15) and (abs(dX) < 0.02)) or |
8954 | 566 |
((abs(dY) < 0.15) and (abs(dX) < 0.15))) then |
567 |
dX:= 0; |
|
8971
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
568 |
|
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
569 |
if pX - x < 0 then dX:= -dX; |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
570 |
if pY - y < 0 then dY:= -dY; |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
571 |
|
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
572 |
if (x and LAND_WIDTH_MASK = 0) and ((y+cHHRadius+2) and LAND_HEIGHT_MASK = 0) and |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
573 |
(Land[y+cHHRadius+2, x] and lfIndestructible <> 0) then |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
574 |
fallDmg:= trunc(TraceFall(x, y, pX, pY, dX, dY, 0, Targets.ar[i]) * dmgMod) |
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
575 |
else fallDmg:= trunc(TraceFall(x, y, pX, pY, dX, dY, erasure, Targets.ar[i]) * dmgMod) |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
576 |
end; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
577 |
if Kind = gtHedgehog then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
578 |
begin |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
579 |
if fallDmg < 0 then // drowning. score healthier hogs higher, since their death is more likely to benefit the AI |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
580 |
begin |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
581 |
if Score > 0 then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
582 |
inc(rate, (KillScore + Score div 10) * 1024) // Add a bit of a bonus for bigger hog drownings |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
583 |
else |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
584 |
dec(rate, (KillScore * friendlyfactor div 100 - Score div 10) * 1024) // and more of a punishment for drowning bigger friendly hogs |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
585 |
end |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
586 |
else if (dmg+fallDmg) >= abs(Score) then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
587 |
begin |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
588 |
dead:= true; |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
589 |
Targets.reset:= true; |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
590 |
if dX < 0.035 then |
8951
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
591 |
begin |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
592 |
subrate:= RealRateExplosion(Me, round(pX), round(pY), 61, afErasesLand or (Flags and afTrackFall)); |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
593 |
if abs(subrate) > 2000 then inc(Rate,subrate) |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
594 |
end; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
595 |
if Score > 0 then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
596 |
inc(rate, KillScore * 1024 + (dmg + fallDmg)) // tiny bonus for dealing more damage than needed to kill |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
597 |
else dec(rate, KillScore * friendlyfactor div 100 * 1024) |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
598 |
end |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
599 |
else |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
600 |
begin |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
601 |
if Score > 0 then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
602 |
inc(rate, (dmg + fallDmg) * 1024) |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
603 |
else dec(rate, (dmg + fallDmg) * friendlyfactor div 100 * 1024) |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
604 |
end |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
605 |
end |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
606 |
else if (fallDmg >= 0) and ((dmg+fallDmg) >= Score) then |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
607 |
begin |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
608 |
dead:= true; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
609 |
Targets.reset:= true; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
610 |
if Kind = gtExplosives then |
8951
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
611 |
subrate:= RealRateExplosion(Me, round(pX), round(pY), 151, afErasesLand or (Flags and afTrackFall)) |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
612 |
else subrate:= RealRateExplosion(Me, round(pX), round(pY), 101, afErasesLand or (Flags and afTrackFall)); |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
613 |
if abs(subrate) > 2000 then inc(Rate,subrate); |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
614 |
end |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
615 |
end |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
616 |
end; |
8013 | 617 |
|
618 |
if hadSkips and (rate = 0) then |
|
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
619 |
RealRateExplosion:= BadTurn |
8013 | 620 |
else |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
621 |
RealRateExplosion:= rate; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
622 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
623 |
|
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
624 |
function RateShove(Me: PGear; x, y, r, power, kick: LongInt; gdX, gdY: real; Flags: LongWord): LongInt; |
8951
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
625 |
var i, fallDmg, dmg, rate, subrate: LongInt; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
626 |
dX, dY, pX, pY: real; |
79 | 627 |
begin |
6783 | 628 |
fallDmg:= 0; |
7210
2ff30b79d2b0
- Adjust some consts so whip and firepunch work perfectly
unc0rr
parents:
7208
diff
changeset
|
629 |
dX:= gdX * 0.01 * kick; |
2ff30b79d2b0
- Adjust some consts so whip and firepunch work perfectly
unc0rr
parents:
7208
diff
changeset
|
630 |
dY:= gdY * 0.01 * kick; |
2695 | 631 |
rate:= 0; |
433 | 632 |
for i:= 0 to Pred(Targets.Count) do |
79 | 633 |
with Targets.ar[i] do |
8969 | 634 |
if skip then |
635 |
begin |
|
636 |
if Flags and afSetSkip = 0 then skip:= false |
|
637 |
end |
|
638 |
else if matters then |
|
79 | 639 |
begin |
8969 | 640 |
dmg:= 0; |
641 |
if abs(Point.x - x) + abs(Point.y - y) < r then |
|
642 |
dmg:= r - trunc(sqrt(sqr(Point.x - x)+sqr(Point.y - y))); |
|
643 |
||
644 |
if dmg > 0 then |
|
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
645 |
begin |
8969 | 646 |
pX:= Point.x; |
647 |
pY:= Point.y-2; |
|
648 |
fallDmg:= 0; |
|
649 |
if (Flags and afSetSkip <> 0) then skip:= true; |
|
9136 | 650 |
if (not dead) and (Flags and afTrackFall <> 0) and (Score > 0) and (power < Score) then |
10015 | 651 |
if (Kind = gtExplosives) and (State and gstTmpFlag = 0) and |
8971
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
652 |
(((abs(dY) > 0.15) and (abs(dX) < 0.02)) or |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
653 |
((abs(dY) < 0.15) and (abs(dX) < 0.15))) then |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
654 |
fallDmg:= trunc(TraceShoveFall(pX, pY, 0, dY, Targets.ar[i]) * dmgMod) |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
655 |
else |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
656 |
fallDmg:= trunc(TraceShoveFall(pX, pY, dX, dY, Targets.ar[i]) * dmgMod); |
8969 | 657 |
if Kind = gtHedgehog then |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
658 |
begin |
8969 | 659 |
if fallDmg < 0 then // drowning. score healthier hogs higher, since their death is more likely to benefit the AI |
660 |
begin |
|
661 |
if Score > 0 then |
|
662 |
inc(rate, KillScore + Score div 10) // Add a bit of a bonus for bigger hog drownings |
|
663 |
else |
|
664 |
dec(rate, KillScore * friendlyfactor div 100 - Score div 10) // and more of a punishment for drowning bigger friendly hogs |
|
665 |
end |
|
666 |
else if power+fallDmg >= abs(Score) then |
|
667 |
begin |
|
668 |
dead:= true; |
|
669 |
Targets.reset:= true; |
|
670 |
if dX < 0.035 then |
|
671 |
begin |
|
672 |
subrate:= RealRateExplosion(Me, round(pX), round(pY), 61, afErasesLand or afTrackFall); |
|
673 |
if abs(subrate) > 2000 then inc(Rate,subrate div 1024) |
|
674 |
end; |
|
675 |
if Score > 0 then |
|
676 |
inc(rate, KillScore) |
|
677 |
else |
|
678 |
dec(rate, KillScore * friendlyfactor div 100) |
|
679 |
end |
|
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
680 |
else |
8969 | 681 |
begin |
682 |
if Score > 0 then |
|
683 |
inc(rate, power+fallDmg) |
|
684 |
else |
|
685 |
dec(rate, (power+fallDmg) * friendlyfactor div 100) |
|
686 |
end |
|
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
687 |
end |
8969 | 688 |
else if (fallDmg >= 0) and ((dmg+fallDmg) >= Score) then |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
689 |
begin |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
690 |
dead:= true; |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
691 |
Targets.reset:= true; |
8969 | 692 |
if Kind = gtExplosives then |
693 |
subrate:= RealRateExplosion(Me, round(pX), round(pY), 151, afErasesLand or (Flags and afTrackFall)) |
|
694 |
else subrate:= RealRateExplosion(Me, round(pX), round(pY), 101, afErasesLand or (Flags and afTrackFall)); |
|
695 |
if abs(subrate) > 2000 then inc(Rate,subrate div 1024); |
|
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
696 |
end |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
697 |
end |
8969 | 698 |
end; |
8970 | 699 |
RateShove:= rate * 1024; |
700 |
ResetTargets |
|
79 | 701 |
end; |
702 |
||
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
703 |
function RateShotgun(Me: PGear; gdX, gdY: real; x, y: LongInt): LongInt; |
8951
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
704 |
var i, dmg, fallDmg, baseDmg, rate, subrate, erasure: LongInt; |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
705 |
pX, pY, dX, dY: real; |
8013 | 706 |
hadSkips: boolean; |
509 | 707 |
begin |
2695 | 708 |
rate:= 0; |
6776 | 709 |
gdX:= gdX * 0.01; |
710 |
gdY:= gdX * 0.01; |
|
509 | 711 |
// add our virtual position |
712 |
with Targets.ar[Targets.Count] do |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
713 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
714 |
Point.x:= hwRound(Me^.X); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
715 |
Point.y:= hwRound(Me^.Y); |
8013 | 716 |
skip:= false; |
717 |
matters:= true; |
|
8960 | 718 |
Kind:= gtHedgehog; |
8961 | 719 |
Density:= 1; |
8963
1a8335f0d968
Apply radius consistently. Still doesn't explain AI fail I think, although I can't run it right now.
nemo
parents:
8962
diff
changeset
|
720 |
Radius:= cHHRadius; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
721 |
Score:= - ThinkingHH^.Health |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
722 |
end; |
509 | 723 |
// rate shot |
6771 | 724 |
baseDmg:= cHHRadius + cShotgunRadius + 4; |
8013 | 725 |
|
6771 | 726 |
if GameFlags and gfSolidLand = 0 then erasure:= cShotgunRadius |
727 |
else erasure:= 0; |
|
8013 | 728 |
|
729 |
hadSkips:= false; |
|
730 |
||
509 | 731 |
for i:= 0 to Targets.Count do |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
732 |
if not Targets.ar[i].dead then |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
733 |
with Targets.ar[i] do |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
734 |
if not matters then hadSkips:= true |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
735 |
else |
509 | 736 |
begin |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
737 |
dmg:= 0; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
738 |
if abs(Point.x - x) + abs(Point.y - y) < baseDmg then |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
739 |
begin |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
740 |
dmg:= min(baseDmg - trunc(sqrt(sqr(Point.x - x)+sqr(Point.y - y))), 25); |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
741 |
dmg:= trunc(dmg * dmgMod); |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
742 |
end; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
743 |
if dmg > 0 then |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
744 |
begin |
10635
8e8b320eefad
nil out CurrentHedgehog in FreeModule, add a test for nil'd CurrentHedgehog in DelCI since I'd still like to use DeleteGear for the other stuff it does. Move some variable initialiasations in AI Misc to hopefully avoid some uninit val errors.
nemo
parents:
10510
diff
changeset
|
745 |
fallDmg:= 0; |
8e8b320eefad
nil out CurrentHedgehog in FreeModule, add a test for nil'd CurrentHedgehog in DelCI since I'd still like to use DeleteGear for the other stuff it does. Move some variable initialiasations in AI Misc to hopefully avoid some uninit val errors.
nemo
parents:
10510
diff
changeset
|
746 |
pX:= Point.x; |
8e8b320eefad
nil out CurrentHedgehog in FreeModule, add a test for nil'd CurrentHedgehog in DelCI since I'd still like to use DeleteGear for the other stuff it does. Move some variable initialiasations in AI Misc to hopefully avoid some uninit val errors.
nemo
parents:
10510
diff
changeset
|
747 |
pY:= Point.y; |
9136 | 748 |
if (not dead) and (Score > 0) and (dmg < Score) then |
8971
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
749 |
begin |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
750 |
dX:= gdX * dmg / Density; |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
751 |
dY:= gdY * dmg / Density; |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
752 |
if dX < 0 then dX:= dX - 0.01 |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
753 |
else dX:= dX + 0.01; |
10015 | 754 |
if (Kind = gtExplosives) and (State and gstTmpFlag = 0) and |
8971
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
755 |
(((abs(dY) > 0.15) and (abs(dX) < 0.02)) or |
10015 | 756 |
((abs(dY) < 0.15) and (abs(dX) < 0.15))) then |
8971
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
757 |
dX:= 0; |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
758 |
if (x and LAND_WIDTH_MASK = 0) and ((y+cHHRadius+2) and LAND_HEIGHT_MASK = 0) and |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
759 |
(Land[y+cHHRadius+2, x] and lfIndestructible <> 0) then |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
760 |
fallDmg:= trunc(TraceFall(x, y, pX, pY, dX, dY, 0, Targets.ar[i]) * dmgMod) |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
761 |
else fallDmg:= trunc(TraceFall(x, y, pX, pY, dX, dY, erasure, Targets.ar[i]) * dmgMod) |
fcb29a13b1b1
Adjust barrel damage so AI can actually bat to explode them. Fix state flag check. Remove unneeded dmgMod var. Cancel dX for low dX barrel tracing.
nemo
parents:
8970
diff
changeset
|
762 |
end; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
763 |
if Kind = gtHedgehog then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
764 |
begin |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
765 |
if fallDmg < 0 then // drowning. score healthier hogs higher, since their death is more likely to benefit the AI |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
766 |
begin |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
767 |
if Score > 0 then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
768 |
inc(rate, KillScore + Score div 10) // Add a bit of a bonus for bigger hog drownings |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
769 |
else |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
770 |
dec(rate, KillScore * friendlyfactor div 100 - Score div 10) // and more of a punishment for drowning bigger friendly hogs |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
771 |
end |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
772 |
else if (dmg+fallDmg) >= abs(Score) then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
773 |
begin |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
774 |
dead:= true; |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
775 |
Targets.reset:= true; |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
776 |
if dX < 0.035 then |
8951
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
777 |
begin |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
778 |
subrate:= RealRateExplosion(Me, round(pX), round(pY), 61, afErasesLand or afTrackFall); |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
779 |
if abs(subrate) > 2000 then inc(Rate,subrate div 1024) |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
780 |
end; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
781 |
if Score > 0 then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
782 |
inc(rate, KillScore) |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
783 |
else |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
784 |
dec(rate, KillScore * friendlyfactor div 100) |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
785 |
end |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
786 |
else if Score > 0 then |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
787 |
inc(rate, dmg+fallDmg) |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
788 |
else dec(rate, (dmg+fallDmg) * friendlyfactor div 100) |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
789 |
end |
8962
9780e79619ed
So. This at least should make the math more accurate, even if it still doesn't appear to resolve prob w/ AI attacks
nemo
parents:
8961
diff
changeset
|
790 |
else if (fallDmg >= 0) and ((dmg+fallDmg) >= Score) then |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
791 |
begin |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
792 |
dead:= true; |
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
793 |
Targets.reset:= true; |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
794 |
if Kind = gtExplosives then |
8951
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
795 |
subrate:= RealRateExplosion(Me, round(pX), round(pY), 151, afErasesLand or afTrackFall) |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
796 |
else subrate:= RealRateExplosion(Me, round(pX), round(pY), 101, afErasesLand or afTrackFall); |
95dd846caf5d
only rate subs if significant. still very much need correct fall+damage esp given different knocks.
nemo
parents:
8950
diff
changeset
|
797 |
if abs(subrate) > 2000 then inc(Rate,subrate div 1024); |
8939
b26aaf28c920
So. First pass. Add secondary explosions to RateExplosion and RateShotgun. Not yet added to shoves. This is of limited utility at present since the dX has to be small since we can't bother tracing all hog motion. But, should be more useful once shove is added, and tracking of explosives and mines.
nemo
parents:
8924
diff
changeset
|
798 |
end |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
799 |
end |
509 | 800 |
end; |
8013 | 801 |
|
802 |
if hadSkips and (rate = 0) then |
|
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
803 |
RateShotgun:= BadTurn |
8013 | 804 |
else |
8950
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
805 |
RateShotgun:= rate * 1024; |
3bf81ed1f984
Make hogs aware of dud mines and explosives. Still a bit more needed.
nemo
parents:
8939
diff
changeset
|
806 |
ResetTargets; |
509 | 807 |
end; |
808 |
||
5645 | 809 |
function RateHammer(Me: PGear): LongInt; |
810 |
var x, y, i, r, rate: LongInt; |
|
811 |
begin |
|
812 |
// hammer hit shift against attecker hog is 10 |
|
813 |
x:= hwRound(Me^.X) + hwSign(Me^.dX) * 10; |
|
814 |
y:= hwRound(Me^.Y); |
|
815 |
rate:= 0; |
|
816 |
||
817 |
for i:= 0 to Pred(Targets.Count) do |
|
818 |
with Targets.ar[i] do |
|
819 |
// hammer hit radius is 8, shift is 10 |
|
8953
d0e5c1002fe1
ignore non-hedgies here. could be useful, but Hammer needs to be taught to consider it. (hammer + explosives on a bridge could be neat)
nemo
parents:
8952
diff
changeset
|
820 |
if matters and (Kind = gtHedgehog) and (abs(Point.x - x) + abs(Point.y - y) < 18) then |
7279 | 821 |
begin |
6785 | 822 |
r:= trunc(sqrt(sqr(Point.x - x)+sqr(Point.y - y))); |
5645 | 823 |
|
7279 | 824 |
if r <= 18 then |
8924 | 825 |
if Score > 0 then |
7279 | 826 |
inc(rate, Score div 3) |
827 |
else |
|
7285 | 828 |
inc(rate, Score div 3 * friendlyfactor div 100) |
7279 | 829 |
end; |
5645 | 830 |
RateHammer:= rate * 1024; |
831 |
end; |
|
832 |
||
369 | 833 |
function HHJump(Gear: PGear; JumpType: TJumpType; var GoInfo: TGoInfo): boolean; |
371 | 834 |
var bX, bY: LongInt; |
80 | 835 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
836 |
HHJump:= false; |
80 | 837 |
GoInfo.Ticks:= 0; |
838 |
GoInfo.JumpType:= jmpNone; |
|
369 | 839 |
bX:= hwRound(Gear^.X); |
840 |
bY:= hwRound(Gear^.Y); |
|
80 | 841 |
case JumpType of |
7041 | 842 |
jmpNone: exit(false); |
8924 | 843 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
844 |
jmpHJump: |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
845 |
if TestCollisionYwithGear(Gear, -1) = 0 then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
846 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
847 |
Gear^.dY:= -_0_2; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
848 |
SetLittle(Gear^.dX); |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
849 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
850 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
851 |
else |
7041 | 852 |
exit(false); |
8924 | 853 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
854 |
jmpLJump: |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
855 |
begin |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
856 |
if TestCollisionYwithGear(Gear, -1) <> 0 then |
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9137
diff
changeset
|
857 |
if TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) = 0 then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
858 |
Gear^.Y:= Gear^.Y - int2hwFloat(2) |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
859 |
else |
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9137
diff
changeset
|
860 |
if TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) = 0 then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
861 |
Gear^.Y:= Gear^.Y - _1; |
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9137
diff
changeset
|
862 |
if (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) = 0) and |
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9137
diff
changeset
|
863 |
(TestCollisionYwithGear(Gear, -1) = 0) then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
864 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
865 |
Gear^.dY:= -_0_15; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
866 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
867 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
868 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
869 |
else |
7041 | 870 |
exit(false) |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
871 |
end |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
872 |
end; |
2376 | 873 |
|
80 | 874 |
repeat |
8924 | 875 |
{if ((hwRound(Gear^.Y) and LAND_HEIGHT_MASK) = 0) and ((hwRound(Gear^.X) and LAND_WIDTH_MASK) = 0) then |
7435
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
876 |
begin |
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
877 |
LandPixels[hwRound(Gear^.Y), hwRound(Gear^.X)]:= Gear^.Hedgehog^.Team^.Clan^.Color; |
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
878 |
UpdateLandTexture(hwRound(Gear^.X), 1, hwRound(Gear^.Y), 1, true); |
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
879 |
end;} |
8924 | 880 |
|
10354 | 881 |
if CheckCoordInWater(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius) then |
7041 | 882 |
exit(false); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
883 |
if (Gear^.State and gstMoving) <> 0 then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
884 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
885 |
if (GoInfo.Ticks = 350) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
886 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
887 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
888 |
Gear^.dY:= -_0_25; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
889 |
Gear^.dX:= SignAs(_0_02, Gear^.dX) |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
890 |
end; |
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9137
diff
changeset
|
891 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) <> 0 then SetLittle(Gear^.dX); |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
892 |
Gear^.X:= Gear^.X + Gear^.dX; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
893 |
inc(GoInfo.Ticks); |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
894 |
Gear^.dY:= Gear^.dY + cGravity; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
895 |
if Gear^.dY > _0_4 then |
7041 | 896 |
exit(false); |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
897 |
if (Gear^.dY.isNegative) and (TestCollisionYwithGear(Gear, -1) <> 0) then |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
898 |
Gear^.dY:= _0; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
899 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
900 |
if (not Gear^.dY.isNegative) and (TestCollisionYwithGear(Gear, 1) <> 0) then |
7041 | 901 |
begin |
7426
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7385
diff
changeset
|
902 |
Gear^.State:= Gear^.State and (not (gstMoving or gstHHJumping)); |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
903 |
Gear^.dY:= _0; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
904 |
case JumpType of |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
905 |
jmpHJump: |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
906 |
if bY - hwRound(Gear^.Y) > 5 then |
7041 | 907 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
908 |
GoInfo.JumpType:= jmpHJump; |
7041 | 909 |
inc(GoInfo.Ticks, 300 + 300); // 300 before jump, 300 after |
910 |
exit(true) |
|
911 |
end; |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
912 |
jmpLJump: |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
913 |
if abs(bX - hwRound(Gear^.X)) > 30 then |
7041 | 914 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
915 |
GoInfo.JumpType:= jmpLJump; |
7041 | 916 |
inc(GoInfo.Ticks, 300 + 300); // 300 before jump, 300 after |
917 |
exit(true) |
|
918 |
end |
|
919 |
end; |
|
920 |
exit(false) |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
921 |
end; |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
922 |
end; |
369 | 923 |
until false |
80 | 924 |
end; |
925 |
||
369 | 926 |
function HHGo(Gear, AltGear: PGear; var GoInfo: TGoInfo): boolean; |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
927 |
var pX, pY, tY: LongInt; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
928 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6986
diff
changeset
|
929 |
HHGo:= false; |
8751
4609823efc94
More flagging of Land values. Also use less than for tests of non-terrain, instead of "and $FF00 = 0". Saves a couple of ops, which actually matters a small amount in a few places.
nemo
parents:
8744
diff
changeset
|
930 |
Gear^.CollisionMask:= lfNotCurrentMask; |
80 | 931 |
AltGear^:= Gear^; |
932 |
||
75 | 933 |
GoInfo.Ticks:= 0; |
80 | 934 |
GoInfo.FallPix:= 0; |
935 |
GoInfo.JumpType:= jmpNone; |
|
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
936 |
tY:= hwRound(Gear^.Y); |
4 | 937 |
repeat |
8924 | 938 |
{if ((hwRound(Gear^.Y) and LAND_HEIGHT_MASK) = 0) and ((hwRound(Gear^.X) and LAND_WIDTH_MASK) = 0) then |
7435
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
939 |
begin |
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
940 |
LandPixels[hwRound(Gear^.Y), hwRound(Gear^.X)]:= random($FFFFFFFF);//Gear^.Hedgehog^.Team^.Clan^.Color; |
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
941 |
UpdateLandTexture(hwRound(Gear^.X), 1, hwRound(Gear^.Y), 1, true); |
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
942 |
end;} |
bf80e66d6131
Commit commented out code which I used to debug AI walking
unc0rr
parents:
7433
diff
changeset
|
943 |
|
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
944 |
pX:= hwRound(Gear^.X); |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
945 |
pY:= hwRound(Gear^.Y); |
10354 | 946 |
if CheckCoordInWater(pX, pY + cHHRadius) then |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
947 |
begin |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
948 |
if AltGear^.Hedgehog^.BotLevel < 4 then |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
949 |
AddWalkBonus(pX, tY, 250, -40); |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
950 |
exit(false) |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
951 |
end; |
8924 | 952 |
|
953 |
// hog is falling |
|
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
954 |
if (Gear^.State and gstMoving) <> 0 then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
955 |
begin |
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
956 |
inc(GoInfo.Ticks); |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
957 |
Gear^.dY:= Gear^.dY + cGravity; |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
958 |
if Gear^.dY > _0_4 then |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
959 |
begin |
7433
c7fff3e61d49
- Implement AI land marks which only used to tracks visited areas on the map for now. Significantly reduces wasting of cpu time by AI checking same place several times (10x or even more in rare cases)
unc0rr
parents:
7430
diff
changeset
|
960 |
GoInfo.FallPix:= 0; |
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
961 |
// try ljump instead of fall with damage |
8924 | 962 |
HHJump(AltGear, jmpLJump, GoInfo); |
7375
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
963 |
if AltGear^.Hedgehog^.BotLevel < 4 then |
16ae2e1c9005
Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents:
7360
diff
changeset
|
964 |
AddWalkBonus(pX, tY, 175, -20); |
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
965 |
exit(false) |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
966 |
end; |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
967 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
968 |
if hwRound(Gear^.Y) > pY then |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
969 |
inc(GoInfo.FallPix); |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
970 |
if TestCollisionYwithGear(Gear, 1) <> 0 then |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
971 |
begin |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
972 |
inc(GoInfo.Ticks, 410); |
7426
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7385
diff
changeset
|
973 |
Gear^.State:= Gear^.State and (not (gstMoving or gstHHJumping)); |
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
974 |
Gear^.dY:= _0; |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
975 |
// try ljump instead of fall |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
976 |
HHJump(AltGear, jmpLJump, GoInfo); |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
977 |
exit(true) |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
978 |
end; |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
979 |
continue |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
980 |
end; |
7719
eeae1cb6b6bf
Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents:
7716
diff
changeset
|
981 |
|
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
982 |
// usual walk |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
983 |
if (Gear^.Message and gmLeft) <> 0 then |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
984 |
Gear^.dX:= -cLittle |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
985 |
else |
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
986 |
if (Gear^.Message and gmRight) <> 0 then |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
987 |
Gear^.dX:= cLittle |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
988 |
else |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
989 |
exit(false); |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
990 |
|
7719
eeae1cb6b6bf
Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents:
7716
diff
changeset
|
991 |
if MakeHedgehogsStep(Gear) then |
eeae1cb6b6bf
Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents:
7716
diff
changeset
|
992 |
inc(GoInfo.Ticks, cHHStepTicks); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
993 |
|
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
994 |
// we have moved for 1 px |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
995 |
if (pX <> hwRound(Gear^.X)) and ((Gear^.State and gstMoving) = 0) then |
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
996 |
exit(true) |
542 | 997 |
until (pX = hwRound(Gear^.X)) and (pY = hwRound(Gear^.Y)) and ((Gear^.State and gstMoving) = 0); |
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7161
diff
changeset
|
998 |
|
375 | 999 |
HHJump(AltGear, jmpHJump, GoInfo); |
4 | 1000 |
end; |
1001 |
||
371 | 1002 |
function AIrndSign(num: LongInt): LongInt; |
136 | 1003 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
1004 |
if random(2) = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
1005 |
AIrndSign:= num |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
1006 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6474
diff
changeset
|
1007 |
AIrndSign:= - num |
2376 | 1008 |
end; |
136 | 1009 |
|
3038 | 1010 |
procedure initModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
1011 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
1012 |
friendlyfactor:= 300; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
1013 |
KnownExplosion.X:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
1014 |
KnownExplosion.Y:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
1015 |
KnownExplosion.Radius:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
1016 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
1017 |
|
3038 | 1018 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
1019 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
1020 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2695
diff
changeset
|
1021 |
|
4 | 1022 |
end. |