hedgewars/uVisualGearsList.pas
author koda
Fri, 03 Jan 2014 19:28:14 +0100
changeset 9937 948f48b29360
parent 9769 5814e0c47c99
child 9960 fac73b8a52d3
child 9998 736015b847e3
permissions -rw-r--r--
fix git hash reporting
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9287
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
     1
(*
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2004-2013 Andrey Korotaev <unC0Rr@gmail.com>
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
     4
 *
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
     8
 *
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    13
 *
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    17
 *)
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    18
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    19
{$INCLUDE "options.inc"}
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    20
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    21
unit uVisualGearsList;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    22
interface
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    23
uses uTypes;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    24
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    25
function  AddVisualGear(X, Y: LongInt; Kind: TVisualGearType): PVisualGear; inline;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    26
function  AddVisualGear(X, Y: LongInt; Kind: TVisualGearType; State: LongWord): PVisualGear; inline;
9769
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    27
function  AddVisualGear(X, Y: LongInt; Kind: TVisualGearType; State: LongWord; Critical: Boolean): PVisualGear; inline;
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    28
function  AddVisualGear(X, Y: LongInt; Kind: TVisualGearType; State: LongWord; Critical: Boolean; Layer: LongInt): PVisualGear;
9287
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    29
procedure DeleteVisualGear(Gear: PVisualGear);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    30
function  VisualGearByUID(uid : Longword) : PVisualGear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    31
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    32
const 
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    33
    cExplFrameTicks = 110;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    34
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    35
var VGCounter: LongWord;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    36
    VisualGearLayers: array[0..6] of PVisualGear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    37
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    38
implementation
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    39
uses uFloat, uVariables, uConsts, uTextures, uVisualGearsHandlers;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    40
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    41
function AddVisualGear(X, Y: LongInt; Kind: TVisualGearType): PVisualGear; inline;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    42
begin
9769
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    43
    AddVisualGear:= AddVisualGear(X, Y, Kind, 0, false, -1);
9287
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    44
end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    45
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    46
function  AddVisualGear(X, Y: LongInt; Kind: TVisualGearType; State: LongWord): PVisualGear; inline;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    47
begin
9769
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    48
    AddVisualGear:= AddVisualGear(X, Y, Kind, State, false, -1);
9287
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    49
end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    50
9769
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    51
function  AddVisualGear(X, Y: LongInt; Kind: TVisualGearType; State: LongWord; Critical: Boolean): PVisualGear; inline;
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    52
begin
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    53
    AddVisualGear:= AddVisualGear(X, Y, Kind, State, Critical, -1);
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    54
end;
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    55
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
    56
function  AddVisualGear(X, Y: LongInt; Kind: TVisualGearType; State: LongWord; Critical: Boolean; Layer: LongInt): PVisualGear;
9287
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    57
var gear: PVisualGear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    58
    t: Longword;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    59
    sp: real;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    60
begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    61
AddVisualGear:= nil;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    62
if ((GameType = gmtSave) or (fastUntilLag and (GameType = gmtNet)) or fastScrolling) and // we are scrolling now
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    63
   ((Kind <> vgtCloud) and (not Critical)) then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    64
       exit;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    65
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    66
if ((cReducedQuality and rqAntiBoom) <> 0) and
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    67
   (not Critical) and
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    68
   (not (Kind in
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    69
   [vgtTeamHealthSorter,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    70
    vgtSmallDamageTag,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    71
    vgtSpeechBubble,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    72
    vgtHealthTag,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    73
    vgtExplosion,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    74
    vgtSmokeTrace,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    75
    vgtEvilTrace,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    76
    vgtNote,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    77
    vgtSmoothWindBar])) then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    78
    
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    79
        exit;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    80
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    81
inc(VGCounter);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    82
New(gear);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    83
FillChar(gear^, sizeof(TVisualGear), 0);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    84
gear^.X:= real(X);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    85
gear^.Y:= real(Y);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    86
gear^.Kind := Kind;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    87
gear^.doStep:= doStepHandlers[Kind];
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    88
gear^.State:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    89
gear^.Tint:= $FFFFFFFF;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    90
gear^.uid:= VGCounter;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    91
gear^.Layer:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    92
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    93
with gear^ do
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    94
    case Kind of
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    95
    vgtFlake:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    96
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    97
                Timer:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    98
                tdX:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
    99
                tdY:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   100
                Scale:= 1.0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   101
                if SuddenDeathDmg then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   102
                    begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   103
                    FrameTicks:= random(vobSDFrameTicks);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   104
                    Frame:= random(vobSDFramesCount);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   105
                    end
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   106
                else
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   107
                    begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   108
                    FrameTicks:= random(vobFrameTicks);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   109
                    Frame:= random(vobFramesCount);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   110
                    end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   111
                Angle:= random(360);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   112
                dx:= 0.0000038654705 * random(10000);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   113
                dy:= 0.000003506096 * random(7000);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   114
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   115
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   116
                if SuddenDeathDmg then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   117
                    dAngle:= (random(2) * 2 - 1) * (vobSDVelocity + random(vobSDVelocity)) / 1000
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   118
                else
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   119
                    dAngle:= (random(2) * 2 - 1) * (vobVelocity + random(vobVelocity)) / 1000
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   120
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   121
    vgtCloud:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   122
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   123
                Frame:= random(4);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   124
                dx:= 0.5 + 0.1 * random(5); // how much the cloud will be affected by wind
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   125
                timer:= random(4096);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   126
                Scale:= 1.0
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   127
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   128
    vgtExplPart,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   129
    vgtExplPart2:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   130
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   131
                t:= random(1024);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   132
                sp:= 0.001 * (random(95) + 70);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   133
                dx:= hwFloat2Float(AngleSin(t)) * sp;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   134
                dy:= hwFloat2Float(AngleCos(t)) * sp;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   135
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   136
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   137
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   138
                    dy := -dy;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   139
                Frame:= 7 - random(3);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   140
                FrameTicks:= cExplFrameTicks
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   141
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   142
        vgtFire:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   143
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   144
                t:= random(1024);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   145
                sp:= 0.001 * (random(85) + 95);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   146
                dx:= hwFloat2Float(AngleSin(t)) * sp;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   147
                dy:= hwFloat2Float(AngleCos(t)) * sp;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   148
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   149
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   150
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   151
                    dy := -dy;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   152
                FrameTicks:= 650 + random(250);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   153
                Frame:= random(8)
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   154
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   155
         vgtEgg:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   156
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   157
                t:= random(1024);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   158
                sp:= 0.001 * (random(85) + 95);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   159
                dx:= hwFloat2Float(AngleSin(t)) * sp;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   160
                dy:= hwFloat2Float(AngleCos(t)) * sp;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   161
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   162
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   163
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   164
                    dy := -dy;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   165
                FrameTicks:= 650 + random(250);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   166
                Frame:= 1
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   167
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   168
        vgtShell: FrameTicks:= 500;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   169
    vgtSmallDamageTag:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   170
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   171
                gear^.FrameTicks:= 1100
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   172
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   173
    vgtBubble:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   174
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   175
                dx:= 0.0000038654705 * random(10000);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   176
                dy:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   177
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   178
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   179
                FrameTicks:= 250 + random(1751);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   180
                Frame:= random(5)
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   181
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   182
    vgtSteam:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   183
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   184
                dx:= 0.0000038654705 * random(10000);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   185
                dy:= 0.001 * (random(85) + 95);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   186
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   187
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   188
                Frame:= 7 - random(3);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   189
                FrameTicks:= cExplFrameTicks * 2;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   190
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   191
    vgtAmmo:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   192
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   193
                alpha:= 1.0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   194
                scale:= 1.0
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   195
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   196
  vgtSmokeWhite,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   197
  vgtSmoke:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   198
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   199
                Scale:= 1.0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   200
                dx:= 0.0002 * (random(45) + 10);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   201
                dy:= 0.0002 * (random(45) + 10);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   202
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   203
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   204
                Frame:= 7 - random(2);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   205
                FrameTicks:= cExplFrameTicks * 2;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   206
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   207
  vgtDust:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   208
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   209
                dx:= 0.005 * (random(15) + 10);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   210
                dy:= 0.001 * (random(40) + 20);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   211
                if random(2) = 0 then dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   212
                if random(2) = 0 then Tag:= 1
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   213
                else Tag:= -1;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   214
                Frame:= 7 - random(2);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   215
                FrameTicks:= random(20) + 15;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   216
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   217
  vgtSplash:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   218
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   219
                dx:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   220
                dy:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   221
                FrameTicks:= 740;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   222
                Frame:= 19;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   223
                Scale:= 0.75;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   224
                Timer:= 1;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   225
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   226
    vgtDroplet:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   227
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   228
                dx:= 0.001 * (random(180) - 90);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   229
                dy:= -0.001 * (random(160) + 40);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   230
                FrameTicks:= 250 + random(1751);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   231
                Frame:= random(3)
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   232
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   233
   vgtBeeTrace:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   234
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   235
                FrameTicks:= 1000;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   236
                Frame:= random(16);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   237
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   238
    vgtSmokeRing:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   239
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   240
                dx:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   241
                dy:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   242
                FrameTicks:= 600;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   243
                Timer:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   244
                Frame:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   245
                scale:= 0.6;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   246
                alpha:= 1;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   247
                angle:= random(360);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   248
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   249
     vgtFeather:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   250
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   251
                t:= random(1024);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   252
                sp:= 0.001 * (random(85) + 95);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   253
                dx:= hwFloat2Float(AngleSin(t)) * sp;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   254
                dy:= hwFloat2Float(AngleCos(t)) * sp;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   255
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   256
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   257
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   258
                    dy := -dy;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   259
                FrameTicks:= 650 + random(250);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   260
                Frame:= 1
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   261
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   262
  vgtHealthTag:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   263
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   264
                Frame:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   265
                Timer:= 1500;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   266
                dY:= -0.08;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   267
                dX:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   268
                //gear^.Z:= 2002;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   269
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   270
  vgtSmokeTrace,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   271
  vgtEvilTrace:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   272
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   273
                gear^.X:= gear^.X - 16;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   274
                gear^.Y:= gear^.Y - 16;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   275
                gear^.State:= 8;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   276
                //gear^.Z:= cSmokeZ
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   277
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   278
vgtBigExplosion:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   279
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   280
                gear^.Angle:= random(360);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   281
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   282
      vgtChunk:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   283
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   284
                gear^.Frame:= random(4);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   285
                t:= random(1024);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   286
                sp:= 0.001 * (random(85) + 47);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   287
                dx:= hwFloat2Float(AngleSin(t)) * sp;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   288
                dy:= hwFloat2Float(AngleCos(t)) * sp * -2;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   289
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   290
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   291
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   292
      vgtNote: 
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   293
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   294
                dx:= 0.005 * (random(15) + 10);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   295
                dy:= -0.001 * (random(40) + 20);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   296
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   297
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   298
                Frame:= random(4);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   299
                FrameTicks:= random(2000) + 1500;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   300
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   301
  vgtBulletHit:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   302
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   303
                dx:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   304
                dy:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   305
                FrameTicks:= 350;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   306
                Frame:= 7;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   307
                Angle:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   308
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   309
vgtSmoothWindBar: 
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   310
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   311
                Angle:= hwFloat2Float(cMaxWindSpeed)*2 / 1440; // seems rate below is supposed to change wind bar at 1px per 10ms. Max time, 1440ms. This tries to match the rate of change
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   312
                Tag:= hwRound(cWindSpeed * 72 / cMaxWindSpeed);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   313
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   314
 vgtStraightShot:
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   315
                begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   316
                Angle:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   317
                Scale:= 1.0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   318
                dx:= 0.001 * random(45);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   319
                dy:= 0.001 * (random(20) + 25);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   320
                State:= ord(sprHealth);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   321
                if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   322
                    dx := -dx;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   323
                Frame:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   324
                FrameTicks:= random(750) + 1250;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   325
                State:= ord(sprSnowDust);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   326
                end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   327
        end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   328
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   329
if State <> 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   330
    gear^.State:= State;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   331
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   332
case Gear^.Kind of
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   333
    vgtFlake: if cFlattenFlakes then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   334
        gear^.Layer:= 0
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   335
              else if random(3) = 0 then 
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   336
                  begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   337
                  gear^.Scale:= 0.5;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   338
                  gear^.Layer:= 0   // 33% - far back
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   339
                  end
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   340
              else if random(3) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   341
                  begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   342
                  gear^.Scale:= 0.8;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   343
                  gear^.Layer:= 4   // 22% - mid-distance
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   344
                  end
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   345
              else if random(3) <> 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   346
                  gear^.Layer:= 5  // 30% - just behind land
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   347
              else if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   348
                  gear^.Layer:= 6   // 7% - just in front of land
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   349
              else
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   350
                  begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   351
                  gear^.Scale:= 1.5;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   352
                  gear^.Layer:= 2;  // 7% - close up
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   353
                  end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   354
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   355
    vgtCloud: if cFlattenClouds then gear^.Layer:= 5
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   356
              else if random(3) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   357
                  begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   358
                  gear^.Scale:= 0.25;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   359
                  gear^.Layer:= 0
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   360
                  end
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   361
              else if random(2) = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   362
                  gear^.Layer:= 5
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   363
              else
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   364
                  begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   365
                  gear^.Scale:= 0.4;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   366
                  gear^.Layer:= 4
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   367
                  end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   368
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   369
    // 0: this layer is very distant in the background when in stereo
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   370
    vgtTeamHealthSorter,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   371
    vgtSmoothWindBar: gear^.Layer:= 0;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   372
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   373
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   374
    // 1: this layer is on the land level (which is close but behind the screen plane) when stereo
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   375
    vgtSmokeTrace,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   376
    vgtEvilTrace,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   377
    vgtLineTrail,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   378
    vgtSmoke,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   379
    vgtSmokeWhite,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   380
    vgtDust,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   381
    vgtFire,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   382
    vgtSplash,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   383
    vgtDroplet,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   384
    vgtBubble: gear^.Layer:= 1;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   385
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   386
    // 3: this layer is on the screen plane (depth = 0) when stereo
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   387
    vgtSpeechBubble,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   388
    vgtSmallDamageTag,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   389
    vgtHealthTag,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   390
    vgtStraightShot,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   391
    vgtChunk: gear^.Layer:= 3;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   392
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   393
    // 2: this layer is outside the screen when stereo
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   394
    vgtExplosion,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   395
    vgtBigExplosion,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   396
    vgtExplPart,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   397
    vgtExplPart2,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   398
    vgtSteam,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   399
    vgtAmmo,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   400
    vgtShell,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   401
    vgtFeather,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   402
    vgtEgg,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   403
    vgtBeeTrace,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   404
    vgtSmokeRing,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   405
    vgtNote,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   406
    vgtBulletHit,
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   407
    vgtCircle: gear^.Layer:= 2
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   408
end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   409
9769
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
   410
