hedgewars/uAI.pas
author sheepluva
Thu, 24 Jun 2021 00:09:30 +0200
changeset 15805 61da40b657fa
parent 15740 0a172cfe8840
permissions -rw-r--r--
hedgewars-engine (rust): ugly+slow impl for returning lib's previews (QTfrontend "compatible")
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 941
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10510
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
    12
 * GNU General Public License for more details.
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
    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: 10098
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2608
diff changeset
    19
{$INCLUDE "options.inc"}
079ef82eac75 revamped file access and debug display
koda
parents: 2608
diff changeset
    20
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    21
unit uAI;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
interface
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 295
diff changeset
    23
uses uFloat;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2608
diff changeset
    24
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    25
procedure initModule;
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    26
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
    27
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
    28
procedure ProcessBot;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    29
procedure FreeActionsList;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    30
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    31
implementation
4377
43945842da0c Haven't found a better place than uIO for OutError
unC0Rr
parents: 4374
diff changeset
    32
uses uConsts, SDLh, uAIMisc, uAIAmmoTests, uAIActions,
11825
bb6503b9847e remove another useless SysUtils include
sheepluva
parents: 11608
diff changeset
    33
    uAmmos, uTypes,
12712
31f7e0a31736 AI player checks if it can use tardis before selecting it
Wuzzy <almikes@aol.com>
parents: 12710
diff changeset
    34
    uVariables, uCommands, uUtils, uDebug, uAILandMarks,
31f7e0a31736 AI player checks if it can use tardis before selecting it
Wuzzy <almikes@aol.com>
parents: 12710
diff changeset
    35
    uGearsUtils;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    36
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    37
var BestActions: TActions;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
    38
    CanUseAmmo: array [TAmmoType] of boolean;
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
    39
    StopThinking: boolean;
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7026
diff changeset
    40
    StartTicks: Longword;
15365
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
    41
    ThreadSem: PSDL_Sem;
599
7c7b90c402d3 Fix THandle -> TThreadID
unc0rr
parents: 553
diff changeset
    42
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    43
procedure FreeActionsList;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    44
begin
7026
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    45
    AddFileLog('FreeActionsList called');
15365
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
    46
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
    47
    StopThinking:= true;
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
    48
    SDL_SemWait(ThreadSem);
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
    49
    SDL_SemPost(ThreadSem);
434
2c6ccce17f39 Many small improvements
unc0rr
parents: 433
diff changeset
    50
11538
00860966354d Fix one more crasher in early freeEverything call
unc0rr
parents: 11532
diff changeset
    51
    if CurrentHedgehog <> nil then
00860966354d Fix one more crasher in early freeEverything call
unc0rr
parents: 11532
diff changeset
    52
        with CurrentHedgehog^ do
00860966354d Fix one more crasher in early freeEverything call
unc0rr
parents: 11532
diff changeset
    53
            if Gear <> nil then
00860966354d Fix one more crasher in early freeEverything call
unc0rr
parents: 11532
diff changeset
    54
                if BotLevel <> 0 then
00860966354d Fix one more crasher in early freeEverything call
unc0rr
parents: 11532
diff changeset
    55
                    StopMessages(Gear^.Message);
740
5ac69a012b69 - Small cleanup
unc0rr
parents: 676
diff changeset
    56
7026
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    57
    BestActions.Count:= 0;
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    58
    BestActions.Pos:= 0
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    59
end;
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    60
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    61
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    62
const cBranchStackSize = 12;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    63
type TStackEntry = record
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    64
                   MadeActions: TActions;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    65
                   Hedgehog: TGear;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    66
                   end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    67
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    68
var Stack: record
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    69
           Count: Longword;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    70
           States: array[0..Pred(cBranchStackSize)] of TStackEntry;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    71
           end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    72
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
    73
function Push(const Actions: TActions; const Me: TGear; Dir: integer): boolean;
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    74
var bRes: boolean;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    75
begin
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    76
    bRes:= (Stack.Count < cBranchStackSize) and (Actions.Count < MAXACTIONS - 5);
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    77
    if bRes then
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    78
        with Stack.States[Stack.Count] do
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    79
            begin
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    80
            MadeActions:= Actions;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    81
            Hedgehog:= Me;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    82
            Hedgehog.Message:= Dir;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    83
            inc(Stack.Count)
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    84
            end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    85
    Push:= bRes
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    86
end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    87
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
    88
procedure Pop(var Actions: TActions; var Me: TGear);
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    89
begin
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    90
    dec(Stack.Count);
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    91
    with Stack.States[Stack.Count] do
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    92
        begin
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    93
        Actions:= MadeActions;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    94
        Me:= Hedgehog
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    95
        end
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    96
end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    97
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    98
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    99
7789
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   100
procedure TestAmmos(var Actions: TActions; Me: PGear; rareChecks: boolean);
3407
dcc129c4352e Engine:
smxx
parents: 3236
diff changeset
   101
var BotLevel: Byte;
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
   102
    ap: TAttackParams;
15691
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   103
    Score, i, l, t, n, dAngle: LongInt;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   104
    a, aa: TAmmoType;
15691
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   105
    useThisActions, hasLowGrav: boolean;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   106
begin
4372
3836973380b9 remove some more PHedgehog casts
nemo
parents: 4368
diff changeset
   107
BotLevel:= Me^.Hedgehog^.BotLevel;
15689
975232e840c7 Rename windSpeed variable to aiWindSpeed
Wuzzy <Wuzzy2@mail.ru>
parents: 15688
diff changeset
   108
aiWindSpeed:= hwFloat2Float(cWindSpeed);
15636
34c32a11203e Teach AI to use laser sight
Wuzzy <Wuzzy2@mail.ru>
parents: 15632
diff changeset
   109
aiLaserSighting:= (cLaserSighting) or (HHHasAmmo(Me^.Hedgehog^, amLaserSight) > 0);
15692
e55c4bad720a AI: Reset remembered gravity on Think and TestAmmos
Wuzzy <Wuzzy2@mail.ru>
parents: 15691
diff changeset
   110
aiGravity:= cGravity;
e55c4bad720a AI: Reset remembered gravity on Think and TestAmmos
Wuzzy <Wuzzy2@mail.ru>
parents: 15691
diff changeset
   111
aiGravityf:= cGravityf;
15740
0a172cfe8840 AI: Don't sacrifice final hog with kami or piano
Wuzzy <Wuzzy2@mail.ru>
parents: 15739
diff changeset
   112
aiHogsInTeam:= CountHogsInTeam(Me, true);
15691
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   113
hasLowGrav:= HHHasAmmo(Me^.Hedgehog^, amLowGravity) > 0;
10098
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   114
useThisActions:= false;
15442
6031c0cfec89 Make sure AI doesn't skip after collecting ammo. Fixes bug 796
Wuzzy <Wuzzy2@mail.ru>
parents: 15365
diff changeset
   115
Me^.AIHints:= Me^.AIHints and (not aihAmmosChanged);
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   116
15691
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   117
for l:= 0 to 1 do // 0 = test with normal gravity. 1 = test with low gravity
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   118
if (l = 0) or ((hasLowGrav) and (not cLowGravity)) then
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   119
begin
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   120
// simulate normal or low gravity
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   121
if (l = 0) then
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   122
    begin
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   123
    aiGravity:= cGravity;
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   124
    aiGravityf:= cGravityf;
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   125
    end
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   126
else if (l = 1) then
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   127
    begin
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   128
    // We calculate the values to better support scripts like Gravity.
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   129
    // This might have a slight inaccuracy, but none have been spotted in testing.
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   130
    aiGravity:= cGravity / _2;
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   131
    aiGravityf:= cGravityf / 2;
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   132
    end;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   133
