hedgewars/uVisualGearsHandlers.pas
author Wuzzy <Wuzzy2@mail.ru>
Tue, 13 Mar 2018 16:57:20 +0100
branchqt5transition
changeset 13181 2148b493836e
parent 12312 83131d0e747b
child 13140 e330feceb662
permissions -rw-r--r--
Update INSTALL.md about new Qt5 dependency
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
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10859
diff changeset
     3
 * Copyright (c) 2004-2015 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
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 10015
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
3441
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
 *)
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9960
diff changeset
    27
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9960
diff changeset
    28
{$INCLUDE "options.inc"}
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9960
diff changeset
    29
9283
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    30
unit uVisualGearsHandlers;
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    31
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    32
interface
10193
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
    33
uses uTypes, uGears;
9283
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    34
9960
fac73b8a52d3 Fix doStepHandlers confusion
unc0rr
parents: 9950
diff changeset
    35
var doStepVGHandlers: array[TVisualGearType] of TVGearStepProcedure;
9283
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    36
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    37
procedure doStepFlake(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    38
procedure doStepBeeTrace(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    39
procedure doStepCloud(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    40
procedure doStepExpl(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    41
procedure doStepNote(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    42
procedure doStepLineTrail(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    43
procedure doStepEgg(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    44
procedure doStepFire(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    45
procedure doStepShell(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    46
procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    47
procedure doStepBubble(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    48
procedure doStepSteam(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    49
procedure doStepAmmo(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    50
procedure doStepSmoke(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    51
procedure doStepDust(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    52
procedure doStepSplash(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    53
procedure doStepDroplet(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    54
procedure doStepSmokeRing(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    55
procedure doStepFeather(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    56
procedure doStepTeamHealthSorterWork(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    57
procedure doStepTeamHealthSorter(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    58
procedure doStepSpeechBubbleWork(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    59
procedure doStepSpeechBubble(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    60
procedure doStepHealthTagWork(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    61
procedure doStepHealthTagWorkUnderWater(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    62
procedure doStepHealthTag(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    63
procedure doStepSmokeTrace(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    64
procedure doStepExplosionWork(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    65
procedure doStepExplosion(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    66
procedure doStepBigExplosionWork(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    67
procedure doStepBigExplosion(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    68
procedure doStepChunk(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    69
procedure doStepBulletHit(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    70
procedure doStepCircle(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    71
procedure doStepSmoothWindBar(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    72
procedure doStepStraightShot(Gear: PVisualGear; Steps: Longword);
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    73
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
    74
function isSorterActive: boolean; inline;
9283
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    75
procedure initModule;
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    76
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
    77
implementation
11822
4600dcb9db4f - Use IntToStr() in preference to Str()
unc0rr
parents: 11739
diff changeset
    78
uses uCollisions, uVariables, Math, uConsts, uVisualGearsList, uFloat, uSound, uRenderUtils, uWorld, uUtils;
5121
2d34ec60992c added some comments in order to confuse the GSoC students as much as possible ;D
sheepluva
parents: 4976
diff changeset
    79
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    80
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
    81
var sign: real;
12312
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
    82
    moved, rising, outside: boolean;
10625
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
    83
    vfc, vft: LongWord;
12312
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
    84
    spawnMargin: LongInt;
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
    85
const
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
    86
    randMargin = 50;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    87
begin
11739
eee922f69d1b fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents: 11046
diff changeset
    88
if SuddenDeathDmg then
eee922f69d1b fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents: 11046
diff changeset
    89
    begin
eee922f69d1b fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents: 11046
diff changeset
    90
    if (vobSDCount = 0) then exit;
eee922f69d1b fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents: 11046
diff changeset
    91
    end
eee922f69d1b fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents: 11046
diff changeset
    92
else
eee922f69d1b fix issue 8: Static skull and bones flakes near the water in Sudden Death in themes without flakes
sheepluva
parents: 11046
diff changeset
    93
    if (vobCount = 0) then exit;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3597
diff changeset
    94
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
    95
sign:= 1;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    96
with Gear^ do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
    97
    begin
10625
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
    98
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
    99
    X:= X + (cWindSpeedf * 400 + dX + tdX) * Steps * Gear^.Scale;
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   100
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   101
    if SuddenDeathDmg then
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   102
        begin
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   103
        Y:= Y + (dY + tdY + cGravityf * vobSDFallSpeed) * Steps * Gear^.Scale;
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   104
        vfc:= vobSDFramesCount;
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   105
        vft:= vobSDFrameTicks;
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   106
        end
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   107
    else
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   108
        begin
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   109
        Y:= Y + (dY + tdY + cGravityf * vobFallSpeed) * Steps * Gear^.Scale;
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   110
        vfc:= vobFramesCount;
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   111
        vft:= vobFrameTicks;
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   112
        end;
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   113
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   114
    if vft > 0 then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   115
        begin
10623
81f1cf934827 Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents: 10526
diff changeset
   116
        inc(FrameTicks, Steps);
10625
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   117
        if FrameTicks > vft then
10623
81f1cf934827 Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents: 10526
diff changeset
   118
            begin
10625
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   119
            dec(FrameTicks, vft);
10623
81f1cf934827 Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents: 10526
diff changeset
   120
            inc(Frame);
10625
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   121
            if Frame = vfc then
10623
81f1cf934827 Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents: 10526
diff changeset
   122
                Frame:= 0
81f1cf934827 Skip frame increments if FrameTicks is over 1000 seconds per frame, probably indicating static at that point.
nemo
parents: 10526
diff changeset
   123
            end;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   124
        end;
10625
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10624
diff changeset
   125
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   126
    Angle:= Angle + dAngle * Steps;
4152
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
   127
    if Angle > 360 then
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
   128
        Angle:= Angle - 360
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
   129
    else
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
   130
        if Angle < - 360 then
07008cb354f9 Prevent vgtFlake's rotation angle to grow too high in its absolute value
unc0rr
parents: 4034
diff changeset
   131
            Angle:= Angle + 360;
8330
aaefa587e277 update branch with default
koda
parents: 8026 8204
diff changeset
   132
aaefa587e277 update branch with default
koda
parents: 8026 8204
diff changeset
   133
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   134
    if (round(X) >= cLeftScreenBorder)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   135
    and (round(X) <= cRightScreenBorder)
10731
bc359abe0484 tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents: 10625
diff changeset
   136
    and (round(Y) - 250 <= LAND_HEIGHT)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   137
    and (Timer > 0) and (Timer-Steps > 0) then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   138
        begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   139
        if tdX > 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   140
            sign := 1
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   141
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   142
            sign:= -1;
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
   143
        tdX:= tdX - 0.005*Steps*sign;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   144
        if ((sign < 0) and (tdX > 0)) or ((sign > 0) and (tdX < 0)) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   145
            tdX:= 0;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   146
        if tdX > 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   147
            sign := 1
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   148
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   149
            sign:= -1;
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
   150
        tdY:= tdY - 0.005*Steps*sign;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   151
        if ((sign < 0) and (tdY > 0)) or ((sign > 0) and (tdY < 0)) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   152
            tdY:= 0;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   153
        dec(Timer, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   154
        end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   155
    else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   156
        begin
7375
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   157
        moved:= false;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   158
        if round(X) < cLeftScreenBorder then
7375
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   159
            begin
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   160
            X:= X + cScreenSpace;
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   161
            moved:= true
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   162
            end
10731
bc359abe0484 tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents: 10625
diff changeset
   163
        else if round(X) > cRightScreenBorder then
bc359abe0484 tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents: 10625
diff changeset
   164
            begin
bc359abe0484 tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents: 10625
diff changeset
   165
            X:= X - cScreenSpace;
bc359abe0484 tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents: 10625
diff changeset
   166
            moved:= true
bc359abe0484 tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents: 10625
diff changeset
   167
            end;
11868
60c8bb8bc1d7 rising flakes will no longer fly forever [reviewed, cleaned up and committed by sheepluva]
KoBeWi <kobewi4e@gmail.com>
parents: 11822
diff changeset
   168
12312
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   169
        // it's possible for flakes to move upwards
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   170
        if SuddenDeathDmg then
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   171
            rising:= (cGravityf * vobSDFallSpeed) < 0
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   172
        else
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   173
            rising:= (cGravityf * vobFallSpeed) < 0;
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   174
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   175
        if gear^.layer = 2 then
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   176
            spawnMargin:= 400
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   177
        else
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   178
            spawnMargin:= 200;
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   179
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   180
        // flake fell far below map?
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   181
        outside:= (not rising) and (round(Y) - spawnMargin + randMargin > LAND_HEIGHT);
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   182
        // if not, did it rise far above map?
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   183
        outside:= outside or (rising and (round(Y) < LAND_HEIGHT - 1024 - spawnMargin - randMargin));
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   184
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   185
        // if flake left acceptable vertical area, respawn it opposite side
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   186
        if outside then
7206
ce46b56ae9f5 Double sniper rifle damage (AI seems unaware of second shot, when playing). Spread out flakes along X when looping and add a little Y variation. This avoids noticeable patterns. Especially on the rarer close layer or dense flakes like rain (for Y)
nemo
parents: 6913
diff changeset
   187
            begin
ce46b56ae9f5 Double sniper rifle damage (AI seems unaware of second shot, when playing). Spread out flakes along X when looping and add a little Y variation. This avoids noticeable patterns. Especially on the rarer close layer or dense flakes like rain (for Y)
nemo
parents: 6913
diff changeset
   188
            X:= cLeftScreenBorder + random(cScreenSpace);
12312
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   189
            if rising then
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   190
                Y:= Y + (1024 + spawnMargin + random(50))
10731
bc359abe0484 tweaks to try and make flakes better behaved in negative gravity. branch safe.
nemo
parents: 10625
diff changeset
   191
            else
12312
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   192
                Y:= Y - (1024 + spawnMargin + random(50));
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   193
            moved:= true;
7375
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   194
            end;
12312
83131d0e747b clean up flake falling/rising code. this should fix issue #157
sheepluva
parents: 11868
diff changeset
   195
7375
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   196
        if moved then
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   197
            begin
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   198
            Angle:= random(360);
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   199
            dx:= 0.0000038654705 * random(10000);
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   200
            dy:= 0.000003506096 * random(7000);
16ae2e1c9005 Tell AI to avoid edges, especially ones over water (this does not include checking whether a knock could drown yet). Also make flakes pick a new random dx/dy on respawn to further reduce patterns. Also disable a couple of weapons for the particularly dumb AI levels, and disable switching for the dumbest.
nemo
parents: 7206
diff changeset
   201
            if random(2) = 0 then dx := -dx
7206
ce46b56ae9f5 Double sniper rifle damage (AI seems unaware of second shot, when playing). Spread out flakes along X when looping and add a little Y variation. This avoids noticeable patterns. Especially on the rarer close layer or dense flakes like rain (for Y)
nemo
parents: 6913
diff changeset
   202
            end;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   203
        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
   204
        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
   205
        tdY:= 0
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   206
        end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   207
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   208
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   209
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   210
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   211
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   212
procedure doStepBeeTrace(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   213
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   214
if Gear^.FrameTicks > Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   215
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   216
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   217
    DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   218
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   219
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   220
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   221
procedure doStepCloud(Gear: PVisualGear; Steps: Longword);
3592
0bcad5c38c9e clouds: up-and-down-bouncing now without evil loop
sheepluva
parents: 3590
diff changeset
   222
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
   223
    t: real;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   224
begin
6553
91365db8b82c Slow down flakes/clouds that are farther away. Also unbreak NTPX w/ SDL 1.2
nemo
parents: 6302
diff changeset
   225
Gear^.X:= Gear^.X + (cWindSpeedf * 750 * Gear^.dX * Gear^.Scale) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   226
3592
0bcad5c38c9e clouds: up-and-down-bouncing now without evil loop
sheepluva
parents: 3590
diff changeset
   227
// 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
   228
s := (GameTicks + Gear^.Timer) mod 4096;
6553
91365db8b82c Slow down flakes/clouds that are farther away. Also unbreak NTPX w/ SDL 1.2
nemo
parents: 6302
diff changeset
   229
t := 8 * Gear^.Scale * hwFloat2Float(AngleSin(s mod 2048));
3597
978c30ef50fc visual gears: fixing nemo's c-style assignment/multiplications
sheepluva
parents: 3593
diff changeset
   230
if (s < 2048) then t := -t;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   231
4161
1f19dcdabe19 Remove more int64 casts
unc0rr
parents: 4152
diff changeset
   232
Gear^.Y := LAND_HEIGHT - 1184 + LongInt(Gear^.Timer mod 8) + t;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   233
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   234
if round(Gear^.X) < cLeftScreenBorder then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   235
    Gear^.X:= Gear^.X + cScreenSpace
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   236
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   237
    if round(Gear^.X) > cRightScreenBorder then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   238
        Gear^.X:= Gear^.X - cScreenSpace
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   239
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   240
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   241
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   242
procedure doStepExpl(Gear: PVisualGear; Steps: Longword);
7808
cc1805cd9138 Make explosion look depend less on fps
unc0rr
parents: 7644
diff changeset
   243
var s: LongInt;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   244
begin
7808
cc1805cd9138 Make explosion look depend less on fps
unc0rr
parents: 7644
diff changeset
   245
s:= min(Steps, cExplFrameTicks);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   246
7808
cc1805cd9138 Make explosion look depend less on fps
unc0rr
parents: 7644
diff changeset
   247
Gear^.X:= Gear^.X + Gear^.dX * s;
cc1805cd9138 Make explosion look depend less on fps
unc0rr
parents: 7644
diff changeset
   248
Gear^.Y:= Gear^.Y + Gear^.dY * s;
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
   249
//Gear^.dY:= Gear^.dY + cGravityf;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   250
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   251
if Gear^.FrameTicks <= Steps then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   252
    if Gear^.Frame = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   253
        DeleteVisualGear(Gear)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   254
    else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   255
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   256
        dec(Gear^.Frame);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   257
        Gear^.FrameTicks:= cExplFrameTicks
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   258
        end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   259
    else dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   260
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   261
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   262
////////////////////////////////////////////////////////////////////////////////
3704
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   263
procedure doStepNote(Gear: PVisualGear; Steps: Longword);
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   264
begin
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   265
Gear^.X:= Gear^.X + Gear^.dX * Steps;
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   266
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   267
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
3706
a79784328c03 Engine:
smaxx
parents: 3704
diff changeset
   268
Gear^.dY:= Gear^.dY + cGravityf * Steps / 2;
3704
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   269
3706
a79784328c03 Engine:
smaxx
parents: 3704
diff changeset
   270
Gear^.Angle:= Gear^.Angle + (Gear^.Frame + 1) * Steps / 10;
a79784328c03 Engine:
smaxx
parents: 3704
diff changeset
   271
while Gear^.Angle > cMaxAngle do
a79784328c03 Engine:
smaxx
parents: 3704
diff changeset
   272
    Gear^.Angle:= Gear^.Angle - cMaxAngle;
3704
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   273
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   274
if Gear^.FrameTicks <= Steps then
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   275
    DeleteVisualGear(Gear)
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   276
else
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   277
    dec(Gear^.FrameTicks, Steps)
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   278
end;
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   279
ed2b9c7fb260 Engine:
smaxx
parents: 3699
diff changeset
   280
////////////////////////////////////////////////////////////////////////////////
4279
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   281
procedure doStepLineTrail(Gear: PVisualGear; Steps: Longword);
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   282
begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7808
diff changeset
   283
{$IFNDEF PAS2C}
4279
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   284
Steps := Steps;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7808
diff changeset
   285
{$ENDIF}
4279
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   286
if Gear^.Timer <= Steps then
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   287
    DeleteVisualGear(Gear)
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   288
else
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   289
    dec(Gear^.Timer, Steps)
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   290
end;
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   291
b697a26ed538 Light trails for bullets
Palewolf
parents: 4172
diff changeset
   292
////////////////////////////////////////////////////////////////////////////////
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   293
procedure doStepEgg(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   294
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   295
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   296
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   297
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
   298
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   299
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   300
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   301
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   302
if Gear^.FrameTicks <= Steps then
6128
nemo
parents: 5874
diff changeset
   303
    begin
nemo
parents: 5874
diff changeset
   304
    DeleteVisualGear(Gear);
nemo
parents: 5874
diff changeset
   305
    exit
nemo
parents: 5874
diff changeset
   306
    end
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   307
else
5874
5cd329cf2460 nemo's molotov burst effect; with a slight color modification added
sheepluva
parents: 5855
diff changeset
   308
    dec(Gear^.FrameTicks, Steps);
5cd329cf2460 nemo's molotov burst effect; with a slight color modification added
sheepluva
parents: 5855
diff changeset
   309
5cd329cf2460 nemo's molotov burst effect; with a slight color modification added
sheepluva
parents: 5855
diff changeset
   310
if Gear^.FrameTicks < $FF then
5cd329cf2460 nemo's molotov burst effect; with a slight color modification added
sheepluva
parents: 5855
diff changeset
   311
   Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or Gear^.FrameTicks
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   312
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   313
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   314
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   315
procedure doStepFire(Gear: PVisualGear; Steps: Longword);
3751
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   316
var vgt: PVisualGear;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   317
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   318
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   319
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
   320
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;// + cGravityf * (Steps * Steps);
3751
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   321
if (Gear^.State and gstTmpFlag) = 0 then
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   322
    begin
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   323
    Gear^.dY:= Gear^.dY + cGravityf * Steps;
3764
eb91c02f2d84 Engine:
smaxx
parents: 3751
diff changeset
   324
    if ((GameTicks mod 200) < Steps + 1) then
3751
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   325
        begin
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   326
        vgt:= AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtFire);
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   327
        if vgt <> nil then
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   328
            begin
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   329
            vgt^.dx:= 0;
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   330
            vgt^.dy:= 0;
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   331
            vgt^.State:= gstTmpFlag;
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   332
            end;
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   333
        end
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   334
    end
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   335
else
a70c61c076ae Engine:
smaxx
parents: 3706
diff changeset
   336
    inc(Steps, Steps);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   337
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   338
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   339
       DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   340
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   341
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   342
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   343
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   344
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   345
procedure doStepShell(Gear: PVisualGear; Steps: Longword);
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^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   348
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   349
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
   350
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   351
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   352
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   353
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   354
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   355
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   356
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   357
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   358
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   359
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   360
procedure doStepSmallDamage(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   361
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
   362
Gear^.Y:= Gear^.Y - 0.02 * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   363
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   364
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   365
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   366
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   367
    dec(Gear^.FrameTicks, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   368
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   369
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   370
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   371
procedure doStepBubble(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   372
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   373
Gear^.X:= Gear^.X + Gear^.dX * Steps;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   374
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   375
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   376
Gear^.dX := Gear^.dX / (1.001 * Steps);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   377
Gear^.dY := Gear^.dY / (1.001 * Steps);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   378
10355
334b5f513703 fix pas2c build
sheepluva
parents: 10354
diff changeset
   379
if (Gear^.FrameTicks <= Steps) or (not CheckCoordInWater(round(Gear^.X), round(Gear^.Y))) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   380
    DeleteVisualGear(Gear)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   381
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   382
    dec(Gear^.FrameTicks, Steps)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   383
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   384
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   385
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   386
procedure doStepSteam(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   387
begin
10354
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10299
diff changeset
   388
if ((cWindSpeedf > 0) and ( leftX > Gear^.X))
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10299
diff changeset
   389
or ((cWindSpeedf < 0) and (rightX < Gear^.X)) then
56bd029245fc WIP: weSea tweaks, functional and visual
sheepluva
parents: 10299
diff changeset
   390
    Gear^.X:= Gear^.X + (cWindSpeedf * 100 + Gear^.dX) * Steps;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   391
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   392
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   393
if Gear^.FrameTicks <= Steps then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   394
    if Gear^.Frame = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   395
        DeleteVisualGear(Gear)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   396
    else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   397
        begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   398
        if Random(2) = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   399
            dec(Gear^.Frame);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   400
        Gear^.FrameTicks:= cExplFrameTicks
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   401
        end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   402
else dec(Gear^.FrameTicks, Steps)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   403
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   404
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   405
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   406
procedure doStepAmmo(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   407
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   408
Gear^.Y:= Gear^.Y - cDrownSpeedf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   409
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   410
Gear^.scale:= Gear^.scale + 0.0025 * Steps;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   411
Gear^.alpha:= Gear^.alpha - 0.0015 * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   412
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   413
if Gear^.alpha < 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   414
    DeleteVisualGear(Gear)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   415
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   416
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   417
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   418
procedure doStepSmoke(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   419
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   420
Gear^.X:= Gear^.X + (cWindSpeedf + Gear^.dX) * Steps;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   421
Gear^.Y:= Gear^.Y - (cDrownSpeedf + Gear^.dY) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   422
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   423
Gear^.dX := Gear^.dX + (cWindSpeedf * 0.3 * Steps);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   424
//Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.995);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   425
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   426
if Gear^.FrameTicks <= Steps then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   427
    if Gear^.Frame = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   428
        DeleteVisualGear(Gear)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   429
    else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   430
        begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   431
        if Random(2) = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   432
            dec(Gear^.Frame);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   433
        Gear^.FrameTicks:= cExplFrameTicks
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   434
        end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   435
    else dec(Gear^.FrameTicks, Steps)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   436
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   437
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   438
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   439
procedure doStepDust(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   440
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   441
Gear^.X:= Gear^.X + (cWindSpeedf + (cWindSpeedf * 0.03 * Steps) + Gear^.dX) * Steps;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   442
Gear^.Y:= Gear^.Y - (Gear^.dY) * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   443
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   444
Gear^.dX := Gear^.dX - (Gear^.dX * 0.005 * Steps);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   445
Gear^.dY := Gear^.dY - (cDrownSpeedf * 0.001 * Steps);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   446
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   447
if Gear^.FrameTicks <= Steps then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   448
    if Gear^.Frame = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   449
            DeleteVisualGear(Gear)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   450
    else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   451
        begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   452
        dec(Gear^.Frame);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   453
        Gear^.FrameTicks:= cExplFrameTicks
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   454
        end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   455
    else dec(Gear^.FrameTicks, Steps)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   456
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   457
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   458
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   459
procedure doStepSplash(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   460
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   461
if Gear^.FrameTicks <= Steps then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   462
    DeleteVisualGear(Gear)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   463
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   464
    dec(Gear^.FrameTicks, Steps);
3441
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
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 doStepDroplet(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   469
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   470
Gear^.X:= Gear^.X + Gear^.dX * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   471
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   472
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   473
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   474
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   475
if round(Gear^.Y) > cWaterLine then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   476
    begin
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   477
    DeleteVisualGear(Gear);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   478
    PlaySound(TSound(ord(sndDroplet1) + Random(3)));
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   479
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   480
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   481
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   482
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   483
procedure doStepSmokeRing(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   484
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   485
inc(Gear^.Timer, Steps);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   486
if Gear^.Timer >= Gear^.FrameTicks then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   487
    DeleteVisualGear(Gear)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   488
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   489
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   490
    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
   491
    Gear^.alpha := 1 - power(Gear^.Timer / 350, 4);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   492
    if Gear^.alpha < 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   493
        Gear^.alpha:= 0;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   494
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   495
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   496
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   497
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   498
procedure doStepFeather(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   499
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   500
Gear^.X:= Gear^.X + Gear^.dX * Steps;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   501
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   502
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
   503
Gear^.dY:= Gear^.dY + cGravityf * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   504
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   505
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   506
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   507
if Gear^.FrameTicks <= Steps then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   508
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   509
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   510
    dec(Gear^.FrameTicks, Steps)
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
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   514
const cSorterWorkTime = 640;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   515
var thexchar: array[0..cMaxTeams] of
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   516
            record
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   517
            dy, ny, dw: LongInt;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   518
            team: PTeam;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   519
            SortFactor: QWord;
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   520
            hdw: array[0..cMaxHHIndex] of LongInt;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   521
            end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   522
    currsorter: PVisualGear = nil;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   523
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   524
function isSorterActive: boolean; inline;
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   525
begin
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   526
    isSorterActive:= currsorter <> nil
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   527
end;
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   528
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   529
procedure doStepTeamHealthSorterWork(Gear: PVisualGear; Steps: Longword);
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   530
var i, t, h: LongInt;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   531
begin
10858
bd281e854e02 Don't do anything if sorter was replaced, even for one tick only. Hopefully fixes issue #907, but not confirmed, though very highly plausible.
unc0rr
parents: 10731
diff changeset
   532
if currsorter = Gear then
bd281e854e02 Don't do anything if sorter was replaced, even for one tick only. Hopefully fixes issue #907, but not confirmed, though very highly plausible.
unc0rr
parents: 10731
diff changeset
   533
  for t:= 1 to min(Steps, Gear^.Timer) do
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   534
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   535
    dec(Gear^.Timer);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   536
    if (Gear^.Timer and 15) = 0 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   537
        for i:= 0 to Pred(TeamsCount) do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   538
            with thexchar[i] do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   539
                begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   540
                {$WARNINGS OFF}
7644
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   541
                team^.DrawHealthY:= ny + dy * LongInt(Gear^.Timer) div cSorterWorkTime;
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   542
                team^.TeamHealthBarHealth:= team^.TeamHealth + dw * LongInt(Gear^.Timer) div cSorterWorkTime;
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   543
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   544
                for h:= 0 to cMaxHHIndex do
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   545
                    if (team^.Hedgehogs[h].Gear <> nil) then
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   546
                        team^.Hedgehogs[h].HealthBarHealth:= team^.Hedgehogs[h].Gear^.Health + hdw[h] * LongInt(Gear^.Timer) div cSorterWorkTime
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   547
                    else
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   548
                        team^.Hedgehogs[h].HealthBarHealth:= hdw[h] * LongInt(Gear^.Timer) div cSorterWorkTime;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   549
                {$WARNINGS ON}
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   550
                end;
7644
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   551
    end;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   552
7644
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   553
if (Gear^.Timer = 0) or (currsorter <> Gear) then
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   554
    begin
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   555
    if currsorter = Gear then
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   556
        currsorter:= nil;
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   557
    DeleteVisualGear(Gear);
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   558
    exit
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   559
    end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   560
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   561
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   562
procedure doStepTeamHealthSorter(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   563
var i: Longword;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   564
    b: boolean;
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   565
    t, h: LongInt;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   566
begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7808
diff changeset
   567
{$IFNDEF PAS2C}
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   568
Steps:= Steps; // avoid compiler hint
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7808
diff changeset
   569
{$ENDIF}
7644
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   570
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   571
for t:= 0 to Pred(TeamsCount) do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   572
    with thexchar[t] do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   573
        begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   574
        team:= TeamsArray[t];
7644
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   575
        dy:= team^.DrawHealthY;
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   576
        dw:= team^.TeamHealthBarHealth - team^.TeamHealth;
7644
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   577
        if team^.TeamHealth > 0 then
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   578
            begin
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   579
            SortFactor:= team^.Clan^.ClanHealth;
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   580
            SortFactor:= (SortFactor shl  3) + team^.Clan^.ClanIndex;
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   581
            SortFactor:= (SortFactor shl 30) + team^.TeamHealth;
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   582
            end
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   583
        else
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   584
            SortFactor:= 0;
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   585
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   586
        for h:= 0 to cMaxHHIndex do
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   587
            if (team^.Hedgehogs[h].Gear <> nil) then
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   588
                hdw[h]:= team^.Hedgehogs[h].HealthBarHealth - team^.Hedgehogs[h].Gear^.Health
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   589
            else
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9656
diff changeset
   590
                hdw[h]:= team^.Hedgehogs[h].HealthBarHealth;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   591
        end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   592
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   593
if TeamsCount > 1 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   594
    repeat
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   595
    b:= true;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   596
    for t:= 0 to TeamsCount - 2 do
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   597
        if (thexchar[t].SortFactor > thexchar[Succ(t)].SortFactor) then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   598
            begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   599
            thexchar[cMaxTeams]:= thexchar[t];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   600
            thexchar[t]:= thexchar[Succ(t)];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   601
            thexchar[Succ(t)]:= thexchar[cMaxTeams];
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   602
            b:= false
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   603
            end
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   604
    until b;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   605
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   606
t:= - 4;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   607
for i:= 0 to Pred(TeamsCount) do
7644
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   608
        with thexchar[i] do
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   609
          if team^.TeamHealth > 0 then
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   610
            begin
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9283
diff changeset
   611
            dec(t, team^.Clan^.HealthTex^.h + 2);
7644
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   612
            ny:= t;
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   613
            dy:= dy - ny
ed7fecd0f5fd hide health bars of dead teams
unc0rr
parents: 7375
diff changeset
   614
            end;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   615
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   616
Gear^.Timer:= cSorterWorkTime;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   617
Gear^.doStep:= @doStepTeamHealthSorterWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   618
currsorter:= Gear;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   619
//doStepTeamHealthSorterWork(Gear, Steps)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   620
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   621
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   622
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   623
procedure doStepSpeechBubbleWork(Gear: PVisualGear; Steps: Longword);
10193
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   624
var realgear: PGear;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   625
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   626
if Gear^.Timer > Steps then dec(Gear^.Timer, Steps) else Gear^.Timer:= 0;
10193
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   627
realgear:= nil;
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   628
if Gear^.Frame <> 0 then  // use a non-hedgehog gear - a lua trick that hopefully won't be overused
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   629
    begin
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   630
    realgear:= GearByUID(Gear^.Frame);
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   631
    if realgear <> nil then
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   632
        begin
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   633
        Gear^.X:= hwFloat2Float(realgear^.X) + (Gear^.Tex^.w div 2  - Gear^.Tag);
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   634
        Gear^.Y:= hwFloat2Float(realgear^.Y) - (realgear^.Radius + Gear^.Tex^.h);
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   635
        end
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   636
    end
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   637
else if Gear^.Hedgehog^.Gear <> nil then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   638
    begin
9763
be63ead5085e use a variable that allows negative values instead.
nemo
parents: 9762
diff changeset
   639
    Gear^.X:= hwFloat2Float(Gear^.Hedgehog^.Gear^.X) + (Gear^.Tex^.w div 2  - Gear^.Tag);
10193
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   640
    Gear^.Y:= hwFloat2Float(Gear^.Hedgehog^.Gear^.Y) - (cHHRadius + Gear^.Tex^.h);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   641
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   642
10193
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   643
if (Gear^.Timer = 0) or ((realgear = nil) and (Gear^.Frame <> 0))  then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   644
    begin
10193
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   645
    if (Gear^.Hedgehog <> nil) and (Gear^.Hedgehog^.SpeechGear = Gear) then
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4327
diff changeset
   646
        Gear^.Hedgehog^.SpeechGear:= nil;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   647
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   648
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   649
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   650
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   651
procedure doStepSpeechBubble(Gear: PVisualGear; Steps: Longword);
10193
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   652
var realgear: PGear;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   653
begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7808
diff changeset
   654
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7808
diff changeset
   655
{$IFNDEF PAS2C}
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   656
Steps:= Steps; // avoid compiler hint
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7808
diff changeset
   657
{$ENDIF}
10193
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   658
if Gear^.Frame <> 0 then
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   659
    realgear:= GearByUID(Gear^.FrameTicks)
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   660
else
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   661
    begin
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   662
    with Gear^.Hedgehog^ do
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   663
        if SpeechGear <> nil then
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   664
            SpeechGear^.Timer:= 0;
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   665
    realgear:= Gear^.Hedgehog^.Gear;
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   666
    Gear^.Hedgehog^.SpeechGear:= Gear;
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   667
    end;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   668
10193
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   669
if realgear <> nil then
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   670
    case Gear^.FrameTicks of
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   671
        1: Gear^.Tag:= SpritesData[sprSpeechTail].Width-37+realgear^.Radius;
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   672
        2: Gear^.Tag:= SpritesData[sprThoughtTail].Width-29+realgear^.Radius;
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   673
        3: Gear^.Tag:= SpritesData[sprShoutTail].Width-19+realgear^.Radius;
d7cd5b43588f By request. Allow lua to make random things "talk". I'm not sure if this is a good idea, buuuut.
nemo
parents: 10124
diff changeset
   674
        end;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   675
5186
a05c14510c8a fix some more warnings
koda
parents: 5179
diff changeset
   676
Gear^.Timer:= max(LongInt(Length(Gear^.Text)) * 150, 3000);
10124
aabd1b75d5a3 Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents: 10108
diff changeset
   677
Gear^.Tex:= RenderSpeechBubbleTex(ansistring(Gear^.Text), Gear^.FrameTicks, fnt16);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   678
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   679
Gear^.doStep:= @doStepSpeechBubbleWork;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   680
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
   681
Gear^.Y:= Gear^.Y - Gear^.Tex^.h
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   682
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   683
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   684
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   685
procedure doStepHealthTagWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   686
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   687
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
   688
    DeleteVisualGear(Gear)
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   689
else
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   690
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   691
    dec(Gear^.Timer, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   692
    Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
5581
cc43f382ed9a Check for dX too
nemo
parents: 5580
diff changeset
   693
    Gear^.X:= Gear^.X + Gear^.dX * Steps
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   694
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   695
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   696
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   697
procedure doStepHealthTagWorkUnderWater(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   698
begin
4161
1f19dcdabe19 Remove more int64 casts
unc0rr
parents: 4152
diff changeset
   699
if round(Gear^.Y) - 10 < cWaterLine then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   700
    DeleteVisualGear(Gear)
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   701
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
   702
    Gear^.Y:= Gear^.Y - 0.08 * Steps;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   703
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   704
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   705
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   706
procedure doStepHealthTag(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   707
var s: shortstring;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   708
begin
11822
4600dcb9db4f - Use IntToStr() in preference to Str()
unc0rr
parents: 11739
diff changeset
   709
s:= IntToStr(Gear^.State);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   710
3459
c552aa44108d hey sheepluva, how about just this? lets you have an anonymous one too.
nemo
parents: 3443
diff changeset
   711
if Gear^.Hedgehog <> nil then
10124
aabd1b75d5a3 Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents: 10108
diff changeset
   712
    Gear^.Tex:= RenderStringTex(ansistring(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
   713
else
10124
aabd1b75d5a3 Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents: 10108
diff changeset
   714
    Gear^.Tex:= RenderStringTex(ansistring(s), cWhiteColor, fnt16);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   715
5578
nemo
parents: 5576
diff changeset
   716
Gear^.doStep:= @doStepHealthTagWork;
5576
bf30c60786a5 Move HealthTag dY init into AddGear
nemo
parents: 5563
diff changeset
   717
5596
nemo
parents: 5581
diff changeset
   718
if (round(Gear^.Y) > cWaterLine) and (Gear^.Frame = 0)  then
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   719
    Gear^.doStep:= @doStepHealthTagWorkUnderWater;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   720
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
   721
Gear^.Y:= Gear^.Y - Gear^.Tex^.h;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   722
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   723
if Steps > 1 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   724
    Gear^.doStep(Gear, Steps-1);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   725
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   726
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   727
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   728
procedure doStepSmokeTrace(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   729
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   730
inc(Gear^.Timer, Steps );
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   731
if Gear^.Timer > 64 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   732
    begin
3995
360332f8785f SmokeTrace: animation got aborted before last animation frame was displayed
sheepluva
parents: 3994
diff changeset
   733
    if Gear^.State = 0 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   734
        begin
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   735
        DeleteVisualGear(Gear);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   736
        exit;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   737
        end;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   738
    dec(Gear^.State, Gear^.Timer div 65);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   739
    Gear^.Timer:= Gear^.Timer mod 65;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   740
    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
   741
Gear^.dX:= Gear^.dX + cWindSpeedf * Steps;
3587
eca835df4106 Optimise vgtSmokeTrace/vgtEvilTrace handler
nemo
parents: 3466
diff changeset
   742
Gear^.X:= Gear^.X + Gear^.dX;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   743
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   744
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   745
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   746
procedure doStepExplosionWork(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   747
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   748
inc(Gear^.Timer, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   749
if Gear^.Timer > 75 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   750
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   751
    inc(Gear^.State, Gear^.Timer div 76);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   752
    Gear^.Timer:= Gear^.Timer mod 76;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   753
    if Gear^.State > 5 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   754
        DeleteVisualGear(Gear);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   755
    end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   756
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   757
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   758
procedure doStepExplosion(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   759
var i: LongWord;
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   760
    gX,gY: LongInt;
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   761
    vg: PVisualGear;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   762
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
   763
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
   764
gY:= round(Gear^.Y);
8330
aaefa587e277 update branch with default
koda
parents: 8026 8204
diff changeset
   765
for i:= 0 to 31 do
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   766
    begin
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   767
    vg:= AddVisualGear(gX, gY, vgtFire);
8330
aaefa587e277 update branch with default
koda
parents: 8026 8204
diff changeset
   768
    if vg <> nil then
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
   769
        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
   770
        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
   771
        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
   772
        end
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   773
    end;
3590
66e1bc1ea3a9 explosions: cache rounded X,Y values
sheepluva
parents: 3587
diff changeset
   774
for i:= 0 to  8 do AddVisualGear(gX, gY, vgtExplPart);
66e1bc1ea3a9 explosions: cache rounded X,Y values
sheepluva
parents: 3587
diff changeset
   775
for i:= 0 to  8 do AddVisualGear(gX, gY, vgtExplPart2);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   776
Gear^.doStep:= @doStepExplosionWork;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   777
if Steps > 1 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   778
    Gear^.doStep(Gear, Steps-1);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   779
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   780
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   781
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   782
////////////////////////////////////////////////////////////////////////////////
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   783
procedure doStepBigExplosionWork(Gear: PVisualGear; Steps: Longword);
5855
74c621e12baa I do believe the only thing that was *ever* wrong with camera shake was someone decided to use getRandom on something that had always been a visual effect anyway. Pretty sure WorldDx is in fact safe to modify.
nemo
parents: 5840
diff changeset
   784
var maxMovement: LongInt;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   785
begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   786
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   787
inc(Gear^.Timer, Steps);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   788
if (Gear^.Timer and 5) = 0 then
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   789
    begin
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   790
    maxMovement := max(1, 13 - ((Gear^.Timer * 15) div 250));
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   791
    ShakeCamera(maxMovement);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   792
    end;
5804
98192121dc69 Since shakes are still proving unsafe until camera is reworked, try a mild flash instead
nemo
parents: 5803
diff changeset
   793
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   794
if Gear^.Timer > 250 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   795
    DeleteVisualGear(Gear);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   796
end;
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   797
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   798
procedure doStepBigExplosion(Gear: PVisualGear; Steps: Longword);
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   799
var i: LongWord;
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   800
    gX,gY: LongInt;
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   801
    vg: PVisualGear;
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   802
begin
5855
74c621e12baa I do believe the only thing that was *ever* wrong with camera shake was someone decided to use getRandom on something that had always been a visual effect anyway. Pretty sure WorldDx is in fact safe to modify.
nemo
parents: 5840
diff changeset
   803
//ScreenFade:= sfFromWhite;
74c621e12baa I do believe the only thing that was *ever* wrong with camera shake was someone decided to use getRandom on something that had always been a visual effect anyway. Pretty sure WorldDx is in fact safe to modify.
nemo
parents: 5840
diff changeset
   804
//ScreenFadeValue:= round(60 * zoom * zoom);
74c621e12baa I do believe the only thing that was *ever* wrong with camera shake was someone decided to use getRandom on something that had always been a visual effect anyway. Pretty sure WorldDx is in fact safe to modify.
nemo
parents: 5840
diff changeset
   805
//ScreenFadeSpeed:= 5;
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
   806
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
   807
gY:= round(Gear^.Y);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   808
AddVisualGear(gX, gY, vgtSmokeRing);
8330
aaefa587e277 update branch with default
koda
parents: 8026 8204
diff changeset
   809
for i:= 0 to 46 do
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   810
    begin
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   811
    vg:= AddVisualGear(gX, gY, vgtFire);
8330
aaefa587e277 update branch with default
koda
parents: 8026 8204
diff changeset
   812
    if vg <> nil then
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
   813
        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
   814
        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
   815
        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
   816
        end
4473
b6487d2c15ad try this mikade
nemo
parents: 4452
diff changeset
   817
    end;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   818
for i:= 0 to 15 do
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   819
    AddVisualGear(gX, gY, vgtExplPart);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   820
for i:= 0 to 15 do
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   821
    AddVisualGear(gX, gY, vgtExplPart2);
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   822
Gear^.doStep:= @doStepBigExplosionWork;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   823
if Steps > 1 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   824
    Gear^.doStep(Gear, Steps-1);
8446
c18ba8726f5a Fix sources so pas2c written in haskell could render them again
unc0rr
parents: 8330
diff changeset
   825
c18ba8726f5a Fix sources so pas2c written in haskell could render them again
unc0rr
parents: 8330
diff changeset
   826
{$IFNDEF PAS2C}
8204
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 7808
diff changeset
   827
with mobileRecord do
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 7808
diff changeset
   828
    if (performRumble <> nil) and (not fastUntilLag) then
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 7808
diff changeset
   829
        performRumble(kSystemSoundID_Vibrate);
8446
c18ba8726f5a Fix sources so pas2c written in haskell could render them again
unc0rr
parents: 8330
diff changeset
   830
{$ENDIF}
3441
f31225f99a06 some file that tried to escape...
sheepluva
parents:
diff changeset
   831
end;
3689
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   832
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   833
procedure doStepChunk(Gear: PVisualGear; Steps: Longword);
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   834
begin
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   835
Gear^.X:= Gear^.X + Gear^.dX * Steps;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   836
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   837
Gear^.Y:= Gear^.Y + Gear^.dY * Steps;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   838
Gear^.dY:= Gear^.dY + cGravityf * Steps;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   839
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   840
Gear^.Angle:= round(Gear^.Angle + Steps) mod cMaxAngle;
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   841
5235
e30b06ffea3a Skip droplets if plain splash is enabled, add a sanity check just in case.
nemo
parents: 5186
diff changeset
   842
if (round(Gear^.Y) > cWaterLine) and ((cReducedQuality and rqPlainSplash) = 0) then
3689
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   843
    begin
3699
e5e2cbc90891 Let's try this instead.
nemo
parents: 3689
diff changeset
   844
    AddVisualGear(round(Gear^.X), round(Gear^.Y), vgtDroplet);
3689
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   845
    DeleteVisualGear(Gear);
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   846
    end
e2be39ee19f0 Engine:
smaxx
parents: 3641
diff changeset
   847
end;
4327
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   848
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   849
////////////////////////////////////////////////////////////////////////////////
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   850
procedure doStepBulletHit(Gear: PVisualGear; Steps: Longword);
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   851
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   852
if Gear^.FrameTicks <= Steps then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   853
    DeleteVisualGear(Gear)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   854
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   855
    dec(Gear^.FrameTicks, Steps);
4327
224efdd648e1 Small animation on bullet impact
Palewolf
parents: 4279
diff changeset
   856
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
   857
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
   858
////////////////////////////////////////////////////////////////////////////////
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
   859
procedure doStepCircle(Gear: PVisualGear; Steps: Longword);
4452
258945553b18 make Tint(longword) use RGBA
nemo
parents: 4421
diff changeset
   860
var tmp: LongInt;
4421
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   861
    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
   862
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
   863
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
   864
    if Frame <> 0 then
4421
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   865
        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
   866
            begin
4421
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   867
            inc(FrameTicks);
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   868
            if (FrameTicks mod Frame) = 0 then
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   869
                begin
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   870
                tmp:= Gear^.Tint and $FF;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   871
                if tdY >= 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   872
                    inc(tmp)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   873
                else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   874
                    dec(tmp);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   875
                if tmp < round(dX) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   876
                    tdY:= 1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   877
                if tmp > round(dY) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   878
                    tdY:= -1;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   879
                if tmp > 255 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   880
                    tmp := 255;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   881
                if tmp < 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6553
diff changeset
   882
                    tmp := 0;
5179
8d64dcb566ea Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents: 5151
diff changeset
   883
                Gear^.Tint:= (Gear^.Tint and $FFFFFF00) or Longword(tmp)
4421
58c6918acde4 corrected steps
nemo
parents: 4420
diff changeset
   884
                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
   885
            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
   886
end;
5357
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   887
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   888
////////////////////////////////////////////////////////////////////////////////
10859
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   889
var
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   890
    currwindbar: PVisualGear = nil;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   891
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   892
procedure doStepSmoothWindBarWork(Gear: PVisualGear; Steps: Longword);
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   893
begin
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   894
    if currwindbar = Gear then
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   895
    begin
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   896
    inc(Gear^.Timer, Steps);
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   897
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   898
    while Gear^.Timer >= 10 do
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   899
        begin
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   900
        dec(Gear^.Timer, 10);
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   901
        if WindBarWidth < Gear^.Tag then
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   902
            inc(WindBarWidth)
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   903
        else if WindBarWidth > Gear^.Tag then
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   904
            dec(WindBarWidth);
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   905
        end;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   906
    if cWindspeedf > Gear^.dAngle then
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   907
        begin
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   908
        cWindspeedf := cWindspeedf - Gear^.Angle*Steps;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   909
        if cWindspeedf < Gear^.dAngle then cWindspeedf:= Gear^.dAngle;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   910
        end
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   911
    else if cWindspeedf < Gear^.dAngle then
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   912
        begin
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   913
        cWindspeedf := cWindspeedf + Gear^.Angle*Steps;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   914
        if cWindspeedf > Gear^.dAngle then cWindspeedf:= Gear^.dAngle;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   915
        end;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   916
    end;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   917
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   918
    if ((WindBarWidth = Gear^.Tag) and (cWindspeedf = Gear^.dAngle)) or (currwindbar <> Gear) then
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   919
    begin
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   920
        if currwindbar = Gear then currwindbar:= nil;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   921
        DeleteVisualGear(Gear)
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   922
    end
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   923
end;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   924
5357
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   925
procedure doStepSmoothWindBar(Gear: PVisualGear; Steps: Longword);
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   926
begin
10859
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   927
    currwindbar:= Gear;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   928
    Gear^.doStep:= @doStepSmoothWindBarWork;
d7e3abe3d5c2 Only allow one instance of vgtSmoothWindbar also
unc0rr
parents: 10858
diff changeset
   929
    doStepSmoothWindBarWork(Gear, Steps)
5357
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5236
diff changeset
   930
end;
5562
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   931
////////////////////////////////////////////////////////////////////////////////
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   932
procedure doStepStraightShot(Gear: PVisualGear; Steps: Longword);
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   933
begin
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   934
Gear^.X:= Gear^.X + Gear^.dX * Steps;
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   935
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
   936
10526
b43d175d1577 Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents: 10355
diff changeset
   937
Gear^.dY:= Gear^.dY + Gear^.tdY * Steps;
b43d175d1577 Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents: 10355
diff changeset
   938
Gear^.dX:= Gear^.dX + Gear^.tdX * Steps;
b43d175d1577 Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents: 10355
diff changeset
   939
5562
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   940
if Gear^.FrameTicks <= Steps then
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   941
    DeleteVisualGear(Gear)
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   942
else
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   943
    begin
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   944
    dec(Gear^.FrameTicks, Steps);
8330
aaefa587e277 update branch with default
koda
parents: 8026 8204
diff changeset
   945
    if (Gear^.FrameTicks < 501) and (Gear^.FrameTicks mod 5 = 0) then
5562
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   946
        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
   947
    end
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   948
end;
8056d82b4d23 Seduction animation. New visual gear type.
nemo
parents: 5491
diff changeset
   949
10251
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   950
////////////////////////////////////////////////////////////////////////////////
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   951
procedure doStepNoPlaceWarn(Gear: PVisualGear; Steps: Longword);
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   952
begin
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   953
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   954
if Gear^.FrameTicks <= Steps then
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   955
    DeleteVisualGear(Gear)
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   956
else
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   957
    begin
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   958
    // age
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   959
    dec(Gear^.FrameTicks, Steps);
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   960
    // toggle between orange and red every few ticks
10298
7d5d93f9a515 make using the teleporter a bit less challenging
sheepluva
parents: 10251
diff changeset
   961
    if (Gear^.FrameTicks div 256) mod 2 = 0 then
10251
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   962
        Gear^.Tint:= $FF400000
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   963
    else
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   964
        Gear^.Tint:= $FF000000;
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   965
    // fade out alpha
10299
45e3e901b3b9 grmlgrmlpas2cgrmlgrml
sheepluva
parents: 10298
diff changeset
   966
    Gear^.Tint:= (Gear^.Tint and (not $FF)) or (255 * Gear^.FrameTicks div 3000);
10251
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   967
    end
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
   968
end;
9283
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   969
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   970
const handlers: array[TVisualGearType] of TVGearStepProcedure =
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   971
        (
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   972
            @doStepFlake,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   973
            @doStepCloud,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   974
            @doStepExpl,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   975
            @doStepExpl,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   976
            @doStepFire,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   977
            @doStepSmallDamage,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   978
            @doStepTeamHealthSorter,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   979
            @doStepSpeechBubble,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   980
            @doStepBubble,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   981
            @doStepSteam,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   982
            @doStepAmmo,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   983
            @doStepSmoke,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   984
            @doStepSmoke,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   985
            @doStepShell,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   986
            @doStepDust,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   987
            @doStepSplash,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   988
            @doStepDroplet,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   989
            @doStepSmokeRing,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   990
            @doStepBeeTrace,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   991
            @doStepEgg,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   992
            @doStepFeather,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   993
            @doStepHealthTag,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   994
            @doStepSmokeTrace,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   995
            @doStepSmokeTrace,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   996
            @doStepExplosion,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   997
            @doStepBigExplosion,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   998
            @doStepChunk,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
   999
            @doStepNote,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1000
            @doStepLineTrail,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1001
            @doStepBulletHit,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1002
            @doStepCircle,
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1003
            @doStepSmoothWindBar,
10251
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
  1004
            @doStepStraightShot,
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10193
diff changeset
  1005
            @doStepNoPlaceWarn
9283
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1006
        );
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1007
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1008
procedure initModule;
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1009
begin
9960
fac73b8a52d3 Fix doStepHandlers confusion
unc0rr
parents: 9950
diff changeset
  1010
    doStepVGHandlers:= handlers
9283
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1011
end;
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1012
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9080
diff changeset
  1013
end.