hedgewars/uAI.pas
author koda
Sun, 11 Nov 2012 17:15:19 +0100
branchwebgl
changeset 8026 4a4f21070479
parent 7790 040fc517fece
child 8096 453917e94e55
permissions -rw-r--r--
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
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
6700
e04da46ee43c the most important commit of the year
koda
parents: 6580
diff changeset
     3
 * Copyright (c) 2004-2012 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
57c2ef19f719 Relicense to GPL
unc0rr
parents: 146
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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,
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
    33
    uAmmos, SysUtils{$IFNDEF USE_SDLTHREADS} {$IFDEF UNIX}, cthreads{$ENDIF} {$ENDIF}, uTypes,
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
    34
    uVariables, uCommands, uUtils, uDebug, uAILandMarks;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    35
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
    36
{$IFDEF AI_MAINTHREAD}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
    37
const
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
    38
    mainThreadMaxThinkTime:Integer = 1500;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
    39
{$ENDIF}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
    40
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    41
var BestActions: TActions;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
    42
    CanUseAmmo: array [TAmmoType] of boolean;
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
    43
    StopThinking: boolean;
6462
0758fbec9b9f typo... >,<
Xeli
parents: 6460
diff changeset
    44
{$IFDEF USE_SDLTHREADS} 
5504
96d735b83d43 AI thread is now an SDL_Thread rather than pthread
Xeli
parents: 5495
diff changeset
    45
    ThinkThread: PSDL_Thread = nil;
6460
e3cc8ec51cd3 added a switch USE_SDLTHREADS
Xeli
parents: 6416
diff changeset
    46
{$ELSE}
e3cc8ec51cd3 added a switch USE_SDLTHREADS
Xeli
parents: 6416
diff changeset
    47
    ThinkThread: TThreadID;
e3cc8ec51cd3 added a switch USE_SDLTHREADS
Xeli
parents: 6416
diff changeset
    48
{$ENDIF}
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
    49
    hasThread: LongInt;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
    50
    StartTicks: LongInt;
599
7c7b90c402d3 Fix THandle -> TThreadID
unc0rr
parents: 553
diff changeset
    51
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    52
procedure FreeActionsList;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    53
begin
7026
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    54
    AddFileLog('FreeActionsList called');
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    55
    if hasThread <> 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
    56
    begin
7026
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    57
        AddFileLog('Waiting AI thread to finish');
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    58
        StopThinking:= true;
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    59
        repeat
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    60
            SDL_Delay(10)
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    61
        until hasThread = 0
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
    62
    end;
434
2c6ccce17f39 Many small improvements
unc0rr
parents: 433
diff changeset
    63
7026
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    64
    with CurrentHedgehog^ do
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    65
        if Gear <> nil then
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    66
            if BotLevel <> 0 then
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    67
                StopMessages(Gear^.Message);
740
5ac69a012b69 - Small cleanup
unc0rr
parents: 676
diff changeset
    68
7026
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    69
    BestActions.Count:= 0;
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
    70
    BestActions.Pos:= 0
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    71
end;
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    72
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    73
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    74
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    75
const cBranchStackSize = 12;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    76
type TStackEntry = record
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    77
                   WastedTicks: Longword;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    78
                   MadeActions: TActions;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    79
                   Hedgehog: TGear;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    80
                   end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    81
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    82
var Stack: record
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    83
           Count: Longword;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    84
           States: array[0..Pred(cBranchStackSize)] of TStackEntry;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    85
           end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    86
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    87
function Push(Ticks: Longword; const Actions: TActions; const Me: TGear; Dir: integer): boolean;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    88
var bRes: boolean;
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
    bRes:= (Stack.Count < cBranchStackSize) and (Actions.Count < MAXACTIONS - 5);
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    91
    if bRes then
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    92
        with Stack.States[Stack.Count] do
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    93
            begin
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    94
            WastedTicks:= Ticks;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    95
            MadeActions:= Actions;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    96
            Hedgehog:= Me;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    97
            Hedgehog.Message:= Dir;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    98
            inc(Stack.Count)
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
    99
            end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   100
    Push:= bRes
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   101
end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   102
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   103
procedure Pop(var Ticks: Longword; var Actions: TActions; var Me: TGear);
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   104
begin
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   105
    dec(Stack.Count);
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   106
    with Stack.States[Stack.Count] do
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   107
        begin
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   108
        Ticks:= WastedTicks;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   109
        Actions:= MadeActions;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   110
        Me:= Hedgehog
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   111
        end
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   112
end;
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   113
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   114
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   115
7789
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   116
procedure TestAmmos(var Actions: TActions; Me: PGear; rareChecks: boolean);
3407
dcc129c4352e Engine:
smxx
parents: 3236
diff changeset
   117
