hedgewars/uAI.pas
author unc0rr
Wed, 20 Sep 2006 15:33:47 +0000
changeset 154 5667e6f38704
parent 146 458f4f58c1b6
child 183 57c2ef19f719
permissions -rw-r--r--
Network protocol uses integers in network byte order
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     2
 * Hedgewars, a worms-like game
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 48
diff changeset
     3
 * Copyright (c) 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     5
 * Distributed under the terms of the BSD-modified licence:
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     6
 *
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 * of this software and associated documentation files (the "Software"), to deal
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     9
 * with the Software without restriction, including without limitation the
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    10
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    11
 * sell copies of the Software, and to permit persons to whom the Software is
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    12
 * furnished to do so, subject to the following conditions:
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    14
 * 1. Redistributions of source code must retain the above copyright notice,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    15
 *    this list of conditions and the following disclaimer.
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    16
 * 2. Redistributions in binary form must reproduce the above copyright notice,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *    this list of conditions and the following disclaimer in the documentation
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
 *    and/or other materials provided with the distribution.
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    19
 * 3. The name of the author may not be used to endorse or promote products
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
 *    derived from this software without specific prior written permission.
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    21
 *
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    23
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    24
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    25
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    26
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    27
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    28
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    29
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    30
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    31
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    32
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    33
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    34
unit uAI;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    35
interface
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    36
{$INCLUDE options.inc}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    37
procedure ProcessBot;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    38
procedure FreeActionsList;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    39
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    40
implementation
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    41
uses uTeams, uConsts, SDLh, uAIMisc, uGears, uAIAmmoTests, uAIActions, uMisc;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    42
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    43
var BestActions: TActions;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    44
    ThinkThread: PSDL_Thread = nil;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    45
    StopThinking: boolean;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
    46
    CanUseAmmo: array [TAmmoType] of boolean;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    47
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    48
procedure FreeActionsList;
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    49
begin
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    50
if ThinkThread <> nil then
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    51
   begin
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    52
   StopThinking:= true;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    53
   SDL_WaitThread(ThinkThread, nil);
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    54
   ThinkThread:= nil
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    55
   end;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    56
BestActions.Count:= 0;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    57
BestActions.Pos:= 0
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    58
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    59
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    60
procedure TestAmmos(var Actions: TActions; Me: PGear);
136
89970b70b076 Implement bot levels
unc0rr
parents: 111
diff changeset
    61
var Time, BotLevel: Longword;
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
    62
    Angle, Power, Score, ExplX, ExplY, ExplR: integer;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    63
    i: integer;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    64
    a, aa: TAmmoType;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    65
begin
136
89970b70b076 Implement bot levels
unc0rr
parents: 111
diff changeset
    66
BotLevel:= PHedgehog(Me.Hedgehog).BotLevel;
89970b70b076 Implement bot levels
unc0rr
parents: 111
diff changeset
    67
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
    68
for i:= 0 to Pred(Targets.Count) do
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
    69
    if (Targets.ar[i].Score >= 0) then
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    70
       begin
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
    71
       with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
    72
            a:= Ammo[CurSlot, CurAmmo].AmmoType;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    73
       aa:= a;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    74
       repeat
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
    75
        if CanUseAmmo[a] then
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    76
           begin
136
89970b70b076 Implement bot levels
unc0rr
parents: 111
diff changeset
    77
           Score:= AmmoTests[a](Me, Targets.ar[i].Point, BotLevel, Time, Angle, Power, ExplX, ExplY, ExplR);
139
340ded7cc336 Fixed AI bug, introduced by previous changes
unc0rr
parents: 136
diff changeset
    78
           if Actions.Score + Score > BestActions.Score then
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    79
              begin
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    80
              BestActions:= Actions;
136
89970b70b076 Implement bot levels
unc0rr
parents: 111
diff changeset
    81
              inc(BestActions.Score, Score);
