hedgewars/VGSHandlers.inc
author smaxx
Mon, 02 Aug 2010 00:48:15 +0200
changeset 3704 ed2b9c7fb260
parent 3699 e5e2cbc90891
child 3706 a79784328c03
permissions -rw-r--r--
Engine: * Added falling notes to Piano Strike (looks funny and chaotic - prefer flying instead?) Graphics: * Removed the Underwater chunk as it's 100% transparent anyway CMake: * Changed NSIS Project name to be "Hedgewars" to shorten the Windows start menu entry and similar labels
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
     1
(*
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
     3
 * Copyright (c) 2004-2010 Andrey Korotaev <unC0Rr@gmail.com>
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
     4
 *
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
     8
 *
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    12
 * GNU General Public License for more details.
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    13
 *
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    17
 *)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    18
procedure doStepFlake(Gear: PVisualGear; Steps: Longword);
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    19
var sign: float;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    20
begin
3641
98319a621dc8 save the gl client state to get a nice 80% fps boost
koda
parents: 3611
diff changeset
    21
if vobCount = 0 then exit;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3597
diff changeset
    22
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    23
sign:= 1;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    24
with Gear^ do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    25
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    26
    inc(FrameTicks, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    27
    if FrameTicks > vobFrameTicks then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    28
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    29
        dec(FrameTicks, vobFrameTicks);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    30
        inc(Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    31
        if Frame = vobFramesCount then Frame:= 0
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    32
        end;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    33
    X:= X + (cWindSpeedf * 200 + dX + tdX) * Steps;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    34
    Y:= Y + (dY + tdY + cGravityf * vobFallSpeed) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    35
    Angle:= Angle + dAngle * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    36
  
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    37
    if (round(X) >= -cScreenWidth - 64) and
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    38
       (round(X) <= cScreenWidth + LAND_WIDTH) and
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    39
       (round(Y) <= (LAND_HEIGHT + 75)) and 
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    40
       (Timer > 0) and (Timer-Steps > 0) then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    41
        begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    42
        if tdX > 0 then sign := 1
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    43
        else sign:= -1;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    44
        tdX:= tdX - 0.005*Steps*sign;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    45
        if ((sign < 0) and (tdX > 0)) or ((sign > 0) and (tdX < 0)) then tdX:= 0;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    46
        if tdX > 0 then sign := 1
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    47
        else sign:= -1;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    48
        tdY:= tdY - 0.005*Steps*sign;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    49
        if ((sign < 0) and (tdY > 0)) or ((sign > 0) and (tdY < 0)) then tdY:= 0;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    50
        dec(Timer, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    51
        end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    52
    else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    53
        begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    54
        if round(X) < -cScreenWidth - 64 then X:= float(cScreenWidth + LAND_WIDTH) else
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    55
        if round(X) > cScreenWidth + LAND_WIDTH then X:= float(-cScreenWidth - 64);
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    56
        // if round(Y) < (LAND_HEIGHT - 1024 - 75) then Y:= Y + float(25); // For if flag is set for flakes rising upwards?
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    57
        if round(Y) > (LAND_HEIGHT + 75) then Y:= Y - float(1024 + 150); // TODO - configure in theme (jellies for example could use limited range)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    58
        Timer:= 0;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    59
        tdX:= 0;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    60
        tdY:= 0
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    61
        end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    62
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    63
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    64
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    65
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    66
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    67
procedure doStepBeeTrace(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    68
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    69
if Gear^.FrameTicks > Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    70
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    71
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    72
    DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    73
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    74
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    75
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    76
procedure doStepCloud(Gear: PVisualGear; Steps: Longword);
3592
0bcad5c38c9e clouds: up-and-down-bouncing now without evil loop
sheepluva
parents: 3590
diff changeset
    77
var s: Longword;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    78
    t: float;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    79
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    80
Gear^.X:= Gear^.X + (cWindSpeedf * 200 + Gear^.dX) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    81
3592
0bcad5c38c9e clouds: up-and-down-bouncing now without evil loop
sheepluva
parents: 3590
diff changeset
    82
// up-and-down-bounce magic
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    83
s := (GameTicks + Gear^.Timer) mod 4096;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    84
t := 8 * AngleSin(s mod 2048).QWordValue / 4294967296;
3597
978c30ef50fc visual gears: fixing nemo's c-style assignment/multiplications
sheepluva
parents: 3593
diff changeset
    85
if (s < 2048) then t := -t;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    86
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    87
Gear^.Y := LAND_HEIGHT-1184 + Gear^.Timer mod 8 + t;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    88
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    89
if round(Gear^.X) < -cScreenWidth - 256 then Gear^.X:= float(cScreenWidth + LAND_WIDTH) else
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    90
if round(Gear^.X) > cScreenWidth + LAND_WIDTH then Gear^.X:= float(-cScreenWidth - 256)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    91
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    92
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    93
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    94
procedure doStepExpl(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    95
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    96
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    97
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    98
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
    99
//Gear^.dY:= Gear^.dY + cGravityf;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   100
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   101
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   102
    if Gear^.Frame = 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   103
    else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   104
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   105
        dec(Gear^.Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   106
        Gear^.FrameTicks:= cExplFrameTicks
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   107
        end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   108
    else dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   109
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   110
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   111
////////////////////////////////////////////////////////////////////////////////
3704
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   112
procedure doStepNote(Gear: PVisualGear; Steps: Longword);
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   113
begin
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   114
Gear^.X:= Gear^.X + Gear^.dX * Steps;
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   115
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   116
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   117
Gear^.dY:= Gear^.dY + cGravityf * Steps;
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   118
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   119
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   120
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   121
if Gear^.FrameTicks <= Steps then
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   122
    DeleteVisualGear(Gear)
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   123
else
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   124
    dec(Gear^.FrameTicks, Steps)
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   125
end;
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   126
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   127
////////////////////////////////////////////////////////////////////////////////
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   128
procedure doStepEgg(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   129
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   130
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   131
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   132
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   133
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   134
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   135
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   136
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   137
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   138
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   139
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   140
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   141
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   142
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   143
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   144
procedure doStepFire(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   145
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   146
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   147
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   148
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;// + cGravityf * (Steps * Steps);
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   149
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   150
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   151
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   152
       DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   153
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   154
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   155
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   156
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   157
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   158
procedure doStepShell(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   159
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   160
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   161
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   162
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   163
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   164
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   165
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   166
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   167
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   168
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   169
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   170
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   171
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   172
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   173
procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   174
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   175
Gear^.Y:= Gear^.Y - 0.02 * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   176
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   177
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   178
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   179
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   180
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   181
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   182
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   183
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   184
procedure doStepBubble(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   185
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   186
    Gear^.X:= Gear^.X + (cWindSpeedf * 100 + Gear^.dX) * Steps;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   187
    Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   188
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   189
    if (Gear^.FrameTicks <= Steps) or (round(Gear^.Y) < cWaterLine) then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   190
        DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   191
    else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   192
        dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   193
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   194
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   195
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   196
procedure doStepHealth(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   197
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   198
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   199
Gear^.Y:= Gear^.Y - Gear^.dY * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   200
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   201
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   202
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   203
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   204
    dec(Gear^.FrameTicks, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   205
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   206
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   207
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   208
procedure doStepSteam(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   209
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   210
    Gear^.X:= Gear^.X + (cWindSpeedf * 100 + Gear^.dX) * Steps;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   211
    Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   212
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   213
    if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   214
        if Gear^.Frame = 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   215
        else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   216
            begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   217
            if Random(2) = 0 then dec(Gear^.Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   218
            Gear^.FrameTicks:= cExplFrameTicks
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   219
            end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   220
        else dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   221
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   222
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   223
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   224
procedure doStepAmmo(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   225
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   226
    Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   227
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   228
    Gear^.scale:= Gear^.scale + 0.0025 * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   229
    Gear^.alpha:= Gear^.alpha - 0.0015 * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   230
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   231
    if Gear^.alpha < 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   232
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   233
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   234
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   235
procedure doStepSmoke(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   236
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   237
    Gear^.X:= Gear^.X + (cWindSpeedf + Gear^.dX) * Steps;
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   238
    Gear^.Y:= Gear^.Y - (cDrownSpeedf + Gear^.dY) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   239
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   240
    Gear^.dX := Gear^.dX + (cWindSpeedf * 0.3 * Steps);
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   241
    //Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.995);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   242
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   243
    if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   244
        if Gear^.Frame = 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   245
        else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   246
            begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   247
            if Random(2) = 0 then dec(Gear^.Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   248
            Gear^.FrameTicks:= cExplFrameTicks
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   249
            end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   250
        else dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   251
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   252
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   253
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   254
procedure doStepDust(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   255
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   256
    Gear^.X:= Gear^.X + (cWindSpeedf + (cWindSpeedf * 0.03 * Steps) + Gear^.dX) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   257
    Gear^.Y:= Gear^.Y - (Gear^.dY) * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   258
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   259
    Gear^.dX := Gear^.dX - (Gear^.dX * 0.005 * Steps);
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   260
    Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.001 * Steps);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   261
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   262
    if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   263
        if Gear^.Frame = 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   264
        else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   265
            begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   266
            dec(Gear^.Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   267
            Gear^.FrameTicks:= cExplFrameTicks
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   268
            end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   269
        else dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   270
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   271
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   272
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   273
procedure doStepSplash(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   274
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   275
  if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   276
      DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   277
  else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   278
      dec(Gear^.FrameTicks, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   279
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   280
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   281
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   282
procedure doStepDroplet(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   283
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   284
  Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   285
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   286
  Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   287
  Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   288
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   289
  if round(Gear^.Y) > cWaterLine then begin
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   290
    DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   291
    PlaySound(TSound(ord(sndDroplet1) + Random(3)));
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   292
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   293
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   294
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   295
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   296
procedure doStepSmokeRing(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   297
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   298
inc(Gear^.Timer, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   299
if Gear^.Timer >= Gear^.FrameTicks then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   300
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   301
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   302
    Gear^.scale := 1.25 * (-power(2, -10 * Int(Gear^.Timer)/Gear^.FrameTicks) + 1) + 0.4;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   303
    Gear^.alpha := 1 - power(Gear^.Timer / 350, 4);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   304
    if Gear^.alpha < 0 then Gear^.alpha:= 0;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   305
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   306
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   307
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   308
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   309
procedure doStepFeather(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   310
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   311
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   312
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   313
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   314
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   315
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   316
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   317
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   318
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   319
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   320
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   321
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   322
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   323
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   324
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   325
const cSorterWorkTime = 640;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   326
var thexchar: array[0..cMaxTeams] of
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   327
            record
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   328
            dy, ny, dw: LongInt;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   329
            team: PTeam;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   330
            SortFactor: QWord;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   331
            end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   332
    currsorter: PVisualGear = nil;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   333
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   334
procedure doStepTeamHealthSorterWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   335
var i, t: LongInt;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   336
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   337
for t:= 1 to Steps do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   338
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   339
    dec(Gear^.Timer);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   340
    if (Gear^.Timer and 15) = 0 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   341
        for i:= 0 to Pred(TeamsCount) do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   342
            with thexchar[i] do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   343
                begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   344
                {$WARNINGS OFF}
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   345
                team^.DrawHealthY:= ny + dy * LongInt(Gear^.Timer) div 640;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   346
                team^.TeamHealthBarWidth:= team^.NewTeamHealthBarWidth + dw * LongInt(Gear^.Timer) div cSorterWorkTime;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   347
                {$WARNINGS ON}
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   348
                end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   349
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   350
    if (Gear^.Timer = 0) or (currsorter <> Gear) then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   351
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   352
        if currsorter = Gear then currsorter:= nil;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   353
        DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   354
        exit
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   355
        end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   356
    end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   357
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   358
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   359
procedure doStepTeamHealthSorter(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   360
var i: Longword;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   361
    b: boolean;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   362
    t: LongInt;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   363
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   364
Steps:= Steps; // avoid compiler hint
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   365
for t:= 0 to Pred(TeamsCount) do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   366
    with thexchar[t] do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   367
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   368
        dy:= TeamsArray[t]^.DrawHealthY;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   369
        dw:= TeamsArray[t]^.TeamHealthBarWidth - TeamsArray[t]^.NewTeamHealthBarWidth;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   370
        team:= TeamsArray[t];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   371
        SortFactor:= TeamsArray[t]^.Clan^.ClanHealth;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   372
        SortFactor:= (SortFactor shl  3) + TeamsArray[t]^.Clan^.ClanIndex;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   373
        SortFactor:= (SortFactor shl 30) + TeamsArray[t]^.TeamHealth;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   374
        end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   375
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   376
if TeamsCount > 1 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   377
    repeat
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   378
    b:= true;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   379
    for t:= 0 to TeamsCount - 2 do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   380
        if (thexchar[t].SortFactor > thexchar[Succ(t)].SortFactor) then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   381
            begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   382
            thexchar[cMaxTeams]:= thexchar[t];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   383
            thexchar[t]:= thexchar[Succ(t)];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   384
            thexchar[Succ(t)]:= thexchar[cMaxTeams];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   385
            b:= false
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   386
            end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   387
    until b;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   388
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   389
t:= - 4;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   390
for i:= 0 to Pred(TeamsCount) do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   391
    with thexchar[i] do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   392
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   393
        dec(t, team^.HealthTex^.h + 2);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   394
        ny:= t;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   395
        dy:= dy - ny
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   396
        end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   397
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   398
Gear^.Timer:= cSorterWorkTime;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   399
Gear^.doStep:= @doStepTeamHealthSorterWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   400
currsorter:= Gear;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   401
//doStepTeamHealthSorterWork(Gear, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   402
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   403
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   404
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   405
procedure doStepSpeechBubbleWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   406
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   407
if Gear^.Timer > Steps then dec(Gear^.Timer, Steps) else Gear^.Timer:= 0;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   408
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   409
if (PHedgehog(Gear^.Hedgehog)^.Gear <> nil) then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   410
    begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   411
    Gear^.X:= PHedgehog(Gear^.Hedgehog)^.Gear^.X.QWordValue/4294967296 + (Gear^.Tex^.w div 2  - Gear^.FrameTicks);
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   412
    Gear^.Y:= PHedgehog(Gear^.Hedgehog)^.Gear^.Y.QWordValue/4294967296 - (16 + Gear^.Tex^.h);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   413
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   414
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   415
if Gear^.Timer = 0 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   416
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   417
    if PHedgehog(Gear^.Hedgehog)^.SpeechGear = Gear then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   418
        PHedgehog(Gear^.Hedgehog)^.SpeechGear:= nil;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   419
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   420
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   421
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   422
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   423
procedure doStepSpeechBubble(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   424
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   425
Steps:= Steps; // avoid compiler hint
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   426
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   427
with PHedgehog(Gear^.Hedgehog)^ do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   428
    if SpeechGear <> nil then SpeechGear^.Timer:= 0;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   429
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   430
PHedgehog(Gear^.Hedgehog)^.SpeechGear:= Gear;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   431
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   432
Gear^.Timer:= max(Length(Gear^.Text) * 150, 3000);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   433
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   434
Gear^.Tex:= RenderSpeechBubbleTex(Gear^.Text, Gear^.FrameTicks, fnt16);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   435
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   436
case Gear^.FrameTicks of
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   437
    1: Gear^.FrameTicks:= SpritesData[sprSpeechTail].Width-28;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   438
    2: Gear^.FrameTicks:= SpritesData[sprThoughtTail].Width-20;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   439
    3: Gear^.FrameTicks:= SpritesData[sprShoutTail].Width-10;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   440
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   442
Gear^.doStep:= @doStepSpeechBubbleWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   443
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   444
Gear^.Y:= Gear^.Y - float(Gear^.Tex^.h)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   445
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   446
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   447
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   448
procedure doStepHealthTagWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   449
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   450
if Steps > Gear^.Timer then
3459
c552aa44108d hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents: 3443
diff changeset
   451
    DeleteVisualGear(Gear)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   452
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   453
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   454
    dec(Gear^.Timer, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   455
    Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   456
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   457
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   458
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   459
procedure doStepHealthTagWorkUnderWater(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   460
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   461
if round(Gear^.Y) < cWaterLine + 10 then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   462
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   463
else
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   464
    Gear^.Y:= Gear^.Y - 0.08 * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   465
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   466
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   467
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   468
procedure doStepHealthTag(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   469
var s: shortstring;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   470
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   471
s:= '';
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   472
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   473
Gear^.dY:= -0.08;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   474
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   475
str(Gear^.State, s);
3459
c552aa44108d hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents: 3443
diff changeset
   476
if Gear^.Hedgehog <> nil then
c552aa44108d hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents: 3443
diff changeset
   477
    Gear^.Tex:= RenderStringTex(s, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color, fnt16)
c552aa44108d hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents: 3443
diff changeset
   478
else
c552aa44108d hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents: 3443
diff changeset
   479
    Gear^.Tex:= RenderStringTex(s, cWhiteColor, fnt16);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   480
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   481
if round(Gear^.Y) < cWaterLine then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   482
    Gear^.doStep:= @doStepHealthTagWork
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   483
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   484
    Gear^.doStep:= @doStepHealthTagWorkUnderWater;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   485
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   486
Gear^.Y:= Gear^.Y - float(Gear^.Tex^.h);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   487
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   488
if Steps > 1 then Gear^.doStep(Gear, Steps-1);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   489
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   490
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   491
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   492
procedure doStepSmokeTrace(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   493
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   494
inc(Gear^.Timer, Steps );
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   495
if Gear^.Timer > 64 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   496
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   497
    dec(Gear^.State, Gear^.Timer div 65);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   498
    Gear^.Timer:= Gear^.Timer mod 65;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   499
    end;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   500
Gear^.dX:= Gear^.dX + cWindSpeedf * Steps;
3587
eca835df4106 Optimise vgtSmokeTrace/vgtEvilTrace handler
nemo
parents: 3466
diff changeset
   501
Gear^.X:= Gear^.X + Gear^.dX;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   502
if Gear^.State = 0 then DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   503
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   504
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   505
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   506
procedure doStepExplosionWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   507
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   508
inc(Gear^.Timer, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   509
if Gear^.Timer > 75 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   510
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   511
    inc(Gear^.State, Gear^.Timer div 76);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   512
    Gear^.Timer:= Gear^.Timer mod 76;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   513
    if Gear^.State > 5 then DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   514
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   515
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   516
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   517
procedure doStepExplosion(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   518
var i: LongWord;
3590
66e1bc1ea3a9 explosions: cache rounded X,Y values
sheepluva
parents: 3587
diff changeset
   519
gX,gY: LongInt;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   520
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   521
gX:= round(Gear^.X);
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   522
gY:= round(Gear^.Y);
3590
66e1bc1ea3a9 explosions: cache rounded X,Y values
sheepluva
parents: 3587
diff changeset
   523
for i:= 0 to 31 do AddVisualGear(gX, gY, vgtFire);
66e1bc1ea3a9 explosions: cache rounded X,Y values
sheepluva
parents: 3587
diff changeset
   524
for i:= 0 to  8 do AddVisualGear(gX, gY, vgtExplPart);
66e1bc1ea3a9 explosions: cache rounded X,Y values
sheepluva
parents: 3587
diff changeset
   525
for i:= 0 to  8 do AddVisualGear(gX, gY, vgtExplPart2);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   526
Gear^.doStep:= @doStepExplosionWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   527
if Steps > 1 then Gear^.doStep(Gear, Steps-1);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   528
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   529
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   530
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   531
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   532
procedure doStepBigExplosionWork(Gear: PVisualGear; Steps: Longword);
3587
eca835df4106 Optimise vgtSmokeTrace/vgtEvilTrace handler
nemo
parents: 3466
diff changeset
   533
//var maxMovement: LongInt;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   534
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   535
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   536
inc(Gear^.Timer, Steps);
3466
78d9fa9a700e Comment out the desyncing block, with a suggestion for possible fix
nemo
parents: 3459
diff changeset
   537
(*
78d9fa9a700e Comment out the desyncing block, with a suggestion for possible fix
nemo
parents: 3459
diff changeset
   538
FIXME - This block desyncs due to the way WorldDx is important for various things network related.
78d9fa9a700e Comment out the desyncing block, with a suggestion for possible fix
nemo
parents: 3459
diff changeset
   539
One possible solution is, instead of using WorldDx, to use straight gl/SDL calls to jitter the screen a bit.
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   540
if (Gear^.Timer and 5) = 0 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   541
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   542
    maxMovement := max(1, 13 - ((Gear^.Timer * 15) div 250));
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   543
    ShakeCamera(maxMovement);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   544
    end;
3466
78d9fa9a700e Comment out the desyncing block, with a suggestion for possible fix
nemo
parents: 3459
diff changeset
   545
*)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   546
if Gear^.Timer > 250 then DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   547
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   548
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   549
procedure doStepBigExplosion(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   550
var i: LongWord;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   551
gX,gY: LongInt;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   552
begin
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   553
gX:= round(Gear^.X);
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3592
diff changeset
   554
gY:= round(Gear^.Y);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   555
AddVisualGear(gX, gY, vgtSmokeRing);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   556
for i:= 0 to 46 do AddVisualGear(gX, gY, vgtFire);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   557
for i:= 0 to 15 do AddVisualGear(gX, gY, vgtExplPart);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   558
for i:= 0 to 15 do AddVisualGear(gX, gY, vgtExplPart2);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   559
Gear^.doStep:= @doStepBigExplosionWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   560
if Steps > 1 then Gear^.doStep(Gear, Steps-1);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   561
end;
3689
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   562
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   563
procedure doStepChunk(Gear: PVisualGear; Steps: Longword);
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   564
begin
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   565
Gear^.X:= Gear^.X + Gear^.dX * Steps;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   566
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   567
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   568
Gear^.dY:= Gear^.dY + cGravityf * Steps;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   569
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   570
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   571
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   572
if round(Gear^.Y) > cWaterLine then
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   573
    begin
3699
e5e2cbc90891 Let's try this instead.
nemo
parents: 3689
diff changeset
   574
    AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtDroplet);
3689
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   575
    DeleteVisualGear(Gear);
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   576
    end
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   577
end;