hedgewars/VGSHandlers.inc
author nemo
Mon, 15 Aug 2011 16:48:39 -0400
changeset 5576 bf30c60786a5
parent 5563 fc73b6e941f7
child 5578 153e32989646
permissions -rw-r--r--
Move HealthTag dY init into AddGear
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
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4838
diff changeset
     3
 * Copyright (c) 2004-2011 Andrey Korotaev <unC0Rr@gmail.com>
3441
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
 *)
5121
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    18
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    19
(*
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    20
 * This file contains the step handlers for visual gears.
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    21
 *
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    22
 * Since the effects of visual gears do not affect the course of the game,
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    23
 * no "synchronization" between players is required.
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    24
 * => The usage of safe functions or data types (e.g. GetRandom() or hwFloat)
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    25
 * is usually not necessary and therefore undesirable.
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    26
 *)
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    27
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    28
procedure doStepFlake(Gear: PVisualGear; Steps: Longword);
4379
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4365
diff changeset
    29
var sign: real;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    30
begin
3641
98319a621dc8 save the gl client state to get a nice 80% fps boost
koda
parents: 3611
diff changeset
    31
if vobCount = 0 then exit;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3597
diff changeset
    32
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
sign:= 1;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    34
with Gear^ do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    35
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    36
    inc(FrameTicks, Steps);