for i:= 0 to Pred(Targets.Count) do
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   134
    if (Targets.ar[i].Score >= 0) and (not StopThinking) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   135
        begin
6748
9d8763deee42 don't use currenthedgehog
nemo
parents: 6700
diff changeset
   136
        with Me^.Hedgehog^ do
3836
833c0f32e326 Change all use of curslot/idx to CurAmmoType to try and avoid some bugs with use of last weapon.
nemo
parents: 3617
diff changeset
   137
            a:= CurAmmoType;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   138
        aa:= a;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   139
        SDL_delay(0); // hint to let the context switch run
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   140
        repeat
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   141
        if (CanUseAmmo[a])
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   142
            and ((not rareChecks) or ((AmmoTests[a].flags and amtest_Rare) = 0))
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   143
            and ((i = 0) or ((AmmoTests[a].flags and amtest_NoTarget) = 0))
15691
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   144
            and ((l = 0) or ((AmmoTests[a].flags and amtest_NoLowGravity) = 0))
7178
c61cfc9eb29d Don't make unnecessary calls to TestWhip, TestFirePunch, TestBaseballBat and TestHammer functions as they have no need to take Targ parameter into account and thus may only be called once per position
unc0rr
parents: 7164
diff changeset
   145
            then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   146
            begin
3407
dcc129c4352e Engine:
smxx
parents: 3236
diff changeset
   147
{$HINTS OFF}
15524
fbcee515b946 disable fall tracing for cheese. it will probably be incorrect.
nemo
parents: 15442
diff changeset
   148
            Score:= AmmoTests[a].proc(Me, Targets.ar[i], BotLevel, ap, AmmoTests[a].flags);
3407
dcc129c4352e Engine:
smxx
parents: 3236
diff changeset
   149
{$HINTS ON}
10098
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   150
            if (Score > BadTurn) and (Actions.Score + Score > BestActions.Score) then
9003
896c6b21c87f Best level AI should maximize the score at all costs.
unc0rr
parents: 8965
diff changeset
   151
                if (BestActions.Score < 0) or (Actions.Score + Score > BestActions.Score + Byte(BotLevel - 1) * 2048) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   152
                    begin
10510
9329dab04490 some whitespace fixes
sheepluva
parents: 10231
diff changeset
   153
                    if useThisActions then
10098
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   154
                        begin
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   155
                        BestActions.Count:= Actions.Count
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   156
                        end
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   157
                    else
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   158
                        begin
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   159
                        BestActions:= Actions;
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   160
                        BestActions.isWalkingToABetterPlace:= false;
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   161
                        useThisActions:= true
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   162
                        end;
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   163
f00dee04b5d7 - Cut actions array instead of performing full copy, when it is possible
unc0rr
parents: 10084
diff changeset
   164
                    BestActions.Score:= Actions.Score + Score;
194
88652abdce9a Fixed weird bots behavior
unc0rr
parents: 193
diff changeset
   165
15636
34c32a11203e Teach AI to use laser sight
Wuzzy <Wuzzy2@mail.ru>
parents: 15632
diff changeset
   166
                    // if not between shots, activate invulnerability/vampirism/etc. if available
10231
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   167
                    if CurrentHedgehog^.MultiShootAttacks = 0 then
10084
83156a03e574 AI always activates invulnerability and extra damage if it has them
unc0rr
parents: 10015
diff changeset
   168
                        begin
15636
34c32a11203e Teach AI to use laser sight
Wuzzy <Wuzzy2@mail.ru>
parents: 15632
diff changeset
   169
                        if (not cLaserSighting) and (HHHasAmmo(Me^.Hedgehog^, amLaserSight) > 0) and ((AmmoTests[a].flags and amtest_LaserSight) <> 0) then
34c32a11203e Teach AI to use laser sight
Wuzzy <Wuzzy2@mail.ru>
parents: 15632
diff changeset
   170
                            begin
34c32a11203e Teach AI to use laser sight
Wuzzy <Wuzzy2@mail.ru>
parents: 15632
diff changeset
   171
                            AddAction(BestActions, aia_Weapon, Longword(amLaserSight), 80, 0, 0);
34c32a11203e Teach AI to use laser sight
Wuzzy <Wuzzy2@mail.ru>
parents: 15632
diff changeset
   172
                            AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
34c32a11203e Teach AI to use laser sight
Wuzzy <Wuzzy2@mail.ru>
parents: 15632
diff changeset
   173
                            AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
34c32a11203e Teach AI to use laser sight
Wuzzy <Wuzzy2@mail.ru>
parents: 15632
diff changeset
   174
                            end;
15637
fd1a580a35d6 AI: Don't use vamp/invuln for kamikaze, piano and other weapons
Wuzzy <Wuzzy2@mail.ru>
parents: 15636
diff changeset
   175
                        if ((AmmoTests[a].flags and amtest_NoInvulnerable) = 0) and
fd1a580a35d6 AI: Don't use vamp/invuln for kamikaze, piano and other weapons
Wuzzy <Wuzzy2@mail.ru>
parents: 15636
diff changeset
   176
                            (HHHasAmmo(Me^.Hedgehog^, amInvulnerable) > 0) and (Me^.Hedgehog^.Effects[heInvulnerable] = 0) then
10231
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   177
                            begin
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   178
                            AddAction(BestActions, aia_Weapon, Longword(amInvulnerable), 80, 0, 0);
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   179
                            AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   180
                            AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   181
                            end;
15691
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   182
                        if (l = 1) and (hasLowGrav) then
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   183
                            begin
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   184
                            AddAction(BestActions, aia_Weapon, Longword(amLowGravity), 80, 0, 0);
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   185
                            AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   186
                            AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   187
                            end;
12709
8673892ebf24 AI doesn't use extra damage/vampirism/invulnerable again if already active
Wuzzy <almikes@aol.com>
parents: 11825
diff changeset
   188
                        if (HHHasAmmo(Me^.Hedgehog^, amExtraDamage) > 0) and (cDamageModifier <> _1_5) then
10231
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   189
                            begin
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   190
                            AddAction(BestActions, aia_Weapon, Longword(amExtraDamage), 80, 0, 0);
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   191
                            AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
b2a68e75e55c Don't activate invulnerability/vampirism between shots of multiattack weapon
unc0rr
parents: 10164
diff changeset
   192
                            AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
10510
9329dab04490 some whitespace fixes
sheepluva
parents: 10231
diff changeset
   193
                            end;
15637
fd1a580a35d6 AI: Don't use vamp/invuln for kamikaze, piano and other weapons
Wuzzy <Wuzzy2@mail.ru>
parents: 15636
diff changeset
   194
                        if (not cVampiric) and ((AmmoTests[a].flags and amtest_NoVampiric) = 0) and
fd1a580a35d6 AI: Don't use vamp/invuln for kamikaze, piano and other weapons
Wuzzy <Wuzzy2@mail.ru>
parents: 15636
diff changeset
   195
                            (HHHasAmmo(Me^.Hedgehog^, amVampiric) > 0) then
11608
ed70d59479d7 copypasta to make AI use vampirism too
nemo
parents: 11538
diff changeset
   196
                            begin
ed70d59479d7 copypasta to make AI use vampirism too
nemo
parents: 11538
diff changeset
   197
                            AddAction(BestActions, aia_Weapon, Longword(amVampiric), 80, 0, 0);
ed70d59479d7 copypasta to make AI use vampirism too
nemo
parents: 11538
diff changeset
   198
                            AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