146
458f4f58c1b6 - Fix AI not to damage self hedgehogs
unc0rr
parents: 144
diff changeset
    82
              
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    83
              AddAction(BestActions, aia_Weapon, Longword(a), 500);
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    84
              if Time <> 0 then AddAction(BestActions, aia_Timer, Time div 1000, 400);
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    85
              if (Angle > 0) then AddAction(BestActions, aia_LookRight, 0, 200)
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    86
              else if (Angle < 0) then AddAction(BestActions, aia_LookLeft, 0, 200);
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    87
              if (Ammoz[a].Ammo.Propz and ammoprop_NoCrosshair) = 0 then
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    88
                 begin
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    89
                 Angle:= integer(Me.Angle) - Abs(Angle);
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    90
                 if Angle > 0 then
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    91
                    begin
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    92
                    AddAction(BestActions, aia_Up, aim_push, 500);
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    93
                    AddAction(BestActions, aia_Up, aim_release, Angle)
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    94
                    end else if Angle < 0 then
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    95
                    begin
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    96
                    AddAction(BestActions, aia_Down, aim_push, 500);
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    97
                    AddAction(BestActions, aia_Down, aim_release, -Angle)
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    98
                    end
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    99
                 end;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   100
              AddAction(BestActions, aia_attack, aim_push, 800);
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   101
              AddAction(BestActions, aia_attack, aim_release, Power);
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
   102
              if ExplR > 0 then
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
   103
                 AddAction(BestActions, aia_AwareExpl, ExplR, 10, ExplX, ExplY);
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   104
              end
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   105
           end;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   106
        if a = High(TAmmoType) then a:= Low(TAmmoType)
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   107
                               else inc(a)
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   108
       until (a = aa) or (CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].AttacksNum > 0)
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   109
       end
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   110
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   111
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   112
procedure Walk(Me: PGear);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   113
const FallPixForBranching = cHHRadius * 2 + 8;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   114
      cBranchStackSize = 12;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   115
      
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   116
type TStackEntry = record
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   117
                   WastedTicks: Longword;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   118
                   MadeActions: TActions;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   119
                   Hedgehog: TGear;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   120
                   end;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   121
                   
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   122
var Stack: record
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   123
           Count: Longword;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   124
           States: array[0..Pred(cBranchStackSize)] of TStackEntry;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   125
           end;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   126
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   127
    function Push(Ticks: Longword; const Actions: TActions; const Me: TGear; Dir: integer): boolean;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   128
    begin
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   129
    Result:= (Stack.Count < cBranchStackSize) and (Actions.Count < MAXACTIONS - 5);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   130
    if Result then
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   131
       with Stack.States[Stack.Count] do
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   132
            begin
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   133
            WastedTicks:= Ticks;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   134
            MadeActions:= Actions;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   135
            Hedgehog:= Me;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   136
            Hedgehog.Message:= Dir;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   137
            inc(Stack.Count)
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   138
            end
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   139
    end;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   140
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   141
    procedure Pop(out Ticks: Longword; out Actions: TActions; out Me: TGear);
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   142
    begin
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   143
    dec(Stack.Count);
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   144
    with Stack.States[Stack.Count] do
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   145
         begin
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   146
         Ticks:= WastedTicks;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   147
         Actions:= MadeActions;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   148
         Me:= Hedgehog
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   149
         end
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   150
    end;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   151
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   152
    function PosInThinkStack(Me: PGear): boolean;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   153
    var i: Longword;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   154
    begin
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   155
    i:= 0;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   156
    Result:= false;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   157
    while (i < Stack.Count) and not Result do
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   158
          begin
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   159
          Result:= (abs(Stack.States[i].Hedgehog.X - Me.X) +
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   160
                    abs(Stack.States[i].Hedgehog.Y - Me.Y) <= 2)
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   161
                    and (Stack.States[i].Hedgehog.Message = Me.Message);
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   162
          inc(i)
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   163
          end
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   164
    end;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   165
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   166
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   167
var Actions: TActions;
144
e6084b0c9316 - Fix 'new team' regression
unc0rr
parents: 143
diff changeset
   168
    ticks, maxticks, steps, BotLevel, tmp: Longword;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   169
    BaseRate, BestRate, Rate: integer;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   170
    GoInfo: TGoInfo;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   171
    CanGo: boolean;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   172
    AltMe: TGear;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   173
begin
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   174
Actions.Count:= 0;
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   175
Actions.Pos:= 0;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   176
Actions.Score:= 0;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   177
Stack.Count:= 0;
136
89970b70b076 Implement bot levels
unc0rr
parents: 111
diff changeset
   178