4806
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    37
    if not SuddenDeathDmg and (FrameTicks > vobFrameTicks) then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    38
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    39
        dec(FrameTicks, vobFrameTicks);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    40
        inc(Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    41
        if Frame = vobFramesCount then Frame:= 0
4806
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    42
        end
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    43
    else if SuddenDeathDmg and (FrameTicks > vobSDFrameTicks) then
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    44
        begin
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    45
        dec(FrameTicks, vobSDFrameTicks);
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    46
        inc(Frame);
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    47
        if Frame = vobSDFramesCount then Frame:= 0
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    48
        end;
5355
9e0c51a882aa match snow to visual gear
nemo
parents: 5236
diff changeset
    49
    X:= X + (cWindSpeedf * 400 + dX + tdX) * Steps;
4806
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    50
    if SuddenDeathDmg then
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    51
        Y:= Y + (dY + tdY + cGravityf * vobSDFallSpeed) * Steps
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    52
    else
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4475
diff changeset
    53
        Y:= Y + (dY + tdY + cGravityf * vobFallSpeed) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    54
    Angle:= Angle + dAngle * Steps;
4152
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
    55
    if Angle > 360 then
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
    56
        Angle:= Angle - 360
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
    57
    else
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
    58
        if Angle < - 360 then
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
    59
            Angle:= Angle + 360;
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
    60
    
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    61
  
3764
eb91c02f2d84 Engine:
smaxx
parents: 3751
diff changeset
    62
    if (round(X) >= cLeftScreenBorder) and
eb91c02f2d84 Engine:
smaxx
parents: 3751
diff changeset
    63
       (round(X) <= cRightScreenBorder) and
4161
1f19dcdabe19 Remove more int64 casts
unc0rr
parents: 4152
diff changeset
    64
       (round(Y) - 75 <= LAND_HEIGHT) and
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    65
       (Timer > 0) and (Timer-Steps > 0) then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    66
        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
    67
        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
    68
        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
    69
        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
    70
        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
    71
        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
    72
        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
    73
        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
    74
        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
    75
        dec(Timer, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    76
        end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    77
    else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    78
        begin
3764
eb91c02f2d84 Engine:
smaxx
parents: 3751
diff changeset
    79
        if round(X) < cLeftScreenBorder then X:= X + cScreenSpace else
eb91c02f2d84 Engine:
smaxx
parents: 3751
diff changeset
    80
        if round(X) > cRightScreenBorder then X:= X - cScreenSpace;
4379
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4365
diff changeset
    81
        // if round(Y) < (LAND_HEIGHT - 1024 - 75) then Y:= Y + 25.0; // For if flag is set for flakes rising upwards?
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4365
diff changeset
    82
        if round(Y) - 75 > LAND_HEIGHT then Y:= Y - (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
    83
        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
    84
        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
    85
        tdY:= 0
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    86
        end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    87
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    88
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    89
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    90
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    91
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    92
procedure doStepBeeTrace(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    93
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    94
if Gear^.FrameTicks > Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    95
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    96
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    97
    DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    98
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    99
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   100
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   101
procedure doStepCloud(Gear: PVisualGear; Steps: Longword);
3592
0bcad5c38c9e clouds: up-and-down-bouncing now without evil loop
sheepluva
parents: 3590
diff changeset
   102
var s: Longword;
4379
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4365
diff changeset
   103
    t: real;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   104
begin
3994
486da687d76a fix/tweak let clouds reflect wind speed and direction again + stronger
sheepluva
parents: 3976
diff changeset
   105
Gear^.X:= Gear^.X + (cWindSpeedf * 750 * Gear^.dX) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   106
3592
0bcad5c38c9e clouds: up-and-down-bouncing now without evil loop
sheepluva
parents: 3590
diff changeset
   107
// 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
   108
s := (GameTicks + Gear^.Timer) mod 4096;
5151
cbadb9fa52fc An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents: 5121
diff changeset
   109
t := 8 * hwFloat2Float(AngleSin(s mod 2048));
3597
978c30ef50fc visual gears: fixing nemo's c-style assignment/multiplications
sheepluva
parents: 3593
diff changeset
   110
if (s < 2048) then t := -t;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   111
4161
1f19dcdabe19 Remove more int64 casts
unc0rr
parents: 4152
diff changeset
   112
Gear^.Y := LAND_HEIGHT - 1184 + LongInt(Gear^.Timer mod 8) + t;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   113
3764
eb91c02f2d84 Engine:
smaxx
parents: 3751
diff changeset
   114
if round(Gear^.X) < cLeftScreenBorder then Gear^.X:= Gear^.X + cScreenSpace else
eb91c02f2d84 Engine:
smaxx
parents: 3751
diff changeset
   115
if round(Gear^.X) > cRightScreenBorder then Gear^.X:= Gear^.X - cScreenSpace
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   116
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   117
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   118
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   119
procedure doStepExpl(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   120
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   121
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   122
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   123
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
   124
//Gear^.dY:= Gear^.dY + cGravityf;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   125
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   126
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   127
    if Gear^.Frame = 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   128
    else
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
        dec(Gear^.Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   131
        Gear^.FrameTicks:= cExplFrameTicks
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   132
        end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   133
    else dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   134
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   135
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   136
////////////////////////////////////////////////////////////////////////////////
3704
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   137
procedure doStepNote(Gear: PVisualGear; Steps: Longword);
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   138
begin
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   139
Gear^.X:= Gear^.X + Gear^.dX * Steps;
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   140
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   141
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
3706
a79784328c03 Engine:
smaxx
parents: 3704
diff changeset
   142
Gear^.dY:= Gear^.dY + cGravityf * Steps / 2;
3704
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   143
3706
a79784328c03 Engine:
smaxx
parents: 3704
diff changeset
   144
Gear^.Angle:= Gear^.Angle + (Gear^.Frame + 1) * Steps / 10;
a79784328c03 Engine:
smaxx
parents: 3704
diff changeset
   145
while Gear^.Angle > cMaxAngle do
a79784328c03 Engine:
smaxx
parents: 3704
diff changeset
   146
    Gear^.Angle:= Gear^.Angle - cMaxAngle;
3704
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   147
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   148
if Gear^.FrameTicks <= Steps then
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   149
    DeleteVisualGear(Gear)
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   150
else
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   151
    dec(Gear^.FrameTicks, Steps)
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   152
end;
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   153
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   154
////////////////////////////////////////////////////////////////////////////////
4279
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   155
procedure doStepLineTrail(Gear: PVisualGear; Steps: Longword);
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   156
begin
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   157
Steps := Steps;
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   158
if Gear^.Timer <= Steps then
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   159
    DeleteVisualGear(Gear)
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   160
else
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   161
    dec(Gear^.Timer, Steps)
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   162
end;
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   163
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   164
////////////////////////////////////////////////////////////////////////////////
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   165
procedure doStepEgg(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   166
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   167
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   168
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   169
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
   170
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   171
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   172
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   173
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   174
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   175
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   176
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   177
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   178
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   179
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   180
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   181
procedure doStepFire(Gear: PVisualGear; Steps: Longword);
3751
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   182
var vgt: PVisualGear;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   183
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   184
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   185
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^.Y:= Gear^.Y + Gear^.dY * Steps;// + cGravityf * (Steps * Steps);
3751
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   187
if (Gear^.State and gstTmpFlag) = 0 then
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   188
    begin
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   189
    Gear^.dY:= Gear^.dY + cGravityf * Steps;
3764
eb91c02f2d84 Engine:
smaxx
parents: 3751
diff changeset
   190
    if ((GameTicks mod 200) < Steps + 1) then
3751
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   191
        begin
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   192
        vgt:= AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtFire);
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   193
        if vgt <> nil then
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   194
            begin
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   195
            vgt^.dx:= 0;
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   196
            vgt^.dy:= 0;
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   197
            vgt^.State:= gstTmpFlag;
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   198
            end;
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   199
        end
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   200
    end
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   201
else
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   202
    inc(Steps, Steps);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   203
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   204
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   205
       DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   206
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   207
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   208
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   209
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   210
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   211
procedure doStepShell(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   212
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   213
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   214
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   215
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
   216
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   217
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   218
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   219
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   220
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   221
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   222
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   223
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   224
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   225
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   226
procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   227
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
   228
Gear^.Y:= Gear^.Y - 0.02 * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   229
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   230
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   231
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   232
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   233
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   234
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   235
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   236
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   237
procedure doStepBubble(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   238
begin
3909
4ba25a3d15af remove windspeed from bubbles, remove initial dY from bubbles, apply dY/dX to bubbles, correct offsets on flying saucer flame graphics, add bubbles when flying saucer thrusts underwater, make flying saucer sink more slowly underwater
nemo
parents: 3764
diff changeset
   239
    Gear^.X:= Gear^.X + Gear^.dX * Steps;
4ba25a3d15af remove windspeed from bubbles, remove initial dY from bubbles, apply dY/dX to bubbles, correct offsets on flying saucer flame graphics, add bubbles when flying saucer thrusts underwater, make flying saucer sink more slowly underwater
nemo
parents: 3764
diff changeset
   240
    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
   241
    Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   242
4172
03fe080d99d6 Don't use operator /=
unc0rr
parents: 4161
diff changeset
   243
    Gear^.dX := Gear^.dX / (1.001 * Steps);
03fe080d99d6 Don't use operator /=
unc0rr
parents: 4161
diff changeset
   244
    Gear^.dY := Gear^.dY / (1.001 * Steps);
3909
4ba25a3d15af remove windspeed from bubbles, remove initial dY from bubbles, apply dY/dX to bubbles, correct offsets on flying saucer flame graphics, add bubbles when flying saucer thrusts underwater, make flying saucer sink more slowly underwater
nemo
parents: 3764
diff changeset
   245
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
   246
    if (Gear^.FrameTicks <= Steps) or (round(Gear^.Y) < cWaterLine) then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   247
        DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   248
    else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   249
        dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   250
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   251
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   252
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   253
procedure doStepSteam(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   254
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
   255
    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
   256
    Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   257
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   258
    if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   259
        if Gear^.Frame = 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   260
        else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   261
            begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   262
            if Random(2) = 0 then dec(Gear^.Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   263
            Gear^.FrameTicks:= cExplFrameTicks
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   264
            end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   265
        else dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   266
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   267
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   268
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   269
procedure doStepAmmo(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   270
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
   271
    Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   272
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   273
    Gear^.scale:= Gear^.scale + 0.0025 * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   274
    Gear^.alpha:= Gear^.alpha - 0.0015 * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   275
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   276
    if Gear^.alpha < 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   277
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   278
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   279
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   280
procedure doStepSmoke(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   281
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
   282
    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
   283
    Gear^.Y:= Gear^.Y - (cDrownSpeedf + Gear^.dY) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   284
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
   285
    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
   286
    //Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.995);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   287
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   288
    if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   289
        if Gear^.Frame = 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   290
        else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   291
            begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   292
            if Random(2) = 0 then dec(Gear^.Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   293
            Gear^.FrameTicks:= cExplFrameTicks
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   294
            end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   295
        else dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   296
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   297
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   298
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   299
procedure doStepDust(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   300
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
   301
    Gear^.X:= Gear^.X + (cWindSpeedf + (cWindSpeedf * 0.03 * Steps) + Gear^.dX) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   302
    Gear^.Y:= Gear^.Y - (Gear^.dY) * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   303
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
   304
    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
   305
    Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.001 * Steps);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   306
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   307
    if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   308
        if Gear^.Frame = 0 then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   309
        else
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
            dec(Gear^.Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   312
            Gear^.FrameTicks:= cExplFrameTicks
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   313
            end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   314
        else dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   315
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   316
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   317
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   318
procedure doStepSplash(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   319
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   320
  if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   321
      DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   322
  else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   323
      dec(Gear^.FrameTicks, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   324
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   325
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   326
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   327
procedure doStepDroplet(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   328
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   329
  Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   330
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   331
  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
   332
  Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   333
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
   334
  if round(Gear^.Y) > cWaterLine then begin
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   335
    DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   336
    PlaySound(TSound(ord(sndDroplet1) + Random(3)));
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   337
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   338
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   339
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   340
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   341
procedure doStepSmokeRing(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   342
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   343
inc(Gear^.Timer, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   344
if Gear^.Timer >= Gear^.FrameTicks then DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   345
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   346
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   347
    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
   348
    Gear^.alpha := 1 - power(Gear^.Timer / 350, 4);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   349
    if Gear^.alpha < 0 then Gear^.alpha:= 0;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   350
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   351
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   352
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   353
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   354
procedure doStepFeather(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   355
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   356
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   357
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   358
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
   359
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   360
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   361
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   362
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   363
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   364
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   365
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   366
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   367
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   368
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   369
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   370
const cSorterWorkTime = 640;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   371
var thexchar: array[0..cMaxTeams] of
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   372
            record
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   373
            dy, ny, dw: LongInt;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   374
            team: PTeam;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   375
            SortFactor: QWord;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   376
            end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   377
    currsorter: PVisualGear = nil;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   378
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   379
procedure doStepTeamHealthSorterWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   380
var i, t: LongInt;
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
for t:= 1 to Steps do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   383
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   384
    dec(Gear^.Timer);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   385
    if (Gear^.Timer and 15) = 0 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   386
        for i:= 0 to Pred(TeamsCount) do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   387
            with thexchar[i] do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   388
                begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   389
                {$WARNINGS OFF}
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   390
                team^.DrawHealthY:= ny + dy * LongInt(Gear^.Timer) div 640;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   391
                team^.TeamHealthBarWidth:= team^.NewTeamHealthBarWidth + dw * LongInt(Gear^.Timer) div cSorterWorkTime;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   392
                {$WARNINGS ON}
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   393
                end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   394
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   395
    if (Gear^.Timer = 0) or (currsorter <> Gear) then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   396
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   397
        if currsorter = Gear then currsorter:= nil;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   398
        DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   399
        exit
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   400
        end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   401
    end
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
procedure doStepTeamHealthSorter(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   405
var i: Longword;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   406
    b: boolean;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   407
    t: LongInt;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   408
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   409
Steps:= Steps; // avoid compiler hint
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   410
for t:= 0 to Pred(TeamsCount) do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   411
    with thexchar[t] do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   412
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   413
        dy:= TeamsArray[t]^.DrawHealthY;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   414
        dw:= TeamsArray[t]^.TeamHealthBarWidth - TeamsArray[t]^.NewTeamHealthBarWidth;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   415
        team:= TeamsArray[t];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   416
        SortFactor:= TeamsArray[t]^.Clan^.ClanHealth;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   417
        SortFactor:= (SortFactor shl  3) + TeamsArray[t]^.Clan^.ClanIndex;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   418
        SortFactor:= (SortFactor shl 30) + TeamsArray[t]^.TeamHealth;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   419
        end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   420
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   421
if TeamsCount > 1 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   422
    repeat
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   423
    b:= true;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   424
    for t:= 0 to TeamsCount - 2 do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   425
        if (thexchar[t].SortFactor > thexchar[Succ(t)].SortFactor) then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   426
            begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   427
            thexchar[cMaxTeams]:= thexchar[t];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   428
            thexchar[t]:= thexchar[Succ(t)];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   429
            thexchar[Succ(t)]:= thexchar[cMaxTeams];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   430
            b:= false
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   431
            end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   432
    until b;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   433
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   434
t:= - 4;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   435
for i:= 0 to Pred(TeamsCount) do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   436
    with thexchar[i] do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   437
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   438
        dec(t, team^.HealthTex^.h + 2);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   439
        ny:= t;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   440
        dy:= dy - ny
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   441
        end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   442
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   443
Gear^.Timer:= cSorterWorkTime;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   444
Gear^.doStep:= @doStepTeamHealthSorterWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   445
currsorter:= Gear;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   446
//doStepTeamHealthSorterWork(Gear, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   447
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   448
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   449
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   450
procedure doStepSpeechBubbleWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   451
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   452
if Gear^.Timer > Steps then dec(Gear^.Timer, Steps) else Gear^.Timer:= 0;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   453
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4327
diff changeset
   454
if (Gear^.Hedgehog^.Gear <> nil) then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   455
    begin
5151
cbadb9fa52fc An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents: 5121
diff changeset
   456
    Gear^.X:= hwFloat2Float(Gear^.Hedgehog^.Gear^.X) + (Gear^.Tex^.w div 2  - Gear^.FrameTicks);
cbadb9fa52fc An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents: 5121
diff changeset
   457
    Gear^.Y:= hwFloat2Float(Gear^.Hedgehog^.Gear^.Y) - (16 + Gear^.Tex^.h);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   458
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   459
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   460
if Gear^.Timer = 0 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   461
    begin
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4327
diff changeset
   462
    if Gear^.Hedgehog^.SpeechGear = Gear then
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4327
diff changeset
   463
        Gear^.Hedgehog^.SpeechGear:= nil;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   464
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   465
    end;
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 doStepSpeechBubble(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   469
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   470
Steps:= Steps; // avoid compiler hint
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   471
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4327
diff changeset
   472
with Gear^.Hedgehog^ do
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   473
    if SpeechGear <> nil then SpeechGear^.Timer:= 0;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   474
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4327
diff changeset
   475
Gear^.Hedgehog^.SpeechGear:= Gear;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   476
5186
a05c14510c8a fix some more warnings
koda
parents: 5179
diff changeset
   477
Gear^.Timer:= max(LongInt(Length(Gear^.Text)) * 150, 3000);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   478
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   479
Gear^.Tex:= RenderSpeechBubbleTex(Gear^.Text, Gear^.FrameTicks, fnt16);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   480
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   481
case Gear^.FrameTicks of
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   482
    1: Gear^.FrameTicks:= SpritesData[sprSpeechTail].Width-28;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   483
    2: Gear^.FrameTicks:= SpritesData[sprThoughtTail].Width-20;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   484
    3: Gear^.FrameTicks:= SpritesData[sprShoutTail].Width-10;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   485
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   486
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   487
Gear^.doStep:= @doStepSpeechBubbleWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   488
4379
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4365
diff changeset
   489
Gear^.Y:= Gear^.Y - Gear^.Tex^.h
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   490
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   491
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   492
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   493
procedure doStepHealthTagWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   494
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   495
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
   496
    DeleteVisualGear(Gear)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   497
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   498
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   499
    dec(Gear^.Timer, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   500
    Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   501
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   502
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   503
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   504
procedure doStepHealthTagWorkUnderWater(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   505
begin
4161
1f19dcdabe19 Remove more int64 casts
unc0rr
parents: 4152
diff changeset
   506
if round(Gear^.Y) - 10 < cWaterLine then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   507
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   508
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
   509
    Gear^.Y:= Gear^.Y - 0.08 * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   510
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   511
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   512
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   513
procedure doStepHealthTag(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   514
var s: shortstring;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   515
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   516
s:= '';
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   517
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   518
str(Gear^.State, s);
3459
c552aa44108d hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents: 3443
diff changeset
   519
if Gear^.Hedgehog <> nil then
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4327
diff changeset
   520
    Gear^.Tex:= RenderStringTex(s, Gear^.Hedgehog^.Team^.Clan^.Color, fnt16)
3459
c552aa44108d hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents: 3443
diff changeset
   521
else
c552aa44108d hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents: 3443
diff changeset
   522
    Gear^.Tex:= RenderStringTex(s, cWhiteColor, fnt16);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   523
5576
bf30c60786a5 Move HealthTag dY init into AddGear
nemo
parents: 5563
diff changeset
   524
Gear^.doStep:= @doStepHealthTagWork
bf30c60786a5 Move HealthTag dY init into AddGear
nemo
parents: 5563
diff changeset
   525
bf30c60786a5 Move HealthTag dY init into AddGear
nemo
parents: 5563
diff changeset
   526
if (round(Gear^.Y) < cWaterLine) and (Frame = 0)  then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   527
    Gear^.doStep:= @doStepHealthTagWorkUnderWater;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   528
4379
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4365
diff changeset
   529
Gear^.Y:= Gear^.Y - Gear^.Tex^.h;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   530
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   531
if Steps > 1 then Gear^.doStep(Gear, Steps-1);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   532
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   533
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   534
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   535
procedure doStepSmokeTrace(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   536
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   537
inc(Gear^.Timer, Steps );
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   538
if Gear^.Timer > 64 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   539
    begin
3995
360332f8785f SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents: 3994
diff changeset
   540
    if Gear^.State = 0 then
360332f8785f SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents: 3994
diff changeset
   541
      begin
360332f8785f SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents: 3994
diff changeset
   542
      DeleteVisualGear(Gear);
360332f8785f SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents: 3994
diff changeset
   543
      exit;
360332f8785f SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents: 3994
diff changeset
   544
      end;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   545
    dec(Gear^.State, Gear^.Timer div 65);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   546
    Gear^.Timer:= Gear^.Timer mod 65;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   547
    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
   548
Gear^.dX:= Gear^.dX + cWindSpeedf * Steps;
3587
eca835df4106 Optimise vgtSmokeTrace/vgtEvilTrace handler
nemo
parents: 3466
diff changeset
   549
Gear^.X:= Gear^.X + Gear^.dX;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   550
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   551
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   552
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   553
procedure doStepExplosionWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   554
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   555
inc(Gear^.Timer, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   556
if Gear^.Timer > 75 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   557
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   558
    inc(Gear^.State, Gear^.Timer div 76);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   559
    Gear^.Timer:= Gear^.Timer mod 76;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   560
    if Gear^.State > 5 then DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   561
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   562
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   563
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   564
procedure doStepExplosion(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   565
var i: LongWord;
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   566
    gX,gY: LongInt;
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   567
    vg: PVisualGear;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   568
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
   569
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
   570
gY:= round(Gear^.Y);
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   571
for i:= 0 to 31 do 
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   572
    begin
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   573
    vg:= AddVisualGear(gX, gY, vgtFire);
4475
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   574
    if vg <> nil then 
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   575
        begin
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   576
        vg^.State:= gstTmpFlag;
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   577
        inc(vg^.FrameTicks, vg^.FrameTicks)
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   578
        end
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   579
    end;
3590
66e1bc1ea3a9 explosions: cache rounded X,Y values
sheepluva
parents: 3587
diff changeset
   580
for i:= 0 to  8 do AddVisualGear(gX, gY, vgtExplPart);
66e1bc1ea3a9 explosions: cache rounded X,Y values
sheepluva
parents: 3587
diff changeset
   581
for i:= 0 to  8 do AddVisualGear(gX, gY, vgtExplPart2);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   582
Gear^.doStep:= @doStepExplosionWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   583
if Steps > 1 then Gear^.doStep(Gear, Steps-1);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   584
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   585
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   586
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   587
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   588
procedure doStepBigExplosionWork(Gear: PVisualGear; Steps: Longword);
3587
eca835df4106 Optimise vgtSmokeTrace/vgtEvilTrace handler
nemo
parents: 3466
diff changeset
   589
//var maxMovement: LongInt;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   590
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   591
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   592
inc(Gear^.Timer, Steps);
3466
78d9fa9a700e Comment out the desyncing block, with a suggestion for possible fix
nemo
parents: 3459
diff changeset
   593
(*
78d9fa9a700e Comment out the desyncing block, with a suggestion for possible fix
nemo
parents: 3459
diff changeset
   594
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
   595
One possible solution is, instead of using WorldDx, to use straight gl/SDL calls to jitter the screen a bit.
5357
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   596
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   597
// a comment by unC0Rr: instead of changing WorldDx shake cursor coordinates, that should be safe
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   598
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   599
if (Gear^.Timer and 5) = 0 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   600
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   601
    maxMovement := max(1, 13 - ((Gear^.Timer * 15) div 250));
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   602
    ShakeCamera(maxMovement);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   603
    end;
3466
78d9fa9a700e Comment out the desyncing block, with a suggestion for possible fix
nemo
parents: 3459
diff changeset
   604
*)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   605
if Gear^.Timer > 250 then DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   606
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   607
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   608
procedure doStepBigExplosion(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   609
var i: LongWord;
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   610
    gX,gY: LongInt;
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   611
    vg: PVisualGear;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   612
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
   613
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
   614
gY:= round(Gear^.Y);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   615
AddVisualGear(gX, gY, vgtSmokeRing);
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   616
for i:= 0 to 46 do 
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   617
    begin
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   618
    vg:= AddVisualGear(gX, gY, vgtFire);
4475
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   619
    if vg <> nil then 
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   620
        begin
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   621
        vg^.State:= gstTmpFlag;
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   622
        inc(vg^.FrameTicks, vg^.FrameTicks)
54e78c40970b rendering optimisations. remove the recursive flames in explosions (might need more due to the gravity change in the new flames) but more usefully, eliminate a number of redundant Tint calls
nemo
parents: 4473
diff changeset
   623
        end
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   624
    end;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   625
for i:= 0 to 15 do AddVisualGear(gX, gY, vgtExplPart);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   626
for i:= 0 to 15 do AddVisualGear(gX, gY, vgtExplPart2);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   627
Gear^.doStep:= @doStepBigExplosionWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   628
if Steps > 1 then Gear^.doStep(Gear, Steps-1);
4034
634a8c8682de add some phone rumbling to big explosions, airbomb and sinegun
koda
parents: 3995
diff changeset
   629
performRumble();
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   630
end;
3689
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   631
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   632
procedure doStepChunk(Gear: PVisualGear; Steps: Longword);
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   633
begin
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   634
Gear^.X:= Gear^.X + Gear^.dX * Steps;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   635
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   636
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   637
Gear^.dY:= Gear^.dY + cGravityf * Steps;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   638
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   639
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   640
5235
e30b06ffea3a Skip droplets if plain splash is enabled, add a sanity check just in case.
nemo
parents: 5186
diff changeset
   641
if (round(Gear^.Y) > cWaterLine) and ((cReducedQuality and rqPlainSplash) = 0) then
3689
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   642
    begin
3699
e5e2cbc90891 Let's try this instead.
nemo
parents: 3689
diff changeset
   643
    AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtDroplet);
3689
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   644
    DeleteVisualGear(Gear);
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   645
    end
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   646
end;
4327
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   647
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   648
////////////////////////////////////////////////////////////////////////////////
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   649
procedure doStepBulletHit(Gear: PVisualGear; Steps: Longword);
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   650
begin
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   651
  if Gear^.FrameTicks <= Steps then
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   652
      DeleteVisualGear(Gear)
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   653
  else
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   654
      dec(Gear^.FrameTicks, Steps);
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   655
end;
4420
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   656
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   657
////////////////////////////////////////////////////////////////////////////////
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   658
procedure doStepCircle(Gear: PVisualGear; Steps: Longword);
4452
258945553b18 make Tint(longword) use RGBA
nemo
parents: 4421
diff changeset
   659
var tmp: LongInt;
4421
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   660
    i: LongWord;
4420
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   661
begin
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   662
with Gear^ do
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   663
    if Frame <> 0 then
4421
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   664
        for i:= 1 to Steps do
4420
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   665
            begin
4421
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   666
            inc(FrameTicks);
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   667
            if (FrameTicks mod Frame) = 0 then
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   668
                begin
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   669
                tmp:= Gear^.Tint and $FF;
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   670
                if tdY >= 0 then inc(tmp)
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   671
                else dec(tmp);
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   672
                if tmp < round(dX) then tdY:= 1;
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   673
                if tmp > round(dY) then tdY:= -1;
4838
6c2528fe925d Force a bunch of images to RGBA that were either RGB or indexed, strip
nemo
parents: 4806
diff changeset
   674
                if tmp > 255 then tmp := 255;
6c2528fe925d Force a bunch of images to RGBA that were either RGB or indexed, strip
nemo
parents: 4806
diff changeset
   675
                if tmp < 0 then tmp := 0;
5179
8d64dcb566ea Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents: 5151
diff changeset
   676
                Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or Longword(tmp)
4421
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   677
                end
4420
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   678
            end
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   679
end;
5357
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   680
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   681
////////////////////////////////////////////////////////////////////////////////
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   682
procedure doStepSmoothWindBar(Gear: PVisualGear; Steps: Longword);
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   683
begin
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   684
    inc(Gear^.Timer, Steps);
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   685
    
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   686
    while Gear^.Timer >= 10 do
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   687
        begin
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   688
        dec(Gear^.Timer, 10);
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   689
        if WindBarWidth < Gear^.Tag then inc(WindBarWidth)
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   690
        else if WindBarWidth > Gear^.Tag then dec(WindBarWidth);
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   691
        end;
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   692
        
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   693
if WindBarWidth = Gear^.Tag then 
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   694
    DeleteVisualGear(Gear)
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   695
end;
5562
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   696
////////////////////////////////////////////////////////////////////////////////
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   697
procedure doStepStraightShot(Gear: PVisualGear; Steps: Longword);
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   698
begin
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   699
Gear^.X:= Gear^.X + Gear^.dX * Steps;
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   700
Gear^.Y:= Gear^.Y - Gear^.dY * Steps;
5357
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   701
5562
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   702
if Gear^.FrameTicks <= Steps then
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   703
    DeleteVisualGear(Gear)
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   704
else
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   705
    begin
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   706
    dec(Gear^.FrameTicks, Steps);
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   707
    if (Gear^.FrameTicks < 501) and (Gear^.FrameTicks mod 5 = 0) then 
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   708
        Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or (((Gear^.Tint and $000000FF) * Gear^.FrameTicks) div 500)
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   709
    end
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   710
end;
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   711