hedgewars/uGears.pas
author unc0rr
Sat, 09 Dec 2006 19:47:31 +0000
changeset 293 00a532e8808e
parent 292 0ca921ca7557
child 294 92a7ccd67bb9
permissions -rw-r--r--
Some Z-ordering
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
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 46
diff changeset
     3
 * Copyright (c) 2004, 2005, 2006 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: 149
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
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: 149
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
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: 149
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 149
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
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    19
unit uGears;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
interface
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    21
uses SDLh, uConsts;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
{$INCLUDE options.inc}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    23
const AllInactive: boolean = false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    24
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    25
type PGear = ^TGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    26
     TGearStepProcedure = procedure (Gear: PGear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    27
     TGear = record
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    28
             NextGear, PrevGear: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    29
             Active: Boolean;
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
    30
             State : Longword;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    31
             X : Double;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    32
             Y : Double;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    33
             dX: Double;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    34
             dY: Double;
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
    35
             Kind: TGearType;
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
    36
             Pos: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    37
             doStep: TGearStepProcedure;
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
    38
             Radius: integer;
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
    39
             Angle, Power : Longword;
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 100
diff changeset
    40
             DirAngle: Double;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    41
             Timer : LongWord;
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    42
             Elasticity: Double;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
    43
             Friction  : Double;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    44
             Message : Longword;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    45
             Hedgehog: pointer;
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
    46
             Health, Damage: integer;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    47
             CollIndex: Longword;
6
9c1f00e7b43e Smooth change wind bar
unc0rr
parents: 4
diff changeset
    48
             Tag: integer;
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 92
diff changeset
    49
             Surf: PSDL_Surface;
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
    50
             Z: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    51
             end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    52
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
    53
function  AddGear(X, Y: integer; Kind: TGearType; State: Longword; const dX: Double=0.0; dY: Double=0.0; Timer: LongWord=0): PGear;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    54
procedure ProcessGears;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    55
procedure SetAllToActive;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    56
procedure SetAllHHToActive;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    57
procedure DrawGears(Surface: PSDL_Surface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    58
procedure FreeGearsList;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
    59
procedure AddMiscGears;
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
    60
procedure AddClouds;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    61
procedure AssignHHCoords;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    62
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    63
var CurAmmoGear: PGear = nil;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 64
diff changeset
    64
    GearsList: PGear = nil;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
    65
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    66
implementation
81
d74e0e914b50 More translations
unc0rr
parents: 80
diff changeset
    67
uses uWorld, uMisc, uStore, uConsole, uSound, uTeams, uRandom, uCollisions,
145
e593d5266e01 - Fix crash in AI
unc0rr
parents: 126
diff changeset
    68
     uLand, uIO, uLandGraphics, uAIMisc, uLocale, uAI;
68
cbb93eb90304 Collision-related stuff
unc0rr
parents: 64
diff changeset
    69
var RopePoints: record
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    70
                Count: Longword;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    71
                HookAngle: integer;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    72
                ar: array[0..300] of record
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 100
diff changeset
    73
                                  X, Y: Double;
b08ce0293a51 - Many type fixes
unc0rr
parents: 100
diff changeset
    74
                                  dLen: Double;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    75
                                  b: boolean;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    76
                                  end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    77
                 end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    78
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    79
procedure DeleteGear(Gear: PGear); forward;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    80
procedure doMakeExplosion(X, Y, Radius: integer; Mask: LongWord); forward;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
    81
procedure AmmoShove(Ammo: PGear; Damage, Power: integer); forward;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
    82
procedure AmmoFlameWork(Ammo: PGear); forward;
17
a6bed8d31444 minor code review
unc0rr
parents: 16
diff changeset
    83
function  CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: integer): PGear; forward;
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
    84
procedure SpawnBoxOfSmth; forward;
32
78bff13b11c0 With this patch the game doesn't crash when gaming by net
unc0rr
parents: 24
diff changeset
    85
procedure AfterAttack; forward;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
    86
procedure FindPlace(Gear: PGear; withFall: boolean; Left, Right: integer); forward;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    87
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    88
{$INCLUDE GSHandlers.inc}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    89
{$INCLUDE HHHandlers.inc}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    90
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    91
const doStepHandlers: array[TGearType] of TGearStepProcedure = (
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    92
                                                               doStepCloud,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    93
                                                               doStepBomb,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    94
                                                               doStepHedgehog,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    95
                                                               doStepGrenade,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    96
                                                               doStepHealthTag,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    97
                                                               doStepGrave,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    98
                                                               doStepUFO,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    99
                                                               doStepShotgunShot,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   100
                                                               doStepPickHammer,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   101
                                                               doStepRope,
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   102
                                                               doStepSmokeTrace,
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   103
                                                               doStepExplosion,
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 10
diff changeset
   104
                                                               doStepMine,
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   105
                                                               doStepCase,
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   106
                                                               doStepDEagleShot,
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 48
diff changeset
   107
                                                               doStepDynamite,
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   108
                                                               doStepTeamHealthSorter,
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   109
                                                               doStepBomb,
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   110
                                                               doStepCluster,
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   111
                                                               doStepShover,
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   112
                                                               doStepFlame,
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   113
                                                               doStepFirePunch,
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   114
                                                               doStepActionTimer,
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   115
                                                               doStepActionTimer,
211
558476056205 Parachute
unc0rr
parents: 191
diff changeset
   116
                                                               doStepActionTimer,
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
   117
                                                               doStepParachute,
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
   118
                                                               doStepAirAttack,
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
   119
                                                               doStepAirBomb
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   120
                                                               );
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   121
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
   122
function AddGear(X, Y: integer; Kind: TGearType; State: Longword; const dX: Double=0.0; dY: Double=0.0; Timer: LongWord=0): PGear;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   123
const Counter: Longword = 0;
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   124
var tmp: PGear;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   125
begin
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   126
inc(Counter);
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   127
{$IFDEF DEBUGFILE}AddFileLog('AddGear: ('+inttostr(x)+','+inttostr(y)+'), d('+floattostr(dX)+','+floattostr(dY)+')');{$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   128
New(Result);
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   129
{$IFDEF DEBUGFILE}AddFileLog('AddGear: type = '+inttostr(ord(Kind))+'; handle = '+inttostr(integer(Result)));{$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   130
FillChar(Result^, sizeof(TGear), 0);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   131
Result.X:= X;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   132
Result.Y:= Y;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   133
Result.Kind := Kind;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   134
Result.State:= State;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   135
Result.Active:= true;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   136
Result.dX:= dX;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   137
Result.dY:= dY;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   138
Result.doStep:= doStepHandlers[Kind];
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   139
Result.CollIndex:= High(Longword);
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   140
Result.Timer:= Timer;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   141
if CurrentTeam <> nil then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   142
   Result.Hedgehog:= @CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog];
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   143
case Kind of
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   144
       gtCloud: Result.Z:= High(Result.Z);  
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   145
   gtAmmo_Bomb: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   146
                Result.Radius:= 4;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   147
                Result.Elasticity:= 0.6;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   148
                Result.Friction:= 0.995;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   149
                end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   150
    gtHedgehog: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   151
                Result.Radius:= cHHRadius;
149
aae256899c49 Fix hedgehog physics %)
unc0rr
parents: 145
diff changeset
   152
                Result.Elasticity:= 0.35;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   153
                Result.Friction:= 0.999;
64
9df467527ae5 - Start AI rewrite
unc0rr
parents: 57
diff changeset
   154
                Result.Angle:= cMaxAngle div 2;
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   155
                Result.Z:= 1000;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   156
                end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   157
gtAmmo_Grenade: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   158
                Result.Radius:= 4;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   159
                end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   160
   gtHealthTag: begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   161
                Result.Timer:= 1500;
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   162
                Result.Z:= 2000;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   163
                end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   164
       gtGrave: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   165
                Result.Radius:= 10;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   166
                Result.Elasticity:= 0.6;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   167
                end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   168
         gtUFO: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   169
                Result.Radius:= 5;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   170
                Result.Timer:= 500;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   171
                Result.Elasticity:= 0.9
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   172
                end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   173
 gtShotgunShot: begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   174
                Result.Timer:= 900;
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   175
                Result.Radius:= 2
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   176
                end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   177
  gtPickHammer: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   178
                Result.Radius:= 10;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   179
                Result.Timer:= 4000
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   180
                end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   181
  gtSmokeTrace: begin
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   182
                Result.X:= Result.X - 16;
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   183
                Result.Y:= Result.Y - 16;
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   184
                Result.State:= 8
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   185
                end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   186
        gtRope: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   187
                Result.Radius:= 3;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   188
                Result.Friction:= 500;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   189
                RopePoints.Count:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   190
                end;
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   191
   gtExplosion: begin
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   192
                Result.X:= Result.X - 25;
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   193
                Result.Y:= Result.Y - 25;
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   194
                end;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   195
        gtMine: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   196
                Result.Radius:= 3;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   197
                Result.Elasticity:= 0.55;
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   198
                Result.Friction:= 0.995;
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   199
                Result.Timer:= 3000;
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   200
                end;
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 10
diff changeset
   201
        gtCase: begin
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   202
                Result.Radius:= 16;
145
e593d5266e01 - Fix crash in AI
unc0rr
parents: 126
diff changeset
   203
                Result.Elasticity:= 0.4
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 10
diff changeset
   204
                end;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   205
  gtDEagleShot: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   206
                Result.Radius:= 1;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   207
                Result.Radius:= 1;
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   208
                Result.Health:= 50
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   209
                end;
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   210
    gtDynamite: begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   211
                Result.Radius:= 3;
56
a29135563e94 - Replaced water sprite
unc0rr
parents: 54
diff changeset
   212
                Result.Elasticity:= 0.55;
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   213
                Result.Friction:= 0.03;
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   214
                Result.Timer:= 5000;
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   215
                end;
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   216
 gtClusterBomb: begin
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   217
                Result.Radius:= 4;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   218
                Result.Elasticity:= 0.6;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   219
                Result.Friction:= 0.995;
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   220
                end;
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   221
       gtFlame: begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   222
                Result.Angle:= Counter mod 64;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   223
                Result.Radius:= 1;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   224
                Result.Health:= 2;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   225
                Result.dY:= (getrandom - 0.8) * 0.03;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   226
                Result.dX:= (getrandom - 0.5) * 0.4
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   227
                end;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   228
   gtFirePunch: begin
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   229
                Result.Radius:= 15;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   230
                Result.Tag:= Y
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   231
                end;
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
   232
    gtAirBomb: begin
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   233
               Result.Radius:= 10;
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
   234
               end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   235
     end;
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   236
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   237
if GearsList = nil then GearsList:= Result
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   238
                   else begin
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   239
                   // WARNING: this code assumes that the first gears added to the list are clouds (have maximal Z)
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   240
                   tmp:= GearsList;
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   241
                   while (tmp <> nil) and (tmp.Z < Result.Z) do
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   242
                         tmp:= tmp.NextGear;
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   243
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   244
                   if tmp.PrevGear <> nil then tmp.PrevGear.NextGear:= Result;
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   245
                   Result.PrevGear:= tmp.PrevGear;
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   246
                   tmp.PrevGear:= Result;
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   247
                   Result.NextGear:= tmp;
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   248
                   if GearsList = tmp then GearsList:= Result
191
a03c2d037e24 Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents: 188
diff changeset
   249
                   end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   250
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   251
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   252
procedure DeleteGear(Gear: PGear);
48
0f396d0c429d - New /skip command
unc0rr
parents: 47
diff changeset
   253
var team: PTeam;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   254
begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   255
if Gear.CollIndex < High(Longword) then DeleteCI(Gear);
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 92
diff changeset
   256
if Gear.Surf <> nil then SDL_FreeSurface(Gear.Surf);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   257
if Gear.Kind = gtHedgehog then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   258
   if CurAmmoGear <> nil then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   259
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   260
      {$IFDEF DEBUGFILE}AddFileLog('DeleteGear: Sending gm_Destroy, hh handle = '+inttostr(integer(Gear)));{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   261
      Gear.Message:= gm_Destroy;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   262
      CurAmmoGear.Message:= gm_Destroy;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   263
      exit
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 46
diff changeset
   264
      end else
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 46
diff changeset
   265
      begin
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
   266
      if Gear.Y >= cWaterLine then
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
   267
         AddGear(Round(Gear.X), Round(Gear.Y), gtHealthTag, max(Gear.Damage, Gear.Health)).Hedgehog:= Gear.Hedgehog;
48
0f396d0c429d - New /skip command
unc0rr
parents: 47
diff changeset
   268
      team:= PHedgehog(Gear.Hedgehog).Team;
145
e593d5266e01 - Fix crash in AI
unc0rr
parents: 126
diff changeset
   269
      if CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].Gear = Gear then
e593d5266e01 - Fix crash in AI
unc0rr
parents: 126
diff changeset
   270
         FreeActionsList; // to avoid ThinkThread on drawned gear
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
   271
      PHedgehog(Gear.Hedgehog).Gear:= nil;
48
0f396d0c429d - New /skip command
unc0rr
parents: 47
diff changeset
   272
      RecountTeamHealth(team);
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 46
diff changeset
   273
      end;
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 92
diff changeset
   274
{$IFDEF DEBUGFILE}AddFileLog('DeleteGear: handle = '+inttostr(integer(Gear)));{$ENDIF}
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   275
if CurAmmoGear = Gear then CurAmmoGear:= nil;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   276
if FollowGear = Gear then FollowGear:= nil;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   277
if Gear.NextGear <> nil then Gear.NextGear.PrevGear:= Gear.PrevGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   278
if Gear.PrevGear <> nil then Gear.PrevGear.NextGear:= Gear.NextGear
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   279
                        else begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   280
                        GearsList:= Gear^.NextGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   281
                        if GearsList <> nil then GearsList.PrevGear:= nil
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   282
                        end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   283
Dispose(Gear)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   284
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   285
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   286
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   287
var Gear: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   288
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   289
Result:= true;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   290
Gear:= GearsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   291
while Gear <> nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   292
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   293
      if Gear.Kind = gtHedgehog then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   294
         if Gear.Damage <> 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   295
            begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   296
            Result:= false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   297
            if Gear.Health < Gear.Damage then Gear.Health:= 0
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   298
                                         else dec(Gear.Health, Gear.Damage);
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   299
            AddGear(Round(Gear.X), round(Gear.Y) - cHHRadius - 12 - PHedgehog(Gear.Hedgehog)^.HealthTag.h,
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   300
                    gtHealthTag, Gear.Damage).Hedgehog:= Gear.Hedgehog;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   301
            RenderHealth(PHedgehog(Gear.Hedgehog)^);
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 46
diff changeset
   302
            RecountTeamHealth(PHedgehog(Gear.Hedgehog)^.Team);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   303
            
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   304
            Gear.Damage:= 0
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   305
            end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   306
      Gear:= Gear.NextGear
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   307
      end;
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
procedure ProcessGears;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   311
const delay: integer = cInactDelay;
92
0c359a7a2356 - Fix win message to appear only after all hedgehogs death
unc0rr
parents: 89
diff changeset
   312
      step: (stDelay, stChDmg, stChWin, stSpawn, stNTurn) = stDelay;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   313
var Gear, t: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   314
{$IFDEF COUNTTICKS}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   315
    tickcntA, tickcntB: LongWord;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   316
const cntSecTicks: LongWord = 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   317
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   318
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   319
{$IFDEF COUNTTICKS}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   320
asm
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   321
        push    eax
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   322
        push    edx
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   323
        rdtsc
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   324
        mov     tickcntA, eax
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   325
        mov     tickcntB, edx
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   326
        pop     edx
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   327
        pop     eax
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   328
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   329
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   330
AllInactive:= true;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   331
t:= GearsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   332
while t<>nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   333
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   334
      Gear:= t;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   335
      t:= Gear.NextGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   336
      if Gear.Active then Gear.doStep(Gear);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   337
      end;
89
f9db56409a86 - Fix various bugs
unc0rr
parents: 83
diff changeset
   338
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   339
if AllInactive then
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   340
   case step of
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   341
        stDelay: begin
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   342
                 dec(delay);
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   343
                 if delay = 0 then
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   344
                    begin
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   345
                    inc(step);
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   346
                    delay:= cInactDelay
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   347
                    end
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   348
                 end;
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   349
        stChDmg: if CheckNoDamage then inc(step) else step:= stDelay;
92
0c359a7a2356 - Fix win message to appear only after all hedgehogs death
unc0rr
parents: 89
diff changeset
   350
        stChWin: if not CheckForWin then inc(step) else step:= stDelay; 
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   351
        stSpawn: begin
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   352
                 if not isInMultiShoot then SpawnBoxOfSmth;
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   353
                 inc(step)
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   354
                 end;
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   355
        stNTurn: begin
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 70
diff changeset
   356
                 AwareOfExplosion(0, 0, 0);
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   357
                 if isInMultiShoot then isInMultiShoot:= false
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   358
                                   else ParseCommand('/nextturn');
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   359
                 step:= Low(step)
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   360
                 end;
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   361
        end;
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   362
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   363
if TurnTimeLeft > 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   364
   if CurrentTeam <> nil then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   365
      if CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].Gear <> nil then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   366
         if ((CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].Gear.State and gstAttacking) = 0)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   367
            and not isInMultiShoot then dec(TurnTimeLeft);
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 70
diff changeset
   368
            
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   369
inc(GameTicks);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   370
{$IFDEF COUNTTICKS}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   371
asm
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   372
        push    eax
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   373
        push    edx
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   374
        rdtsc
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   375
        sub     eax, [tickcntA]
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   376
        sbb     edx, [tickcntB]
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   377
        add     [cntSecTicks], eax
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   378
        pop     edx
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   379
        pop     eax
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   380
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   381
if (GameTicks and 1023) = 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   382
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   383
   cntTicks:= cntSecTicks shr 10;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   384
   {$IFDEF DEBUGFILE}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   385
   AddFileLog('<' + inttostr(cntTicks) + '>x1024 ticks');
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   386
   {$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   387
   cntSecTicks:= 0
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   388
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   389
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   390
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   391
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   392
procedure SetAllToActive;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   393
var t: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   394
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   395
AllInactive:= false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   396
t:= GearsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   397
while t<>nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   398
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   399
      t.Active:= true;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   400
      t:= t.NextGear
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   401
      end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   402
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   403
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   404
procedure SetAllHHToActive;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   405
var t: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   406
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   407
AllInactive:= false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   408
t:= GearsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   409
while t<>nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   410
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   411
      if t.Kind = gtHedgehog then t.Active:= true;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   412
      t:= t.NextGear
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   413
      end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   414
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   415
292
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   416
procedure DrawHH(Gear: PGear; Surface: PSDL_Surface);
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   417
var t: integer;
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   418
begin
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   419
DrawHedgehog(Round(Gear.X) - 14 + WorldDx, Round(Gear.Y) - 18 + WorldDy,
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   420
             hwSign(Gear.dX), 0,
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   421
             PHedgehog(Gear.Hedgehog).visStepPos div 2,
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   422
             Surface);
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   423
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   424
with PHedgehog(Gear.Hedgehog)^ do
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   425
     if Gear.State = 0 then
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   426
        begin
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   427
        t:= round(Gear.Y) - cHHRadius - 10 + WorldDy;
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   428
        dec(t, HealthTag.h + 2);
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   429
        DrawCentered(round(Gear.X) + WorldDx, t, HealthTag, Surface);
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   430
        dec(t, NameTag.h + 2);
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   431
        DrawCentered(round(Gear.X) + WorldDx, t, NameTag, Surface);
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   432
        dec(t, Team.NameTag.h + 2);
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   433
        DrawCentered(round(Gear.X) + WorldDx, t, Team.NameTag, Surface)
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   434
        end else // Current hedgehog
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   435
        begin
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   436
        if bShowFinger and ((Gear.State and gstHHDriven) <> 0) then
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   437
           DrawSprite(sprFinger, round(Gear.X) - 16 + WorldDx, round(Gear.Y) - 64 + WorldDy,
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   438
                      GameTicks div 32 mod 16, Surface);
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   439
        if (Gear.State and (gstMoving or gstDrowning or gstFalling)) = 0 then
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   440
           if (Gear.State and gstHHThinking) <> 0 then
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   441
              DrawGear(sQuestion, Round(Gear.X) - 10 + WorldDx, Round(Gear.Y) - cHHRadius - 34 + WorldDy, Surface)
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   442
              else
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   443
              if ShowCrosshair and ((Gear.State and gstAttacked) = 0) then
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   444
                 DrawSurfSprite(Round(Gear.X + hwSign(Gear.dX) * Sin(Gear.Angle*pi/cMaxAngle)*60) + WorldDx - 11,
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   445
                           Round(Gear.Y - Cos(Gear.Angle*pi/cMaxAngle)*60) + WorldDy - 12,
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   446
                           24, (18 + hwSign(Gear.dX) * integer(((Gear.Angle * 72 div cMaxAngle) + 1) div 2) mod 18) mod 18,
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   447
                           Team.CrosshairSurf, Surface);
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   448
        end;
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   449
end;
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   450
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   451
procedure DrawGears(Surface: PSDL_Surface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   452
var Gear: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   453
    i: Longword;
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 100
diff changeset
   454
    roplen: Double;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   455
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   456
    procedure DrawRopeLine(X1, Y1, X2, Y2: integer);
35
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   457
    const nodlen = 5;
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   458
    var i, x, y: integer;
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 100
diff changeset
   459
        t, k, ladd: Double;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   460
    begin
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   461
    if (X1 = X2) and (Y1 = Y2) then
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   462
       begin
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   463
       OutError('WARNING: zero length rope line!');
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   464
       exit
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   465
       end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   466
    if abs(X1 - X2) > abs(Y1 - Y2) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   467
       begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   468
       if X1 > X2 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   469
          begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   470
          i:= X1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   471
          X1:= X2;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   472
          X2:= i;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   473
          i:= Y1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   474
          Y1:= Y2;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   475
          Y2:= i
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   476
          end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   477
       k:= (Y2 - Y1) / (X2 - X1);
35
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   478
       ladd:= sqrt(1 + sqr(k));
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   479
       if X1 < 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   480
          begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   481
          t:= Y1 - 2 - k * X1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   482
          X1:= 0
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   483
          end else t:= Y1 - 2;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   484
       if X2 > cScreenWidth then X2:= cScreenWidth;
35
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   485
       for x:= X1 to X2 do
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   486
           begin
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   487
           roplen:= roplen + ladd;
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   488
           if roplen > nodlen then
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   489
              begin
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   490
              DrawGear(sRopeNode, x - 2, round(t) - 2, Surface);
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   491
              roplen:= roplen - nodlen;
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   492
              end;
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   493
           t:= t + k;
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   494
           end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   495
       end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   496
       begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   497
       if Y1 > Y2 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   498
          begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   499
          i:= X1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   500
          X1:= X2;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   501
          X2:= i;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   502
          i:= Y1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   503
          Y1:= Y2;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   504
          Y2:= i
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   505
          end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   506
       k:= (X2 - X1) / (Y2 - Y1);
35
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   507
       ladd:= sqrt(1 + sqr(k));
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   508
       if Y1 < 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   509
          begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   510
          t:= X1 - 2 - k * Y1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   511
          Y1:= 0
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   512
          end else t:= X1 - 2;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   513
       if Y2 > cScreenHeight then Y2:= cScreenHeight;
35
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   514
       for y:= Y1 to Y2 do
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   515
           begin
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   516
           roplen:= roplen + ladd;
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   517
           if roplen > nodlen then
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   518
              begin
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   519
              DrawGear(sRopeNode, round(t) - 2, y - 2, Surface);
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   520
              roplen:= roplen - nodlen;
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   521
              end;
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   522
           t:= t + k;
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   523
           end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   524
       end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   525
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   526
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   527
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   528
Gear:= GearsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   529
while Gear<>nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   530
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   531
      case Gear.Kind of
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   532
           gtCloud: DrawSprite(sprCloud   , Round(Gear.X) + WorldDx, Round(Gear.Y) + WorldDy, Gear.State, Surface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   533
       gtAmmo_Bomb: DrawSprite(sprBomb , Round(Gear.X) - 8 + WorldDx, Round(Gear.Y) - 8 + WorldDy, trunc(Gear.DirAngle), Surface);
292
0ca921ca7557 Hedgehogs names are drawn where the hedgehogs are
unc0rr
parents: 283
diff changeset
   534
        gtHedgehog: DrawHH(Gear, Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   535
    gtAmmo_Grenade: DrawSprite(sprGrenade , Round(Gear.X) - 16 + WorldDx, Round(Gear.Y) - 16 + WorldDy, DxDy2Angle32(Gear.dY, Gear.dX), Surface);
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 92
diff changeset
   536
       gtHealthTag: if Gear.Surf <> nil then DrawCentered(Round(Gear.X) + WorldDx, Round(Gear.Y) + WorldDy, Gear.Surf, Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   537
           gtGrave: DrawSpriteFromRect(PHedgehog(Gear.Hedgehog).Team.GraveRect, Round(Gear.X) + WorldDx - 16, Round(Gear.Y) + WorldDy - 16, 32, (GameTicks shr 7) and 7, Surface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   538
             gtUFO: DrawSprite(sprUFO, Round(Gear.X) - 16 + WorldDx, Round(Gear.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4, Surface);
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   539
      gtSmokeTrace: if Gear.State < 8 then DrawSprite(sprSmokeTrace, Round(Gear.X) + WorldDx, Round(Gear.Y) + WorldDy, Gear.State, Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   540
            gtRope: begin
35
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   541
                    roplen:= 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   542
                    if RopePoints.Count > 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   543
                       begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   544
                       i:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   545
                       while i < Pred(RopePoints.Count) do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   546
                             begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   547
                             DrawRopeLine(Round(RopePoints.ar[i].X) + WorldDx, Round(RopePoints.ar[i].Y) + WorldDy,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   548
                                          Round(RopePoints.ar[Succ(i)].X) + WorldDx, Round(RopePoints.ar[Succ(i)].Y) + WorldDy);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   549
                             inc(i)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   550
                             end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   551
                       DrawRopeLine(Round(RopePoints.ar[i].X) + WorldDx, Round(RopePoints.ar[i].Y) + WorldDy,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   552
                                    Round(Gear.X) + WorldDx, Round(Gear.Y) + WorldDy);
35
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   553
                       DrawRopeLine(Round(Gear.X) + WorldDx, Round(Gear.Y) + WorldDy,
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   554
                                    Round(PHedgehog(Gear.Hedgehog).Gear.X) + WorldDx, Round(PHedgehog(Gear.Hedgehog).Gear.Y) + WorldDy);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   555
                       DrawSprite(sprRopeHook, Round(RopePoints.ar[0].X) + WorldDx - 16, Round(RopePoints.ar[0].Y) + WorldDy - 16, RopePoints.HookAngle, Surface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   556
                       end else
35
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   557
                       begin
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   558
                       DrawRopeLine(Round(Gear.X) + WorldDx, Round(Gear.Y) + WorldDy,
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   559
                                    Round(PHedgehog(Gear.Hedgehog).Gear.X) + WorldDx, Round(PHedgehog(Gear.Hedgehog).Gear.Y) + WorldDy);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   560
                       DrawSprite(sprRopeHook, Round(Gear.X) - 16 + WorldDx, Round(Gear.Y) - 16 + WorldDy, DxDy2Angle32(Gear.dY, Gear.dX), Surface);
35
9367f246fb5f - New rope
unc0rr
parents: 32
diff changeset
   561
                       end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   562
                    end;
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   563
       gtExplosion: DrawSprite(sprExplosion50, Round(Gear.X) + WorldDx, Round(Gear.Y) + WorldDy, Gear.State, Surface);
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   564
            gtMine: if ((Gear.State and gstAttacking) = 0)or((Gear.Timer and $3FF) < 420)
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   565
                       then DrawSprite(sprMineOff , Round(Gear.X) - 8 + WorldDx, Round(Gear.Y) - 8 + WorldDy, trunc(Gear.DirAngle), Surface)
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   566
                       else DrawSprite(sprMineOn  , Round(Gear.X) - 8 + WorldDx, Round(Gear.Y) - 8 + WorldDy, trunc(Gear.DirAngle), Surface);
46
c99140d2355a - Fixed dynamit sprite
unc0rr
parents: 43
diff changeset
   567
        gtDynamite: DrawSprite2(sprDynamite, Round(Gear.X) - 16 + WorldDx, Round(Gear.Y) - 25 + WorldDy, Gear.Tag and 1, Gear.Tag shr 1, Surface);
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   568
            gtCase: case Gear.Pos of
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   569
                         posCaseAmmo  : DrawSprite(sprCase, Round(Gear.X) - 16 + WorldDx, Round(Gear.Y) - 16 + WorldDy, 0, Surface);
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   570
                         posCaseHealth: DrawSprite(sprFAid, Round(Gear.X) - 24 + WorldDx, Round(Gear.Y) - 24 + WorldDy, (GameTicks shr 6) mod 13, Surface);
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   571
                         end;
78
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   572
     gtClusterBomb: DrawSprite(sprClusterBomb, Round(Gear.X) - 8 + WorldDx, Round(Gear.Y) - 8 + WorldDy, trunc(Gear.DirAngle), Surface);
66bb79dd248d Cluster bomb
unc0rr
parents: 75
diff changeset
   573
         gtCluster: DrawSprite(sprClusterParticle, Round(Gear.X) - 8 + WorldDx, Round(Gear.Y) - 8 + WorldDy, 0, Surface);
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   574
           gtFlame: DrawSprite(sprFlame, Round(Gear.X) - 8 + WorldDx, Round(Gear.Y) - 8 + WorldDy,(GameTicks div 128 + Gear.Angle) mod 8, Surface);
263
36379e6abcdd - Health tags over drowned hedgehogs
unc0rr
parents: 211
diff changeset
   575
         gtAirBomb: DrawSprite(sprAirBomb , Round(Gear.X) - 16 + WorldDx, Round(Gear.Y) - 16 + WorldDy, DxDy2Angle32(Gear.dY, Gear.dX), Surface);
283
28d105f378f1 Airplane sprite
unc0rr
parents: 263
diff changeset
   576
       gtAirAttack: DrawSprite(sprAirplane, Round(Gear.X) - 60 + WorldDx, Round(Gear.Y) - 25 + WorldDy, 0, Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   577
              end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   578
      Gear:= Gear.NextGear
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   579
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   580
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   581
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   582
procedure FreeGearsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   583
var t, tt: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   584
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   585
tt:= GearsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   586
GearsList:= nil;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   587
while tt<>nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   588
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   589
      t:= tt;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   590
      tt:= tt.NextGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   591
      Dispose(t)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   592
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   593
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   594
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   595
procedure AddMiscGears;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   596
var i: integer;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   597
begin
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
   598
AddGear(0, 0, gtATStartGame, 0, 0, 0, 2000);
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 17
diff changeset
   599
if (GameFlags and gfForts) = 0 then
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 17
diff changeset
   600
   for i:= 0 to 3 do
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   601
       FindPlace(AddGear(0, 0, gtMine, 0), false, 0, 2048);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   602
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   603
293
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   604
procedure AddClouds;
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   605
var i: integer;
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   606
begin
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   607
for i:= 0 to cCloudsNumber do
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   608
    AddGear( - cScreenWidth + i * ((cScreenWidth * 2 + 2304) div cCloudsNumber), -140, gtCloud, random(4),
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   609
             (0.5-random)*0.1, ((i mod 2) * 2 - 1) * (0.005 + 0.015*random))
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   610
end;
00a532e8808e Some Z-ordering
unc0rr
parents: 292
diff changeset
   611
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   612
procedure doMakeExplosion(X, Y, Radius: integer; Mask: LongWord);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   613
var Gear: PGear;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   614
    dmg: integer;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   615
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   616
TargetPoint.X:= NoPointX;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   617
{$IFDEF DEBUGFILE}if Radius > 3 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   618
DrawExplosion(X, Y, Radius);
9
4cbf854ad095 - Show explosion
unc0rr
parents: 6
diff changeset
   619
if Radius = 50 then AddGear(X, Y, gtExplosion, 0);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   620
if (Mask and EXPLAutoSound)<>0 then PlaySound(sndExplosion);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   621
if (Mask and EXPLAllDamageInRadius)=0 then Radius:= Radius shl 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   622
Gear:= GearsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   623
while Gear <> nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   624
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   625
      dmg:= Radius - Round(sqrt(sqr(Gear.X - X) + sqr(Gear.Y - Y)));
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   626
      if dmg > 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   627
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   628
         dmg:= dmg shr 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   629
         case Gear.Kind of
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   630
              gtHedgehog,
14
81f125629b25 - Mine checks whether a hedgehog is near less frequently
unc0rr
parents: 10
diff changeset
   631
                  gtMine,
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   632
                  gtCase,
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   633
                 gtFlame: begin
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 38
diff changeset
   634
                          if (Mask and EXPLNoDamage) = 0 then inc(Gear.Damage, dmg);
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   635
                          if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear.Kind <> gtHedgehog) then
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   636
                             begin
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   637
                             Gear.dX:= Gear.dX + dmg / 200 * hwSign(Gear.X - X);
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 107
diff changeset
   638
                             Gear.dY:= Gear.dY + dmg / 200 * hwSign(Gear.Y - Y);
42
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   639
                             Gear.Active:= true;
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   640
                             FollowGear:= Gear
72ffe21f027c - Fixed console behavior
unc0rr
parents: 39
diff changeset
   641
                             end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   642
                          end;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 49
diff changeset
   643
                 gtGrave: begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 49
diff changeset
   644
                          Gear.dY:= - dmg / 250;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 49
diff changeset
   645
                          Gear.Active:= true;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 49
diff changeset
   646
                          end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   647
              end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   648
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   649
      Gear:= Gear.NextGear
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   650
      end;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   651
uAIMisc.AwareOfExplosion(0, 0, 0)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   652
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   653
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   654
procedure AmmoShove(Ammo: PGear; Damage, Power: integer);
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   655
var t: PGearArray;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   656
    i: integer;
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   657
begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   658
t:= CheckGearsCollision(Ammo);
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   659
i:= t.Count;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   660
while i > 0 do
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   661
    begin
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   662
    dec(i);
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   663
    if (t.ar[i].State and gstNoDamage) = 0 then
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   664
       case t.ar[i].Kind of
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   665
           gtHedgehog,
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   666
               gtMine,
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   667
               gtCase: begin
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   668
                       inc(t.ar[i].Damage, Damage);
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   669
                       t.ar[i].dX:= Ammo.dX * Power * 0.01;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   670
                       t.ar[i].dY:= Ammo.dY * Power * 0.01;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   671
                       t.ar[i].Active:= true;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   672
                       DeleteCI(t.ar[i]);
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   673
                       FollowGear:= t.ar[i]
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   674
                       end;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   675
           end
126
93df479aa1b9 - Now really fix unicode issues
unc0rr
parents: 108
diff changeset
   676
    end;
93df479aa1b9 - Now really fix unicode issues
unc0rr
parents: 108
diff changeset
   677
SetAllToActive
38
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   678
end;
c1ec4b15d70e Better Desert Eagle and Shotgun
unc0rr
parents: 37
diff changeset
   679
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   680
procedure AssignHHCoords;
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   681
var Team: PTeam;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   682
    i, t: integer;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   683
begin
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   684
Team:= TeamsList;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   685
t:= 0;
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   686
while Team <> nil do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   687
      begin
82
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   688
      for i:= 0 to cMaxHHIndex do
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   689
          with Team.Hedgehogs[i] do
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   690
               if Gear <> nil then
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   691
                  if (GameFlags and gfForts) = 0 then FindPlace(Gear, false, 0, 2048)
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   692
                                                 else FindPlace(Gear, false, t, t + 1024);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   693
      inc(t, 1024);
2f4f3236cccc - New fort
unc0rr
parents: 81
diff changeset
   694
      Team:= Team.Next
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   695
      end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   696
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   697
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   698
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: integer): PGear;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   699
var t: PGear;
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   700
begin
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   701
t:= GearsList;
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   702
rX:= sqr(rX);
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   703
rY:= sqr(rY);
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   704
while t <> nil do
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   705
      begin
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   706
      if (t <> Gear) and (t.Kind = Kind) then
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   707
         if sqr(Gear.X - t.X) / rX + sqr(Gear.Y - t.Y) / rY <= 1 then
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   708
            begin
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   709
            Result:= t;
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   710
            exit
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   711
            end;
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   712
      t:= t.NextGear
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   713
      end;
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   714
Result:= nil
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   715
end;
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   716
79
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   717
procedure AmmoFlameWork(Ammo: PGear);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   718
var t: PGear;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   719
begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   720
t:= GearsList;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   721
while t <> nil do
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   722
      begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   723
      if (t.Kind = gtHedgehog) and (t.Y < Ammo.Y) then
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   724
         if sqr(Ammo.X - t.X) + sqr(Ammo.Y - t.Y - cHHRadius) * 2 <= sqr(4) then
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   725
            begin
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   726
            inc(t.Damage, 5);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   727
            t.dX:= t.dX + (t.X - Ammo.X) * 0.02;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   728
            t.dY:= - 0.25;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   729
            t.Active:= true;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   730
            DeleteCI(t);
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   731
            FollowGear:= t
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   732
            end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   733
      t:= t.NextGear
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   734
      end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   735
end;
29b477319854 - New test map
unc0rr
parents: 78
diff changeset
   736
16
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   737
function CheckGearsNear(mX, mY: integer; Kind: TGearsType; rX, rY: integer): PGear;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   738
var t: PGear;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   739
begin
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   740
t:= GearsList;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   741
rX:= sqr(rX);
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   742
rY:= sqr(rY);
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   743
while t <> nil do
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   744
      begin
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   745
      if t.Kind in Kind then
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   746
         if sqr(mX - t.X) / rX + sqr(mY - t.Y) / rY <= 1 then
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   747
            begin
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   748
            Result:= t;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   749
            exit
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   750
            end;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   751
      t:= t.NextGear
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   752
      end;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   753
Result:= nil
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   754
end;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   755
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   756
function CountGears(Kind: TGearType): Longword;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   757
var t: PGear;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   758
begin
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   759
Result:= 0;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   760
t:= GearsList;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   761
while t <> nil do
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   762
      begin
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   763
      if t.Kind = Kind then inc(Result);
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   764
      t:= t.NextGear
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   765
      end;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   766
end;
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   767
15
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   768
procedure SpawnBoxOfSmth;
6200cca92480 - Minor code simplifying
unc0rr
parents: 14
diff changeset
   769
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   770
if (CountGears(gtCase) > 2) or (getrandom(3) <> 0) then exit;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   771
FollowGear:= AddGear(0, 0, gtCase, 0);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   772
FollowGear.Health:= 25;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   773
FollowGear.Pos:= posCaseHealth;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   774
FindPlace(FollowGear, true, 0, 2048)
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   775
end;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   776
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   777
procedure FindPlace(Gear: PGear; withFall: boolean; Left, Right: integer);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   778
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   779
    function CountNonZeroz(x, y, r: integer): integer;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   780
    var i: integer;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   781
    begin
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   782
    Result:= 0;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   783
    if (y and $FFFFFC00) <> 0 then exit;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   784
    for i:= max(x - r, 0) to min(x + r, 2043) do
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   785
        if Land[y, i] <> 0 then inc(Result)
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   786
    end;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   787
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   788
var fx, x: integer;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   789
    y, sy: integer;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   790
    ar: array[0..512] of TPoint;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   791
    cnt, delta: Longword;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   792
begin
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   793
fx:= Left + integer(GetRandom(Right - Left));
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   794
x:= fx;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   795
delta:= 130;
16
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   796
repeat
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   797
  repeat
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   798
     inc(x, Gear.Radius);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   799
     if x > Right then x:= Left + (x mod (Right - left));
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   800
     cnt:= 0;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   801
     y:= -Gear.Radius * 2;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   802
     while y < 1023 do
16
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   803
        begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   804
        repeat
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   805
          inc(y, 2);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   806
        until (y > 1023) or (CountNonZeroz(x, y, Gear.Radius - 1) = 0);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   807
        sy:= y;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   808
        repeat
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   809
          inc(y);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   810
        until (y > 1023) or (CountNonZeroz(x, y, Gear.Radius - 1) <> 0);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   811
        if (y - sy > Gear.Radius * 2)
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   812
        and (y < 1023)
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   813
        and (CheckGearsNear(x, y - Gear.Radius, [gtHedgehog, gtMine, gtCase], 110, 110) = nil) then
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   814
           begin
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   815
           ar[cnt].X:= x;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   816
           if withFall then ar[cnt].Y:= sy + Gear.Radius
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   817
                       else ar[cnt].Y:= y - Gear.Radius;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   818
           inc(cnt)
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   819
           end;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   820
        inc(y, 80)
16
b6f4b413dd41 - Various fixes for ammo cases
unc0rr
parents: 15
diff changeset
   821
        end;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   822
     if cnt > 0 then
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   823
        with ar[GetRandom(cnt)] do
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   824
          begin
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   825
          Gear.X:= x;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   826
          Gear.Y:= y;
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   827
         {$IFDEF DEBUGFILE}
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   828
         AddFileLog('Assigned Gear ' + inttostr(integer(Gear)) +
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   829
                    ' coordinates (' + inttostr(x) +
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   830
                    ',' + inttostr(y) + ')');
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   831
         {$ENDIF}
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   832
          exit
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   833
          end
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   834
  until (x - Gear.Radius < fx) and (x + Gear.Radius > fx);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   835
dec(Delta, 20)
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   836
until (Delta < 70);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   837
OutError('Couldn''t find place for Gear ' + inttostr(integer(Gear)), false);
82d93eeecebe - Many AI improvements
unc0rr
parents: 68
diff changeset
   838
DeleteGear(Gear)
10
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   839
end;
edf56dca1587 - Mine weapon
unc0rr
parents: 9
diff changeset
   840
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   841
initialization
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   842
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   843
finalization
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 92
diff changeset
   844
FreeGearsList;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   845
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   846
end.