if Layer <> -1 then gear^.Layer:= Layer;
5814e0c47c99 Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.
nemo
parents: 9287
diff changeset
   411
9287
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   412
if VisualGearLayers[gear^.Layer] <> nil then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   413
    begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   414
    VisualGearLayers[gear^.Layer]^.PrevGear:= gear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   415
    gear^.NextGear:= VisualGearLayers[gear^.Layer]
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   416
    end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   417
VisualGearLayers[gear^.Layer]:= gear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   418
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   419
AddVisualGear:= gear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   420
end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   421
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   422
procedure DeleteVisualGear(Gear: PVisualGear);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   423
begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   424
    FreeTexture(Gear^.Tex);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   425
    Gear^.Tex:= nil;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   426
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   427
    if Gear^.NextGear <> nil then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   428
        Gear^.NextGear^.PrevGear:= Gear^.PrevGear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   429
    if Gear^.PrevGear <> nil then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   430
        Gear^.PrevGear^.NextGear:= Gear^.NextGear
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   431
    else
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   432
        VisualGearLayers[Gear^.Layer]:= Gear^.NextGear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   433
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   434
    if lastVisualGearByUID = Gear then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   435
        lastVisualGearByUID:= nil;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   436
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   437
    Dispose(Gear);
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   438
end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   439
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   440
function  VisualGearByUID(uid : Longword) : PVisualGear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   441
var vg: PVisualGear;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   442
    i: LongWord;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   443
begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   444
VisualGearByUID:= nil;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   445
if uid = 0 then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   446
    exit;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   447
if (lastVisualGearByUID <> nil) and (lastVisualGearByUID^.uid = uid) then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   448
    begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   449
    VisualGearByUID:= lastVisualGearByUID;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   450
    exit
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   451
    end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   452
// search in an order that is more likely to return layers they actually use.  Could perhaps track statistically AddVisualGear in uScript, since that is most likely the ones they want
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   453
for i:= 2 to 5 do
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   454
    begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   455
    vg:= VisualGearLayers[i mod 4];
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   456
    while vg <> nil do
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   457
        begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   458
        if vg^.uid = uid then
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   459
            begin
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   460
            lastVisualGearByUID:= vg;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   461
            VisualGearByUID:= vg;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   462
            exit
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   463
            end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   464
        vg:= vg^.NextGear
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   465
        end
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   466
    end
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   467
end;
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   468
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   469
bb9ad6a5f625 oops, forgot this file
unc0rr
parents:
diff changeset
   470
end.