ed70d59479d7 copypasta to make AI use vampirism too
nemo
parents: 11538
diff changeset
   199
                            AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
ed70d59479d7 copypasta to make AI use vampirism too
nemo
parents: 11538
diff changeset
   200
                            end;
10084
83156a03e574 AI always activates invulnerability and extra damage if it has them
unc0rr
parents: 10015
diff changeset
   201
                        end;
194
88652abdce9a Fixed weird bots behavior
unc0rr
parents: 193
diff changeset
   202
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   203
                    if (ap.Angle > 0) then
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   204
                        AddAction(BestActions, aia_LookRight, 0, 200, 0, 0)
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   205
                    else if (ap.Angle < 0) then
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   206
                        AddAction(BestActions, aia_LookLeft, 0, 200, 0, 0);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   207
15739
94f4d0a96143 Prevent AI from getting stuck in attempt to look in another direction after choosing bee weapon
unC0Rr
parents: 15707
diff changeset
   208
                    AddAction(BestActions, aia_Weapon, Longword(a), 300 + random(400), 0, 0);
94f4d0a96143 Prevent AI from getting stuck in attempt to look in another direction after choosing bee weapon
unC0Rr
parents: 15707
diff changeset
   209
7790
040fc517fece - Fix desyncs triggered by AI
unc0rr
parents: 7789
diff changeset
   210
                    if (Ammoz[a].Ammo.Propz and ammoprop_Timerable) <> 0 then
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   211
                        AddAction(BestActions, aia_Timer, ap.Time div 1000, 400, 0, 0);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   212
15602
583080b0272b AI: Refactor bounce handling
Wuzzy <Wuzzy2@mail.ru>
parents: 15601
diff changeset
   213
                    if ((Ammoz[a].Ammo.Propz and ammoprop_SetBounce) > 0) and (ap.Bounce > 0) then
15601
30ad3fd974f1 Teach AI to set minimum mine bounce for improved aiming
Wuzzy <Wuzzy2@mail.ru>
parents: 15599
diff changeset
   214
                        begin
30ad3fd974f1 Teach AI to set minimum mine bounce for improved aiming
Wuzzy <Wuzzy2@mail.ru>
parents: 15599
diff changeset
   215
                        AddAction(BestActions, aia_Precise, aim_push, 10, 0, 0);
15602
583080b0272b AI: Refactor bounce handling
Wuzzy <Wuzzy2@mail.ru>
parents: 15601
diff changeset
   216
                        AddAction(BestActions, aia_Timer, ap.Bounce, 200, 0, 0);
15601
30ad3fd974f1 Teach AI to set minimum mine bounce for improved aiming
Wuzzy <Wuzzy2@mail.ru>
parents: 15599
diff changeset
   217
                        AddAction(BestActions, aia_Precise, aim_release, 10, 0, 0);
30ad3fd974f1 Teach AI to set minimum mine bounce for improved aiming
Wuzzy <Wuzzy2@mail.ru>
parents: 15599
diff changeset
   218
                        end;
30ad3fd974f1 Teach AI to set minimum mine bounce for improved aiming
Wuzzy <Wuzzy2@mail.ru>
parents: 15599
diff changeset
   219
15603
ac44dae6425e Teach AI to use drill strike
Wuzzy <Wuzzy2@mail.ru>
parents: 15602
diff changeset
   220
                    if (Ammoz[a].Ammo.Propz and ammoprop_NeedTarget) <> 0 then
ac44dae6425e Teach AI to use drill strike
Wuzzy <Wuzzy2@mail.ru>
parents: 15602
diff changeset
   221
                        begin
ac44dae6425e Teach AI to use drill strike
Wuzzy <Wuzzy2@mail.ru>
parents: 15602
diff changeset
   222
                        AddAction(BestActions, aia_Put, 0, 8, ap.AttackPutX, ap.AttackPutY)
ac44dae6425e Teach AI to use drill strike
Wuzzy <Wuzzy2@mail.ru>
parents: 15602
diff changeset
   223
                        end;
ac44dae6425e Teach AI to use drill strike
Wuzzy <Wuzzy2@mail.ru>
parents: 15602
diff changeset
   224
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   225
                    if (Ammoz[a].Ammo.Propz and ammoprop_NoCrosshair) = 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   226
                        begin
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   227
                        dAngle:= LongInt(Me^.Angle) - Abs(ap.Angle);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   228
                        if dAngle > 0 then
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   229
                            begin
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   230
                            AddAction(BestActions, aia_Up, aim_push, 300 + random(250), 0, 0);
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   231
                            AddAction(BestActions, aia_Up, aim_release, dAngle, 0, 0)
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   232
                            end
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   233
                        else if dAngle < 0 then
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   234
                            begin
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   235
                            AddAction(BestActions, aia_Down, aim_push, 300 + random(250), 0, 0);
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   236
                            AddAction(BestActions, aia_Down, aim_release, -dAngle, 0, 0)
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   237
                            end
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   238
                        end;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   239
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   240
                    if (Ammoz[a].Ammo.Propz and ammoprop_OscAim) <> 0 then
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   241
                        begin
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   242
                        AddAction(BestActions, aia_attack, aim_push, 350 + random(200), 0, 0);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   243
                        AddAction(BestActions, aia_attack, aim_release, 1, 0, 0);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   244
7453
unc0rr
parents: 7450
diff changeset
   245
                        if abs(ap.Angle) > 32 then
7450
4be946b65a85 Fix edge case problems with sniper rifle
unc0rr
parents: 7446
diff changeset
   246
                           begin
4be946b65a85 Fix edge case problems with sniper rifle
unc0rr
parents: 7446
diff changeset
   247
                           AddAction(BestActions, aia_Down, aim_push, 100 + random(150), 0, 0);
4be946b65a85 Fix edge case problems with sniper rifle
unc0rr
parents: 7446
diff changeset
   248
                           AddAction(BestActions, aia_Down, aim_release, 32, 0, 0);
4be946b65a85 Fix edge case problems with sniper rifle
unc0rr
parents: 7446
diff changeset
   249
                           end;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   250
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   251
                        AddAction(BestActions, aia_waitAngle, ap.Angle, 250, 0, 0);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   252
                        AddAction(BestActions, aia_attack, aim_push, 1, 0, 0);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   253
                        AddAction(BestActions, aia_attack, aim_release, 1, 0, 0);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   254
                        end else
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   255
                        if (Ammoz[a].Ammo.Propz and ammoprop_AttackingPut) = 0 then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   256
                            begin
9495
2fc346fadae3 - AI quickly shoots with desert eagle till hits the target
unc0rr
parents: 9317
diff changeset
   257
                            if (AmmoTests[a].flags and amtest_MultipleAttacks) = 0 then
2fc346fadae3 - AI quickly shoots with desert eagle till hits the target
unc0rr
parents: 9317
diff changeset
   258
                                n:= 1 else n:= ap.AttacksNum;
2fc346fadae3 - AI quickly shoots with desert eagle till hits the target
unc0rr
parents: 9317
diff changeset
   259
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   260
                            AddAction(BestActions, aia_attack, aim_push, 650 + random(300), 0, 0);
15686
034955e721a1 AI: Teach how to use resurrector fast
Wuzzy <Wuzzy2@mail.ru>
parents: 15681
diff changeset
   261
                            if (a = amResurrector) and (BotLevel < 4) then
034955e721a1 AI: Teach how to use resurrector fast
Wuzzy <Wuzzy2@mail.ru>
parents: 15681
diff changeset
   262
                                AddAction(BestActions, aia_Up, aim_push, 1, 0, 0);