var BotLevel: Byte;
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 542
diff changeset
   118
    ap: TAttackParams;
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   119
    Score, i, dAngle: LongInt;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   120
    a, aa: TAmmoType;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   121
begin
4372
3836973380b9 remove some more PHedgehog casts
nemo
parents: 4368
diff changeset
   122
BotLevel:= Me^.Hedgehog^.BotLevel;
7078
a3408d9ba5ad AI can't use cWindSpeedf since it now does a smooth transition
nemo
parents: 7028
diff changeset
   123
windSpeed:= hwFloat2Float(cWindSpeed);
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   124
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   125
for i:= 0 to Pred(Targets.Count) do
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   126
    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
   127
        begin
6748
9d8763deee42 don't use currenthedgehog
nemo
parents: 6700
diff changeset
   128
        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
   129
            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
   130
        aa:= a;
6460
e3cc8ec51cd3 added a switch USE_SDLTHREADS
Xeli
parents: 6416
diff changeset
   131
{$IFDEF USE_SDLTHREADS}
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   132
        SDL_delay(0);    //ThreadSwitch was only a hint
6460
e3cc8ec51cd3 added a switch USE_SDLTHREADS
Xeli
parents: 6416
diff changeset
   133
{$ELSE}
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   134
        ThreadSwitch();
6460
e3cc8ec51cd3 added a switch USE_SDLTHREADS
Xeli
parents: 6416
diff changeset
   135
{$ENDIF}       
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   136
        repeat
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
   137
        if (CanUseAmmo[a]) 
