hedgewars/uAIAmmoTests.pas
author unc0rr
Sun, 28 Jan 2007 16:40:04 +0000
changeset 374 95169697cc38
parent 371 731ad6d27bd1
child 375 18012da67681
permissions -rw-r--r--
- UFO smokes - Bots use grenade
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
     1
(*
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
     2
 * Hedgewars, a worms-like game
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
     3
 * Copyright (c) 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com>
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
    12
 * GNU General Public License for more details.
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 143
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
    17
 *)
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
    18
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    19
unit uAIAmmoTests;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
interface
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
    21
uses SDLh, uGears, uConsts, uFloat;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    22
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    23
function TestBazooka(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
    24
function TestGrenade(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
    25
(*function TestShotgun(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    26
function TestDesertEagle(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    27
function TestBaseballBat(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    28
function TestFirePunch(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    29
*)
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    30
type TAmmoTestProc = function (Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    31
const AmmoTests: array[TAmmoType] of TAmmoTestProc =
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    32
                 (
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
    33
{amGrenade}       @TestGrenade,
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
    34
{amClusterBomb}   nil,
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    35
{amBazooka}       @TestBazooka,
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    36
{amUFO}           nil,
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    37
{amShotgun}       nil,//TestShotgun,
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    38
{amPickHammer}    nil,
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    39
{amSkip}          nil,
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    40
{amRope}          nil,
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    41
{amMine}          nil,
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    42
{amDEagle}        nil,//TestDesertEagle,
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
    43
{amDynamite}      nil,
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    44
{amFirePunch}     nil,//TestFirePunch,
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    45
{amBaseballBat}   nil,//TestBaseballBat,
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
    46
{amParachute}     nil,
285
cdab49768c83 Mine Strike weapon
unc0rr
parents: 263
diff changeset
    47
{amAirAttack}     nil,
302
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 285
diff changeset
    48
{amMineStrike}    nil,
7aca131ecd7f First implementation of Blow Torch
unc0rr
parents: 285
diff changeset
    49
{amBlowTorch}     nil
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
    50
                  );
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    51
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    52
const BadTurn = Low(LongInt);
369
2aed85310727 AI compiles, but doesn't work
unc0rr
parents: 351
diff changeset
    53
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
    54
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    55
implementation
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
    56
uses uMisc, uAIMisc, uLand;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    57
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    58
function Metric(x1, y1, x2, y2: LongInt): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    59
begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    60
Metric:= abs(x1 - x2) + abs(y1 - y2)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    61
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    62
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    63
function TestBazooka(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
    64
var Vx, Vy, r: hwFloat;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
    65
    rTime: hwFloat;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    66
    Score, EX, EY: LongInt;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    67
    Result: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    68
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    69
    function CheckTrace: LongInt;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
    70
    var x, y, dX, dY: hwFloat;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    71
        t: LongInt;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    72
        Result: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    73
    begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    74
    x:= Me^.X;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    75
    y:= Me^.Y;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    76
    dX:= Vx;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    77
    dY:= -Vy;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    78
    t:= hwRound(rTime);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    79
    repeat
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    80
      x:= x + dX;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    81
      y:= y + dY;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    82
      dX:= dX + cWindSpeed;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    83
      dY:= dY + cGravity;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    84
      dec(t)
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    85
    until TestColl(hwRound(x), hwRound(y), 5) or (t <= 0);
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    86
    EX:= hwRound(x);
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    87
    EY:= hwRound(y);
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    88
    Result:= RateExplosion(Me, EX, EY, 101);
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    89
    if Result = 0 then Result:= - Metric(Targ.X, Targ.Y, EX, EY) div 64;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    90
    CheckTrace:= Result
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    91
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    92
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    93
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    94
Time:= 0;
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
    95
rTime:= 50;
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
    96
ExplR:= 0;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
    97
Result:= BadTurn;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    98
repeat
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
    99
  rTime:= rTime + 300 + Level * 50 + random(200);
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
   100
  Vx:= - cWindSpeed * rTime * _0_5 + (Targ.X - hwRound(Me^.X)) / rTime;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
   101
  Vy:= cGravity * rTime * _0_5 - (Targ.Y - hwRound(Me^.Y)) / rTime;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
   102
  r:= Distance(Vx, Vy);
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
   103
  if not (r > 1) then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   104
     begin
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   105
     Score:= CheckTrace;
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   106
     if Result <= Score then
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   107
        begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
   108
        Angle:= DxDy2AttackAngle(Vx, Vy) + AIrndSign(random((Level - 1) * 8));
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
   109
        Power:= hwRound(r * cMaxPower) - random((Level - 1) * 15 + 1);
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   110
        ExplR:= 100;
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
   111
        ExplX:= EX;
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
   112
        ExplY:= EY;
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
   113
        Result:= Score
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 53
diff changeset
   114
        end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   115
     end
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
   116
until (rTime > 4500);
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 369
diff changeset
   117
TestBazooka:= Result
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 37
diff changeset
   118
end;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   119
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   120
function TestGrenade(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   121
const tDelta = 24;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
   122
var Vx, Vy, r: hwFloat;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   123
    Score, EX, EY, Result: LongInt;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   124
    TestTime: Longword;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   125
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   126
    function CheckTrace: LongInt;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
   127
    var x, y, dY: hwFloat;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   128
        t: LongInt;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   129
    begin
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   130
    x:= Me^.X;
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   131
    y:= Me^.Y;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   132
    dY:= -Vy;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   133
    t:= TestTime;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   134
    repeat
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   135
      x:= x + Vx;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   136
      y:= y + dY;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   137
      dY:= dY + cGravity;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   138
      dec(t)
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   139
    until TestColl(hwRound(x), hwRound(y), 5) or (t = 0);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   140
    EX:= hwRound(x);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   141
    EY:= hwRound(y);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   142
    if t < 50 then CheckTrace:= RateExplosion(Me, EX, EY, 101)
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   143
              else CheckTrace:= Low(LongInt)
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   144
    end;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   145
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   146
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   147
Result:= BadTurn;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   148
TestTime:= 0;
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
   149
ExplR:= 0;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   150
repeat
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   151
  inc(TestTime, 1000);
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   152
  Vx:= (Targ.X - Me^.X) / (TestTime + tDelta);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   153
  Vy:= cGravity * ((TestTime + tDelta) div 2) - (Targ.Y - Me^.Y) / (TestTime + tDelta);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   154
  r:= Distance(Vx, Vy);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   155
  if not (r > 1) then
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   156
     begin
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   157
     Score:= CheckTrace;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   158
     if Result < Score then
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   159
        begin
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   160
        Angle:= DxDy2AttackAngle(Vx, Vy) + AIrndSign(random(Level));
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   161
        Power:= hwRound(r * cMaxPower) + AIrndSign(random(Level) * 12);
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   162
        Time:= TestTime;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   163
        ExplR:= 100;
71
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
   164
        ExplX:= EX;
5f56c6979496 - Changed falling damage scoring
unc0rr
parents: 70
diff changeset
   165
        ExplY:= EY;
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   166
        Result:= Score
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   167
        end;
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   168
     end
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   169
until (TestTime = 5000);
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   170
TestGrenade:= Result
66
9643d75baf1e Many AI improvements, bots do think in separate thread
unc0rr
parents: 64
diff changeset
   171
end;
374
95169697cc38 - UFO smokes
unc0rr
parents: 371
diff changeset
   172
{
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   173
function TestShotgun(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
   174
var Vx, Vy, x, y: hwFloat;
136
89970b70b076 Implement bot levels
unc0rr
parents: 108
diff changeset
   175
begin       
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   176
ExplR:= 0;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   177
if Metric(round(Me.X), round(Me.Y), Targ.X, Targ.Y) < 80 then
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   178
   begin
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   179
   Result:= BadTurn;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   180
   exit
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   181
   end;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   182
Time:= 0;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   183
Power:= 1;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   184
Vx:= (Targ.X - Me.X)/1024;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   185
Vy:= (Targ.Y - Me.Y)/1024;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   186
x:= Me.X;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   187
y:= Me.Y;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   188
Angle:= DxDy2AttackAngle(Vx, -Vy);
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   189
repeat
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   190
  x:= x + vX;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   191
  y:= y + vY;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   192
  if TestColl(round(x), round(y), 2) then
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   193
     begin
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
   194
     Result:= RateShove(Me, round(x), round(y), 25, 25) * 2;
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
   195
     if Result = 0 then Result:= - Metric(Targ.X, Targ.Y, round(x), round(y)) div 64
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
   196
                   else dec(Result, Level * 4000);
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   197
     exit
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   198
     end
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   199
until (abs(Targ.X - x) + abs(Targ.Y - y) < 4) or (x < 0) or (y < 0) or (x > 2048) or (y > 1024);
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   200
Result:= BadTurn
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   201
end;
82d93eeecebe - Many AI improvements
unc0rr
parents: 66
diff changeset
   202
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   203
function TestDesertEagle(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
   204
var Vx, Vy, x, y, t: hwFloat;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   205
    d: Longword;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   206
begin
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   207
ExplR:= 0;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   208
if abs(Me.X - Targ.X) + abs(Me.Y - Targ.Y) < 80 then
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   209
   begin
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   210
   Result:= BadTurn;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   211
   exit
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   212
   end;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   213
Time:= 0;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   214
Power:= 1;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   215
t:= sqrt(sqr(Targ.X - Me.X) + sqr(Targ.Y - Me.Y)) * 2;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   216
Vx:= (Targ.X - Me.X) / t;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   217
Vy:= (Targ.Y - Me.Y) / t;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   218
x:= Me.X;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   219
y:= Me.Y;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   220
Angle:= DxDy2AttackAngle(Vx, -Vy);
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   221
d:= 0;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   222
repeat
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   223
  x:= x + vX;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   224
  y:= y + vY;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   225
  if ((round(x) and $FFFFF800) = 0)and((round(y) and $FFFFFC00) = 0)
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   226
     and (Land[round(y), round(x)] <> 0) then inc(d);
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   227
until (abs(Targ.X - x) + abs(Targ.Y - y) < 2) or (x < 0) or (y < 0) or (x > 2048) or (y > 1024) or (d > 200);
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   228
if abs(Targ.X - x) + abs(Targ.Y - y) < 2 then Result:= max(0, (4 - d div 50) * 7 * 1024)
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   229
                                         else Result:= Low(LongInt)
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   230
end;
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   231
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   232
function TestBaseballBat(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   233
begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   234
ExplR:= 0;
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
   235
if (Level > 2) and (abs(Me.X - Targ.X) + abs(Me.Y - Targ.Y) >= 25) then
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   236
   begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   237
   Result:= BadTurn;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   238
   exit
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   239
   end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   240
Time:= 0;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   241
Power:= 1;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   242
Angle:= DxDy2AttackAngle(hwSign(Targ.X - Me.X), 1);
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
   243
Result:= RateShove(Me, round(Me.X) + 10 * hwSign(Targ.X - Me.X), round(Me.Y), 15, 30);
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
   244
if Result <= 0 then Result:= BadTurn
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   245
end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   246
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   247
function TestFirePunch(Me: PGear; Targ: TPoint; Level: LongInt; var Time: Longword; var Angle, Power: LongInt; var ExplX, ExplY, ExplR: LongInt): LongInt;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   248
var i: LongInt;
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   249
begin
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   250
ExplR:= 0;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   251
if (abs(Me.X - Targ.X) > 25) or (abs(Me.Y - 50 - Targ.Y) > 50) then
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   252
   begin
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   253
   Result:= BadTurn;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   254
   exit
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   255
   end;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   256
Time:= 0;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   257
Power:= 1;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   258
Angle:= DxDy2AttackAngle(hwSign(Targ.X - Me.X), 1);
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   259
Result:= 0;
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   260
for i:= 0 to 4 do
143
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
   261
    Result:= Result + RateShove(Me, round(Me.X) + 10 * hwSign(Targ.X - Me.X), round(Me.Y) - 20 * i - 5, 10, 30);
3dacbd83209b - Many fixes to AI
unc0rr
parents: 141
diff changeset
   262
if Result <= 0 then Result:= BadTurn
82
2f4f3236cccc - New fort
unc0rr
parents: 80
diff changeset
   263
end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
   264
}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   265
end.