9495
2fc346fadae3 - AI quickly shoots with desert eagle till hits the target
unc0rr
parents: 9317
diff changeset
   263
                            for t:= 2 to n do
2fc346fadae3 - AI quickly shoots with desert eagle till hits the target
unc0rr
parents: 9317
diff changeset
   264
                                begin
2fc346fadae3 - AI quickly shoots with desert eagle till hits the target
unc0rr
parents: 9317
diff changeset
   265
                                AddAction(BestActions, aia_attack, aim_push, 150, 0, 0);
2fc346fadae3 - AI quickly shoots with desert eagle till hits the target
unc0rr
parents: 9317
diff changeset
   266
                                AddAction(BestActions, aia_attack, aim_release, ap.Power, 0, 0);
2fc346fadae3 - AI quickly shoots with desert eagle till hits the target
unc0rr
parents: 9317
diff changeset
   267
                                end;
15686
034955e721a1 AI: Teach how to use resurrector fast
Wuzzy <Wuzzy2@mail.ru>
parents: 15681
diff changeset
   268
                            if (a = amResurrector) and (BotLevel < 4) then
15707
26c6e5325075 Fix AI sometimes using up all health in resurrector
Wuzzy <Wuzzy2@mail.ru>
parents: 15692
diff changeset
   269
                                begin
15686
034955e721a1 AI: Teach how to use resurrector fast
Wuzzy <Wuzzy2@mail.ru>
parents: 15681
diff changeset
   270
                                AddAction(BestActions, aia_Up, aim_release, ap.Power, 0, 0);
15707
26c6e5325075 Fix AI sometimes using up all health in resurrector
Wuzzy <Wuzzy2@mail.ru>
parents: 15692
diff changeset
   271
                                AddAction(BestActions, aia_attack, aim_release, 0, 0, 0);
26c6e5325075 Fix AI sometimes using up all health in resurrector
Wuzzy <Wuzzy2@mail.ru>
parents: 15692
diff changeset
   272
                                end
26c6e5325075 Fix AI sometimes using up all health in resurrector
Wuzzy <Wuzzy2@mail.ru>
parents: 15692
diff changeset
   273
                            else
26c6e5325075 Fix AI sometimes using up all health in resurrector
Wuzzy <Wuzzy2@mail.ru>
parents: 15692
diff changeset
   274
                                AddAction(BestActions, aia_attack, aim_release, ap.Power, 0, 0);
15688
31ca6451056a AI: 0.01% chance to use kamikaze with "wishes" ;-)
Wuzzy <Wuzzy2@mail.ru>
parents: 15686
diff changeset
   275
31ca6451056a AI: 0.01% chance to use kamikaze with "wishes" ;-)
Wuzzy <Wuzzy2@mail.ru>
parents: 15686
diff changeset
   276
                            // Just for fun: 0.01% chance for kamikaze with "wishes" ;-)
31ca6451056a AI: 0.01% chance to use kamikaze with "wishes" ;-)
Wuzzy <Wuzzy2@mail.ru>
parents: 15686
diff changeset
   277
                            if (a = amKamikaze) and (random(10000) = 0) then
31ca6451056a AI: 0.01% chance to use kamikaze with "wishes" ;-)
Wuzzy <Wuzzy2@mail.ru>
parents: 15686
diff changeset
   278
                                begin
31ca6451056a AI: 0.01% chance to use kamikaze with "wishes" ;-)
Wuzzy <Wuzzy2@mail.ru>
parents: 15686
diff changeset
   279
                                AddAction(BestActions, aia_Switch, 0, 1, 0, 0);
31ca6451056a AI: 0.01% chance to use kamikaze with "wishes" ;-)
Wuzzy <Wuzzy2@mail.ru>
parents: 15686
diff changeset
   280
                                AddAction(BestActions, aia_Precise, aim_push, 1, 0, 0);
31ca6451056a AI: 0.01% chance to use kamikaze with "wishes" ;-)
Wuzzy <Wuzzy2@mail.ru>
parents: 15686
diff changeset
   281
                                AddAction(BestActions, aia_Precise, aim_release, 5000, 0, 0);
31ca6451056a AI: 0.01% chance to use kamikaze with "wishes" ;-)
Wuzzy <Wuzzy2@mail.ru>
parents: 15686
diff changeset
   282
                                end;
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   283
                            end;
7416
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7375
diff changeset
   284
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7375
diff changeset
   285
                    if (Ammoz[a].Ammo.Propz and ammoprop_Track) <> 0 then
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7375
diff changeset
   286
                        begin
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7375
diff changeset
   287
                        AddAction(BestActions, aia_waitAmmoXY, 0, 12, ap.ExplX, ap.ExplY);
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7375
diff changeset
   288
                        AddAction(BestActions, aia_attack, aim_push, 1, 0, 0);
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7375
diff changeset
   289
                        AddAction(BestActions, aia_attack, aim_release, 7, 0, 0);
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7375
diff changeset
   290
                        end;
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7375
diff changeset
   291
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   292
                    if ap.ExplR > 0 then
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   293
                        AddAction(BestActions, aia_AwareExpl, ap.ExplR, 10, ap.ExplX, ap.ExplY);
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   294
                    end
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   295
            end;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   296
        if a = High(TAmmoType) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   297
            a:= Low(TAmmoType)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   298
        else inc(a)
7178
c61cfc9eb29d Don't make unnecessary calls to TestWhip, TestFirePunch, TestBaseballBat and TestHammer functions as they have no need to take Targ parameter into account and thus may only be called once per position
unc0rr
parents: 7164
diff changeset
   299
        until (a = aa) or (CurrentHedgehog^.MultiShootAttacks > 0) {shooting same weapon}
c61cfc9eb29d Don't make unnecessary calls to TestWhip, TestFirePunch, TestBaseballBat and TestHammer functions as they have no need to take Targ parameter into account and thus may only be called once per position
unc0rr
parents: 7164
diff changeset
   300
            or StopThinking
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   301
        end
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   302
end;
15692
e55c4bad720a AI: Reset remembered gravity on Think and TestAmmos
Wuzzy <Wuzzy2@mail.ru>
parents: 15691
diff changeset
   303
aiGravity:= cGravity;
e55c4bad720a AI: Reset remembered gravity on Think and TestAmmos
Wuzzy <Wuzzy2@mail.ru>
parents: 15691
diff changeset
   304
aiGravityf:= cGravityf;
15691
c6675acd3c82 AI: Teach AI to use low gravity
Wuzzy <Wuzzy2@mail.ru>
parents: 15690
diff changeset
   305
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   306
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   307
procedure Walk(Me: PGear; var Actions: TActions);
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: 7416
diff changeset
   308
const FallPixForBranching = cHHRadius;
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   309
var
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   310
    maxticks, oldticks, steps, tmp: Longword;
15599
dc62f1c13bb2 Teach AI to spam extra time if infinite
Wuzzy <Wuzzy2@mail.ru>
parents: 15524
diff changeset
   311
    BaseRate, BestRate, Rate, i: LongInt;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   312
    GoInfo: TGoInfo;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   313
    CanGo: boolean;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   314
    AltMe: TGear;
3407
dcc129c4352e Engine:
smxx
parents: 3236
diff changeset
   315
    BotLevel: Byte;
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   316
    a: TAmmoType;
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   317
    isAfterAttack: boolean;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   318