7789
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   138
            and ((not rareChecks) or ((AmmoTests[a].flags and amtest_Rare) = 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
   139
            and ((i = 0) or ((AmmoTests[a].flags and amtest_NoTarget) = 0)) 
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
   140
            then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   141
            begin
3407
dcc129c4352e Engine:
smxx
parents: 3236
diff changeset
   142
{$HINTS OFF}
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   143
            Score:= AmmoTests[a].proc(Me, Targets.ar[i].Point, BotLevel, ap);
3407
dcc129c4352e Engine:
smxx
parents: 3236
diff changeset
   144
{$HINTS ON}
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   145
            if Actions.Score + Score > BestActions.Score then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   146
                if (BestActions.Score < 0) or (Actions.Score + Score > BestActions.Score + Byte(BotLevel) * 2048) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   147
                    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   148
                    BestActions:= Actions;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   149
                    inc(BestActions.Score, Score);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   150
                    BestActions.isWalkingToABetterPlace:= false;
194
88652abdce9a Fixed weird bots behavior
unc0rr
parents: 193
diff changeset
   151
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   152
                    AddAction(BestActions, aia_Weapon, Longword(a), 300 + random(400), 0, 0);
5162
60bc1af75c82 Fix AI trying to turn around in targeting mode
unc0rr
parents: 5148
diff changeset
   153
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   154
                    if (ap.Angle > 0) then
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   155
                        AddAction(BestActions, aia_LookRight, 0, 200, 0, 0)
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   156
                    else if (ap.Angle < 0) then
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   157
                        AddAction(BestActions, aia_LookLeft, 0, 200, 0, 0);
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   158
                    
7790
040fc517fece - Fix desyncs triggered by AI
unc0rr
parents: 7789
diff changeset
   159
                    if (Ammoz[a].Ammo.Propz and ammoprop_Timerable) <> 0 then
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   160
                        AddAction(BestActions, aia_Timer, ap.Time div 1000, 400, 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
   161
                        
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   162
                    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
   163
                        begin
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   164
                        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
   165
                        if dAngle > 0 then
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   166
                            begin
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   167
                            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
   168
                            AddAction(BestActions, aia_Up, aim_release, dAngle, 0, 0)
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   169
                            end
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   170
                        else if dAngle < 0 then
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   171
                            begin
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   172
                            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
   173
                            AddAction(BestActions, aia_Down, aim_release, -dAngle, 0, 0)
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   174
                            end
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   175
                        end;
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   176
                        
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   177
                    if (Ammoz[a].Ammo.Propz and ammoprop_NeedTarget) <> 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
   178
                        begin
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   179
                        AddAction(BestActions, aia_Put, 0, 1, ap.AttackPutX, ap.AttackPutY)
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   180
                        end;
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   181
                        
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   182
                    if (Ammoz[a].Ammo.Propz and ammoprop_OscAim) <> 0 then
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   183
                        begin
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   184
                        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
   185
                        AddAction(BestActions, aia_attack, aim_release, 1, 0, 0);
7450
4be946b65a85 Fix edge case problems with sniper rifle
unc0rr
parents: 7446
diff changeset
   186
                         
7453
unc0rr
parents: 7450
diff changeset
   187
                        if abs(ap.Angle) > 32 then
7450
4be946b65a85 Fix edge case problems with sniper rifle
unc0rr
parents: 7446
diff changeset
   188
                           begin
4be946b65a85 Fix edge case problems with sniper rifle
unc0rr
parents: 7446
diff changeset
   189
                           AddAction(BestActions, aia_Down, aim_push, 100 + random(150), 0, 0);
4be946b65a85 Fix edge case problems with sniper rifle
unc0rr
parents: 7446
diff changeset
   190
                           AddAction(BestActions, aia_Down, aim_release, 32, 0, 0);
4be946b65a85 Fix edge case problems with sniper rifle
unc0rr
parents: 7446
diff changeset
   191
                           end;
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
   192
                        
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   193
                        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
   194
                        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
   195
                        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
   196
                        end else
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   197
                        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
   198
                            begin
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   199
                            AddAction(BestActions, aia_attack, aim_push, 650 + random(300), 0, 0);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   200
                            AddAction(BestActions, aia_attack, aim_release, ap.Power, 0, 0);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   201
                            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
   202
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
   203
                    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
   204
                        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
   205
                        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
   206
                        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
   207
                        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
   208
                        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
   209
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   210
                    if ap.ExplR > 0 then
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   211
                        AddAction(BestActions, aia_AwareExpl, ap.ExplR, 10, ap.ExplX, ap.ExplY);
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   212
                    end
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   213
            end;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   214
        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
   215
            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
   216
        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
   217
        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
   218
            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
   219
        end
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   220
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   221
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   222
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
   223
const FallPixForBranching = cHHRadius;
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   224
var
7789
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   225
    ticks, maxticks, oldticks, steps, tmp: Longword;
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   226
    BaseRate, BestRate, Rate: integer;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   227
    GoInfo: TGoInfo;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   228
    CanGo: boolean;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   229
    AltMe: TGear;
3407
dcc129c4352e Engine:
smxx
parents: 3236
diff changeset
   230
    BotLevel: Byte;
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   231
    a: TAmmoType;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   232
begin
7789
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   233
ticks:= 0;
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   234
oldticks:= 0; // avoid compiler hint
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   235
Stack.Count:= 0;
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   236
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   237
clearAllMarks;
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   238
6392
f2ef5a8cccb4 - Move actions stack out of Walk procedure
unc0rr
parents: 6317
diff changeset
   239
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
   240
    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
   241
4372
3836973380b9 remove some more PHedgehog casts
nemo
parents: 4368
diff changeset
   242
BotLevel:= Me^.Hedgehog^.BotLevel;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   243
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   244
if (Me^.State and gstAttacked) = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   245
    maxticks:= Max(0, TurnTimeLeft - 5000 - LongWord(4000 * BotLevel))
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   246
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   247
    maxticks:= TurnTimeLeft;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   248
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   249
if (Me^.State and gstAttacked) = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   250
    TestAmmos(Actions, Me, false);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   251
    
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   252
BestRate:= RatePlace(Me);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents: 4373
diff changeset
   253
BaseRate:= Max(BestRate, 0);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   254
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   255
// switch to 'skip' if we can't 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
   256
if (Ammoz[Me^.Hedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) <> 0 then
7132
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   257
    AddAction(Actions, aia_Weapon, Longword(amSkip), 100 + random(200), 0, 0);
baf3351646f4 - Fix some AI stupidness factors
unc0rr
parents: 7078
diff changeset
   258
    
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   259
if ((CurrentHedgehog^.MultiShootAttacks = 0) or ((Ammoz[Me^.Hedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NoMoveAfter) = 0)) 
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   260
    and (GameFlags and gfArtillery = 0) then
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   261
    begin
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   262
    tmp:= random(2) + 1;
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   263
    Push(0, Actions, Me^, tmp);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   264
    Push(0, Actions, Me^, tmp xor 3);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   265
    
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   266
    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
   267
        begin
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   268
        Pop(ticks, Actions, Me^);
193
56885ea29202 Fix bots regressions
unc0rr
parents: 191
diff changeset
   269
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   270
        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
   271
        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
   272
            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
   273
        else
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   274
            AddAction(Actions, aia_WaitXR, 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
   275
        
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   276
        steps:= 0;
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   277
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   278
        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
   279
            begin
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   280
    {$HINTS OFF}
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   281
            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
   282
    {$HINTS ON}
7789
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   283
            oldticks:= ticks;
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   284
            inc(ticks, GoInfo.Ticks);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   285
            if ticks > maxticks then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   286
                break;
194
88652abdce9a Fixed weird bots behavior
unc0rr
parents: 193
diff changeset
   287
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   288
            if (BotLevel < 5) 
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   289
                and (GoInfo.JumpType = jmpHJump) 
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   290
                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
   291
                then // hjump support
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   292
                begin
7446
9ce6e2c35413 No more AI jumping lulz
unc0rr
parents: 7437
diff changeset
   293
                // 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
   294
                addMark(hwRound(Me^.X), hwRound(Me^.Y), markHJumped);
7446
9ce6e2c35413 No more AI jumping lulz
unc0rr
parents: 7437
diff changeset
   295
                if Push(ticks, 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
   296
                    begin
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   297
                    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
   298
                        begin
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   299
                        if Me^.dX.isNegative then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   300
                            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
   301
                        else
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   302
                            AddAction(MadeActions, aia_LookLeft, 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
   303
                            
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   304
                        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
   305
                        AddAction(MadeActions, aia_HJump, 0, 350, 0, 0);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   306
                        
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   307
                        if Me^.dX.isNegative then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   308
                            AddAction(MadeActions, aia_LookLeft, 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
   309
                        else
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   310
                            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
   311
                        end;
7446
9ce6e2c35413 No more AI jumping lulz
unc0rr
parents: 7437
diff changeset
   312
                    // but first check walking forward
9ce6e2c35413 No more AI jumping lulz
unc0rr
parents: 7437
diff changeset
   313
                    Push(ticks, 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
   314
                    end;
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   315
                end;
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   316
            if (BotLevel < 3) 
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   317
                and (GoInfo.JumpType = jmpLJump) 
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   318
                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
   319
                then // ljump support
7250
304d3d98662e AI loves to jump
unc0rr
parents: 7216
diff changeset
   320
                begin
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   321
                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
   322
                // at final check where we go after jump walking backward
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
   323
                if Push(ticks, Actions, AltMe, Me^.Message xor 3) then
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
   324
                    with Stack.States[Pred(Stack.Count)] do
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
   325
                        AddAction(MadeActions, aia_LJump, 0, 305 + random(50), 0, 0);
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
   326
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
   327
                // push current position so we proceed from it after checking jump+forward walk opportunities
7250
304d3d98662e AI loves to jump
unc0rr
parents: 7216
diff changeset
   328
                if CanGo then Push(ticks, Actions, Me^, 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
   329
                
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
   330
                // first check where we go after jump walking forward
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   331
                if Push(ticks, Actions, AltMe, Me^.Message) then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   332
                    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
   333
                        AddAction(MadeActions, aia_LJump, 0, 305 + random(50), 0, 0);
7250
304d3d98662e AI loves to jump
unc0rr
parents: 7216
diff changeset
   334
                break
304d3d98662e AI loves to jump
unc0rr
parents: 7216
diff changeset
   335
                end;
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   336
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   337
            // 'not CanGO' means we can't go straight, possible jumps are checked above
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   338
            if (not CanGo) then
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   339
                break;
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   340
            
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   341
             inc(steps);
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   342
             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
   343
             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
   344
             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
   345
                begin
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   346
                BestActions:= Actions;
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   347
                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
   348
                BestRate:= Rate;
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   349
                Me^.State:= Me^.State or gstAttacked // we have better place, go there and do not use ammo
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   350
                end
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   351
            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
   352
                break;
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
   353
                
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   354
            if ((Me^.State and gstAttacked) = 0) 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
   355
                begin
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   356
                if (steps > 4) and checkMark(hwRound(Me^.X), hwRound(Me^.Y), markWalkedHere) 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
   357
                    break;                    
7787
67c96b9c179c Mark places where tried to jump, avoid too much of thinking
unc0rr
parents: 7453
diff changeset
   358
                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
   359
838d2e06c377 Check cake and air attack again if walked far from initial position (not tested)
unc0rr
parents: 7787
diff changeset
   360
                TestAmmos(Actions, Me, 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
   361
                end;
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
   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
            if GoInfo.FallPix >= FallPixForBranching then
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   364
                Push(ticks, Actions, Me^, Me^.Message xor 3); // aia_Left xor 3 = aia_Right
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   365
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   366
{$IFDEF AI_MAINTHREAD}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   367
            if StartTicks < (SDL_GetTicks() - mainThreadMaxThinkTime) then
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   368
                StopThinking := true;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   369
{$ELSE}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   370
            if (StartTicks > GameTicks - 1500) and (not StopThinking) then
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   371
                SDL_Delay(1000);
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   372
{$ENDIF}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   373
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   374
            end {while};
193
56885ea29202 Fix bots regressions
unc0rr
parents: 191
diff changeset
   375
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7178
diff changeset
   376
        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
   377
            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
   378
        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
   379
    end {if}
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   380
end;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   381
508
f5473c50adbd Now really fix compilation
unc0rr
parents: 507
diff changeset
   382
function Think(Me: Pointer): ptrint;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   383
var BackMe, WalkMe: TGear;
6992
b8f3d8991e92 marked a couple of functions as inline
koda
parents: 6982
diff changeset
   384
    switchCount: LongInt;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   385
    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
   386
    switchImmediatelyAvailable: boolean;
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   387
    Actions: TActions;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   388
begin
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   389
InterlockedIncrement(hasThread);
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   390
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   391
{$IFDEF AI_MAINTHREAD}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   392
StartTicks:= SDL_GetTicks();
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   393
{$ELSE}
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   394
StartTicks:= GameTicks;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   395
{$ENDIF}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   396
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   397
currHedgehogIndex:= CurrentTeam^.CurrHedgehog;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   398
itHedgehog:= currHedgehogIndex;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   399
switchesNum:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   400
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   401
switchImmediatelyAvailable:= (CurAmmoGear <> nil) and (CurAmmoGear^.Kind = gtSwitcher);
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
   402
if PGear(Me)^.Hedgehog^.BotLevel <> 5 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
   403
    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
   404
else switchCount:= 0;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   405
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   406
if (PGear(Me)^.State and gstAttacking) = 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
   407
    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
   408
        begin
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   409
        // iterate over current team hedgehogs
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   410
        repeat
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   411
            WalkMe:= CurrentTeam^.Hedgehogs[itHedgehog].Gear^;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   412
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   413
            Actions.Count:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   414
            Actions.Pos:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   415
            Actions.Score:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   416
            if switchesNum > 0 then
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   417
                begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   418
                if (not switchImmediatelyAvailable)  then
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   419
                    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
   420
                    // 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
   421
                    if (switchCount < 10) then Actions.Score:= (-27+switchCount*3)*4000;
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   422
                    AddAction(Actions, aia_Weapon, Longword(amSwitch), 300 + random(200), 0, 0);                    
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   423
                    AddAction(Actions, aia_attack, aim_push, 300 + random(300), 0, 0);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   424
                    AddAction(Actions, aia_attack, aim_release, 1, 0, 0);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   425
                    end;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   426
                for i:= 1 to switchesNum do
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   427
                    AddAction(Actions, aia_Switch, 0, 300 + random(200), 0, 0);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   428
                end;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   429
            Walk(@WalkMe, Actions);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   430
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   431
            // find another hog in team
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   432
            repeat
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   433
                itHedgehog:= Succ(itHedgehog) mod CurrentTeam^.HedgehogsNumber;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   434
            until (itHedgehog = currHedgehogIndex) or (CurrentTeam^.Hedgehogs[itHedgehog].Gear <> nil);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   435
6748
9d8763deee42 don't use currenthedgehog
nemo
parents: 6700
diff changeset
   436
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   437
            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
   438
        until (not (switchImmediatelyAvailable or (switchCount > 0)))
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   439
            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
   440
            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
   441
            or BestActions.isWalkingToABetterPlace;
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   442
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   443
            {$IFDEF AI_MAINTHREAD}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   444
                if StartTicks < (SDL_GetTicks() - mainThreadMaxThinkTime) then
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   445
                    StopThinking := true;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   446
            {$ELSE}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   447
                if (StartTicks > GameTicks - 1500) and (not StopThinking) then
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   448
                    SDL_Delay(1000);
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   449
            {$ENDIF}
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   450
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
   451
        if (BestActions.Score < -1023) and (not BestActions.isWalkingToABetterPlace) then
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   452
            begin
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   453
            BestActions.Count:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   454
            AddAction(BestActions, aia_Skip, 0, 250, 0, 0);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   455
            end;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   456
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   457
        end else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   458
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   459
    begin
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   460
    BackMe:= PGear(Me)^;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   461
    
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   462
//{$IFNDEF AI_MAINTHREAD}
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   463
    while (not StopThinking) and (BestActions.Count = 0) do
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   464
        begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   465
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
   466
(*
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
   467
        // 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
   468
        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
   469
            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
   470
*)
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   471
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   472
        FillBonuses(true);
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   473
        WalkMe:= BackMe;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   474
        Actions.Count:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   475
        Actions.Pos:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   476
        Actions.Score:= 0;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   477
        Walk(@WalkMe, Actions);
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   478
{$IFNDEF AI_MAINTHREAD}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   479
        if (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
   480
            SDL_Delay(100)
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   481
{$ENDIF}
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   482
        end
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   483
//{$ENDIF}
6393
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   484
    end;
701eb3f3556a Make AI use switcher when:
unc0rr
parents: 6392
diff changeset
   485
7426
55b49cc1f33a Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents: 7416
diff changeset
   486
PGear(Me)^.State:= PGear(Me)^.State and (not gstHHThinking);
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   487
Think:= 0;
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   488
InterlockedDecrement(hasThread)
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   489
end;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   490
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   491
procedure StartThink(Me: PGear);
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   492
begin
542
ec26095f1bed - Get rid of ammoProp_AttackInFall and gstFalling
unc0rr
parents: 522
diff changeset
   493
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
   494
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
   495
    exit;
506
0889d833d47e - A good implementation of shotgun
unc0rr
parents: 500
diff changeset
   496
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
   497
//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
   498
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
   499
Me^.State:= Me^.State or gstHHThinking;
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
   500
Me^.Message:= 0;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   501
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   502
BestActions.Count:= 0;
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   503
BestActions.Pos:= 0;
5163
1620a02d5282 Fix test for water in airstrike handler
unc0rr
parents: 5162
diff changeset
   504
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
   505
BestActions.isWalkingToABetterPlace:= false;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   506
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   507
StopThinking:= false;
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   508
ThinkingHH:= Me;
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   509
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   510
FillTargets;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   511
if Targets.Count = 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
   512
    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   513
    OutError('AI: no targets!?', false);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   514
    exit
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   515
    end;
941
b5222ddafe1f - Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents: 936
diff changeset
   516
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
   517
FillBonuses((Me^.State and gstAttacked) <> 0);
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4403
diff changeset
   518
AddFileLog('Enter Think Thread');
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   519
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   520
{$IFDEF AI_MAINTHREAD}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   521
Think(Me);
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   522
{$ELSE}
6460
e3cc8ec51cd3 added a switch USE_SDLTHREADS
Xeli
parents: 6416
diff changeset
   523
{$IFDEF USE_SDLTHREADS}
e3cc8ec51cd3 added a switch USE_SDLTHREADS
Xeli
parents: 6416
diff changeset
   524
ThinkThread := SDL_CreateThread(@Think{$IFDEF SDL13}, nil{$ENDIF}, Me);
e3cc8ec51cd3 added a switch USE_SDLTHREADS
Xeli
parents: 6416
diff changeset
   525
{$ELSE}
6027
302408e45052 code working on ios now
koda
parents: 6025
diff changeset
   526
BeginThread(@Think, Me, ThinkThread);
302408e45052 code working on ios now
koda
parents: 6025
diff changeset
   527
{$ENDIF}
5504
96d735b83d43 AI thread is now an SDL_Thread rather than pthread
Xeli
parents: 5495
diff changeset
   528
AddFileLog('Thread started');
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   529
{$ENDIF}
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   530
end;
191
a03c2d037e24 Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents: 183
diff changeset
   531
7216
53f5e48b8375 disable this debug too
nemo
parents: 7204
diff changeset
   532
//var scoreShown: boolean = false;
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
   533
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   534
procedure ProcessBot;
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6770
diff changeset
   535
const cStopThinkTime = 40;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   536
begin
602
f7628ebfccde Add CurrentHedgehog variable which simplifies code
unc0rr
parents: 599
diff changeset
   537
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
   538
    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
   539
    and ((Gear^.State and gstHHDriven) <> 0)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   540
    and (TurnTimeLeft < cHedgehogTurnTime - 50) then
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 425
diff changeset
   541
        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
   542
            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
   543
            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
   544
                begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   545
                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
   546
                    begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   547
                    StopMessages(Gear^.Message);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   548
                    TryDo((Gear^.Message and gmAllStoppable) = 0, 'Engine bug: AI may break demos playing', true);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   549
                    end;
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
   550
                    
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   551
                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
   552
                    exit;
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
   553
                    
7216
53f5e48b8375 disable this debug too
nemo
parents: 7204
diff changeset
   554
                //scoreShown:= false;   
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   555
                StartThink(Gear);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   556
                StartTicks:= GameTicks
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6462
diff changeset
   557
                
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
   558
            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
   559
                begin
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
   560
                {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
   561
                    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
   562
                    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
   563
                    scoreShown:= true
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
   564
                    end;}
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
   565
                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
   566
                end
509
fd58135a4407 Bots know shotgun behavior better
unc0rr
parents: 508
diff changeset
   567
        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
   568
            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
   569
                StopThinking:= true
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
   570
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   571
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   572
procedure initModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   573
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   574
    hasThread:= 0;
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6770
diff changeset
   575
    StartTicks:= 0;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   576
{$IFNDEF PAS2C}
6025
cac1d5601d7c reviewed the build system and parts of the previous merge, performed some code cleanup
koda
parents: 5611
diff changeset
   577
    ThinkThread:= ThinkThread;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7790
diff changeset
   578
{$ENDIF}
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   579
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   580
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   581
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   582
begin
7026
8d1724e1337e split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents: 6992
diff changeset
   583
    FreeActionsList();
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   584
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2695
diff changeset
   585
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   586
end.