BotLevel:= PHedgehog(Me.Hedgehog).BotLevel;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   179
144
e6084b0c9316 - Fix 'new team' regression
unc0rr
parents: 143
diff changeset
   180
tmp:= random(2) + 1;
e6084b0c9316 - Fix 'new team' regression
unc0rr
parents: 143
diff changeset
   181
Push(0, Actions, Me^, tmp);
e6084b0c9316 - Fix 'new team' regression
unc0rr
parents: 143
diff changeset
   182
Push(0, Actions, Me^, tmp xor 3);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   183
136
89970b70b076 Implement bot levels
unc0rr
parents: 111
diff changeset
   184
if (Me.State and gstAttacked) = 0 then maxticks:= max(0, TurnTimeLeft - 5000 - 4000 * BotLevel)
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   185
                                  else maxticks:= TurnTimeLeft;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   186
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   187
if (Me.State and gstAttacked) = 0 then TestAmmos(Actions, Me);
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   188
BestRate:= RatePlace(Me);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   189
BaseRate:= max(BestRate, 0);
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   190
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   191
while (Stack.Count > 0) and not StopThinking do
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   192
    begin
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   193
    Pop(ticks, Actions, Me^);
144
e6084b0c9316 - Fix 'new team' regression
unc0rr
parents: 143
diff changeset
   194
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   195
    AddAction(Actions, Me.Message, aim_push, 250);
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   196
    AddAction(Actions, aia_WaitX, round(Me.X), 0);
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   197
    AddAction(Actions, Me.Message, aim_release, 0);
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   198
    steps:= 0;
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   199
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   200
    while (not StopThinking) and (not PosInThinkStack(Me)) do
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   201
       begin
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   202
       CanGo:= HHGo(Me, @AltMe, GoInfo);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   203
       inc(ticks, GoInfo.Ticks);
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   204
       if ticks > maxticks then break;
144
e6084b0c9316 - Fix 'new team' regression
unc0rr
parents: 143
diff changeset
   205
       
136
89970b70b076 Implement bot levels
unc0rr
parents: 111
diff changeset
   206
       if (BotLevel < 5) and (GoInfo.JumpType = jmpHJump) then // hjump support
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   207
          if Push(ticks, Actions, AltMe, Me^.Message) then
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   208
             with Stack.States[Pred(Stack.Count)] do
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   209
                  begin
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   210
                  AddAction(MadeActions, aia_HJump, 0, 305);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   211
                  AddAction(MadeActions, aia_HJump, 0, 350);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   212
                  end;
136
89970b70b076 Implement bot levels
unc0rr
parents: 111
diff changeset
   213
       if (BotLevel < 3) and (GoInfo.JumpType = jmpLJump) then // ljump support
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   214
          if Push(ticks, Actions, AltMe, Me^.Message) then
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   215
             with Stack.States[Pred(Stack.Count)] do
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   216
                  AddAction(MadeActions, aia_LJump, 0, 305);
144
e6084b0c9316 - Fix 'new team' regression
unc0rr
parents: 143
diff changeset
   217
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   218
       if not CanGo then break;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   219
       inc(steps);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   220
       Actions.actions[Actions.Count - 2].Param:= round(Me.X);
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   221
       Rate:= RatePlace(Me);
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   222
       if Rate > BestRate then
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   223
          begin
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   224
          BestActions:= Actions;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   225
          BestRate:= Rate;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   226
          Me.State:= Me.State or gstAttacked // we have better place, go there and don't use ammo
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   227
          end
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   228
       else if Rate < BestRate then break;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   229
       if ((Me.State and gstAttacked) = 0)
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   230
           and ((steps mod 4) = 0) then TestAmmos(Actions, Me);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   231
       if GoInfo.FallPix >= FallPixForBranching then
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   232
          Push(ticks, Actions, Me^, Me^.Message xor 3); // aia_Left xor 3 = aia_Right
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   233
       end;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   234
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   235
    if BestRate > BaseRate then exit
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   236
    end
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   237
end;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   238
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   239
procedure Think(Me: PGear); cdecl;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   240
var BackMe, WalkMe: TGear;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   241
    StartTicks: Longword;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   242