begin
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   319
Actions.ticks:= 0;
7789
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   320
oldticks:= 0; // avoid compiler hint
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   321
Stack.Count:= 0;
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   322
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   323
clearAllMarks;
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   324
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   325
for a:= Low(TAmmoType) to High(TAmmoType) do
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: 6748
diff changeset
   326
    CanUseAmmo[a]:= Assigned(AmmoTests[a].proc) and (HHHasAmmo(Me^.Hedgehog^, a) > 0);
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   327
4372
3836973380b9 remove some more PHedgehog casts
nemo
parents: 4368
diff changeset
   328
BotLevel:= Me^.Hedgehog^.BotLevel;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   329
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   330
isAfterAttack:= ((Me^.State and gstAttacked) <> 0) and ((GameFlags and gfInfAttack) = 0);
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   331
if isAfterAttack then
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   332
    maxticks:= Max(0, TurnTimeLeft - 500)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   333
else
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   334
    maxticks:= Max(0, TurnTimeLeft - 5000 - LongWord(4000 * BotLevel));
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   335
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   336
if not isAfterAttack then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   337
    TestAmmos(Actions, Me, false);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   338
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   339
BestRate:= RatePlace(Me);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents: 4373
diff changeset
   340
BaseRate:= Max(BestRate, 0);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   341
15681
a92220611821 AI: Switch to amNothing instead of amSkip to unselect weapon
Wuzzy <Wuzzy2@mail.ru>
parents: 15637
diff changeset
   342
// unselect weapon if we cannot move because of mouse cursor being shown
5148
73b3b4b8359c Make AI switch to amNothing before trying to walk if it holds weapon which needs targeting (not tested)
unc0rr
parents: 4976
diff changeset
   343