begin
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   243
StartTicks:= GameTicks;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   244
BestActions.Count:= 0;
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   245
BestActions.Pos:= 0;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   246
BestActions.Score:= Low(integer);
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   247
BackMe:= Me^;
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   248
WalkMe:= BackMe;
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   249
if (Me.State and gstAttacked) = 0 then
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   250
   if Targets.Count > 0 then
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   251
      begin
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   252
      Walk(@WalkMe);
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   253
      if (StartTicks > GameTicks - 1500) and not StopThinking then SDL_Delay(2000);
146
458f4f58c1b6 - Fix AI not to damage self hedgehogs
unc0rr
parents: 144
diff changeset
   254
      if BestActions.Score < -1023 then
458f4f58c1b6 - Fix AI not to damage self hedgehogs
unc0rr
parents: 144
diff changeset
   255
         begin
458f4f58c1b6 - Fix AI not to damage self hedgehogs
unc0rr
parents: 144
diff changeset
   256
         BestActions.Count:= 0;
458f4f58c1b6 - Fix AI not to damage self hedgehogs
unc0rr
parents: 144
diff changeset
   257
         AddAction(BestActions, aia_Skip, 0, 250);
458f4f58c1b6 - Fix AI not to damage self hedgehogs
unc0rr
parents: 144
diff changeset
   258
         end;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   259
      end else
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   260
else begin
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   261
      Walk(@WalkMe);
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   262
      while (not StopThinking) and (BestActions.Count = 0) do
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   263
            begin
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   264
            SDL_Delay(100);
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   265
            FillBonuses(true);
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   266
            WalkMe:= BackMe;
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   267
            Walk(@WalkMe)
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   268
            end
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   269
      end;
111
30ca06092a64 - 'net nickname' and 'server address' options are on PageNet
unc0rr
parents: 95
diff changeset
   270
Me.State:= Me.State and not gstHHThinking
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   271
end;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   272
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   273
procedure StartThink(Me: PGear);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   274
var a: TAmmoType;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   275
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   276
if ((Me.State and gstAttacking) <> 0) or isInMultiShoot then exit;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   277
Me.State:= Me.State or gstHHThinking;
144
e6084b0c9316 - Fix 'new team' regression
unc0rr
parents: 143
diff changeset
   278
Me.Message:= 0;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   279
StopThinking:= false;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   280
ThinkingHH:= Me;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   281
FillTargets;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   282
if Targets.Count = 0 then
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   283
   begin
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   284
   OutError('AI: no targets!?');
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   285
   exit
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 75
diff changeset
   286
   end;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   287
FillBonuses((Me.State and gstAttacked) <> 0);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   288
for a:= Low(TAmmoType) to High(TAmmoType) do
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   289
    CanUseAmmo[a]:= Assigned(AmmoTests[a]) and HHHasAmmo(PHedgehog(Me.Hedgehog), a);
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   290
{$IFDEF DEBUGFILE}AddFileLog('Enter Think Thread');{$ENDIF}
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   291
ThinkThread:= SDL_CreateThread(@Think, Me)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   292
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   293
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   294
procedure ProcessBot;
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 139
diff changeset
   295
const StartTicks: Longword = 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   296
begin
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   297
with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   298
     if (Gear <> nil)
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   299
        and ((Gear.State and gstHHDriven) <> 0)
144
e6084b0c9316 - Fix 'new team' regression
unc0rr
parents: 143
diff changeset
   300
        and (TurnTimeLeft < cHedgehogTurnTime - 50) then
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 139
diff changeset
   301
        if ((Gear.State and gstHHThinking) = 0) then
3dacbd83209b - Many fixes to AI
unc0rr
parents: 139
diff changeset
   302
           if (BestActions.Pos >= BestActions.Count) then
3dacbd83209b - Many fixes to AI
unc0rr
parents: 139
diff changeset
   303
              begin
3dacbd83209b - Many fixes to AI
unc0rr
parents: 139
diff changeset
   304
              StartThink(Gear);
3dacbd83209b - Many fixes to AI
unc0rr
parents: 139
diff changeset
   305
              StartTicks:= GameTicks
3dacbd83209b - Many fixes to AI
unc0rr
parents: 139
diff changeset
   306
              end else ProcessAction(BestActions, Gear)
3dacbd83209b - Many fixes to AI
unc0rr
parents: 139
diff changeset
   307
        else if (GameTicks - StartTicks) > cMaxAIThinkTime then StopThinking:= true
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   308
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   309
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   310
end.