if (Ammoz[Me^.Hedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) <> 0 then
15681
a92220611821 AI: Switch to amNothing instead of amSkip to unselect weapon
Wuzzy <Wuzzy2@mail.ru>
parents: 15637
diff changeset
   344
    AddAction(Actions, aia_Weapon, Longword(amNothing), 100 + random(200), 0, 0);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   345
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   346
if ((CurrentHedgehog^.MultiShootAttacks = 0) or ((Ammoz[Me^.Hedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NoMoveAfter) = 0))
15690
c4d7eb75fd8a AI: Add aiGravity and aiGravityf variables
Wuzzy <Wuzzy2@mail.ru>
parents: 15689
diff changeset
   347
    and (CurrentHedgehog^.Effects[heArtillery] = 0) and (aiGravityf <> 0) then
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   348
    begin
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   349
    tmp:= random(2) + 1;
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   350
    Push(Actions, Me^, tmp);
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   351
    Push(Actions, Me^, tmp xor 3);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   352
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   353
    while (Stack.Count > 0) and (not StopThinking) do
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   354
        begin
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   355
        Pop(Actions, Me^);
193
56885ea29202 Fix bots regressions
unc0rr
parents: 191
diff changeset
   356
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   357
        AddAction(Actions, Me^.Message, aim_push, 250, 0, 0);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   358
        if (Me^.Message and gmLeft) <> 0 then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   359
            AddAction(Actions, aia_WaitXL, hwRound(Me^.X), 0, 0, 0)
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   360
        else
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   361
            AddAction(Actions, aia_WaitXR, hwRound(Me^.X), 0, 0, 0);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   362
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   363
        steps:= 0;
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   364
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   365
        while (not StopThinking) do
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   366
            begin
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   367
    {$HINTS OFF}
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   368
            CanGo:= HHGo(Me, @AltMe, GoInfo);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   369
    {$HINTS ON}
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   370
            oldticks:= Actions.ticks;
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   371
            inc(Actions.ticks, GoInfo.Ticks);
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   372
            if (Actions.ticks > maxticks) or (TurnTimeLeft < BestActions.ticks + 5000) then
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   373
            begin
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   374
                if (BotLevel < 5)
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   375
                        and (not isAfterAttack)
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   376
                        and (BestActions.Score > 0) // we have a good move
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   377
                        and (TurnTimeLeft < BestActions.ticks + 5000) // we won't have a lot of time after attack
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   378
                        and (HHHasAmmo(Me^.Hedgehog^, amExtraTime) > 0) // but can use extra time
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   379
                then
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   380
                begin
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   381
                    BestActions.Count:= 0;
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   382
                    AddAction(BestActions, aia_Weapon, Longword(amExtraTime), 80, 0, 0);
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   383
                    AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   384
                    AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
15599
dc62f1c13bb2 Teach AI to spam extra time if infinite
Wuzzy <Wuzzy2@mail.ru>
parents: 15524
diff changeset
   385
                    // Better bot levels know they can spam extra time if infinite
dc62f1c13bb2 Teach AI to spam extra time if infinite
Wuzzy <Wuzzy2@mail.ru>
parents: 15524
diff changeset
   386
                    if (BotLevel < 3) and (HHHasAmmo(Me^.Hedgehog^, amExtraTime) = AMMO_INFINITE) then
dc62f1c13bb2 Teach AI to spam extra time if infinite
Wuzzy <Wuzzy2@mail.ru>
parents: 15524
diff changeset
   387
                        for i:= 1 to 3 do
dc62f1c13bb2 Teach AI to spam extra time if infinite
Wuzzy <Wuzzy2@mail.ru>
parents: 15524
diff changeset
   388
                            begin
dc62f1c13bb2 Teach AI to spam extra time if infinite
Wuzzy <Wuzzy2@mail.ru>
parents: 15524
diff changeset
   389
                            AddAction(BestActions, aia_attack, aim_push, 100, 0, 0);
dc62f1c13bb2 Teach AI to spam extra time if infinite
Wuzzy <Wuzzy2@mail.ru>
parents: 15524
diff changeset
   390
                            AddAction(BestActions, aia_attack, aim_release, 100, 0, 0);
dc62f1c13bb2 Teach AI to spam extra time if infinite
Wuzzy <Wuzzy2@mail.ru>
parents: 15524
diff changeset
   391
                            end;
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   392
                end;
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   393
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   394
                break;
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   395
            end;
194
88652abdce9a Fixed weird bots behavior
unc0rr
parents: 193
diff changeset
   396
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   397
            if (BotLevel < 5)
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   398
                and (GoInfo.JumpType = jmpHJump)
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   399
                and (not checkMark(hwRound(Me^.X), hwRound(Me^.Y), markHJumped))
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   400
                then // hjump support
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   401
                begin
7446
9ce6e2c35413 No more AI jumping lulz
unc0rr
parents: 7437
diff changeset
   402
                // check if we could go backwards and maybe ljump over a gap after this hjump
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   403
                addMark(hwRound(Me^.X), hwRound(Me^.Y), markHJumped);
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   404
                if Push(Actions, AltMe, Me^.Message xor 3) then
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: 7416
diff changeset
   405
                    begin
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   406
                    with Stack.States[Pred(Stack.Count)] do
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   407
                        begin
8036
89740f927254 Don't rely on hedgehog facing direction, check intentions instead. Should fix excessive turns around and weird jumps to water
unc0rr
parents: 8017
diff changeset
   408
                        if (Me^.Message and gmLeft) <> 0 then
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   409
                            AddAction(MadeActions, aia_LookRight, 0, 200, 0, 0)
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   410
                        else
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   411
                            AddAction(MadeActions, aia_LookLeft, 0, 200, 0, 0);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   412
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   413
                        AddAction(MadeActions, aia_HJump, 0, 305 + random(50), 0, 0);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   414
                        AddAction(MadeActions, aia_HJump, 0, 350, 0, 0);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   415
                        end;
7446
9ce6e2c35413 No more AI jumping lulz
unc0rr
parents: 7437
diff changeset
   416
                    // but first check walking forward
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   417
                    Push(Stack.States[Pred(Stack.Count)].MadeActions, AltMe, Me^.Message)
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: 7416
diff changeset
   418
                    end;
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   419
                end;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   420
            if (BotLevel < 3)
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   421
                and (GoInfo.JumpType = jmpLJump)
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   422
                and (not checkMark(hwRound(Me^.X), hwRound(Me^.Y), markLJumped))
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   423
                then // ljump support
7250
304d3d98662e AI loves to jump
unc0rr
parents: 7216
diff changeset
   424
                begin
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   425
                addMark(hwRound(Me^.X), hwRound(Me^.Y), markLJumped);
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: 7416
diff changeset
   426
                // at final check where we go after jump walking backward
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   427
                if Push(Actions, AltMe, Me^.Message xor 3) then
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: 7416
diff changeset
   428
                    with Stack.States[Pred(Stack.Count)] do
8017
70d386de989f Some tweaks to AI
unc0rr
parents: 7790
diff changeset
   429
                        begin
8036
89740f927254 Don't rely on hedgehog facing direction, check intentions instead. Should fix excessive turns around and weird jumps to water
unc0rr
parents: 8017
diff changeset
   430
                        if (Me^.Message and gmLeft) <> 0 then
8017
70d386de989f Some tweaks to AI
unc0rr
parents: 7790
diff changeset
   431
                            AddAction(MadeActions, aia_LookLeft, 0, 200, 0, 0)
70d386de989f Some tweaks to AI
unc0rr
parents: 7790
diff changeset
   432
                        else
70d386de989f Some tweaks to AI
unc0rr
parents: 7790
diff changeset
   433
                            AddAction(MadeActions, aia_LookRight, 0, 200, 0, 0);
70d386de989f Some tweaks to AI
unc0rr
parents: 7790
diff changeset
   434
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: 7416
diff changeset
   435
                        AddAction(MadeActions, aia_LJump, 0, 305 + random(50), 0, 0);
8017
70d386de989f Some tweaks to AI
unc0rr
parents: 7790
diff changeset
   436
                        end;
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: 7416
diff changeset
   437
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: 7416
diff changeset
   438
                // push current position so we proceed from it after checking jump+forward walk opportunities
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   439
                if CanGo then Push(Actions, Me^, Me^.Message);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   440
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: 7416
diff changeset
   441
                // first check where we go after jump walking forward
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   442
                if Push(Actions, AltMe, Me^.Message) then
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   443
                    with Stack.States[Pred(Stack.Count)] do
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   444
                        AddAction(MadeActions, aia_LJump, 0, 305 + random(50), 0, 0);
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   445
7250
304d3d98662e AI loves to jump
unc0rr
parents: 7216
diff changeset
   446
                break
304d3d98662e AI loves to jump
unc0rr
parents: 7216
diff changeset
   447
                end;
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   448
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   449
            // 'not CanGO' means we cannot go straight, possible jumps are checked above
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   450
            if not CanGo then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   451
                break;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   452
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   453
             inc(steps);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   454
             Actions.actions[Pred(Actions.Count)].Param:= hwRound(Me^.X);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   455
             Rate:= RatePlace(Me);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   456
             if Rate > BestRate then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   457
                begin
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   458
                BestActions:= Actions;
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   459
                BestActions.isWalkingToABetterPlace:= true;
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   460
                BestRate:= Rate;
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   461
                isAfterAttack:= true // we have better place, go there and do not use ammo
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   462
                end
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   463
            else if Rate < BestRate then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   464
                break;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   465
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   466
            if (not isAfterAttack) and ((steps mod 4) = 0) then
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: 7416
diff changeset
   467
                begin
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   468
                if (steps > 4) and checkMark(hwRound(Me^.X), hwRound(Me^.Y), markWalkedHere) then
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   469
                    break;
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   470
                addMark(hwRound(Me^.X), hwRound(Me^.Y), markWalkedHere);
7789
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   471
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   472
                TestAmmos(Actions, Me, Actions.ticks shr 12 = oldticks shr 12);
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: 7416
diff changeset
   473
                end;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   474
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   475
            if GoInfo.FallPix >= FallPixForBranching then
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   476
                Push(Actions, Me^, Me^.Message xor 3); // aia_Left xor 3 = aia_Right
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   477
            end {while};
193
56885ea29202 Fix bots regressions
unc0rr
parents: 191
diff changeset
   478
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   479
        if BestRate > BaseRate then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   480
            exit
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: 7132
diff changeset
   481
        end {while}
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   482
    end {if}
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   483
end;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   484
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   485
function Think(Me: PGear): LongInt; cdecl; export;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   486
var BackMe, WalkMe: TGear;
6992
b8f3d8991e92 marked a couple of functions as inline
koda
parents: 6982
diff changeset
   487
    switchCount: LongInt;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   488
    currHedgehogIndex, itHedgehog, switchesNum, i: Longword;
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: 6748
diff changeset
   489
    switchImmediatelyAvailable: boolean;
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   490
    Actions: TActions;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   491
begin
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: 8865
diff changeset
   492
dmgMod:= 0.01 * hwFloat2Float(cDamageModifier) * cDamagePercent;
15692
e55c4bad720a AI: Reset remembered gravity on Think and TestAmmos
Wuzzy <Wuzzy2@mail.ru>
parents: 15691
diff changeset
   493
aiGravity:= cGravity;
e55c4bad720a AI: Reset remembered gravity on Think and TestAmmos
Wuzzy <Wuzzy2@mail.ru>
parents: 15691
diff changeset
   494
aiGravityf:= cGravityf;
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   495
StartTicks:= GameTicks;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   496
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   497
currHedgehogIndex:= CurrentTeam^.CurrHedgehog;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   498
itHedgehog:= currHedgehogIndex;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   499
switchesNum:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   500
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   501
switchImmediatelyAvailable:= (CurAmmoGear <> nil) and (CurAmmoGear^.Kind = gtSwitcher);
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   502
if Me^.Hedgehog^.BotLevel <> 5 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: 7250
diff changeset
   503
    switchCount:= HHHasAmmo(PGear(Me)^.Hedgehog^, amSwitch)
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: 7250
diff changeset
   504
else switchCount:= 0;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   505
15442
6031c0cfec89 Make sure AI doesn't skip after collecting ammo. Fixes bug 796
Wuzzy <Wuzzy2@mail.ru>
parents: 15365
diff changeset
   506
if ((Me^.State and gstAttacked) = 0) or isInMultiShoot or bonuses.activity or ((Me^.AIHints and aihAmmosChanged) <> 0) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   507
    if Targets.Count > 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   508
        begin
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   509
        // iterate over current team hedgehogs
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   510
        repeat
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   511
            WalkMe:= CurrentTeam^.Hedgehogs[itHedgehog].Gear^;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   512
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   513
            Actions.Count:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   514
            Actions.Pos:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   515
            Actions.Score:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   516
            if switchesNum > 0 then
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   517
                begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   518
                if (not switchImmediatelyAvailable)  then
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   519
                    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: 6748
diff changeset
   520
                    // when AI has to use switcher, make it cost smth unless they have a lot of switches
6992
b8f3d8991e92 marked a couple of functions as inline
koda
parents: 6982
diff changeset
   521
                    if (switchCount < 10) then Actions.Score:= (-27+switchCount*3)*4000;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   522
                    AddAction(Actions, aia_Weapon, Longword(amSwitch), 300 + random(200), 0, 0);
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   523
                    AddAction(Actions, aia_attack, aim_push, 300 + random(300), 0, 0);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   524
                    AddAction(Actions, aia_attack, aim_release, 1, 0, 0);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   525
                    end;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   526
                for i:= 1 to switchesNum do
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   527
                    AddAction(Actions, aia_Switch, 0, 300 + random(200), 0, 0);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   528
                end;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   529
            Walk(@WalkMe, Actions);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   530
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   531
            // find another hog in team
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   532
            repeat
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   533
                itHedgehog:= Succ(itHedgehog) mod CurrentTeam^.HedgehogsNumber;
8677
afb2b467f801 skip frozen hogs in switch
nemo
parents: 8036
diff changeset
   534
            until (itHedgehog = currHedgehogIndex) or ((CurrentTeam^.Hedgehogs[itHedgehog].Gear <> nil) and (CurrentTeam^.Hedgehogs[itHedgehog].Effects[heFrozen]=0));
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   535
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   536
            inc(switchesNum);
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: 6748
diff changeset
   537
        until (not (switchImmediatelyAvailable or (switchCount > 0)))
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   538
            or StopThinking
6395
bb04d7a9f7e2 Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents: 6393
diff changeset
   539
            or (itHedgehog = currHedgehogIndex)
bb04d7a9f7e2 Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents: 6393
diff changeset
   540
            or BestActions.isWalkingToABetterPlace;
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   541
14507
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   542
        if (StartTicks > GameTicks - 1500) and (not StopThinking) then
184df3900ec4 - Bots activate extra time if needed
unc0rr
parents: 14506
diff changeset
   543
            SDL_Delay(700);
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   544
6395
bb04d7a9f7e2 Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents: 6393
diff changeset
   545
        if (BestActions.Score < -1023) and (not BestActions.isWalkingToABetterPlace) then
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   546
            begin
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   547
            BestActions.Count:= 0;
10164
0570d4b22187 AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents: 10108
diff changeset
   548
0570d4b22187 AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents: 10108
diff changeset
   549
            FillBonuses(false);
10510
9329dab04490 some whitespace fixes
sheepluva
parents: 10231
diff changeset
   550
12710
1ab53b945140 AI hogs use timebox instead of skip if clueless what to do
Wuzzy <almikes@aol.com>
parents: 12709
diff changeset
   551
            // Hog has no idea what to do. Use tardis or skip
15442
6031c0cfec89 Make sure AI doesn't skip after collecting ammo. Fixes bug 796
Wuzzy <Wuzzy2@mail.ru>
parents: 15365
diff changeset
   552
            if (not bonuses.activity) and ((Me^.AIHints and aihAmmosChanged) = 0) then
14669
fd22b6d474e7 Fix AI trying to use tardis during multishoot
Wuzzy <Wuzzy2@mail.ru>
parents: 14586
diff changeset
   553
                if (((GameFlags and gfInfAttack) <> 0) or (CurrentHedgehog^.MultiShootAttacks = 0)) and (HHHasAmmo(Me^.Hedgehog^, amTardis) > 0) and (CanUseTardis(Me^.Hedgehog^.Gear)) and (random(4) < 3) then
12710
1ab53b945140 AI hogs use timebox instead of skip if clueless what to do
Wuzzy <almikes@aol.com>
parents: 12709
diff changeset
   554
                    // Tardis brings hog to a random place. Perfect for clueless AI
1ab53b945140 AI hogs use timebox instead of skip if clueless what to do
Wuzzy <almikes@aol.com>
parents: 12709
diff changeset
   555
                    begin
1ab53b945140 AI hogs use timebox instead of skip if clueless what to do
Wuzzy <almikes@aol.com>
parents: 12709
diff changeset
   556
                    AddAction(BestActions, aia_Weapon, Longword(amTardis), 80, 0, 0);
1ab53b945140 AI hogs use timebox instead of skip if clueless what to do
Wuzzy <almikes@aol.com>
parents: 12709
diff changeset
   557
                    AddAction(BestActions, aia_attack, aim_push, 10, 0, 0);
1ab53b945140 AI hogs use timebox instead of skip if clueless what to do
Wuzzy <almikes@aol.com>
parents: 12709
diff changeset
   558
                    AddAction(BestActions, aia_attack, aim_release, 10, 0, 0);
1ab53b945140 AI hogs use timebox instead of skip if clueless what to do
Wuzzy <almikes@aol.com>
parents: 12709
diff changeset
   559
                    end
1ab53b945140 AI hogs use timebox instead of skip if clueless what to do
Wuzzy <almikes@aol.com>
parents: 12709
diff changeset
   560
                else
1ab53b945140 AI hogs use timebox instead of skip if clueless what to do
Wuzzy <almikes@aol.com>
parents: 12709
diff changeset
   561
                    AddAction(BestActions, aia_Skip, 0, 250, 0, 0);
15442
6031c0cfec89 Make sure AI doesn't skip after collecting ammo. Fixes bug 796
Wuzzy <Wuzzy2@mail.ru>
parents: 15365
diff changeset
   562
            Me^.AIHints := ME^.AIHints and (not aihAmmosChanged);
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   563
            end;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   564
15632
25132742a948 Fix AI thread erroring out when there are no targets
Wuzzy <Wuzzy2@mail.ru>
parents: 15603
diff changeset
   565
        end
25132742a948 Fix AI thread erroring out when there are no targets
Wuzzy <Wuzzy2@mail.ru>
parents: 15603
diff changeset
   566
    else
25132742a948 Fix AI thread erroring out when there are no targets
Wuzzy <Wuzzy2@mail.ru>
parents: 15603
diff changeset
   567
        begin
25132742a948 Fix AI thread erroring out when there are no targets
Wuzzy <Wuzzy2@mail.ru>
parents: 15603
diff changeset
   568
        // No target found, skip turn
25132742a948 Fix AI thread erroring out when there are no targets
Wuzzy <Wuzzy2@mail.ru>
parents: 15603
diff changeset
   569
        BestActions.Count:= 0;
25132742a948 Fix AI thread erroring out when there are no targets
Wuzzy <Wuzzy2@mail.ru>
parents: 15603
diff changeset
   570
        AddAction(BestActions, aia_Skip, 0, 250, 0, 0);
25132742a948 Fix AI thread erroring out when there are no targets
Wuzzy <Wuzzy2@mail.ru>
parents: 15603
diff changeset
   571
        Me^.AIHints := ME^.AIHints and (not aihAmmosChanged);
25132742a948 Fix AI thread erroring out when there are no targets
Wuzzy <Wuzzy2@mail.ru>
parents: 15603
diff changeset
   572
        end
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   573
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   574
    begin
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   575
    BackMe:= Me^;
10164
0570d4b22187 AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents: 10108
diff changeset
   576
    i:= 4;
8946
3e07b8ff2ae1 Make AI more active in multiattack game mode
unc0rr
parents: 8938
diff changeset
   577
    while (not StopThinking) and (BestActions.Count = 0) and (i > 0) do
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   578
        begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   579
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: 7250
diff changeset
   580
(*
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: 7250
diff changeset
   581
        // Maybe this would get a bit of movement out of them? Hopefully not *toward* water. Need to check how often he'd choose that strategy
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: 7250
diff changeset
   582
        if SuddenDeathDmg and ((hwRound(BackMe.Y)+cWaterRise*2) > cWaterLine) 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: 7250
diff changeset
   583
            AddBonus(hwRound(BackMe.X), hwRound(BackMe.Y), 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: 7250
diff changeset
   584
*)
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   585
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   586
        FillBonuses(true);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   587
        WalkMe:= BackMe;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   588
        Actions.Count:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   589
        Actions.Pos:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   590
        Actions.Score:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   591
        Walk(@WalkMe, Actions);
10164
0570d4b22187 AI doesn't skip till action on the map stops (mostly dedicated to highlander) + various small tweaks
unc0rr
parents: 10108
diff changeset
   592
        if not bonuses.activity then dec(i);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   593
        if not StopThinking then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   594
            SDL_Delay(100)
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   595
        end
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   596
    end;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   597
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   598
Me^.State:= Me^.State and (not gstHHThinking);
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   599
Think:= 0;
15365
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
   600
SDL_SemPost(ThreadSem);
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   601
end;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   602
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   603
procedure StartThink(Me: PGear);
15365
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
   604
var ThinkThread: PSDL_Thread;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   605
begin
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 522
diff changeset
   606
if ((Me^.State and (gstAttacking or gstHHJumping or gstMoving)) <> 0)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   607
or isInMultiShoot then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   608
    exit;
506
0889d833d47e - A good implementation of shotgun
unc0rr
parents: 500
diff changeset
   609
15365
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
   610
SDL_SemWait(ThreadSem);
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: 7416
diff changeset
   611
//DeleteCI(Me); // this will break demo/netplay
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: 7416
diff changeset
   612
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
   613
Me^.State:= Me^.State or gstHHThinking;
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
   614
Me^.Message:= 0;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   615
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   616
BestActions.Count:= 0;
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   617
BestActions.Pos:= 0;
5163
1620a02d5282 Fix test for water in airstrike handler
unc0rr
parents: 5162
diff changeset
   618
BestActions.Score:= Low(LongInt);
6395
bb04d7a9f7e2 Make AI be less scared by crates. Actually, now it starts using switcher just to pick a crate up.
unc0rr
parents: 6393
diff changeset
   619
BestActions.isWalkingToABetterPlace:= false;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   620
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   621
StopThinking:= false;
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   622
ThinkingHH:= Me;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   623
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   624
FillTargets;
941
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 936
diff changeset
   625
14506
a4d560aeda96 - Never consider a bot in inf attacks mode being in after attack mode, helps action in inf attack
unc0rr
parents: 14226
diff changeset
   626
FillBonuses(((Me^.State and gstAttacked) <> 0) and (not isInMultiShoot) and ((GameFlags and gfInfAttack) = 0));
8908
d3033e3a4113 let's try to kill the thread right away and protect the thread variable with a mutex
koda
parents: 8884
diff changeset
   627
11367
a91c4c4fd85c add pchar casts to make pas2c happy
sheepluva
parents: 11362
diff changeset
   628
ThinkThread:= SDL_CreateThread(@Think, PChar('think'), Me);
15365
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
   629
SDL_DetachThread(ThinkThread);
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   630
end;
191
a03c2d037e24 Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents: 183
diff changeset
   631
8965
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   632
{$IFDEF DEBUGAI}
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   633
var scoreShown: boolean = false;
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   634
{$ENDIF}
7204
522f165cd2e7 - Fix damage calculation in TestSniperRifle, aim a bit lower to compensate initial angle shift in sniper rifle. As a result, AI seems to never fail sniper rifle shots.
unc0rr
parents: 7197
diff changeset
   635
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   636
procedure ProcessBot;
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6770
diff changeset
   637
const cStopThinkTime = 40;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   638
begin
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 599
diff changeset
   639
with CurrentHedgehog^ do
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   640
    if (Gear <> nil)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   641
    and ((Gear^.State and gstHHDriven) <> 0)
14506
a4d560aeda96 - Never consider a bot in inf attacks mode being in after attack mode, helps action in inf attack
unc0rr
parents: 14226
diff changeset
   642
    and ((TurnTimeLeft < cHedgehogTurnTime - 50) or (TurnTimeLeft > cHedgehogTurnTime)) then
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   643
        if ((Gear^.State and gstHHThinking) = 0) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   644
            if (BestActions.Pos >= BestActions.Count)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   645
            and (TurnTimeLeft > cStopThinkTime) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   646
                begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   647
                if Gear^.Message <> 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   648
                    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   649
                    StopMessages(Gear^.Message);
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11475
diff changeset
   650
                    if checkFails((Gear^.Message and gmAllStoppable) = 0, 'Engine bug: AI may break demos playing', true) then exit;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   651
                    end;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   652
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   653
                if Gear^.Message <> 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   654
                    exit;
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   655
8965
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   656
{$IFDEF DEBUGAI}
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   657
                scoreShown:= false;
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   658
{$ENDIF}
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   659
                StartThink(Gear);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   660
                StartTicks:= GameTicks
8865
dd4035ee0f12 use SDL_Threads everywhere
koda
parents: 8677
diff changeset
   661
7204
522f165cd2e7 - Fix damage calculation in TestSniperRifle, aim a bit lower to compensate initial angle shift in sniper rifle. As a result, AI seems to never fail sniper rifle shots.
unc0rr
parents: 7197
diff changeset
   662
            end else
522f165cd2e7 - Fix damage calculation in TestSniperRifle, aim a bit lower to compensate initial angle shift in sniper rifle. As a result, AI seems to never fail sniper rifle shots.
unc0rr
parents: 7197
diff changeset
   663
                begin
8965
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   664
{$IFDEF DEBUGAI}
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   665
                if not scoreShown then
7204
522f165cd2e7 - Fix damage calculation in TestSniperRifle, aim a bit lower to compensate initial angle shift in sniper rifle. As a result, AI seems to never fail sniper rifle shots.
unc0rr
parents: 7197
diff changeset
   666
                    begin
522f165cd2e7 - Fix damage calculation in TestSniperRifle, aim a bit lower to compensate initial angle shift in sniper rifle. As a result, AI seems to never fail sniper rifle shots.
unc0rr
parents: 7197
diff changeset
   667
                    if BestActions.Score > 0 then ParseCommand('/say Expected score = ' + inttostr(BestActions.Score div 1024), true);
522f165cd2e7 - Fix damage calculation in TestSniperRifle, aim a bit lower to compensate initial angle shift in sniper rifle. As a result, AI seems to never fail sniper rifle shots.
unc0rr
parents: 7197
diff changeset
   668
                    scoreShown:= true
8965
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   669
                    end;
b4f10ff6ea90 IFDEF that score expectation logging
unc0rr
parents: 8959
diff changeset
   670
{$ENDIF}
7204
522f165cd2e7 - Fix damage calculation in TestSniperRifle, aim a bit lower to compensate initial angle shift in sniper rifle. As a result, AI seems to never fail sniper rifle shots.
unc0rr
parents: 7197
diff changeset
   671
                ProcessAction(BestActions, Gear)
522f165cd2e7 - Fix damage calculation in TestSniperRifle, aim a bit lower to compensate initial angle shift in sniper rifle. As a result, AI seems to never fail sniper rifle shots.
unc0rr
parents: 7197
diff changeset
   672
                end
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   673
        else if ((GameTicks - StartTicks) > cMaxAIThinkTime)
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   674
            or (TurnTimeLeft <= cStopThinkTime) then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   675
                StopThinking:= true
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
   676
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   677
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   678
procedure initModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   679
begin
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6770
diff changeset
   680
    StartTicks:= 0;
15365
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
   681
    ThreadSem:= SDL_CreateSemaphore(1);
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   682
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   683
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   684
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   685
begin
7026
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
   686
    FreeActionsList();
15365
fcdb6e3a9d36 Prevent leaking of thread objects
unC0Rr
parents: 14669
diff changeset
   687
    SDL_DestroySemaphore(ThreadSem);
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   688
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   689
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   690
end.