hedgewars/uVariables.pas
author Wuzzy <Wuzzy2@mail.ru>
Fri, 25 Jan 2019 06:46:13 +0100
changeset 14670 56831f466d1d
parent 14598 62dea281e4d5
child 14677 93429d8f6b3f
permissions -rw-r--r--
Add settings.ini setting and hwengine param to disable holiday silliness (hat changes, etc.) settings.ini: In section [misc], add "holidaySilliness=false" hwengine: Add --no-holiday-silliness to command-line
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
     1
(*
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 11021
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
     4
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
     8
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
    12
 * GNU General Public License for more details.
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
    13
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
    14
 * You should have received a copy of the GNU General Public License
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
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
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
    17
 *)
088d40d8aba2 Happy 2011 :)
koda
parents: 4956
diff changeset
    18
6426
2d44f6561e72 Help parser a bit
unc0rr
parents: 6415
diff changeset
    19
{$INCLUDE "options.inc"}
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    20
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    21
unit uVariables;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    22
interface
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    23
11096
1742f5b020f3 - Fix for "Exception: Could not load OpenGL from /System/Library/Frameworks/OpenGL.framework/Libraries/libGL.dylib" at start of app
antonc27 <antonc27@mail.ru>
parents: 11021
diff changeset
    24
uses SDLh, uTypes, uFloat, GLunit, uConsts, Math, uUtils{$IFDEF GL2}, uMatrix{$ENDIF};
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    25
11704
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
    26
procedure initScreenSpaceVars();
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
    27
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    28
var
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    29
/////// init flags ///////
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    30
    cMinScreenWidth    : LongInt;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    31
    cMinScreenHeight   : LongInt;
8354
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8309
diff changeset
    32
    cFullscreenWidth   : LongInt;
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8309
diff changeset
    33
    cFullscreenHeight  : LongInt;
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8309
diff changeset
    34
    cWindowedWidth     : LongInt;
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8309
diff changeset
    35
    cWindowedHeight    : LongInt;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    36
    cScreenWidth       : LongInt;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    37
    cScreenHeight      : LongInt;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    38
    cNewScreenWidth    : LongInt;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    39
    cNewScreenHeight   : LongInt;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    40
    cScreenResizeDelay : LongWord;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    41
    ipcPort            : Word;
10526
b43d175d1577 Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents: 10472
diff changeset
    42
    AprilOne           : boolean;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    43
    cFullScreen        : boolean;
14598
62dea281e4d5 Refactor hwengine: Rename cLocale to cLanguage
Wuzzy <Wuzzy2@mail.ru>
parents: 14566
diff changeset
    44
    cLanguageFName     : shortstring;
62dea281e4d5 Refactor hwengine: Rename cLocale to cLanguage
Wuzzy <Wuzzy2@mail.ru>
parents: 14566
diff changeset
    45
    cLanguage          : shortstring;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    46
    cTimerInterval     : LongInt;
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10124
diff changeset
    47
    PathPrefix         : ansistring;
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10124
diff changeset
    48
    UserPathPrefix     : ansistring;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    49
    cShowFPS           : boolean;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    50
    cFlattenFlakes     : boolean;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    51
    cFlattenClouds     : boolean;
9768
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
    52
    cIce               : boolean;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
    53
    cSnow              : boolean;
13077
c213645ff848 Having chat mode as game state was a mistake
unc0rr
parents: 13039
diff changeset
    54
    isInChatMode       : boolean;
9768
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
    55
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    56
    cAltDamage         : boolean;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    57
    cReducedQuality    : LongWord;
14670
56831f466d1d Add settings.ini setting and hwengine param to disable holiday silliness (hat changes, etc.)
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
    58
    cHolidaySilliness  : boolean;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    59
    UserNick           : shortstring;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    60
    recordFileName     : shortstring;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    61
    cReadyDelay        : Longword;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    62
    cStereoMode        : TStereoMode;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    63
    cOnlyStats         : boolean;
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7180
diff changeset
    64
{$IFDEF USE_VIDEO_RECORDING}
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    65
    RecPrefix          : shortstring;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    66
    cAVFormat          : shortstring;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    67
    cVideoCodec        : shortstring;
7376
48b79b3ca592 rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents: 7367
diff changeset
    68
    cVideoFramerateNum : LongInt;
48b79b3ca592 rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents: 7367
diff changeset
    69
    cVideoFramerateDen : LongInt;
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7180
diff changeset
    70
    cVideoQuality      : LongInt;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
    71
    cAudioCodec        : shortstring;
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7180
diff changeset
    72
{$ENDIF}
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    73
//////////////////////////
12711
20dbb3a03e61 extend land digest to all surfaces that could possibly be loaded into Land[] - i.e. ones that impact sync
nemo
parents: 12708
diff changeset
    74
    cMapName           : shortstring;
20dbb3a03e61 extend land digest to all surfaces that could possibly be loaded into Land[] - i.e. ones that impact sync
nemo
parents: 12708
diff changeset
    75
    syncedPixelDigest  : LongInt;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    76
    isCursorVisible : boolean;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    77
    isInLag         : boolean;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    78
    isPaused        : boolean;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    79
    isInMultiShoot  : boolean;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    80
    isSpeed         : boolean;
9670
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9656
diff changeset
    81
    isAFK           : boolean;
13459
08a3851aaf67 Add dedicated key to display mission panel: M
Wuzzy <Wuzzy2@mail.ru>
parents: 13457
diff changeset
    82
    isShowMission   : boolean;
13461
854caa3c9212 Lua API: Add parameter forceDisplay to ShowMission to prevent manual hiding
Wuzzy <Wuzzy2@mail.ru>
parents: 13459
diff changeset
    83
    isForceMission  : boolean;
7414
a9f18c66ce34 unc0rr, let me know what you think? Values were chosen semi-arbitrarily. But I was playing through a lot of large demos.
nemo
parents: 7403
diff changeset
    84
    SpeedStart      : LongWord;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    85
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    86
    fastUntilLag    : boolean;
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7103
diff changeset
    87
    fastScrolling   : boolean;
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
    88
    autoCameraOn    : boolean;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    89
7389
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7345
diff changeset
    90
    CheckSum        : LongWord;
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7197
diff changeset
    91
    CampaignVariable: shortstring;
14463
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14416
diff changeset
    92
    MissionVariable : shortstring;
7027
f264ad9d8965 the scope cleanup continues...
koda
parents: 7025
diff changeset
    93
    GameTicks       : LongWord;
14041
44f20c9e6861 Add Ouch taunt for particulary damaging hits (fall, bullet, shove, hammer)
Wuzzy <Wuzzy2@mail.ru>
parents: 14018
diff changeset
    94
    OuchTauntTimer  : LongWord; // Timer which blocks sndOuch from being played too often and fast
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    95
    GameState       : TGameState;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    96
    GameType        : TGameType;
4522
0f590eefd531 Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents: 4482
diff changeset
    97
    InputMask       : LongWord;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
    98
    GameFlags       : Longword;
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9367
diff changeset
    99
    WorldEdge       : TWorldEdge;
9557
a5005b7ca305 differentiate borders a bit
nemo
parents: 9473
diff changeset
   100
    LeftImpactTimer : LongWord;
a5005b7ca305 differentiate borders a bit
nemo
parents: 9473
diff changeset
   101
    RightImpactTimer: LongWord;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   102
    TurnTimeLeft    : Longword;
9672
8663d299ba62 this should prevent sliding when game clock isn't running. sorry unc0rr, not going to bother encapsulating. maybe later. short on time right now/lazy
nemo
parents: 9670
diff changeset
   103
    TurnClockActive : boolean;
5016
9347d82a26cc added game mode Tag Team, mostly untested, please test :)
Henek
parents: 5013
diff changeset
   104
    TagTurnTimeLeft : Longword;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   105
    ReadyTimeLeft   : Longword;
11913
232b57a70aca Make the timer red when it is the get-away time
Wuzzy <almikes@aol.com>
parents: 11912
diff changeset
   106
    IsGetAwayTime   : boolean;
12322
9aa483762025 Fix sndBoring being played when force-ending turn due to victory
Wuzzy <almikes@aol.com>
parents: 12317
diff changeset
   107
    GameOver        : boolean;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   108
    cSuddenDTurns   : LongInt;
14406
b48c270328a5 Show Sudden Death warning messages only once per round
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
   109
    LastSuddenDWarn : LongInt; // last round in which the last SD warning appeared. -2 = no warning so far
14522
d0441c7e9000 Lua: Add InitHealth, read-only variable containing the initial hog health setting
Wuzzy <Wuzzy2@mail.ru>
parents: 14514
diff changeset
   110
    cInitHealth     : LongInt; // initial hedgehog health (from game scheme. note the real hog health is sent directly
d0441c7e9000 Lua: Add InitHealth, read-only variable containing the initial hog health setting
Wuzzy <Wuzzy2@mail.ru>
parents: 14514
diff changeset
   111
                               // from frontend, this is only used to inform Lua scripts)
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   112
    cDamagePercent  : LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   113
    cMineDudPercent : LongWord;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   114
    cTemplateFilter : LongInt;
10472
8d04cebedb16 Partially hook up feature size so horrorcat has something to test.
nemo
parents: 10443
diff changeset
   115
    cFeatureSize    : LongInt;
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10532
diff changeset
   116
    cMapGen         : TMapGen;
4396
3cfd2e15464a After repeated requests, variable length rope. Intended for the infinite rope folks, but values less than 100 make rope more interesting IMO.
nemo
parents: 4390
diff changeset
   117
    cRopePercent    : LongWord;
5026
e83d4552625f percentage modifier for get away time
nikin
parents: 5025
diff changeset
   118
    cGetAwayTime    : LongWord;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   119
10237
282e49f9ce9d sekret feature (test commit)
unc0rr
parents: 10175
diff changeset
   120
    cAdvancedMapGenMode: boolean;
282e49f9ce9d sekret feature (test commit)
unc0rr
parents: 10175
diff changeset
   121
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   122
    cHedgehogTurnTime: Longword;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   123
    cMinesTime       : LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   124
    cMaxAIThinkTime  : Longword;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   125
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   126
    cHealthCaseProb  : LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   127
    cHealthCaseAmount: LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   128
    cWaterRise       : LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   129
    cHealthDecrease  : LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   130
5179
8d64dcb566ea Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents: 5136
diff changeset
   131
    cCloudsNumber    : LongWord;
8d64dcb566ea Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents: 5136
diff changeset
   132
    cSDCloudsNumber  : LongWord;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   133
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   134
    cTagsMask        : byte;
12999
46ba3285449a Switch + Change hog tags now turns on and off all tags
Wuzzy <Wuzzy2@mail.ru>
parents: 12920
diff changeset
   135
    cPrevTagsMask    : byte;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   136
    zoom             : GLfloat;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   137
    ZoomValue        : GLfloat;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   138
8003
7d8bce524daf LongInt Land width/height, mouse coords
nemo
parents: 7984
diff changeset
   139
    cWaterLine       : LongInt;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   140
    cGearScrEdgesDist: LongInt;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
   141
    isAudioMuted     : boolean;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   142
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   143
    // originally typed consts
10877
baad1cc9b749 alternative explosion border smoothing
sheepluva
parents: 10866
diff changeset
   144
    ExplosionBorderColorR,
baad1cc9b749 alternative explosion border smoothing
sheepluva
parents: 10866
diff changeset
   145
    ExplosionBorderColorG,
baad1cc9b749 alternative explosion border smoothing
sheepluva
parents: 10866
diff changeset
   146
    ExplosionBorderColorB,
10878
963bc20f511c small pixel jizz tweak
sheepluva
parents: 10877
diff changeset
   147
    ExplosionBorderColorNoA,
10877
baad1cc9b749 alternative explosion border smoothing
sheepluva
parents: 10866
diff changeset
   148
    ExplosionBorderColor:  LongWord;
8584
ea20d9cc8515 put ice colour in uVariables, add check for land that is already ice
nemo
parents: 8578
diff changeset
   149
    IceColor            : LongWord;
8596
def92c20cd49 define ice edge colour
nemo
parents: 8584
diff changeset
   150
    IceEdgeColor        : LongWord;
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   151
    WaterOpacity: byte;
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   152
    SDWaterOpacity: byte;
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   153
    GrayScale: Boolean;
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   154
6891
ab9843957664 Improve rendering of function types, ranges, and more
unc0rr
parents: 6890
diff changeset
   155
    CountTexz: array[0..Pred(AMMO_INFINITE)] of PTexture;
8003
7d8bce524daf LongInt Land width/height, mouse coords
nemo
parents: 7984
diff changeset
   156
    LAND_WIDTH       : LongInt;
7d8bce524daf LongInt Land width/height, mouse coords
nemo
parents: 7984
diff changeset
   157
    LAND_HEIGHT      : LongInt;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   158
    LAND_WIDTH_MASK  : LongWord;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   159
    LAND_HEIGHT_MASK : LongWord;
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9655
diff changeset
   160
10443
42dadeb6e8ae Remove switching of hog's hat to chef. do it in draw instead.
nemo
parents: 10361
diff changeset
   161
    ChefHatTexture : PTexture;
9655
e154ccca4dad Tinted crosshair (without that cool white dot in the middle)
unc0rr
parents: 9573
diff changeset
   162
    CrosshairTexture : PTexture;
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9655
diff changeset
   163
    GenericHealthTexture : PTexture;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   164
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   165
    cLeftScreenBorder     : LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   166
    cRightScreenBorder    : LongInt;
5179
8d64dcb566ea Fix "Mixing signed expressions and longwords gives a 64bit result" warnings
unc0rr
parents: 5136
diff changeset
   167
    cScreenSpace          : Longword;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   168
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   169
    cCaseFactor     : Longword;
13627
605767bbd022 Move max. number of crate spawns into variable
Wuzzy <Wuzzy2@mail.ru>
parents: 13582
diff changeset
   170
    cMaxCaseDrops   : Longword; // Max. number of crates which can be in the game when dropping
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   171
    cLandMines      : Longword;
10818
f642a28cab0c Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents: 10792
diff changeset
   172
    cAirMines       : Longword;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   173
    cExplosives     : Longword;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   174
6254
e90fb60cb46d Force a desync if there is a script name mismatch. This avoids playing until the game desyncs due to script differences.
nemo
parents: 6179
diff changeset
   175
    cScriptName     : shortstring;
9902
eb8e8b09b2f0 Special script parameter variable in game scheme
unc0rr
parents: 9839
diff changeset
   176
    cScriptParam    : shortstring;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   177
    cSeed           : shortstring;
13491
f725701ca529 Add variable to make state of sound system clear
Wuzzy <Wuzzy2@mail.ru>
parents: 13461
diff changeset
   178
    cIsSoundEnabled : boolean; // If the sound system is enabled
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   179
    cVolumeDelta    : LongInt;
13039
aed4b25ff242 Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents: 12999
diff changeset
   180
    cMuteToggle     : boolean; // Mute toggle requested
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   181
    cHasFocus       : boolean;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   182
    cInactDelay     : Longword;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   183
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   184
    bBetweenTurns   : boolean;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   185
    bWaterRising    : boolean;
13777
3fa9e30927f1 Fix team stats screwing up if game ends due to drowning in rising Sudden Death water
Wuzzy <Wuzzy2@mail.ru>
parents: 13627
diff changeset
   186
    bDuringWaterRise: boolean;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   187
5615
104f69e798bb changed aiming to be triggered when touching the crosshair
Xeli
parents: 5585
diff changeset
   188
    CrosshairX      : LongInt;
104f69e798bb changed aiming to be triggered when touching the crosshair
Xeli
parents: 5585
diff changeset
   189
    CrosshairY      : LongInt;
14553
5ae97eab70eb Make sure to render crosshair above render
Wuzzy <Wuzzy2@mail.ru>
parents: 14538
diff changeset
   190
    CrosshairGear   : PGear;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   191
    CursorMovementX : LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   192
    CursorMovementY : LongInt;
10330
3ec09243cb55 move DrawWaves to uRender
sheepluva
parents: 10325
diff changeset
   193
    cWaveHeight     : LongInt;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   194
    cDrownSpeed     : hwFloat;
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: 4375
diff changeset
   195
    cDrownSpeedf    : real;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   196
    cMaxWindSpeed   : hwFloat;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   197
    cWindSpeed      : hwFloat;
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: 4375
diff changeset
   198
    cWindSpeedf     : real;
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9693
diff changeset
   199
    cElastic        : hwFloat;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   200
    cGravity        : hwFloat;
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: 4375
diff changeset
   201
    cGravityf       : real;
11887
083c12795632 Show symbols at bottom right while extra damage / low grav. are active
Wuzzy <almikes@aol.com>
parents: 11836
diff changeset
   202
    cLowGravity     : boolean;
11057
adb5ef54da54 global variable for defining construction distance limit. value smaller 1 means no limit (wip)
sheepluva
parents: 11046
diff changeset
   203
    cBuildMaxDist   : LongInt;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   204
    cDamageModifier : hwFloat;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   205
    cLaserSighting  : boolean;
12306
cdd884397760 Fix sniper rifle disabling laser sight utility after shooting
Wuzzy <almikes@aol.com>
parents: 12286
diff changeset
   206
    cLaserSightingSniper : boolean;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   207
    cVampiric       : boolean;
6394
f0a9042e7387 yay, finally osx (and likely windows) fullscreen switch works like on linux! ALL textures had to be destroyed and recreated only after the new window got created. In other news, the new window must be cleaned with glClear to skip a first frame of garbage and AddProgress is only called the first time.
koda
parents: 6313
diff changeset
   208
    WeaponTooltipTex: PTexture;
6622
01889d5bc79b Rewrote the Ammomenu:
Xeli
parents: 6611
diff changeset
   209
    AmmoMenuInvalidated: boolean;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   210
    AmmoRect        : TSDL_Rect;
6394
f0a9042e7387 yay, finally osx (and likely windows) fullscreen switch works like on linux! ALL textures had to be destroyed and recreated only after the new window got created. In other news, the new window must be cleaned with glClear to skip a first frame of garbage and AddProgress is only called the first time.
koda
parents: 6313
diff changeset
   211
    HHTexture       : PTexture;
7974
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
   212
    cMaxZoomLevel   : real;
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
   213
    cMinZoomLevel   : real;
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
   214
    cZoomDelta      : real;
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
   215
    cMinMaxZoomLevelDelta : real;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   216
6622
01889d5bc79b Rewrote the Ammomenu:
Xeli
parents: 6611
diff changeset
   217
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   218
    flagMakeCapture : boolean;
10633
2f062fac5791 Add that "make screenshots of Land/LandPixels" thing for map creators
nemo
parents: 10625
diff changeset
   219
    flagDumpLand    : boolean;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   220
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   221
    InitStepsFlags  : Longword;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   222
    RealTicks       : Longword;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   223
    AttackBar       : LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   224
10325
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
   225
    WaterColorArray : array[0..7] of HwColor4f;
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
   226
    SDWaterColorArray : array[0..7] of HwColor4f;
13582
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
   227
    ClanColorArray : array[0..Pred(cClanColors)] of Longword;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   228
8373
209c9ba77a09 Prevent camera from moving with auto camera disabled when remote teams are targetting
nemo
parents: 8358
diff changeset
   229
    TargetCursorPoint     : TPoint;
209c9ba77a09 Prevent camera from moving with auto camera disabled when remote teams are targetting
nemo
parents: 8358
diff changeset
   230
    CursorPoint           : TPoint;
209c9ba77a09 Prevent camera from moving with auto camera disabled when remote teams are targetting
nemo
parents: 8358
diff changeset
   231
    TargetPoint           : TPoint;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   232
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   233
    ScreenFade      : TScreenFade;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   234
    ScreenFadeValue : LongInt;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   235
    ScreenFadeSpeed : LongInt;
11519
aab4767d9a50 adding a "cinematic mode" - currently: black bars on bottom/top. triggered by rcplane when pressing enter
sheepluva
parents: 11477
diff changeset
   236
    InCinematicMode : boolean;
aab4767d9a50 adding a "cinematic mode" - currently: black bars on bottom/top. triggered by rcplane when pressing enter
sheepluva
parents: 11477
diff changeset
   237
    CinematicSteps  : LongInt;
aab4767d9a50 adding a "cinematic mode" - currently: black bars on bottom/top. triggered by rcplane when pressing enter
sheepluva
parents: 11477
diff changeset
   238
    CinematicBarH   : LongInt;
11520
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11519
diff changeset
   239
    CinematicScript : boolean;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   240
9693
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9672
diff changeset
   241
    UIDisplay       : TUIDisplay;
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9672
diff changeset
   242
    LocalMessage    : LongWord;
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9672
diff changeset
   243
4611
445d382cd401 A very very basic snow implementation
nemo
parents: 4578
diff changeset
   244
    Theme           : shortstring;
4695
ac2cb3b99d70 add a disabling for landback, set it if flakes are enabled
nemo
parents: 4611
diff changeset
   245
    disableLandBack : boolean;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
   246
4367
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
   247
    WorldDx: LongInt;
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
   248
    WorldDy: LongInt;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   249
10866
c1f75780c56f make using hog speech a bit more comfortable
sheepluva
parents: 10850
diff changeset
   250
    SpeechHogNumber: LongInt;
c1f75780c56f make using hog speech a bit more comfortable
sheepluva
parents: 10850
diff changeset
   251
10266
a90a55ec5b98 some minor tweaks and stuff
sheepluva
parents: 10237
diff changeset
   252
    // for tracking the limits of the visible grid based on cScaleFactor
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10271
diff changeset
   253
    ViewLeftX, ViewRightX, ViewBottomY, ViewTopY, ViewWidth, ViewHeight: LongInt;
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10271
diff changeset
   254
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10271
diff changeset
   255
    // for debugging the view limits visually
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10271
diff changeset
   256
    cViewLimitsDebug: boolean;
10266
a90a55ec5b98 some minor tweaks and stuff
sheepluva
parents: 10237
diff changeset
   257
10271
e770bfcf488a whoops, forgot to include this file in commt
sheepluva
parents: 10266
diff changeset
   258
    dirtyLandTexCount: LongInt;
e770bfcf488a whoops, forgot to include this file in commt
sheepluva
parents: 10266
diff changeset
   259
4814
e19791f08443 smaller rearrangement of (non stereo related) variables
koda
parents: 4812
diff changeset
   260
    hiTicks: Word;
e19791f08443 smaller rearrangement of (non stereo related) variables
koda
parents: 4812
diff changeset
   261
12749
1df909b46c05 Lua API: Fix Goals text being cut off at ca. 255 characters
Wuzzy <Wuzzy2@mail.ru>
parents: 12711
diff changeset
   262
    LuaGoals        : ansistring;
4883
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
   263
7594
5f03595335e6 fromdos + fix end of turn velocity
nemo
parents: 7567
diff changeset
   264
    LuaTemplateNumber : LongWord;
7567
da2aa8355d91 allow lua to specify template by number
nemo
parents: 7495
diff changeset
   265
12286
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12282
diff changeset
   266
    // for EndTurn Lua call
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12282
diff changeset
   267
    LuaEndTurnRequested: boolean;
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12282
diff changeset
   268
    LuaNoEndTurnTaunts: boolean;
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12282
diff changeset
   269
14394
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14306
diff changeset
   270
    // whether Lua requested to pause the clock
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14306
diff changeset
   271
    LuaClockPaused: boolean;
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14306
diff changeset
   272
13121
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
   273
    MaskedSounds : array[TSound] of boolean;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
   274
11164
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   275
    LastVoice : TVoice;
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   276
8204
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   277
    mobileRecord: TMobileRecord;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   278
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10271
diff changeset
   279
    MaxTextureSize: LongInt;
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10271
diff changeset
   280
12844
22cc3d82905a Should probably have gl context stuff in its own unit separate from store, but, don't close the gl context before anything that might still want to do gl operations
nemo
parents: 12838
diff changeset
   281
    SDLwindow: PSDL_Window;
22cc3d82905a Should probably have gl context stuff in its own unit separate from store, but, don't close the gl context before anything that might still want to do gl operations
nemo
parents: 12838
diff changeset
   282
    SDLGLcontext: PSDL_GLContext;
22cc3d82905a Should probably have gl context stuff in its own unit separate from store, but, don't close the gl context before anything that might still want to do gl operations
nemo
parents: 12838
diff changeset
   283
  
6637
b4a3310f2974 show buttons on the screen, similar to the iOS overlay
Xeli
parents: 6632
diff changeset
   284
/////////////////////////////////////
b4a3310f2974 show buttons on the screen, similar to the iOS overlay
Xeli
parents: 6632
diff changeset
   285
//Buttons
6676
21cf35a570a7 add keywords for landscape ammomenu and touch interface
koda
parents: 6648
diff changeset
   286
{$IFDEF USE_TOUCH_INTERFACE}
6637
b4a3310f2974 show buttons on the screen, similar to the iOS overlay
Xeli
parents: 6632
diff changeset
   287
    buttonScale: GLFloat;
14538
1dab5d92aca7 Add button to set bounciness in touch interface
Wuzzy <Wuzzy2@mail.ru>
parents: 14522
diff changeset
   288
    bounceButtonPressed: boolean;
6637
b4a3310f2974 show buttons on the screen, similar to the iOS overlay
Xeli
parents: 6632
diff changeset
   289
6714
f2f93017132c moved the firebutton, added the AMWidget button and removed the forwardjump widget(it's longpress on backjump now)
Xeli
parents: 6700
diff changeset
   290
    arrowUp, arrowDown, arrowLeft, arrowRight : TOnScreenWidget;
f2f93017132c moved the firebutton, added the AMWidget button and removed the forwardjump widget(it's longpress on backjump now)
Xeli
parents: 6700
diff changeset
   291
    firebutton, jumpWidget, AMWidget          : TOnScreenWidget;
6806
cdfb6c7099e5 first part of the utilitywidget (grenade timer/swap hogs) code
Xeli
parents: 6796
diff changeset
   292
    pauseButton, utilityWidget                : TOnScreenWidget;
14538
1dab5d92aca7 Add button to set bounciness in touch interface
Wuzzy <Wuzzy2@mail.ru>
parents: 14522
diff changeset
   293
    utilityWidget2                            : TOnScreenWidget;
6637
b4a3310f2974 show buttons on the screen, similar to the iOS overlay
Xeli
parents: 6632
diff changeset
   294
{$ENDIF}
6796
3e89dbdc7db9 You can now change AMAnimType to enable the animation through the x/y axis and alpha for example
Xeli
parents: 6714
diff changeset
   295
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   296
7066
12cc2bd84b0b Make pas2c even more happier with uGears.c, allow assigning arrays in some cases
unc0rr
parents: 7049
diff changeset
   297
var
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   298
    // these consts are here because they would cause circular dependencies in uConsts/uTypes
11164
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   299
    cPathz: array[TPathType] of shortstring;
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   300
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   301
const
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   302
    cPathzInit: array[TPathType] of shortstring = (
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   303
        '',                              // ptNone
9168
20ff80421736 Some fixes to make pas2c+clang compile all engine files
unc0rr
parents: 9127
diff changeset
   304
        '//',                            // ptData
8022
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   305
        '/Graphics',                     // ptGraphics
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   306
        '/Themes',                       // ptThemes
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   307
        '/Themes/Bamboo',                // ptCurrTheme
12106
9bc19f722169 Bug #108 - Phyfs/Pathz: Fix binds not being loaded
sheepluva
parents: 11941
diff changeset
   308
        '/Config',                       // ptConfig
9bc19f722169 Bug #108 - Phyfs/Pathz: Fix binds not being loaded
sheepluva
parents: 11941
diff changeset
   309
        '/Config/Teams',                 // ptTeams
8022
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   310
        '/Maps',                         // ptMaps
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   311
        '',                              // ptMapCurrent
8022
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   312
        '/Demos',                        // ptDemos
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   313
        '/Sounds',                       // ptSounds
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   314
        '/Graphics/Graves',              // ptGraves
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   315
        '/Fonts',                        // ptFonts
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   316
        '/Forts',                        // ptForts
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   317
        '/Locale',                       // ptLocale
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   318
        '/Graphics/AmmoMenu',            // ptAmmoMenu
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   319
        '/Graphics/Hedgehog',            // ptHedgehog
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   320
        '/Sounds/voices',                // ptVoices
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   321
        '/Graphics/Hats',                // ptHats
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   322
        '/Graphics/Flags',               // ptFlags
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   323
        '/Missions/Maps',                // ptMissionMaps
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 8016
diff changeset
   324
        '/Graphics/SuddenDeath',         // ptSuddenDeath
8096
453917e94e55 updated branch
koda
parents: 8032 8057
diff changeset
   325
        '/Graphics/Buttons',             // ptButton
453917e94e55 updated branch
koda
parents: 8032 8057
diff changeset
   326
        '/Shaders'                       // ptShaders
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   327
    );
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   328
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
   329
var
11164
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   330
    Fontz: array[THWFont] of THHFont;
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   331
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   332
const
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   333
    FontzInit: array[THWFont] of THHFont = (
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   334
            (Handle: nil;
11836
1d41f297b3d3 bit of a start on HDPI monitor support. Fonts.
nemo
parents: 11734
diff changeset
   335
            Height: 12*HDPIScaleFactor;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   336
            style: TTF_STYLE_NORMAL;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   337
            Name: 'DejaVuSans-Bold.ttf'),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   338
            (Handle: nil;
11836
1d41f297b3d3 bit of a start on HDPI monitor support. Fonts.
nemo
parents: 11734
diff changeset
   339
            Height: 24*HDPIScaleFactor;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   340
            style: TTF_STYLE_NORMAL;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   341
            Name: 'DejaVuSans-Bold.ttf'),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   342
            (Handle: nil;
11836
1d41f297b3d3 bit of a start on HDPI monitor support. Fonts.
nemo
parents: 11734
diff changeset
   343
            Height: 10*HDPIScaleFactor;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   344
            style: TTF_STYLE_NORMAL;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   345
            Name: 'DejaVuSans-Bold.ttf')
5639
ebe9858eb6a3 Removed chinese font
Xeli
parents: 5619
diff changeset
   346
            {$IFNDEF MOBILE}, // remove chinese fonts for now
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   347
            (Handle: nil;
11836
1d41f297b3d3 bit of a start on HDPI monitor support. Fonts.
nemo
parents: 11734
diff changeset
   348
            Height: 12*HDPIScaleFactor;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   349
            style: TTF_STYLE_NORMAL;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   350
            Name: 'wqy-zenhei.ttc'),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   351
            (Handle: nil;
11836
1d41f297b3d3 bit of a start on HDPI monitor support. Fonts.
nemo
parents: 11734
diff changeset
   352
            Height: 24*HDPIScaleFactor;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   353
            style: TTF_STYLE_NORMAL;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   354
            Name: 'wqy-zenhei.ttc'),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   355
            (Handle: nil;
11836
1d41f297b3d3 bit of a start on HDPI monitor support. Fonts.
nemo
parents: 11734
diff changeset
   356
            Height: 10*HDPIScaleFactor;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   357
            style: TTF_STYLE_NORMAL;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   358
            Name: 'wqy-zenhei.ttc')
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   359
            {$ENDIF}
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   360
            );
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   361
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   362
var
11164
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   363
    SpritesData: array[TSprite] of TSpriteData;
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   364
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   365
const
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   366
    SpritesDataInit: array[TSprite] of TSpriteData = (
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   367
            (FileName:  'BlueWater'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   368
            Width:   0; Height:  -1; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: true; getImageDimensions: true),// sprWater
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   369
            (FileName:     'Clouds'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   370
            Width: 256; Height:128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprCloud
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   371
            (FileName:       'Bomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   372
            Width:   8; Height:  8; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBomb
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   373
            (FileName:  'BigDigits'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   374
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBigDigit
11912
d3a852554aa7 Turn timer digits green when it's still the ready timer
Wuzzy <almikes@aol.com>
parents: 11895
diff changeset
   375
            (FileName: 'BigDigitsGray'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   376
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBigDigitGray
11912
d3a852554aa7 Turn timer digits green when it's still the ready timer
Wuzzy <almikes@aol.com>
parents: 11895
diff changeset
   377
            (FileName: 'BigDigitsGreen'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   378
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBigDigitGreen
11912
d3a852554aa7 Turn timer digits green when it's still the ready timer
Wuzzy <almikes@aol.com>
parents: 11895
diff changeset
   379
            (FileName: 'BigDigitsRed'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   380
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBigDigitRed
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   381
            (FileName:      'Frame'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   382
            Width:   4; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprFrame
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   383
            (FileName:        'Lag'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   384
            Width:  65; Height: 65; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprLag
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   385
            (FileName:      'Arrow'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   386
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprCursor
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   387
            (FileName:'BazookaShell'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   388
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBazookaShell
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   389
            (FileName:    'Targetp'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   390
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTargetP
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   391
            (FileName:        'Bee'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   392
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBee
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   393
            (FileName: 'SmokeTrace'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   394
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSmokeTrace
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   395
            (FileName:   'RopeHook'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   396
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprRopeHook
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   397
            (FileName:     'Expl50'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   398
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplosion50
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   399
            (FileName:    'MineOff'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   400
            Width:   8; Height:  8; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMineOff
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   401
            (FileName:     'MineOn'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   402
            Width:   8; Height:  8; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMineOn
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   403
            (FileName:     'MineDead'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   404
            Width:   8; Height:  8; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMineDead
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   405
            (FileName:       'Case'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   406
            Width:  48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprCase
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   407
            (FileName:   'FirstAid'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   408
            Width:  48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprFAid
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   409
            (FileName:   'dynamite'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   410
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprDynamite
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   411
            (FileName:      'Power'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   412
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprPower
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   413
            (FileName:     'ClBomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   414
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprClusterBomb
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   415
            (FileName: 'ClParticle'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   416
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprClusterParticle
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   417
            (FileName:      'Flame'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   418
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprFlame
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   419
            (FileName:   'horizont'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   420
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprHorizont
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   421
            (FileName:  'horizontL'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   422
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprHorizontL
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   423
            (FileName:  'horizontR'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   424
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprHorizontR
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   425
            (FileName:        'Sky'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   426
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprSky
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   427
            (FileName:       'SkyL'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   428
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprSkyL
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   429
            (FileName:       'SkyR'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   430
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprSkyR
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   431
            (FileName:   'Slot'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   432
            Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAMSlot
12324
69a37922353b turn hwp Ammos overrides into overlays. untested.
nemo
parents: 12322
diff changeset
   433
            (FileName:      'Ammos_base'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   434
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAMAmmos
12324
69a37922353b turn hwp Ammos overrides into overlays. untested.
nemo
parents: 12322
diff changeset
   435
            (FileName:   'Ammos_bw_base'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   436
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprAMAmmosBW
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   437
            (FileName:   'SlotKeys'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   438
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAMSlotKeys
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   439
            (FileName:  'Corners'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   440
            Width:  2; Height: 2; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAMCorners
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   441
            (FileName:     'Finger'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   442
            Width:  32; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprFinger
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   443
            (FileName:    'AirBomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   444
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAirBomb
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   445
            (FileName:   'Airplane'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   446
            Width: 256; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAirplane
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   447
            (FileName: 'amAirplane'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   448
            Width:  64; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAmAirplane
6112
7839a2ae90ae Restrict slipperiness to girders and bridges. Make girders more obviously ice.
nemo
parents: 5913
diff changeset
   449
            (FileName:   'amGirder'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   450
            Width: 160; Height:160; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAmGirder
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   451
            (FileName:     'hhMask'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   452
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHHTelepMask
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   453
            (FileName:     'Switch'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   454
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSwitch
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   455
            (FileName:  'Parachute'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   456
            Width:  48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprParachute
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   457
            (FileName:     'Target'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   458
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTarget
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   459
            (FileName:   'RopeNode'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   460
            Width:   6; Height:  6; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprRopeNode
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   461
            (FileName:   'thinking'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   462
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprQuestion
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   463
            (FileName:   'PowerBar'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   464
            Width: 256; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPowerBar
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   465
            (FileName:    'WindBar'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   466
            Width: 151; Height: 17; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWindBar
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   467
            (FileName:      'WindL'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   468
            Width:  80; Height: 13; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWindL
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   469
            (FileName:      'WindR'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   470
            Width:  80; Height: 13; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWindR
6676
21cf35a570a7 add keywords for landscape ammomenu and touch interface
koda
parents: 6648
diff changeset
   471
{$IFDEF USE_TOUCH_INTERFACE}
6637
b4a3310f2974 show buttons on the screen, similar to the iOS overlay
Xeli
parents: 6632
diff changeset
   472
            (FileName: 'firebutton'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   473
            Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprFireButton
11112
520b57e0c518 - Name fixing for buttons
antonc27 <antonc27@mail.ru>
parents: 11096
diff changeset
   474
            (FileName: 'arrowup'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   475
            Width: 100; Height: 100; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprArrowUp
11112
520b57e0c518 - Name fixing for buttons
antonc27 <antonc27@mail.ru>
parents: 11096
diff changeset
   476
            (FileName: 'arrowdown'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   477
            Width: 100; Height: 100; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprArrowDown
11112
520b57e0c518 - Name fixing for buttons
antonc27 <antonc27@mail.ru>
parents: 11096
diff changeset
   478
            (FileName: 'arrowleft'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   479
            Width: 100; Height: 100; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprArrowLeft
11112
520b57e0c518 - Name fixing for buttons
antonc27 <antonc27@mail.ru>
parents: 11096
diff changeset
   480
            (FileName: 'arrowright'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   481
            Width: 100; Height: 100; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprArrowRight
6714
f2f93017132c moved the firebutton, added the AMWidget button and removed the forwardjump widget(it's longpress on backjump now)
Xeli
parents: 6700
diff changeset
   482
            (FileName: 'forwardjump'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   483
            Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprAMWidget
6637
b4a3310f2974 show buttons on the screen, similar to the iOS overlay
Xeli
parents: 6632
diff changeset
   484
            (FileName: 'backjump'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   485
            Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprJumpWidget
6685
ef706fccfb0a moved other widgets under the USE_TOUCH_INTERFACE, added pause button (at least, graphically...)
koda
parents: 6683
diff changeset
   486
            (FileName: 'pause'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   487
            Width: 120; Height: 100; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprPauseButton
11208
89f6c8cf60c8 - Timer button added to mobile touch controls
antonc27 <antonc27@mail.ru>
parents: 11166
diff changeset
   488
            (FileName: 'timerbutton'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   489
            Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprTimerButton
11209
e3bce5a79207 - Target button added to mobile touch controls
antonc27 <antonc27@mail.ru>
parents: 11208
diff changeset
   490
            (FileName: 'targetbutton'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   491
            Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprTargetButton
11210
22f2e072d31e - Target button added to mobile touch controls
antonc27 <antonc27@mail.ru>
parents: 11209
diff changeset
   492
            (FileName: 'switchbutton'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   493
            Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprSwitchButton
14538
1dab5d92aca7 Add button to set bounciness in touch interface
Wuzzy <Wuzzy2@mail.ru>
parents: 14522
diff changeset
   494
            (FileName: 'bouncebutton'; Path: ptButtons; AltPath: ptNone; Texture: nil; Surface: nil;
1dab5d92aca7 Add button to set bounciness in touch interface
Wuzzy <Wuzzy2@mail.ru>
parents: 14522
diff changeset
   495
            Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true), // sprBounceButton
6637
b4a3310f2974 show buttons on the screen, similar to the iOS overlay
Xeli
parents: 6632
diff changeset
   496
{$ENDIF}
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   497
            (FileName:      'Flake'; Path:ptCurrTheme; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   498
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprFlake
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   499
            (FileName:     'amRope'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   500
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandRope
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   501
            (FileName:  'amBazooka'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   502
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBazooka
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   503
            (FileName:  'amShotgun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   504
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandShotgun
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   505
            (FileName:   'amDEagle'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   506
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandDEagle
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   507
            (FileName:'amAirAttack'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   508
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandAirAttack
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   509
            (FileName: 'amBaseball'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   510
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBaseball
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   511
            (FileName:     'Hammer'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   512
            Width:  32; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPHammer
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   513
            (FileName: 'amBTorch_i'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   514
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBlowTorch
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   515
            (FileName: 'amBTorch_w'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   516
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBlowTorch
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   517
            (FileName:   'Teleport'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   518
            Width:  64; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTeleport
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   519
            (FileName:    'HHDeath'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   520
            Width:  32; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprHHDeath
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   521
            (FileName:'amShotgun_w'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   522
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprShotgun
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   523
            (FileName: 'amDEagle_w'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   524
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprDEagle
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   525
            (FileName:       'Idle'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   526
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprHHIdle
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   527
            (FileName:     'Mortar'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   528
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMortar
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   529
            (FileName:  'TurnsLeft'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   530
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTurnsLeft
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   531
            (FileName: 'amKamikaze'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   532
            Width: 128; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprKamikaze
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   533
            (FileName:     'amWhip'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   534
            Width: 128; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWhip
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   535
            (FileName:     'Kowtow'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   536
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprKowtow
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   537
            (FileName:        'Sad'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   538
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprSad
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   539
            (FileName:       'Wave'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   540
            Width:  64; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprWave
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   541
            (FileName:     'Hurrah'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   542
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprHurrah
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   543
            (FileName:'ILoveLemonade';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   544
            Width: 128; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprLemonade
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   545
            (FileName:      'Shrug'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   546
            Width: 32;  Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprShrug
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   547
            (FileName:     'Juggle'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   548
            Width: 32;  Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprJuggle
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   549
            (FileName:   'ExplPart'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   550
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplPart
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   551
            (FileName:  'ExplPart2'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   552
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplPart2
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   553
            (FileName:  'Cake_walk'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   554
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprCakeWalk
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   555
            (FileName:  'Cake_down'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   556
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprCakeDown
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   557
            (FileName: 'Watermelon'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   558
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWatermelon
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   559
            (FileName:  'EvilTrace'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   560
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprEvilTrace
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   561
            (FileName:'HellishBomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   562
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHellishBomb
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   563
            (FileName:  'Seduction'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   564
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSeduction
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   565
            (FileName:    'HHDress'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   566
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprDress
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   567
            (FileName:   'Censored'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   568
            Width:  64; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprCensored
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   569
            (FileName:      'Drill'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   570
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprDrill
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   571
            (FileName:    'amDrill'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   572
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandDrill
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   573
            (FileName:  'amBallgun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   574
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBallgun
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   575
            (FileName:      'Balls'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   576
            Width:  32; Height: 20; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprBalls
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   577
            (FileName:    'RCPlane'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   578
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPlane
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   579
            (FileName:  'amRCPlane'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   580
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandPlane
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   581
            (FileName:    'Utility'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   582
            Width:  48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprUtility
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   583
            (FileName:'Invulnerable';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   584
            Width:  48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprInvulnerable
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   585
            (FileName:   'Vampiric'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   586
            Width:  48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprVampiric
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   587
            (FileName:   'amGirder'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   588
            Width: 512; Height:512; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprGirder
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   589
            (FileName:'SpeechCorner';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   590
            Width:  12; Height: 9; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprSpeechCorner
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   591
            (FileName: 'SpeechEdge'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   592
            Width:  25; Height: 9; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprSpeechEdge
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   593
            (FileName: 'SpeechTail'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   594
            Width:  25; Height: 26; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprSpeechTail
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   595
            (FileName:'ThoughtCorner';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   596
            Width:  49; Height: 37; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprThoughtCorner
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   597
            (FileName:'ThoughtEdge'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   598
            Width:  23; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprThoughtEdge
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   599
            (FileName:'ThoughtTail'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   600
            Width:  45; Height: 65; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprThoughtTail
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   601
            (FileName:'ShoutCorner'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   602
            Width:  34; Height: 23; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprShoutCorner
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   603
            (FileName:  'ShoutEdge'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   604
            Width:  30; Height: 20; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprShoutEdge
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   605
            (FileName:  'ShoutTail'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   606
            Width:  30; Height: 37; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprShoutTail
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   607
            (FileName:'amSniperRifle';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   608
            Width: 128; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSniperRifle
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   609
            (FileName:    'Bubbles'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   610
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprBubbles
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   611
            (FileName:  'amJetpack'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   612
            Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprJetpack
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   613
            (FileName:  'Health'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   614
            Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprHealth
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   615
            (FileName:  'amMolotov'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   616
            Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),//sprHandMolotov
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   617
            (FileName:  'Molotov'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   618
            Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMolotov
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   619
            (FileName: 'Smoke'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   620
            Width:  22; Height: 22; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSmoke
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   621
            (FileName: 'SmokeWhite'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   622
            Width:  22; Height: 22; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSmokeWhite
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   623
            (FileName: 'Shells'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   624
            Width:  8; Height: 8; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLow; getDimensions: false; getImageDimensions: true),// sprShell
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   625
            (FileName: 'Dust'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   626
            Width:  22; Height: 22; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprDust
5065
0c2c509ccc7b mikade really likes the snow dust
nemo
parents: 5046
diff changeset
   627
            (FileName: 'SnowDust'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   628
            Width:  22; Height: 22; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSnowDust
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   629
            (FileName: 'Explosives'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   630
            Width:  48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplosives
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   631
            (FileName: 'ExplosivesRoll'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   632
            Width:  48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplosivesRoll
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   633
            (FileName: 'amTeleport'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   634
            Width:  64; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAmTeleport
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   635
            (FileName: 'Splash'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   636
            Width:  80; Height: 50; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSplash
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   637
            (FileName: 'Droplet'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   638
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprDroplet
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   639
            (FileName: 'Birdy'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   640
            Width:  75; Height: 75; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBirdy
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   641
            (FileName:  'amCake'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   642
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandCake
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   643
            (FileName:  'amConstruction'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   644
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandConstruction
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   645
            (FileName:  'amGrenade'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   646
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandGrenade
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   647
            (FileName:  'amMelon'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   648
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandMelon
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   649
            (FileName:  'amMortar'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   650
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandMortar
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   651
            (FileName:  'amSkip'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   652
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSkip
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   653
            (FileName:  'amCluster'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   654
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandCluster
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   655
            (FileName:  'amDynamite'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   656
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandDynamite
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   657
            (FileName:  'amHellish'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   658
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandHellish
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   659
            (FileName:  'amMine'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   660
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandMine
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   661
            (FileName:  'amSeduction'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   662
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSeduction
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   663
            (FileName:  'amVamp'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   664
            Width:  128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandVamp
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   665
            (FileName:  'BigExplosion'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   666
            Width:  385; Height: 385; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBigExplosion
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   667
            (FileName:  'SmokeRing'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   668
            Width:  200; Height: 200; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSmokeRing
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   669
            (FileName:  'BeeTrace'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   670
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprBeeTrace
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   671
            (FileName:  'Egg'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   672
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprEgg
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   673
            (FileName:  'TargetBee'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   674
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTargetBee
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   675
            (FileName:  'amBee'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   676
            Width:  128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBee
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   677
            (FileName:  'Feather'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   678
            Width:  15; Height: 25; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprFeather
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   679
            (FileName:  'Piano'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   680
            Width:  128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPiano
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   681
            (FileName:  'amSineGun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   682
            Width:  128; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSineGun
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   683
            (FileName:  'amPortalGun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   684
            Width: 128; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPortalGun
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   685
            (FileName:  'Portal'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   686
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPortal
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   687
            (FileName:  'cheese'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   688
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprCheese
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   689
            (FileName:  'amCheese'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   690
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandCheese
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   691
            (FileName:  'amFlamethrower'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   692
            Width:  128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandFlamethrower
5284
34abd278344e Remove default transparent chunks. Chunk will only be added if theme defined.
nemo
parents: 5279
diff changeset
   693
            (FileName:  'Chunk'; Path: ptCurrTheme; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   694
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprChunk
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   695
            (FileName:  'Note'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   696
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprNote
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   697
            (FileName:   'SMineOff'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   698
            Width:   8; Height:  8; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSMineOff
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   699
            (FileName:    'SMineOn'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   700
            Width:   8; Height:  8; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSMineOn
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   701
            (FileName:   'amSMine'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   702
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSMine
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   703
            (FileName:  'amHammer'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   704
            Width: 128; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true), // sprHammer
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   705
            (FileName: 'amResurrector'; Path: ptHedgehog; AltPath: ptNone;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   706
                Texture: nil; Surface: nil; Width: 32; Height: 32;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   707
                imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority:
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   708
                tpMedium; getDimensions: false; getImageDimensions: true),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   709
            //sprHandResurrector
6891
ab9843957664 Improve rendering of function types, ranges, and more
unc0rr
parents: 6890
diff changeset
   710
            (FileName: 'Cross'; Path: ptGraphics; AltPath: ptNone;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   711
                Texture: nil; Surface: nil; Width: 108; Height: 138;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   712
                imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority:
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   713
                tpMedium; getDimensions: false; getImageDimensions: true),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   714
            //sprCross
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   715
            (FileName:  'AirDrill'; Path: ptGraphics; AltPath: ptNone;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   716
                Texture: nil; Surface: nil; Width:  16; Height: 16;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   717
                imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority:
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   718
                tpMedium; getDimensions: false; getImageDimensions: true),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   719
            // sprAirDrill
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   720
            (FileName:  'NapalmBomb'; Path: ptGraphics; AltPath: ptNone;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   721
                Texture: nil; Surface: nil; Width:  16; Height: 16;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   722
                imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority:
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   723
                tpMedium; getDimensions: false; getImageDimensions: true),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   724
            // sprNapalmBomb
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   725
            (FileName:  'BulletHit'; Path: ptGraphics; AltPath: ptNone;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   726
                Texture: nil; Surface: nil; Width:  32; Height: 32;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   727
                imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority:
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
   728
                tpMedium; getDimensions: false; getImageDimensions: true),
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
   729
            // sprBulletHit
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
   730
            (FileName:  'Snowball'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   731
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSnowball
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
   732
            (FileName:  'amSnowball'; Path: ptCurrTheme; AltPath: ptHedgehog; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   733
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSnowball
4611
445d382cd401 A very very basic snow implementation
nemo
parents: 4578
diff changeset
   734
            (FileName:  'Snow'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   735
            Width:  4; Height: 4; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSnow
4772
02370ca8e92c sudden death: now having theme support, still some work though with config
Henek
parents: 4748
diff changeset
   736
            (FileName:    'SDFlake'; Path: ptCurrTheme; AltPath: ptSuddenDeath; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   737
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSDFlake
4772
02370ca8e92c sudden death: now having theme support, still some work though with config
Henek
parents: 4748
diff changeset
   738
            (FileName:    'SDWater'; Path: ptCurrTheme; AltPath: ptSuddenDeath; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   739
            Width:   0; Height:  -2; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: true; getImageDimensions: true),// sprSDWater
4772
02370ca8e92c sudden death: now having theme support, still some work though with config
Henek
parents: 4748
diff changeset
   740
            (FileName:   'SDClouds'; Path: ptCurrTheme; AltPath: ptSuddenDeath; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   741
            Width: 256; Height:128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprSDCloud
4782
603916ddf4b6 added also splash and droplets to sd and refactored theme.cfg, not all themes updated
Henek
parents: 4780
diff changeset
   742
            (FileName:   'SDSplash'; Path: ptCurrTheme; AltPath: ptSuddenDeath; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   743
            Width:  80; Height: 50; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSDSplash
4782
603916ddf4b6 added also splash and droplets to sd and refactored theme.cfg, not all themes updated
Henek
parents: 4780
diff changeset
   744
            (FileName:  'SDDroplet'; Path: ptCurrTheme; AltPath: ptSuddenDeath; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   745
            Width:  16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSDDroplet
11021
981775ec7dda fix timebox sprite
sheepluva
parents: 10955
diff changeset
   746
            (FileName:  'Timebox'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   747
            Width:  50; Height: 81; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprTardis
6627
18cbb75aba59 add individual hog healths to team health bar
nemo
parents: 6622
diff changeset
   748
            (FileName:  'slider'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   749
            Width: 3; Height: 17; imageWidth: 3; imageHeight: 17; saveSurf: false; critical: true; checkSum: false; priority: tpLow; getDimensions: false; getImageDimensions: false), // sprSlider
7495
2592240b7b62 Add bot level to CPU flag
nemo
parents: 7416
diff changeset
   750
            (FileName:  'botlevels'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   751
            Width: 22; Height: 15; imageWidth: 22; imageHeight: 15; saveSurf: true; critical: true; checkSum: false; priority: tpLow; getDimensions: false; getImageDimensions: false), // sprBotlevels
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7730
diff changeset
   752
            (FileName:  'amCleaver'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   753
            Width:  64; Height: 64; imageWidth: 64; imageHeight: 64; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: false),// sprHandKnife
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7730
diff changeset
   754
            (FileName:  'cleaver'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   755
            Width: 64; Height: 64; imageWidth: 64; imageHeight: 128; saveSurf: false; critical: true; checkSum: false; priority: tpLow; getDimensions: false; getImageDimensions: false), // sprKnife
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7730
diff changeset
   756
            (FileName:  'star'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   757
            Width: 12; Height: 12; imageWidth: 12; imageHeight: 12; saveSurf: false; critical: true; checkSum: false; priority: tpLow; getDimensions: false; getImageDimensions: false), // sprStar
8548
b98631bf2066 Add land freezing
Urbertar@gmail.com
parents: 8373
diff changeset
   758
            (FileName:  'icetexture'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   759
            Width: 128; Height: 128; imageWidth: 128; imageHeight: 128; saveSurf: true; critical: true; checkSum: false; priority: tpLow; getDimensions: false; getImageDimensions: true), // sprIceTexture
8554
84a279d0556c Add change ice gun image
Urbertar@gmail.com
parents: 8548
diff changeset
   760
            (FileName:  'amIceGun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   761
            Width: 32; Height: 32; imageWidth: 32; imageHeight: 32; saveSurf: false; critical: true; checkSum: false; priority: tpLow; getDimensions: false; getImageDimensions: false), // sprIceGun
8557
18330b24b92c Add freezing hogs with icegun
Urbertar@gmail.com
parents: 8554
diff changeset
   762
            (FileName:  'amFrozenHog'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   763
            Width: 64; Height: 64; imageWidth: 64; imageHeight: 64; saveSurf: false; critical: true; checkSum: false; priority: tpLow; getDimensions: false; getImageDimensions: false), // sprFrozenHog
9768
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
   764
            (FileName:   'amRubber'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   765
            Width: 160; Height:160; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpMedium; getDimensions: false; getImageDimensions: true), // sprAmRubber
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: 9768
diff changeset
   766
            (FileName:  'boing'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   767
            Width: 101; Height: 97; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpLow; getDimensions: false; getImageDimensions: false), // sprBoing
10339
a1168c400c90 couple of custom sprites for mikade to override in a lua sidecar if he wants to
nemo
parents: 10330
diff changeset
   768
            (FileName:       'custom1'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   769
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpLow; getDimensions: true; getImageDimensions: true), // sprCustom1
10339
a1168c400c90 couple of custom sprites for mikade to override in a lua sidecar if he wants to
nemo
parents: 10330
diff changeset
   770
            (FileName:       'custom2'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   771
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpLow; getDimensions: true; getImageDimensions: true), // sprCustom2
12668
308846e05154 extend overridable graphics/sounds to 8 of each, for lua scripters who really like having their own sprites/sounds. these should not be used in the engine.
nemo
parents: 12649
diff changeset
   772
            (FileName:       'custom3'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   773
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpLow; getDimensions: true; getImageDimensions: true), // sprCustom3
12668
308846e05154 extend overridable graphics/sounds to 8 of each, for lua scripters who really like having their own sprites/sounds. these should not be used in the engine.
nemo
parents: 12649
diff changeset
   774
            (FileName:       'custom4'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   775
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpLow; getDimensions: true; getImageDimensions: true), // sprCustom4
12668
308846e05154 extend overridable graphics/sounds to 8 of each, for lua scripters who really like having their own sprites/sounds. these should not be used in the engine.
nemo
parents: 12649
diff changeset
   776
            (FileName:       'custom5'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   777
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpLow; getDimensions: true; getImageDimensions: true), // sprCustom5
12668
308846e05154 extend overridable graphics/sounds to 8 of each, for lua scripters who really like having their own sprites/sounds. these should not be used in the engine.
nemo
parents: 12649
diff changeset
   778
            (FileName:       'custom6'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   779
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpLow; getDimensions: true; getImageDimensions: true), // sprCustom6
12668
308846e05154 extend overridable graphics/sounds to 8 of each, for lua scripters who really like having their own sprites/sounds. these should not be used in the engine.
nemo
parents: 12649
diff changeset
   780
            (FileName:       'custom7'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   781
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpLow; getDimensions: true; getImageDimensions: true), // sprCustom7
12668
308846e05154 extend overridable graphics/sounds to 8 of each, for lua scripters who really like having their own sprites/sounds. these should not be used in the engine.
nemo
parents: 12649
diff changeset
   782
            (FileName:       'custom8'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   783
            Width:   0; Height:  0; imageWidth: 0; imageHeight: 0; saveSurf: true; critical: true; checkSum: true; priority: tpLow; getDimensions: true; getImageDimensions: true), // sprCustom8
13404
8ce83caec236 Make mine active/hunting glow a bit more obvious. Add frozen sprite, increase ice beam mine "hit" radius a bit
nemo
parents: 13370
diff changeset
   784
            (FileName:      'FrozenAirMine'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
13405
4c813650fe17 make the mine slippery too since it has the ice finish - add a gmDelete to the gear if you want it to *not* explode when hit ☺
nemo
parents: 13404
diff changeset
   785
            Width:  32; Height: 32; imageWidth: 32; imageHeight: 32; saveSurf: true; critical: true; checkSum: true; priority: tpHighest; getDimensions: false; getImageDimensions: true), // sprFrozenAirMine
10792
f6df7d6e18e5 Toss in scaled down underwater SD mine as "air mine" pending, er, cybernetic butterflies or whatever
nemo
parents: 10789
diff changeset
   786
            (FileName:      'AirMine'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   787
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true), // sprAirMine
11174
5cadfe82eaf6 airmine hand sprite by wuzzy. totally temporary...
nemo
parents: 11164
diff changeset
   788
            (FileName:  'amAirMine'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   789
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true), // sprHandAirMine
12158
4d1250ca68ac added CloudsL and FlakeL
KoBeWi <kobewi4e@gmail.com>
parents: 12119
diff changeset
   790
            (FileName:      'FlakeL'; Path:ptCurrTheme; AltPath: ptNone; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   791
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprFlakeL
12158
4d1250ca68ac added CloudsL and FlakeL
KoBeWi <kobewi4e@gmail.com>
parents: 12119
diff changeset
   792
            (FileName:    'SDFlakeL'; Path: ptCurrTheme; AltPath: ptSuddenDeath; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   793
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSDFlakeL
12158
4d1250ca68ac added CloudsL and FlakeL
KoBeWi <kobewi4e@gmail.com>
parents: 12119
diff changeset
   794
            (FileName:     'CloudsL'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   795
            Width: 256; Height:128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprCloudL
12158
4d1250ca68ac added CloudsL and FlakeL
KoBeWi <kobewi4e@gmail.com>
parents: 12119
diff changeset
   796
            (FileName:     'SDCloudsL'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil;
12701
79e13080b9db mark up sprites for uStore loading. critical is for ones needed for proper gameplay, checksum is for ones where the game will desync if they don't match. will add checksumming next...
nemo
parents: 12687
diff changeset
   797
            Width: 256; Height:128; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: false; checkSum: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprSDCloudL
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13777
diff changeset
   798
            // TODO: Rename creeper image
12192
de9144250c37 Add gear gtDuck: rubber duck
Wuzzy <almikes@aol.com>
parents: 12190
diff changeset
   799
            (FileName:     'Duck'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil;
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13777
diff changeset
   800
            Width:  32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprCreeper
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13777
diff changeset
   801
            // TODO: Rename creeper hand image
12193
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
   802
            (FileName:    'amDuck'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13777
diff changeset
   803
            Width:  64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true), // sprHandCreeper
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
   804
            (FileName: 'amMinigun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
   805
            Width:  64; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; critical: true; checkSum: false; priority: tpMedium; getDimensions: false; getImageDimensions: true) // sprMinigun
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   806
            );
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   807
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
   808
const
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   809
    Wavez: array [TWave] of record
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   810
            Sprite: TSprite;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   811
            FramesCount: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   812
            Interval: Longword;
6891
ab9843957664 Improve rendering of function types, ranges, and more
unc0rr
parents: 6890
diff changeset
   813
            cmd: string[31];
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   814
            Voice: TSound;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   815
            VoiceDelay: LongWord;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   816
            end = (
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   817
            (Sprite:   sprKowtow; FramesCount: 12; Interval: 125; cmd: '/rollup'; Voice: sndNone; VoiceDelay: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   818
            (Sprite:      sprSad; FramesCount: 14; Interval: 125; cmd: '/sad'; Voice: sndNone; VoiceDelay: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   819
            (Sprite:     sprWave; FramesCount: 16; Interval: 125; cmd: '/wave'; Voice: sndHello; VoiceDelay: 5),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   820
            (Sprite:   sprHurrah; FramesCount: 14; Interval: 125; cmd: '/hurrah'; Voice: sndNone; VoiceDelay: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   821
            (Sprite: sprLemonade; FramesCount: 24; Interval: 125; cmd: '/ilovelotsoflemonade'; Voice: sndNone; VoiceDelay: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   822
            (Sprite:    sprShrug; FramesCount: 24; Interval: 125; cmd: '/shrug'; Voice: sndNone; VoiceDelay: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   823
            (Sprite:   sprJuggle; FramesCount: 49; Interval:  38; cmd: '/juggle'; Voice: sndNone; VoiceDelay: 0)
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   824
            );
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   825
11164
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   826
type
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   827
    TAmmozRec = record
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   828
            NameId: TAmmoStrId;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   829
            NameTex: PTexture;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   830
            Probability, NumberInCase: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   831
            Ammo: TAmmo;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   832
            Slot: 0..cMaxSlotIndex;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   833
            TimeAfterTurn: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   834
            minAngle, maxAngle: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   835
            isDamaging: boolean;
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 10009 9954
diff changeset
   836
            SkipTurns: LongWord;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   837
            PosCount: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   838
            PosSprite: TSprite;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   839
            ejectX, ejectY: Longint;
11164
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   840
            end;
13455
38814954a248 Fix GetAmmo getting wrong ammo count
Wuzzy <Wuzzy2@mail.ru>
parents: 13405
diff changeset
   841
    TAmmoCounts = array[TAmmoType] of Longword;
11164
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   842
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   843
var
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   844
    Ammoz: array [TAmmoType] of TAmmozRec;
13455
38814954a248 Fix GetAmmo getting wrong ammo count
Wuzzy <Wuzzy2@mail.ru>
parents: 13405
diff changeset
   845
    InitialAmmoCounts: TAmmoCounts;
11164
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   846
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   847
const
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
   848
    AmmozInit: array [TAmmoType] of TAmmozRec = (
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   849
            (NameId: sidNothing;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   850
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   851
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   852
            NumberInCase: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   853
            Ammo: (Propz: ammoprop_NoCrosshair or ammoprop_DontHold or ammoprop_Effect;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   854
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   855
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   856
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   857
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   858
                AmmoType: amNothing;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
   859
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
   860
                Bounciness: defaultBounciness);
12708
5ef6780b1c05 Move amNothing from F1 slot to new special hidden weapon slot. Move amDuck to F1
Wuzzy <almikes@aol.com>
parents: 12701
diff changeset
   861
            Slot: cHiddenSlotIndex;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   862
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   863
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   864
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   865
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   866
            SkipTurns: 9999;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   867
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   868
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   869
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   870
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   871
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   872
// Grenade
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   873
            (NameId: sidGrenade;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   874
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   875
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   876
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   877
            Ammo: (Propz: ammoprop_Timerable or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   878
                          ammoprop_Power or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   879
                          ammoprop_AltUse or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
   880
                          ammoprop_SetBounce or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
   881
                          ammoprop_NeedUpDown;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   882
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   883
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   884
                Timer: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   885
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   886
                AmmoType: amGrenade;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
   887
                AttackVoice: sndCover;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
   888
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   889
            Slot: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   890
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   891
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   892
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   893
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   894
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   895
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   896
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   897
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   898
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   899
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   900
// ClusterBomb
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   901
            (NameId: sidClusterBomb;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   902
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   903
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   904
            NumberInCase: 3;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   905
            Ammo: (Propz: ammoprop_Timerable or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   906
                          ammoprop_Power or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   907
                          ammoprop_AltUse or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
   908
                          ammoprop_SetBounce or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
   909
                          ammoprop_NeedUpDown;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   910
                Count: 5;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   911
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   912
                Timer: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   913
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   914
                AmmoType: amClusterBomb;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
   915
                AttackVoice: sndCover;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
   916
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   917
            Slot: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   918
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   919
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   920
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   921
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   922
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   923
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   924
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   925
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   926
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   927
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   928
// Bazooka
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   929
            (NameId: sidBazooka;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   930
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   931
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   932
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   933
            Ammo: (Propz: ammoprop_Power or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
   934
                          ammoprop_AltUse or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
   935
                          ammoprop_NeedUpDown;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   936
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   937
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   938
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   939
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   940
                AmmoType: amBazooka;
14016
09e2e52aa025 Add 2 taunts: Fire, WatchThis (attack voice for some weapons)
Wuzzy <Wuzzy2@mail.ru>
parents: 13996
diff changeset
   941
                AttackVoice: sndFire;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
   942
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   943
            Slot: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   944
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   945
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   946
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   947
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   948
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   949
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   950
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   951
            ejectX: 0; //20;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
   952
            ejectY: -6),
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   953
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   954
// Bee
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   955
            (NameId: sidBee;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   956
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   957
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   958
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   959
            Ammo: (Propz: ammoprop_Power or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
   960
                          ammoprop_NeedTarget or
12687
ebb32d3021a5 Fix cursor still being visible after using piano strike
Wuzzy <almikes@aol.com>
parents: 12668
diff changeset
   961
                          ammoprop_NoTargetAfter or
14514
5ac181cb2396 Fix bee targeting fail across wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 14477
diff changeset
   962
                          ammoprop_NoWrapTarget or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
   963
                          ammoprop_DontHold or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
   964
                          ammoprop_NeedUpDown;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   965
                Count: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   966
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   967
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   968
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   969
                AmmoType: amBee;
14016
09e2e52aa025 Add 2 taunts: Fire, WatchThis (attack voice for some weapons)
Wuzzy <Wuzzy2@mail.ru>
parents: 13996
diff changeset
   970
                AttackVoice: sndFire;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
   971
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   972
            Slot: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   973
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   974
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   975
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   976
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   977
            SkipTurns: 0;
5372
7283bc768228 Change bee pos sprite, make aiming napalm a little easier, adjust napalm flames to be more centred on the target
nemo
parents: 5357
diff changeset
   978
            PosCount: 2;
7283bc768228 Change bee pos sprite, make aiming napalm a little easier, adjust napalm flames to be more centred on the target
nemo
parents: 5357
diff changeset
   979
            PosSprite: sprTargetBee;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   980
            ejectX: 0; //16;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   981
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   982
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   983
// Shotgun
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   984
            (NameId: sidShotgun;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   985
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   986
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   987
            NumberInCase: 1;
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
   988
            Ammo: (Propz: ammoprop_ForwMsgs or
9573
49bca2fabbd3 Oh, dudes :(
unc0rr
parents: 9557
diff changeset
   989
                          ammoprop_NeedUpDown or
49bca2fabbd3 Oh, dudes :(
unc0rr
parents: 9557
diff changeset
   990
                          ammoprop_DoesntStopTimerInMultiShoot;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   991
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   992
                NumPerTurn: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   993
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   994
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   995
                AmmoType: amShotgun;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
   996
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
   997
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   998
            Slot: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
   999
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1000
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1001
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1002
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1003
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1004
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1005
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1006
            ejectX: 0; //26;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  1007
            ejectY: -6),
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1008
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1009
// PickHammer
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1010
            (NameId: sidPickHammer;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1011
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1012
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1013
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1014
            Ammo: (Propz: ammoprop_ForwMsgs or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1015
                          ammoprop_AttackInMove or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1016
                          ammoprop_NoCrosshair or
11915
16ce211010cf Add ammoprop for blowtorch and pickhammer for not stopping timer in inf attack
Wuzzy <almikes@aol.com>
parents: 11913
diff changeset
  1017
                          ammoprop_DontHold or
16ce211010cf Add ammoprop for blowtorch and pickhammer for not stopping timer in inf attack
Wuzzy <almikes@aol.com>
parents: 11913
diff changeset
  1018
                          ammoprop_DoesntStopTimerWhileAttackingInInfAttackMode;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1019
                Count: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1020
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1021
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1022
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1023
                AmmoType: amPickHammer;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1024
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1025
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1026
            Slot: 6;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1027
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1028
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1029
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1030
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1031
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1032
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1033
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1034
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1035
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1036
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1037
// Skip
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1038
            (NameId: sidSkip;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1039
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1040
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1041
            NumberInCase: 1;
9839
96e3914e8154 Allow skip in move
unc0rr
parents: 9769
diff changeset
  1042
            Ammo: (Propz: ammoprop_NoCrosshair or
96e3914e8154 Allow skip in move
unc0rr
parents: 9769
diff changeset
  1043
                          ammoprop_AttackInMove or
12649
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12324
diff changeset
  1044
                          ammoprop_DontHold or
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12324
diff changeset
  1045
                          ammoprop_ForceTurnEnd;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1046
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1047
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1048
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1049
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1050
                AmmoType: amSkip;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1051
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1052
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1053
            Slot: 9;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1054
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1055
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1056
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1057
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1058
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1059
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1060
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1061
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1062
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1063
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1064
// Rope
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1065
            (NameId: sidRope;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1066
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1067
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1068
            NumberInCase: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1069
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1070
                          ammoprop_ForwMsgs or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1071
                          ammoprop_AttackInMove or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1072
                          ammoprop_Utility or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1073
                          ammoprop_AltAttack or
9573
49bca2fabbd3 Oh, dudes :(
unc0rr
parents: 9557
diff changeset
  1074
                          ammoprop_NeedUpDown or
49bca2fabbd3 Oh, dudes :(
unc0rr
parents: 9557
diff changeset
  1075
                          ammoprop_DoesntStopTimerWhileAttacking;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1076
                    Count: 5;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1077
                    NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1078
                    Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1079
                    Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1080
                    AmmoType: amRope;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1081
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1082
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1083
            Slot: 7;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1084
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1085
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1086
            maxAngle: cMaxAngle div 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1087
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1088
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1089
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1090
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1091
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1092
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1093
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1094
// Mine
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1095
            (NameId: sidMine;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1096
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1097
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1098
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1099
            Ammo: (Propz: ammoprop_NoCrosshair or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1100
                          ammoprop_AttackInMove or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1101
                          ammoprop_DontHold or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1102
                          ammoprop_AltUse or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1103
                          ammoprop_SetBounce;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1104
                Count: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1105
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1106
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1107
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1108
                AmmoType: amMine;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1109
                AttackVoice: sndLaugh;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1110
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1111
            Slot: 4;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1112
            TimeAfterTurn: 5000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1113
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1114
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1115
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1116
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1117
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1118
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1119
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1120
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1121
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1122
// DEagle
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1123
            (NameId: sidDEagle;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1124
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1125
            Probability: 20;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1126
            NumberInCase: 2;
9573
49bca2fabbd3 Oh, dudes :(
unc0rr
parents: 9557
diff changeset
  1127
            Ammo: (Propz: ammoprop_NeedUpDown or ammoprop_DoesntStopTimerInMultiShoot;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1128
                Count: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1129
                NumPerTurn: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1130
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1131
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1132
                AmmoType: amDEagle;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1133
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1134
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1135
            Slot: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1136
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1137
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1138
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1139
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1140
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1141
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1142
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1143
            ejectX: 0; //23;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  1144
            ejectY: -6),
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1145
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1146
// Dynamite
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1147
            (NameId: sidDynamite;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1148
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1149
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1150
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1151
            Ammo: (Propz: ammoprop_NoCrosshair or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1152
                          ammoprop_AttackInMove or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1153
                          ammoprop_DontHold or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1154
                          ammoprop_AltUse;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1155
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1156
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1157
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1158
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1159
                AmmoType: amDynamite;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1160
                AttackVoice: sndLaugh;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1161
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1162
            Slot: 4;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1163
            TimeAfterTurn: 5000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1164
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1165
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1166
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1167
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1168
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1169
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1170
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1171
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1172
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1173
// FirePunch
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1174
            (NameId: sidFirePunch;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1175
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1176
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1177
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1178
            Ammo: (Propz: ammoprop_NoCrosshair or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1179
                          ammoprop_ForwMsgs or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1180
                          ammoprop_AttackInMove;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1181
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1182
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1183
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1184
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1185
                AmmoType: amFirePunch;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1186
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1187
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1188
            Slot: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1189
            TimeAfterTurn: 3000;
6894
555a8d8db228 Some more progress with pas2c
unc0rr
parents: 6891
diff changeset
  1190
            minAngle: 0;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1191
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1192
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1193
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1194
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1195
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1196
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1197
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1198
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1199
// Whip
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1200
            (NameId: sidWhip;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1201
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1202
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1203
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1204
            Ammo: (Propz: ammoprop_NoCrosshair;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1205
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1206
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1207
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1208
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1209
                AmmoType: amWhip;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1210
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1211
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1212
            Slot: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1213
            TimeAfterTurn: 3000;
6894
555a8d8db228 Some more progress with pas2c
unc0rr
parents: 6891
diff changeset
  1214
            minAngle: 0;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1215
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1216
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1217
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1218
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1219
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1220
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1221
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1222
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1223
// BaseballBat
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1224
            (NameId: sidBaseballBat;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1225
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1226
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1227
            NumberInCase: 1;
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1228
            Ammo: (Propz: ammoprop_DontHold or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1229
                          ammoprop_NeedUpDown;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1230
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1231
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1232
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1233
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1234
                AmmoType: amBaseballBat;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1235
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1236
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1237
            Slot: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1238
            TimeAfterTurn: 5000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1239
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1240
            maxAngle: cMaxAngle div 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1241
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1242
            SkipTurns: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1243
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1244
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1245
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1246
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1247
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1248
// Parachute
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1249
            (NameId: sidParachute;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1250
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1251
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1252
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1253
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1254
                          ammoprop_ForwMsgs or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1255
                          ammoprop_AttackInMove or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1256
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1257
                          ammoprop_DontHold or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1258
                          ammoprop_Utility or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1259
                          ammoprop_AltAttack or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1260
                          ammoprop_NeedUpDown;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1261
                Count: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1262
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1263
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1264
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1265
                AmmoType: amParachute;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1266
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1267
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1268
            Slot: 7;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1269
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1270
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1271
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1272
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1273
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1274
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1275
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1276
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1277
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1278
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1279
// AirAttack
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1280
            (NameId: sidAirAttack;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1281
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1282
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1283
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1284
            Ammo: (Propz: ammoprop_NoCrosshair or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1285
                          ammoprop_NeedTarget or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1286
                          ammoprop_AttackingPut or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1287
                          ammoprop_DontHold or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1288
                          ammoprop_NotBorder;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1289
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1290
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1291
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1292
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1293
                AmmoType: amAirAttack;
14565
833ab5b359e5 Deny air attack in bounce world edge if target is in "impossible" position
Wuzzy <Wuzzy2@mail.ru>
parents: 14553
diff changeset
  1294
                AttackVoice: sndNone; // handled in doStepAirAttack
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1295
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1296
            Slot: 5;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1297
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1298
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1299
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1300
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1301
            SkipTurns: 5;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1302
            PosCount: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1303
            PosSprite: sprAmAirplane;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1304
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1305
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1306
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1307
// MineStrike
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1308
            (NameId: sidMineStrike;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1309
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1310
            Probability: 200;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1311
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1312
            Ammo: (Propz: ammoprop_NoCrosshair or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1313
                          ammoprop_NeedTarget or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1314
                          ammoprop_AttackingPut or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1315
                          ammoprop_DontHold or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1316
                          ammoprop_NotBorder;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1317
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1318
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1319
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1320
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1321
                AmmoType: amMineStrike;
14565
833ab5b359e5 Deny air attack in bounce world edge if target is in "impossible" position
Wuzzy <Wuzzy2@mail.ru>
parents: 14553
diff changeset
  1322
                AttackVoice: sndNone; // handled in doStepAirAttack
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1323
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1324
            Slot: 5;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1325
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1326
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1327
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1328
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1329
            SkipTurns: 5;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1330
            PosCount: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1331
            PosSprite: sprAmAirplane;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1332
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1333
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1334
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1335
// BlowTorch
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1336
            (NameId: sidBlowTorch;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1337
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1338
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1339
            NumberInCase: 2;
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1340
            Ammo: (Propz: ammoprop_ForwMsgs or
11915
16ce211010cf Add ammoprop for blowtorch and pickhammer for not stopping timer in inf attack
Wuzzy <almikes@aol.com>
parents: 11913
diff changeset
  1341
                          ammoprop_NeedUpDown or
16ce211010cf Add ammoprop for blowtorch and pickhammer for not stopping timer in inf attack
Wuzzy <almikes@aol.com>
parents: 11913
diff changeset
  1342
                          ammoprop_DoesntStopTimerWhileAttackingInInfAttackMode;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1343
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1344
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1345
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1346
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1347
                AmmoType: amBlowTorch;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1348
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1349
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1350
            Slot: 6;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1351
            TimeAfterTurn: 3000;
8617
e7bea88096d2 So. A while ago, while trying to prevent hogs blowtorching getting turned around, unc0rr altered the old range of blowtorch from 1/8th of 180° up or down, to a 4° gain in upwards and a -4° loss in downwards. He also made it so that starting tunnels could fail to erase sufficient terrain, trapping hogs. Here are a couple of workarounds to more closely approximate old behaviour (do some initial erasure, adjust min/max angles)
nemo
parents: 8596
diff changeset
  1352
            minAngle: 804;
e7bea88096d2 So. A while ago, while trying to prevent hogs blowtorching getting turned around, unc0rr altered the old range of blowtorch from 1/8th of 180° up or down, to a 4° gain in upwards and a -4° loss in downwards. He also made it so that starting tunnels could fail to erase sufficient terrain, trapping hogs. Here are a couple of workarounds to more closely approximate old behaviour (do some initial erasure, adjust min/max angles)
nemo
parents: 8596
diff changeset
  1353
            maxAngle: 1327;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1354
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1355
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1356
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1357
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1358
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1359
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1360
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1361
// Girder
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1362
            (NameId: sidGirder;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1363
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1364
            Probability: 150;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1365
            NumberInCase: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1366
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1367
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1368
                          ammoprop_NeedTarget or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1369
                          ammoprop_Utility or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1370
                          ammoprop_AttackingPut;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1371
                    Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1372
                    NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1373
                    Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1374
                    Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1375
                    AmmoType: amGirder;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1376
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1377
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1378
            Slot: 6;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1379
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1380
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1381
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1382
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1383
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1384
            PosCount: 8;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1385
            PosSprite: sprAmGirder;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1386
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1387
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1388
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1389
// Teleport
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1390
            (NameId: sidTeleport;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1391
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1392
            Probability: 200;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1393
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1394
            Ammo: (Propz: ammoprop_ForwMsgs or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1395
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1396
                          ammoprop_NeedTarget or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1397
                          ammoprop_AttackingPut or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1398
                          ammoprop_Utility or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1399
                          ammoprop_DontHold;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1400
                Count: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1401
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1402
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1403
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1404
                AmmoType: amTeleport;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1405
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1406
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1407
            Slot: 7;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1408
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1409
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1410
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1411
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1412
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1413
            PosCount: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1414
            PosSprite: sprAmTeleport;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1415
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1416
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1417
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1418
// Switch
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1419
            (NameId: sidSwitch;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1420
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1421
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1422
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1423
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1424
                          ammoprop_ForwMsgs or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1425
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1426
                          ammoprop_Utility or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1427
                          ammoprop_DontHold;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1428
                    Count: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1429
                    NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1430
                    Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1431
                    Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1432
                    AmmoType: amSwitch;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1433
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1434
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1435
            Slot: 9;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1436
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1437
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1438
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1439
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1440
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1441
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1442
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1443
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1444
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1445
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1446
// Mortar
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1447
            (NameId: sidMortar;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1448
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1449
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1450
            NumberInCase: 4;
11212
cd9a6fd65c82 - Mortar, Mudball and Land Spray need up/down buttons on mobile
antonc27 <antonc27@mail.ru>
parents: 11210
diff changeset
  1451
            Ammo: (Propz: ammoprop_NeedUpDown;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1452
                Count: 4;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1453
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1454
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1455
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1456
                AmmoType: amMortar;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1457
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1458
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1459
            Slot: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1460
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1461
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1462
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1463
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1464
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1465
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1466
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1467
            ejectX: 0; //20;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  1468
            ejectY: -6),
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1469
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1470
// Kamikaze
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1471
            (NameId: sidKamikaze;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1472
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1473
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1474
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1475
            Ammo: (Propz: ammoprop_ForwMsgs or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1476
                          ammoprop_DontHold or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1477
                          ammoprop_NeedUpDown or
12649
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12324
diff changeset
  1478
                          ammoprop_AttackInMove or
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12324
diff changeset
  1479
                          ammoprop_ForceTurnEnd;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1480
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1481
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1482
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1483
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1484
                AmmoType: amKamikaze;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1485
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1486
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1487
            Slot: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1488
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1489
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1490
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1491
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1492
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1493
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1494
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1495
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1496
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1497
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1498
// Cake
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1499
            (NameId: sidCake;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1500
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1501
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1502
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1503
            Ammo: (Propz: ammoprop_ForwMsgs or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1504
                          ammoprop_NoCrosshair or
7416
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7414
diff changeset
  1505
                          ammoprop_DontHold or
2f2f78fc65a3 AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents: 7414
diff changeset
  1506
                          ammoprop_Track;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1507
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1508
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1509
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1510
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1511
                AmmoType: amCake;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1512
                AttackVoice: sndLaugh;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1513
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1514
            Slot: 4;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1515
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1516
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1517
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1518
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1519
            SkipTurns: 4;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1520
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1521
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1522
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1523
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1524
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1525
// Seduction
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1526
            (NameId: sidSeduction;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1527
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1528
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1529
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1530
            Ammo: (Propz: ammoprop_ForwMsgs or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1531
                          ammoprop_DontHold or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1532
                          ammoprop_NoCrosshair;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1533
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1534
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1535
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1536
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1537
                AmmoType: amSeduction;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1538
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1539
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1540
            Slot: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1541
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1542
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1543
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1544
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1545
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1546
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1547
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1548
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1549
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1550
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1551
// Watermelon
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1552
            (NameId: sidWatermelon;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1553
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1554
            Probability: 400;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1555
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1556
            Ammo: (Propz: ammoprop_Timerable or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1557
                          ammoprop_Power or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1558
                          ammoprop_NeedUpDown or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1559
                          ammoprop_AltUse;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1560
                Count: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1561
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1562
                Timer: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1563
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1564
                AmmoType: amWatermelon;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1565
                AttackVoice: sndMelon;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1566
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1567
            Slot: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1568
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1569
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1570
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1571
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1572
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1573
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1574
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1575
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1576
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1577
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1578
// HellishBomb ("Hellish Hand-Grenade")
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1579
            (NameId: sidHellishBomb;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1580
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1581
            Probability: 400;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1582
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1583
            Ammo: (Propz: ammoprop_Power or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1584
                          ammoprop_NeedUpDown or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1585
                          ammoprop_AltUse;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1586
                Count: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1587
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1588
                Timer: 5000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1589
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1590
                AmmoType: amHellishBomb;
14016
09e2e52aa025 Add 2 taunts: Fire, WatchThis (attack voice for some weapons)
Wuzzy <Wuzzy2@mail.ru>
parents: 13996
diff changeset
  1591
                AttackVoice: sndWatchThis;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1592
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1593
            Slot: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1594
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1595
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1596
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1597
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1598
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1599
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1600
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1601
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1602
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1603
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1604
// Napalm
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1605
            (NameId: sidNapalm;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1606
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1607
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1608
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1609
            Ammo: (Propz: ammoprop_NoCrosshair or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1610
                          ammoprop_NeedTarget or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1611
                          ammoprop_AttackingPut or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1612
                          ammoprop_DontHold or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1613
                          ammoprop_NotBorder;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1614
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1615
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1616
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1617
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1618
                AmmoType: amNapalm;
14565
833ab5b359e5 Deny air attack in bounce world edge if target is in "impossible" position
Wuzzy <Wuzzy2@mail.ru>
parents: 14553
diff changeset
  1619
                AttackVoice: sndNone; // handled in doStepAirAttack
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1620
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1621
            Slot: 5;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1622
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1623
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1624
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1625
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1626
            SkipTurns: 7;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1627
            PosCount: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1628
            PosSprite: sprAmAirplane;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1629
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1630
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1631
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1632
// Drill ("Drill Rocket")
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1633
            (NameId: sidDrill;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1634
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1635
            Probability: 300;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1636
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1637
            Ammo: (Propz: ammoprop_Power or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1638
                          ammoprop_NeedUpDown or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1639
                          ammoprop_AltUse;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1640
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1641
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1642
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1643
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1644
                AmmoType: amDrill;
14016
09e2e52aa025 Add 2 taunts: Fire, WatchThis (attack voice for some weapons)
Wuzzy <Wuzzy2@mail.ru>
parents: 13996
diff changeset
  1645
                AttackVoice: sndFire;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1646
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1647
            Slot: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1648
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1649
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1650
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1651
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1652
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1653
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1654
            PosSprite: sprDrill;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1655
            ejectX: 0; //20;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  1656
            ejectY: -6),
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1657
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1658
// Ballgun
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1659
            (NameId: sidBallgun;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1660
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1661
            Probability: 400;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1662
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1663
            Ammo: (Propz: ammoprop_ForwMsgs or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1664
                          ammoprop_NeedUpDown or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1665
                          ammoprop_DontHold;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1666
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1667
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1668
                Timer: 5001;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1669
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1670
                AmmoType: amBallgun;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1671
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1672
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1673
            Slot: 4;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1674
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1675
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1676
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1677
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1678
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1679
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1680
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1681
            ejectX: 0; //20;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  1682
            ejectY: -3),
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1683
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1684
// RC-Plane
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1685
            (NameId: sidRCPlane;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1686
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1687
            Probability: 200;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1688
            NumberInCase: 1;
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1689
            Ammo: (Propz: ammoprop_ForwMsgs or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1690
                          ammoprop_NeedUpDown{ or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1691
                          ammoprop_DontHold or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1692
                          ammoprop_AltAttack};
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1693
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1694
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1695
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1696
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1697
                AmmoType: amRCPlane;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1698
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1699
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1700
            Slot: 4;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1701
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1702
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1703
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1704
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1705
            SkipTurns: 4;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1706
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1707
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1708
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1709
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1710
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1711
// LowGravity
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1712
            (NameId: sidLowGravity;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1713
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1714
            Probability: 20;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1715
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1716
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1717
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1718
                          ammoprop_DontHold or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1719
                          ammoprop_AltUse or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1720
                          ammoprop_Utility or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1721
                          ammoprop_Effect;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1722
                    Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1723
                    NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1724
                    Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1725
                    Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1726
                    AmmoType: amLowGravity;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1727
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1728
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1729
            Slot: 9;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1730
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1731
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1732
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1733
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1734
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1735
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1736
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1737
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1738
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1739
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1740
// ExtraDamage
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1741
            (NameId: sidExtraDamage;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1742
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1743
            Probability: 15;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1744
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1745
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1746
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1747
                          ammoprop_DontHold or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1748
                          ammoprop_AltUse or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1749
                          ammoprop_Utility or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1750
                          ammoprop_Effect;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1751
                    Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1752
                    NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1753
                    Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1754
                    Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1755
                    AmmoType: amExtraDamage;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1756
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1757
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1758
            Slot: 9;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1759
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1760
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1761
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1762
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1763
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1764
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1765
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1766
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1767
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1768
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1769
// Invulnerable
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1770
            (NameId: sidInvulnerable;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1771
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1772
            Probability: 20;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1773
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1774
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1775
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1776
                          ammoprop_DontHold or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1777
                          ammoprop_AltUse or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1778
                          ammoprop_Utility or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1779
                          ammoprop_Effect;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1780
                    Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1781
                    NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1782
                    Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1783
                    Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1784
                    AmmoType: amInvulnerable;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1785
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1786
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1787
            Slot: 8;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1788
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1789
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1790
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1791
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1792
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1793
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1794
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1795
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1796
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1797
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1798
// ExtraTime
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1799
            (NameId: sidExtraTime;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1800
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1801
            Probability: 30;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1802
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1803
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1804
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1805
                          ammoprop_DontHold or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1806
                          ammoprop_AltUse or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1807
                          ammoprop_Utility or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1808
                          ammoprop_Effect;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1809
                    Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1810
                    NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1811
                    Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1812
                    Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1813
                    AmmoType: amExtraTime;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1814
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1815
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1816
            Slot: 9;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1817
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1818
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1819
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1820
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1821
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1822
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1823
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1824
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1825
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1826
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1827
// LaserSight
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1828
            (NameId: sidLaserSight;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1829
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1830
            Probability: 15;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1831
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1832
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1833
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1834
                          ammoprop_DontHold or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1835
                          ammoprop_AltUse or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1836
                          ammoprop_Utility or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1837
                          ammoprop_NeedUpDown or
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1838
                          ammoprop_Effect;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1839
                    Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1840
                    NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1841
                    Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1842
                    Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1843
                    AmmoType: amLaserSight;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1844
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1845
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1846
            Slot: 8;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1847
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1848
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1849
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1850
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1851
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1852
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1853
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1854
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1855
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1856
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1857
// Vampiric
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1858
            (NameId: sidVampiric;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1859
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1860
            Probability: 15;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1861
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1862
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1863
                          ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1864
                          ammoprop_DontHold or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1865
                          ammoprop_AltUse or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1866
                          ammoprop_Utility or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1867
                          ammoprop_Effect;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1868
                    Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1869
                    NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1870
                    Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1871
                    Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1872
                    AmmoType: amVampiric;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1873
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1874
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1875
            Slot: 8;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1876
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1877
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1878
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1879
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1880
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1881
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1882
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1883
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1884
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1885
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1886
// SniperRifle
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1887
            (NameId: sidSniperRifle;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1888
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1889
            Probability: 20;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1890
            NumberInCase: 2;
9573
49bca2fabbd3 Oh, dudes :(
unc0rr
parents: 9557
diff changeset
  1891
            Ammo: (Propz: ammoprop_NeedUpDown or
7197
5a9775b97c7e - TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents: 7103
diff changeset
  1892
                    ammoprop_OscAim or
9573
49bca2fabbd3 Oh, dudes :(
unc0rr
parents: 9557
diff changeset
  1893
                    ammoprop_NoMoveAfter or
49bca2fabbd3 Oh, dudes :(
unc0rr
parents: 9557
diff changeset
  1894
                    ammoprop_DoesntStopTimerInMultiShoot;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1895
                Count: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1896
                NumPerTurn: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1897
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1898
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1899
                AmmoType: amSniperRifle;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1900
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1901
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1902
            Slot: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1903
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1904
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1905
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1906
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1907
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1908
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1909
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1910
            ejectX: 0; //40;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  1911
            ejectY: -5),
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1912
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1913
// Jetpack ("Flying Saucer")
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1914
            (NameId: sidJetpack;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1915
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1916
            Probability: 20;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1917
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1918
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1919
                          ammoprop_ForwMsgs or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1920
                          ammoprop_AttackInMove or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1921
                          ammoprop_DontHold or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1922
                          ammoprop_Utility or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1923
                          ammoprop_NeedUpDown or
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1924
                          ammoprop_AltAttack;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1925
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1926
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1927
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1928
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1929
                AmmoType: amJetpack;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1930
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1931
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1932
            Slot: 7;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1933
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1934
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1935
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1936
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1937
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1938
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1939
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1940
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1941
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1942
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1943
// Molotov
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1944
            (NameId: sidMolotov;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1945
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1946
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1947
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  1948
            Ammo: (Propz: ammoprop_Power or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1949
                          ammoprop_NeedUpDown or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1950
                          ammoprop_AltUse;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1951
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1952
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1953
                Timer: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1954
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1955
                AmmoType: amMolotov;
14018
039a9a6d68eb Use sndWatchThis for molotov attack
Wuzzy <Wuzzy2@mail.ru>
parents: 14016
diff changeset
  1956
                AttackVoice: sndWatchThis;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1957
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1958
            Slot: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1959
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1960
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1961
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1962
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1963
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1964
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1965
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1966
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1967
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1968
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1969
// Birdy
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1970
            (NameId: sidBirdy;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1971
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1972
            Probability: 20;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1973
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1974
            Ammo: (Propz: ammoprop_ForwMsgs or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1975
                          ammoprop_NoCrosshair or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  1976
                          ammoprop_NeedUpDown or
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1977
                          ammoprop_DontHold;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1978
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1979
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1980
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1981
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1982
                AmmoType: amBirdy;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  1983
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  1984
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1985
            Slot: 7;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1986
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1987
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1988
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1989
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1990
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1991
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1992
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1993
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1994
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1995
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1996
// PortalGun
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1997
            (NameId: sidPortalGun;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1998
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  1999
            Probability: 20;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2000
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2001
            Ammo: (Propz: ammoprop_NoRoundEnd or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2002
                          ammoprop_AttackInMove or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2003
                          ammoprop_DontHold or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  2004
                          ammoprop_NeedUpDown or
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2005
                          ammoprop_Utility;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2006
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2007
                NumPerTurn: 3;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2008
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2009
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2010
                AmmoType: amPortalGun;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2011
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2012
                Bounciness: defaultBounciness);
9768
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2013
            Slot: 7;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2014
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2015
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2016
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2017
            isDamaging: false;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2018
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2019
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2020
            PosSprite: sprWater;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  2021
            ejectX: -5; //29;
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  2022
            ejectY: -7),
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2023
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2024
// Piano
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2025
            (NameId: sidPiano;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2026
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2027
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2028
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2029
            Ammo: (Propz: ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2030
                            ammoprop_NeedTarget or
14566
85921db6f7c3 Disallow placement of piano beyond bounce world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 14565
diff changeset
  2031
                            // NoTargetAfter is handled manually in doStepPiano
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2032
                            ammoprop_AttackingPut or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2033
                            ammoprop_DontHold or
12649
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12324
diff changeset
  2034
                            ammoprop_NotBorder or
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12324
diff changeset
  2035
                            ammoprop_ForceTurnEnd;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2036
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2037
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2038
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2039
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2040
                AmmoType: amPiano;
14566
85921db6f7c3 Disallow placement of piano beyond bounce world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 14565
diff changeset
  2041
                AttackVoice: sndNone; // handled in doStepPiano
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2042
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2043
            Slot: 5;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2044
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2045
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2046
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2047
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2048
            SkipTurns: 7;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2049
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2050
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2051
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2052
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2053
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2054
// GasBomb
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2055
            (NameId: sidGasBomb;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2056
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2057
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2058
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  2059
            Ammo: (Propz: ammoprop_Timerable or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  2060
                          ammoprop_Power or
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  2061
                          ammoprop_AltUse or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  2062
                          ammoprop_NeedUpDown or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  2063
                          ammoprop_SetBounce;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2064
                Count: AMMO_INFINITE;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2065
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2066
                Timer: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2067
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2068
                AmmoType: amGasBomb;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2069
                AttackVoice: sndCover;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2070
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2071
            Slot: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2072
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2073
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2074
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2075
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2076
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2077
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2078
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2079
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2080
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2081
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2082
// SineGun
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2083
            (NameId: sidSineGun;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2084
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2085
            Probability: 20;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2086
            NumberInCase: 2;
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  2087
            Ammo: (Propz: ammoprop_AttackInMove or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  2088
                          ammoprop_NeedUpDown;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2089
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2090
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2091
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2092
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2093
                AmmoType: amSineGun;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2094
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2095
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2096
            Slot: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2097
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2098
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2099
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2100
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2101
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2102
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2103
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2104
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2105
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2106
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2107
// Flamethrower
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2108
            (NameId: sidFlamethrower;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2109
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2110
            Probability: 20;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2111
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  2112
            Ammo: (Propz: ammoprop_ForwMsgs or
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  2113
                          ammoprop_NeedUpDown or
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  2114
                          ammoprop_DontHold;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2115
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2116
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2117
                Timer: 5001;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2118
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2119
                AmmoType: amFlamethrower;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2120
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2121
                Bounciness: defaultBounciness);
14306
12e7442e4034 Swap a few weapons in ammo menu to get a nice 6×10 grid
Wuzzy <Wuzzy2@mail.ru>
parents: 14282
diff changeset
  2122
            Slot: 6;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2123
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2124
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2125
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2126
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2127
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2128
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2129
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2130
            ejectX: 0; //20;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  2131
            ejectY: -3),
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2132
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2133
// Sticky Mine
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2134
            (NameId: sidSMine;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2135
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2136
            Probability: 100;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2137
            NumberInCase: 1;
6941
228c0ab239f1 add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents: 6894
diff changeset
  2138
            Ammo: (Propz: ammoprop_Power or
7780
a066a52411bc ok. for some reason, this now works without problems. weird. (reenable smine/cleaver alt)
nemo
parents: 7758
diff changeset
  2139
                          ammoprop_AltUse or
a066a52411bc ok. for some reason, this now works without problems. weird. (reenable smine/cleaver alt)
nemo
parents: 7758
diff changeset
  2140
                          ammoprop_NeedUpDown;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2141
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2142
                NumPerTurn: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2143
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2144
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2145
                AmmoType: amSMine;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2146
                AttackVoice: sndLaugh;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2147
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2148
            Slot: 4;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2149
            TimeAfterTurn: 5000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2150
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2151
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2152
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2153
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2154
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2155
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2156
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2157
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2158
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2159
// Hammer
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2160
            (NameId: sidHammer;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2161
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2162
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2163
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2164
            Ammo: (Propz: ammoprop_NoCrosshair;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2165
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2166
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2167
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2168
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2169
                AmmoType: amHammer;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2170
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2171
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2172
            Slot: 3;
5624
b6f70f6335ee Allow hammer to bash mines/barrels too, increase escape time to 3s
nemo
parents: 5585
diff changeset
  2173
            TimeAfterTurn: 3000;
6894
555a8d8db228 Some more progress with pas2c
unc0rr
parents: 6891
diff changeset
  2174
            minAngle: 0;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2175
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2176
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2177
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2178
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2179
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2180
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2181
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2182
4867
e604ee83e34f let players set timer of drill strike. yes. drill strike :3 the timer starts to tick on first impact
sheepluva
parents: 4849
diff changeset
  2183
// Resurrector
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2184
        (NameId: sidResurrector;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2185
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2186
            Probability: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2187
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2188
            Ammo: (Propz: ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2189
                          ammoprop_Utility or
13996
755f389a1e73 Fix resurrector handling turn time manually, use correct ammoprop instead
Wuzzy <Wuzzy2@mail.ru>
parents: 13851
diff changeset
  2190
                          ammoprop_NoRoundEnd or
755f389a1e73 Fix resurrector handling turn time manually, use correct ammoprop instead
Wuzzy <Wuzzy2@mail.ru>
parents: 13851
diff changeset
  2191
                          ammoprop_DoesntStopTimerWhileAttacking;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2192
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2193
                NumPerTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2194
                Timer: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2195
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2196
                AmmoType: amResurrector;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2197
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2198
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2199
            Slot: 8;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2200
            TimeAfterTurn: 3000;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2201
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2202
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2203
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2204
            SkipTurns: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2205
            PosCount: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2206
            PosSprite: sprWater;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2207
            ejectX: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2208
            ejectY: 0),
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2209
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2210
// DrillStrike
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2211
            (NameId: sidDrillStrike;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2212
            NameTex: nil;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2213
            Probability: 200;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2214
            NumberInCase: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2215
            Ammo: (Propz: ammoprop_NoCrosshair or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2216
                            ammoprop_NeedTarget or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2217
                            ammoprop_AttackingPut or
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2218
                            ammoprop_DontHold or
4867
e604ee83e34f let players set timer of drill strike. yes. drill strike :3 the timer starts to tick on first impact
sheepluva
parents: 4849
diff changeset
  2219
                            ammoprop_Timerable or
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2220
                            ammoprop_NotBorder;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2221
                Count: 1;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2222
                NumPerTurn: 0;
4867
e604ee83e34f let players set timer of drill strike. yes. drill strike :3 the timer starts to tick on first impact
sheepluva
parents: 4849
diff changeset
  2223
                Timer: 5000;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2224
                Pos: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2225
                AmmoType: amDrillStrike;
14565
833ab5b359e5 Deny air attack in bounce world edge if target is in "impossible" position
Wuzzy <Wuzzy2@mail.ru>
parents: 14553
diff changeset
  2226
                AttackVoice: sndNone; // handled in doStepAirAttack
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2227
                Bounciness: defaultBounciness);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2228
            Slot: 5;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2229
            TimeAfterTurn: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2230
            minAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2231
            maxAngle: 0;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2232
            isDamaging: true;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2233
            SkipTurns: 6;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2234
            PosCount: 2;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2235
            PosSprite: sprAmAirplane;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2236
            ejectX: 0;
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2237
            ejectY: 0),
4867
e604ee83e34f let players set timer of drill strike. yes. drill strike :3 the timer starts to tick on first impact
sheepluva
parents: 4849
diff changeset
  2238
4807
180dbfb13903 display caption for ammotype amNothing when switched to so that players know what just happened
sheepluva
parents: 4806
diff changeset
  2239
// Snowball/Mudball
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2240
            (NameId: sidSnowball;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2241
            NameTex: nil;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2242
            Probability: 0;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2243
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  2244
            Ammo: (Propz: ammoprop_Power or
5025
ac1691d35cf2 Land sprayer tweaks, make land spray and mudball not end turn
nemo
parents: 5024
diff changeset
  2245
                          ammoprop_AltUse or
11212
cd9a6fd65c82 - Mortar, Mudball and Land Spray need up/down buttons on mobile
antonc27 <antonc27@mail.ru>
parents: 11210
diff changeset
  2246
                          ammoprop_NeedUpDown or
5025
ac1691d35cf2 Land sprayer tweaks, make land spray and mudball not end turn
nemo
parents: 5024
diff changeset
  2247
                          ammoprop_NoRoundEnd;
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2248
                Count: 2;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2249
                NumPerTurn: 0;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2250
                Timer: 0;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2251
                Pos: 0;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2252
                AmmoType: amSnowball;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2253
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2254
                Bounciness: defaultBounciness);
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2255
            Slot: 0;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2256
            TimeAfterTurn: 3000;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2257
            minAngle: 0;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2258
            maxAngle: 0;
8936
60590b446468 cheezemonkey pointed out this is no longer damaging
nemo
parents: 8617
diff changeset
  2259
            isDamaging: false;
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2260
            SkipTurns: 0;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2261
            PosCount: 1;
f3cf226fad16 Snowball weapon
nemo
parents: 4554
diff changeset
  2262
            PosSprite: sprWater;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  2263
            ejectX: 0;
4881
35e6269227b6 still in developement take on adding structures, working hiding of hogs and ejecting them later.
Henek
parents: 4867
diff changeset
  2264
            ejectY: 0),
35e6269227b6 still in developement take on adding structures, working hiding of hogs and ejecting them later.
Henek
parents: 4867
diff changeset
  2265
5279
66969e7494c5 remove theme.cfg from CMakeLists too
Henek
parents: 5238
diff changeset
  2266
// Tardis
4883
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2267
            (NameId: sidTardis;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2268
            NameTex: nil;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2269
            Probability: 200;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2270
            NumberInCase: 1;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2271
            Ammo: (Propz: ammoprop_ForwMsgs or
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2272
                          ammoprop_NoCrosshair or
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2273
                          ammoprop_Utility or
12649
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12324
diff changeset
  2274
                          ammoprop_DontHold or
2837dee472cc Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents: 12324
diff changeset
  2275
                          ammoprop_ForceTurnEnd;
4883
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2276
                Count: 2;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2277
                NumPerTurn: 0;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2278
                Timer: 0;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2279
                Pos: 0;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2280
                AmmoType: amTardis;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2281
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2282
                Bounciness: defaultBounciness);
9768
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2283
            Slot: 8;
4883
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2284
            TimeAfterTurn: 0;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2285
            minAngle: 0;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2286
            maxAngle: 0;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2287
            isDamaging: false;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2288
            SkipTurns: 0;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2289
            PosCount: 2;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2290
            PosSprite: sprAmTeleport;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2291
            ejectX: 0;
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2292
            ejectY: 0),
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2293
5024
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2294
// Land Gun
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2295
            (NameId: sidLandGun;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2296
            NameTex: nil;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2297
            Probability: 20;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2298
            NumberInCase: 1;
5025
ac1691d35cf2 Land sprayer tweaks, make land spray and mudball not end turn
nemo
parents: 5024
diff changeset
  2299
            Ammo: (Propz: ammoprop_NoRoundEnd or
11212
cd9a6fd65c82 - Mortar, Mudball and Land Spray need up/down buttons on mobile
antonc27 <antonc27@mail.ru>
parents: 11210
diff changeset
  2300
                          ammoprop_NeedUpDown or
5025
ac1691d35cf2 Land sprayer tweaks, make land spray and mudball not end turn
nemo
parents: 5024
diff changeset
  2301
                          ammoprop_Utility;
5024
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2302
                Count: 1;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2303
                NumPerTurn: 0;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2304
                Timer: 5001;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2305
                Pos: 0;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2306
                AmmoType: amLandGun;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
  2307
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2308
                Bounciness: defaultBounciness);
9012
18c41c0ee8de changing slots of landgun and icegun, feel free to complain, improve and/or revert
sheepluva
parents: 8987
diff changeset
  2309
            Slot: 6;
5024
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2310
            TimeAfterTurn: 0;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2311
            minAngle: 0;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2312
            maxAngle: 0;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2313
            isDamaging: true;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2314
            SkipTurns: 0;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2315
            PosCount: 1;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2316
            PosSprite: sprWater;
1e332947147c Landgun, first pass. At sdw's request.
nemo
parents: 5016
diff changeset
  2317
            ejectX: 0; //20;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  2318
            ejectY: -3),
7007
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2319
// Freezer
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2320
            (NameId: sidIceGun;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2321
            NameTex: nil;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2322
            Probability: 20;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2323
            NumberInCase: 1;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  2324
            Ammo: (Propz: ammoprop_ForwMsgs or
7007
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2325
                          ammoprop_NeedUpDown or
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2326
                          ammoprop_DontHold;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2327
                Count: 1;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2328
                NumPerTurn: 0;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2329
                Timer: 5001;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2330
                Pos: 0;
7091
7989850b4418 Might help if this was actually its own unique weapon
nemo
parents: 7076
diff changeset
  2331
                AmmoType: amIceGun;
7007
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2332
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2333
                Bounciness: defaultBounciness);
9012
18c41c0ee8de changing slots of landgun and icegun, feel free to complain, improve and/or revert
sheepluva
parents: 8987
diff changeset
  2334
            Slot: 2;
7007
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2335
            TimeAfterTurn: 0;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2336
            minAngle: 0;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2337
            maxAngle: 0;
8937
72038f52693b aaaaand this one never was damaging
nemo
parents: 8936
diff changeset
  2338
            isDamaging: false;
7007
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2339
            SkipTurns: 0;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2340
            PosCount: 1;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2341
            PosSprite: sprWater;
0ccdff4ae8e9 Initial stub for freezer
nemo
parents: 6982
diff changeset
  2342
            ejectX: 0; //20;
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12306
diff changeset
  2343
            ejectY: -3),
7730
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2344
// Knife
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2345
            (NameId: sidKnife;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2346
            NameTex: nil;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2347
            Probability: 100;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2348
            NumberInCase: 1;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2349
            Ammo: (Propz: ammoprop_Power or
7780
a066a52411bc ok. for some reason, this now works without problems. weird. (reenable smine/cleaver alt)
nemo
parents: 7758
diff changeset
  2350
                          ammoprop_AltUse or
a066a52411bc ok. for some reason, this now works without problems. weird. (reenable smine/cleaver alt)
nemo
parents: 7758
diff changeset
  2351
                          ammoprop_NeedUpDown;
7730
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2352
                Count: 1;
7754
e81dc9bef8b8 First pass at cleaver.
nemo
parents: 7730
diff changeset
  2353
                NumPerTurn: 1;
7730
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2354
                Timer: 0;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2355
                Pos: 0;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2356
                AmmoType: amKnife;
14016
09e2e52aa025 Add 2 taunts: Fire, WatchThis (attack voice for some weapons)
Wuzzy <Wuzzy2@mail.ru>
parents: 13996
diff changeset
  2357
                AttackVoice: sndWatchThis;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2358
                Bounciness: defaultBounciness);
14306
12e7442e4034 Swap a few weapons in ammo menu to get a nice 6×10 grid
Wuzzy <Wuzzy2@mail.ru>
parents: 14282
diff changeset
  2359
            Slot: 0;
7730
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2360
            TimeAfterTurn: 3000;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2361
            minAngle: 0;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2362
            maxAngle: 0;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2363
            isDamaging: true;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2364
            SkipTurns: 0;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2365
            PosCount: 1;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2366
            PosSprite: sprWater;
2013733f9ca9 A bit more on the knife. Also add missing files to CMakeLists
nemo
parents: 7660
diff changeset
  2367
            ejectX: 0;
9768
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2368
            ejectY: 0),
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2369
// Rubber
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2370
            (NameId: sidRubber;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2371
            NameTex: nil;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2372
            Probability: 150;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2373
            NumberInCase: 1;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2374
            Ammo: (Propz: ammoprop_NoRoundEnd or
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2375
                          ammoprop_NoCrosshair or
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2376
                          ammoprop_NeedTarget or
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2377
                          ammoprop_Utility or
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2378
                          ammoprop_AttackingPut;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2379
                    Count: 1;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2380
                    NumPerTurn: 0;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2381
                    Timer: 0;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2382
                    Pos: 0;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2383
                    AmmoType: amRubber;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2384
                    AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2385
                Bounciness: defaultBounciness);
9768
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2386
            Slot: 6;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2387
            TimeAfterTurn: 3000;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2388
            minAngle: 0;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2389
            maxAngle: 0;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2390
            isDamaging: false;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2391
            SkipTurns: 0;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2392
            PosCount: 4;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2393
            PosSprite: sprAmRubber;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2394
            ejectX: 0;
10789
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2395
            ejectY: 0),
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2396
// Air Mine
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2397
            (NameId: sidAirMine;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2398
            NameTex: nil;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2399
            Probability: 100;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2400
            NumberInCase: 1;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2401
            Ammo: (Propz: ammoprop_Power or
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2402
                          ammoprop_AltUse or
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2403
                          ammoprop_NeedUpDown;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2404
                Count: 2;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2405
                NumPerTurn: 0;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2406
                Timer: 0;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2407
                Pos: 0;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2408
                AmmoType: amAirMine;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2409
                AttackVoice: sndLaugh;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2410
                Bounciness: defaultBounciness);
10789
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2411
            Slot: 5;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2412
            TimeAfterTurn: 5000;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2413
            minAngle: 0;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2414
            maxAngle: 0;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2415
            isDamaging: true;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2416
            SkipTurns: 0;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2417
            PosCount: 1;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2418
            PosSprite: sprWater;
acbf69e2e5cf experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents: 10633
diff changeset
  2419
            ejectX: 0;
12193
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2420
            ejectY: 0),
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13777
diff changeset
  2421
// Creeper
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13777
diff changeset
  2422
            (NameId: sidCreeper;
12193
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2423
            NameTex: nil;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2424
            Probability: 100;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2425
            NumberInCase: 1;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2426
            Ammo: (Propz: ammoprop_NoCrosshair or
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2427
                          ammoprop_AttackInMove or
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2428
                          ammoprop_DontHold or
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2429
                          ammoprop_AltUse;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2430
                Count: 2;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2431
                NumPerTurn: 0;
12196
d7ccd18ae7bf Fix swimming rubberduck screwing up after portal, also change timer to 15s, no resets
Wuzzy <almikes@aol.com>
parents: 12194
diff changeset
  2432
                Timer: 15000;
12193
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2433
                Pos: 0;
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13777
diff changeset
  2434
                AmmoType: amCreeper;
12194
ac9cf0cf40ee Add sounds for rubberduck drop, destruction and water collision
Wuzzy <almikes@aol.com>
parents: 12193
diff changeset
  2435
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2436
                Bounciness: defaultBounciness);
14306
12e7442e4034 Swap a few weapons in ammo menu to get a nice 6×10 grid
Wuzzy <Wuzzy2@mail.ru>
parents: 14282
diff changeset
  2437
            // Slot chosen to prevent ammo column overflow
12e7442e4034 Swap a few weapons in ammo menu to get a nice 6×10 grid
Wuzzy <Wuzzy2@mail.ru>
parents: 14282
diff changeset
  2438
            // TODO: Change slot when creeper is finished
12e7442e4034 Swap a few weapons in ammo menu to get a nice 6×10 grid
Wuzzy <Wuzzy2@mail.ru>
parents: 14282
diff changeset
  2439
            Slot: 8;
12193
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2440
            TimeAfterTurn: 3000;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2441
            minAngle: 0;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2442
            maxAngle: 0;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2443
            isDamaging: true;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2444
            SkipTurns: 0;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2445
            PosCount: 1;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2446
            PosSprite: sprWater;
71c47122fbc0 Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents: 12192
diff changeset
  2447
            ejectX: 15;
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2448
            ejectY: -7),
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2449
// Minigun
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2450
            (NameId: sidMinigun;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2451
            NameTex: nil;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2452
            Probability: 100;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2453
            NumberInCase: 1;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2454
            Ammo: (Propz: ammoprop_NeedUpDown;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2455
                Count: 1;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2456
                NumPerTurn: 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2457
                Timer: 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2458
                Pos: 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2459
                AmmoType: amMinigun;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2460
                AttackVoice: sndNone;
13532
ee77086fc5fa Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents: 13491
diff changeset
  2461
                Bounciness: defaultBounciness);
12898
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2462
            Slot: 2;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2463
            TimeAfterTurn: 3000;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2464
            minAngle: cMaxAngle div 6;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2465
            maxAngle: 5 * cMaxAngle div 6;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2466
            isDamaging: true;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2467
            SkipTurns: 0;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2468
            PosCount: 1;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2469
            PosSprite: sprWater;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2470
            ejectX: 0; //23;
8a40ce061d94 Machinegun. also tweaked ignore
alfadur
parents: 12885
diff changeset
  2471
            ejectY: 0) //-6;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2472
        );
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4359
diff changeset
  2473
4367
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
  2474
var
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
  2475
    Land: TCollisionArray;
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
  2476
    LandPixels: TLandArray;
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
  2477
    LandDirty: TDirtyTag;
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
  2478
    hasBorder: boolean;
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
  2479
    hasGirders: boolean;
14282
6015b74eea55 overall, using LongInt for leftX/rightX results in fewer casts, since most comparisons are against ints.
nemo
parents: 14196
diff changeset
  2480
    playHeight, playWidth, leftX, rightX, topY: LongInt;  // idea is that a template can specify height/width.  Or, a map, a height/width by the dimensions of the image.  If the map has pixels near top of image, it triggers border.
6015b74eea55 overall, using LongInt for leftX/rightX results in fewer casts, since most comparisons are against ints.
nemo
parents: 14196
diff changeset
  2481
	MaxHedgehogs: LongWord;
4367
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
  2482
    LandBackSurface: PSDL_Surface;
4368
unc0rr
parents: 4367
diff changeset
  2483
    CurAmmoGear: PGear;
4780
8571151411b3 add a couple of variables to speed up UID lookups. Based on the assumption new visual gears and gears will tend to be at the end of the list. Set them on successful lookup or script gear creation, clear on delete. Oh also pick up a couple of TrevInc's translation changes
nemo
parents: 4776
diff changeset
  2484
    lastGearByUID: PGear;
4368
unc0rr
parents: 4367
diff changeset
  2485
    GearsList: PGear;
4370
unc0rr
parents: 4369
diff changeset
  2486
    AllInactive: boolean;
unc0rr
parents: 4369
diff changeset
  2487
    PrvInactive: boolean;
unc0rr
parents: 4369
diff changeset
  2488
    KilledHHs: Longword;
12920
21827fc9ca98 Fix timebox being usable in SD w/ damage=0
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
  2489
    SuddenDeath: Boolean; // If the Sudden Death check has been made
21827fc9ca98 Fix timebox being usable in SD w/ damage=0
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
  2490
    SuddenDeathActive: Boolean; // Is in Sudden Death with any gameplay effect
21827fc9ca98 Fix timebox being usable in SD w/ damage=0
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
  2491
    SuddenDeathDmg: Boolean; // Is in Sudden Death with damage
4370
unc0rr
parents: 4369
diff changeset
  2492
    SpeechType: Longword;
unc0rr
parents: 4369
diff changeset
  2493
    SpeechText: shortstring;
unc0rr
parents: 4369
diff changeset
  2494
    PlacingHogs: boolean; // a convenience flag to indicate placement of hogs is still in progress
unc0rr
parents: 4369
diff changeset
  2495
    StepSoundTimer: LongInt;
unc0rr
parents: 4369
diff changeset
  2496
    StepSoundChannel: LongInt;
4368
unc0rr
parents: 4367
diff changeset
  2497
unc0rr
parents: 4367
diff changeset
  2498
    CurrentTeam: PTeam;
unc0rr
parents: 4367
diff changeset
  2499
    PreviousTeam: PTeam;
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2500
    MissionTeam: PTeam;
4368
unc0rr
parents: 4367
diff changeset
  2501
    CurrentHedgehog: PHedgehog;
unc0rr
parents: 4367
diff changeset
  2502
    TeamsArray: array[0..Pred(cMaxTeams)] of PTeam;
13174
061d55939e47 Use visible team count instead of total team count to determine rendered team bar height
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2503
    TeamsCount: Longword; // number of teams on game start
061d55939e47 Use visible team count instead of total team count to determine rendered team bar height
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2504
    VisibleTeamsCount: Longword; // number of teams visible in team bar
11734
f48408dcea36 create forts in random order
sheepluva
parents: 11704
diff changeset
  2505
    ClansArray, SpawnClansArray: TClansArray;
4368
unc0rr
parents: 4367
diff changeset
  2506
    ClansCount: Longword;
unc0rr
parents: 4367
diff changeset
  2507
    LocalClan: LongInt;  // last non-bot, non-extdriven clan
4465
743673c67d0c Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents: 4437
diff changeset
  2508
    LocalTeam: LongInt;  // last non-bot, non-extdriven clan first team
743673c67d0c Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents: 4437
diff changeset
  2509
    LocalAmmo: LongInt;  // last non-bot, non-extdriven clan's first team's ammo index, updated to next upcoming hog for per-hog-ammo
4368
unc0rr
parents: 4367
diff changeset
  2510
    CurMinAngle, CurMaxAngle: Longword;
4367
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
  2511
4369
unc0rr
parents: 4368
diff changeset
  2512
    FollowGear: PGear;
unc0rr
parents: 4368
diff changeset
  2513
    WindBarWidth: LongInt;
unc0rr
parents: 4368
diff changeset
  2514
    bShowAmmoMenu: boolean;
unc0rr
parents: 4368
diff changeset
  2515
    bSelected: boolean;
unc0rr
parents: 4368
diff changeset
  2516
    bShowFinger: boolean;
unc0rr
parents: 4368
diff changeset
  2517
    Frames: Longword;
unc0rr
parents: 4368
diff changeset
  2518
    WaterColor, DeepWaterColor: TSDL_Color;
11895
19cb0de79287 Make sd-tint a theme variable so cophernue can tweak his sky tinting
nemo
parents: 11887
diff changeset
  2519
    SDTint, SkyColor, RQSkyColor, SDSkyColor: TSDL_Color;
4369
unc0rr
parents: 4368
diff changeset
  2520
    SkyOffset: LongInt;
unc0rr
parents: 4368
diff changeset
  2521
{$IFDEF COUNTTICKS}
unc0rr
parents: 4368
diff changeset
  2522
    cntTicks: LongWord;
unc0rr
parents: 4368
diff changeset
  2523
{$ENDIF}
4812
f924be23ffb4 merge with HEAD after 0.9.15 release, move consts and vars in their proper files
koda
parents: 4808
diff changeset
  2524
4369
unc0rr
parents: 4368
diff changeset
  2525
4371
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2526
    PauseTexture,
9670
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9656
diff changeset
  2527
    AFKTexture,
4371
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2528
    SyncTexture,
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2529
    ConfirmTexture: PTexture;
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2530
    cScaleFactor: GLfloat;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2531
    cStereoDepth: GLfloat;
4371
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2532
    SupportNPOTT: Boolean;
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2533
    Step: LongInt;
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2534
    MissionIcons: PSDL_Surface;
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2535
    ropeIconTex: PTexture;
6611
d9d00e537010 rotation ftw!!! (engine part)
koda
parents: 6609
diff changeset
  2536
4812
f924be23ffb4 merge with HEAD after 0.9.15 release, move consts and vars in their proper files
koda
parents: 4808
diff changeset
  2537
    // stereoscopic framebuffer and textures
f924be23ffb4 merge with HEAD after 0.9.15 release, move consts and vars in their proper files
koda
parents: 4808
diff changeset
  2538
    framel, framer, depthl, depthr: GLuint;
f924be23ffb4 merge with HEAD after 0.9.15 release, move consts and vars in their proper files
koda
parents: 4808
diff changeset
  2539
    texl, texr: GLuint;
4371
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2540
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7103
diff changeset
  2541
    // video recorder framebuffer and texture
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7103
diff changeset
  2542
    defaultFrame, depthv: GLuint;
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7103
diff changeset
  2543
    texv: GLuint;
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7103
diff changeset
  2544
4780
8571151411b3 add a couple of variables to speed up UID lookups. Based on the assumption new visual gears and gears will tend to be at the end of the list. Set them on successful lookup or script gear creation, clear on delete. Oh also pick up a couple of TrevInc's translation changes
nemo
parents: 4776
diff changeset
  2545
    lastVisualGearByUID: PVisualGear;
4371
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2546
    vobFrameTicks, vobFramesCount, vobCount: Longword;
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2547
    vobVelocity, vobFallSpeed: LongInt;
4806
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4792
diff changeset
  2548
    vobSDFrameTicks, vobSDFramesCount, vobSDCount: Longword;
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4792
diff changeset
  2549
    vobSDVelocity, vobSDFallSpeed: LongInt;
12189
31184d9b9bfc Water can now be animated
KoBeWi <kobewi4e@gmail.com>
parents: 12163
diff changeset
  2550
    watFrames, watFrameTicks: Longword;
31184d9b9bfc Water can now be animated
KoBeWi <kobewi4e@gmail.com>
parents: 12163
diff changeset
  2551
    watMove: LongInt;
31184d9b9bfc Water can now be animated
KoBeWi <kobewi4e@gmail.com>
parents: 12163
diff changeset
  2552
    watSDFrames, watSDFrameTicks: Longword;
31184d9b9bfc Water can now be animated
KoBeWi <kobewi4e@gmail.com>
parents: 12163
diff changeset
  2553
    watSDMove: LongInt;
4371
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2554
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
  2555
    DefaultBinds : TBinds;
4371
ae172b2b03ed Some more
unc0rr
parents: 4370
diff changeset
  2556
7103
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7091
diff changeset
  2557
    lastTurnChecksum : Longword;
1c1afb5a1565 Feel free to add real checksum function
unc0rr
parents: 7091
diff changeset
  2558
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2559
    mModelview: TMatrix4x4f;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2560
    mProjection: TMatrix4x4f;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2561
    vBuffer: GLuint; // vertex buffer
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2562
    tBuffer: GLuint; // texture coords buffer
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2563
    cBuffer: GLuint; // color buffer
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2564
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2565
    uCurrentMVPLocation: GLint;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2566
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2567
    uMainMVPLocation: GLint;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2568
    uMainTintLocation: GLint;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2569
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2570
    uWaterMVPLocation: GLint;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2571
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2572
    aVertex: GLint;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2573
    aTexCoord: GLint;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8018
diff changeset
  2574
    aColor: GLint;
9988
317d46a2afd2 simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents: 9902
diff changeset
  2575
10122
cefede760264 Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents: 10108
diff changeset
  2576
var trammo:  array[TAmmoStrId] of ansistring;   // name of the weapon
cefede760264 Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents: 10108
diff changeset
  2577
    trammoc: array[TAmmoStrId] of ansistring;   // caption of the weapon
cefede760264 Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents: 10108
diff changeset
  2578
    trammod: array[TAmmoStrId] of ansistring;   // description of the weapon
11939
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11915
diff changeset
  2579
    trluaammo: array[TAmmoStrId] of ansistring; // name of the weapon (Lua overwrite)
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11915
diff changeset
  2580
    trluaammoc: array[TAmmoStrId] of ansistring; // caption of the weapon (Lua overwrite)
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11915
diff changeset
  2581
    trluaammod: array[TAmmoStrId] of ansistring;  // description of the weapon (Lua overwrite)
11941
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
  2582
    trluaammoa: array[TAmmoStrId] of ansistring; // description appendix of the weapon (Lua only)
13370
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13174
diff changeset
  2583
    trluaammoe: array[TAmmoStrId] of boolean;   // whether to render extra text (Lua overwrite)
10122
cefede760264 Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents: 10108
diff changeset
  2584
    trmsg:   array[TMsgStrId]  of ansistring;   // message of the event
cefede760264 Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents: 10108
diff changeset
  2585
    trgoal:  array[TGoalStrId] of ansistring;   // message of the goal
13457
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13455
diff changeset
  2586
    trcmd:   array[TCmdHelpStrId] of ansistring; // chat command help
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 10009 9954
diff changeset
  2587
    cTestLua : Boolean;
4390
f219628ed666 Move localization data to uVariables, some Uses cleanup
unc0rr
parents: 4379
diff changeset
  2588
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2589
procedure preInitModule;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2590
procedure initModule;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2591
procedure freeModule;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2592
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2593
implementation
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2594
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2595
procedure preInitModule;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2596
begin
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2597
    // initialisation flags - they are going to be overwritten by program args
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2598
8358
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2599
    cFullscreenWidth  := 0;
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2600
    cFullscreenHeight := 0;
8354
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8309
diff changeset
  2601
    cWindowedWidth    := 1024;
c25bee85d6f8 Separated fullscreen and windowed hwengine resolution parameters.
vitiv <nikita.utiu@gmail.com>
parents: 8309
diff changeset
  2602
    cWindowedHeight   := 768;
8358
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2603
    cScreenWidth      := cWindowedWidth;
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2604
    cScreenHeight     := cWindowedHeight;
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2605
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2606
    cShowFPS        := false;
12838
855faf1e19e2 alt damage should default to false
nemo
parents: 12749
diff changeset
  2607
    cAltDamage      := false;
14670
56831f466d1d Add settings.ini setting and hwengine param to disable holiday silliness (hat changes, etc.)
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2608
    cHolidaySilliness := true;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2609
    cTimerInterval  := 8;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2610
    cReducedQuality := rqNone;
14598
62dea281e4d5 Refactor hwengine: Rename cLocale to cLanguage
Wuzzy <Wuzzy2@mail.ru>
parents: 14566
diff changeset
  2611
    cLanguageFName  := 'en.txt';
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2612
    cFullScreen     := false;
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2613
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2614
    UserPathPrefix  := '';
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2615
    ipcPort         := 0;
8016
c1223ef70934 fix demo playback
nemo
parents: 8012
diff changeset
  2616
    recordFileName  := '';
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2617
    UserNick        := '';
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2618
    cStereoMode     := smNone;
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2619
    GrayScale       := false;
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2620
    PathPrefix      := './';
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2621
    GameType        := gmtLocal;
8027
e5ba3dd12531 make stats-only mode work headless. also skip a few things to save time/memory.
nemo
parents: 8016
diff changeset
  2622
    cOnlyStats      := False;
9988
317d46a2afd2 simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents: 9902
diff changeset
  2623
    cScriptName     := '';
317d46a2afd2 simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents: 9902
diff changeset
  2624
    cScriptParam    := '';
317d46a2afd2 simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents: 9902
diff changeset
  2625
    cTestLua        := False;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2626
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2627
{$IFDEF USE_VIDEO_RECORDING}
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2628
    RecPrefix          := '';
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2629
    cAVFormat          := '';
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2630
    cVideoCodec        := '';
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2631
    cVideoFramerateNum := 0;
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2632
    cVideoFramerateDen := 0;
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2633
    cVideoQuality      := 0;
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2634
    cAudioCodec        := '';
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2635
{$ENDIF}
10175
c92668840ea8 Remove game/preview functions split in library mode, just let normal procedure run instead:
unc0rr
parents: 10154
diff changeset
  2636
c92668840ea8 Remove game/preview functions split in library mode, just let normal procedure run instead:
unc0rr
parents: 10154
diff changeset
  2637
    cTagsMask:= htTeamName or htName or htHealth;
12999
46ba3285449a Switch + Change hog tags now turns on and off all tags
Wuzzy <Wuzzy2@mail.ru>
parents: 12920
diff changeset
  2638
    cPrevTagsMask:= cTagsMask;
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2639
end;
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2640
11704
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
  2641
procedure initScreenSpaceVars();
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
  2642
begin
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
  2643
    // those values still are not perfect
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
  2644
    cLeftScreenBorder:= round(-cMinZoomLevel * cScreenWidth);
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
  2645
    cRightScreenBorder:= round(cMinZoomLevel * cScreenWidth + LAND_WIDTH);
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
  2646
    cScreenSpace:= cRightScreenBorder - cLeftScreenBorder;
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
  2647
end;
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
  2648
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2649
procedure initModule;
10133
d73412fbf3b4 - Remove few PAS2C ifdef's
unc0rr
parents: 10127
diff changeset
  2650
var s: shortstring;
11154
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2651
    i: integer;
13121
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
  2652
    t: TSound;
13370
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13174
diff changeset
  2653
    a: TAmmoStrId;
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2654
begin
11164
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2655
    // init LastVoice
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2656
    LastVoice.snd:= sndNone;
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2657
    LastVoice.voicepack:= nil;
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2658
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2659
    // init arrays
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2660
    Move(cPathzInit, cPathz, sizeof(cPathz));
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2661
    Move(FontzInit, Fontz, sizeof(Fontz));
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2662
    Move(SpritesDataInit, SpritesData, sizeof(SpritesData));
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2663
    Move(AmmozInit, Ammoz, sizeof(Ammoz));
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2664
e19cf9459665 uVariables: also initialize arrays and records in initModule
sheepluva
parents: 11154
diff changeset
  2665
14598
62dea281e4d5 Refactor hwengine: Rename cLocale to cLanguage
Wuzzy <Wuzzy2@mail.ru>
parents: 14566
diff changeset
  2666
    cLanguage:= cLanguageFName;
62dea281e4d5 Refactor hwengine: Rename cLocale to cLanguage
Wuzzy <Wuzzy2@mail.ru>
parents: 14566
diff changeset
  2667
    SplitByChar(cLanguage, s, '.');
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2668
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2669
    cFlattenFlakes      := false;
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2670
    cFlattenClouds      := false;
9768
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2671
    cIce                := false;
08799c901a42 Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents: 9723
diff changeset
  2672
    cSnow               := false;
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2673
    lastVisualGearByUID := nil;
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2674
    lastGearByUID       := nil;
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2675
    cReadyDelay         := 5000;
13077
c213645ff848 Having chat mode as game state was a mistake
unc0rr
parents: 13039
diff changeset
  2676
    isInChatMode        := false;
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2677
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2678
        {*  REFERENCE
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2679
      4096 -> $FFFFF000
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2680
      2048 -> $FFFFF800
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2681
      1024 -> $FFFFFC00
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2682
       512 -> $FFFFFE00  *}
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2683
    if (cReducedQuality and rqLowRes) <> 0 then
4780
8571151411b3 add a couple of variables to speed up UID lookups. Based on the assumption new visual gears and gears will tend to be at the end of the list. Set them on successful lookup or script gear creation, clear on delete. Oh also pick up a couple of TrevInc's translation changes
nemo
parents: 4776
diff changeset
  2684
        begin
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2685
        LAND_WIDTH:= 2048;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2686
        LAND_HEIGHT:= 1024;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2687
        LAND_WIDTH_MASK:= $FFFFF800;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2688
        LAND_HEIGHT_MASK:= $FFFFFC00;
4780
8571151411b3 add a couple of variables to speed up UID lookups. Based on the assumption new visual gears and gears will tend to be at the end of the list. Set them on successful lookup or script gear creation, clear on delete. Oh also pick up a couple of TrevInc's translation changes
nemo
parents: 4776
diff changeset
  2689
        end
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2690
    else
4780
8571151411b3 add a couple of variables to speed up UID lookups. Based on the assumption new visual gears and gears will tend to be at the end of the list. Set them on successful lookup or script gear creation, clear on delete. Oh also pick up a couple of TrevInc's translation changes
nemo
parents: 4776
diff changeset
  2691
        begin
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2692
        LAND_WIDTH:= 4096;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2693
        LAND_HEIGHT:= 2048;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2694
        LAND_WIDTH_MASK:= $FFFFF000;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2695
        LAND_HEIGHT_MASK:= $FFFFF800
4780
8571151411b3 add a couple of variables to speed up UID lookups. Based on the assumption new visual gears and gears will tend to be at the end of the list. Set them on successful lookup or script gear creation, clear on delete. Oh also pick up a couple of TrevInc's translation changes
nemo
parents: 4776
diff changeset
  2696
        end;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2697
12163
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2698
    // default water
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2699
    WaterColorArray[0].r := 52;
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2700
    WaterColorArray[0].g := 60;
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2701
    WaterColorArray[0].b := 125;
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2702
    WaterColorArray[0].a := 255;
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2703
    WaterColorArray[2]:= WaterColorArray[0];
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2704
    WaterColorArray[4]:= WaterColorArray[0];
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2705
    WaterColorArray[6]:= WaterColorArray[0];
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2706
    // water surface
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2707
    WaterColorArray[1].r := 84;
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2708
    WaterColorArray[1].g := 92;
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2709
    WaterColorArray[1].b := 157;
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2710
    WaterColorArray[1].a := 255;
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2711
    WaterColorArray[3]:= WaterColorArray[1];
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2712
    WaterColorArray[5]:= WaterColorArray[1];
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2713
    WaterColorArray[7]:= WaterColorArray[1];
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2714
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2715
    WaterOpacity:= $80;
9b5748fa7974 Set default theme water color to blue
Wuzzy <almikes@aol.com>
parents: 12158
diff changeset
  2716
13582
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2717
    // default clan colors
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2718
    // always keep in sync with QTfrontend/hwconsts.h
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2719
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2720
    ClanColorArray[0] := $ffff0204;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2721
    ClanColorArray[1] := $ff4980c1;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2722
    ClanColorArray[2] := $ff1de6ba;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2723
    ClanColorArray[3] := $ffb541ef;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2724
    ClanColorArray[4] := $ffe55bb0;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2725
    ClanColorArray[5] := $ff20bf00;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2726
    ClanColorArray[6] := $fffe8b0e;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2727
    ClanColorArray[7] := $ff8f5902;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2728
    ClanColorArray[8] := $ffffff01;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13568
diff changeset
  2729
10325
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2730
    // default sudden death water
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2731
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2732
    // deep water
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2733
    SDWaterColorArray[0].r := 150;
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2734
    SDWaterColorArray[0].g := 112;
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2735
    SDWaterColorArray[0].b := 169;
4748
ce9b48de1f52 sudden death, now with visual and audial effects :D
Henek
parents: 4695
diff changeset
  2736
    SDWaterColorArray[0].a := 255;
10325
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2737
    SDWaterColorArray[2]:= SDWaterColorArray[0];
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2738
    SDWaterColorArray[4]:= SDWaterColorArray[0];
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2739
    SDWaterColorArray[6]:= SDWaterColorArray[0];
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2740
    // water surface
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2741
    SDWaterColorArray[1].r := 182;
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2742
    SDWaterColorArray[1].g := 144;
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2743
    SDWaterColorArray[1].b := 201;
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2744
    SDWaterColorArray[1].a := 255;
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2745
    SDWaterColorArray[3]:= SDWaterColorArray[1];
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2746
    SDWaterColorArray[5]:= SDWaterColorArray[1];
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2747
    SDWaterColorArray[7]:= SDWaterColorArray[1];
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2748
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2749
    SDWaterOpacity:= $80;
10325
7315870716f2 tweak/refactor how water is drawn
sheepluva
parents: 10304
diff changeset
  2750
11895
19cb0de79287 Make sd-tint a theme variable so cophernue can tweak his sky tinting
nemo
parents: 11887
diff changeset
  2751
    SDTint.r := $80;
19cb0de79287 Make sd-tint a theme variable so cophernue can tweak his sky tinting
nemo
parents: 11887
diff changeset
  2752
    SDTint.g := $80;
19cb0de79287 Make sd-tint a theme variable so cophernue can tweak his sky tinting
nemo
parents: 11887
diff changeset
  2753
    SDTint.b := $80;
19cb0de79287 Make sd-tint a theme variable so cophernue can tweak his sky tinting
nemo
parents: 11887
diff changeset
  2754
    SDTint.a := $FF;
19cb0de79287 Make sd-tint a theme variable so cophernue can tweak his sky tinting
nemo
parents: 11887
diff changeset
  2755
10877
baad1cc9b749 alternative explosion border smoothing
sheepluva
parents: 10866
diff changeset
  2756
    ExplosionBorderColorR:= 80;
baad1cc9b749 alternative explosion border smoothing
sheepluva
parents: 10866
diff changeset
  2757
    ExplosionBorderColorG:= 80;
baad1cc9b749 alternative explosion border smoothing
sheepluva
parents: 10866
diff changeset
  2758
    ExplosionBorderColorB:= 80;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2759
    ExplosionBorderColor:= $FF808080;
10878
963bc20f511c small pixel jizz tweak
sheepluva
parents: 10877
diff changeset
  2760
    ExplosionBorderColorNoA:= ExplosionBorderColor and (not AMask);
8584
ea20d9cc8515 put ice colour in uVariables, add check for land that is already ice
nemo
parents: 8578
diff changeset
  2761
    IceColor:= ($44 shl RShift) or ($97 shl GShift) or ($A9 shl BShift) or ($A0 shl AShift);
8596
def92c20cd49 define ice edge colour
nemo
parents: 8584
diff changeset
  2762
    IceEdgeColor:= ($8A shl RShift) or ($AF shl GShift) or ($B2 shl BShift) or ($FF shl AShift);
def92c20cd49 define ice edge colour
nemo
parents: 8584
diff changeset
  2763
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2764
    WaterOpacity:= $80;
4748
ce9b48de1f52 sudden death, now with visual and audial effects :D
Henek
parents: 4695
diff changeset
  2765
10330
3ec09243cb55 move DrawWaves to uRender
sheepluva
parents: 10325
diff changeset
  2766
    cWaveHeight             := 32;
9300
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9249
diff changeset
  2767
    cDrownSpeed.QWordValue  := 257698038;   // 0.06
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2768
    cDrownSpeedf            := 0.06;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2769
    cMaxWindSpeed.QWordValue:= 1073742;     // 0.00025
9300
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9249
diff changeset
  2770
    cWindSpeed.QWordValue   := 0;           // 0.0
4776
ab956d4647a4 set windspeed to 0 at the very beginning of the game. (fixes DisableWind game modifier)
sheepluva
parents: 4772
diff changeset
  2771
    cWindSpeedf             := 0.0;
9721
1833dadcebf0 Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents: 9693
diff changeset
  2772
    cElastic                := _0_9;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2773
    cGravity                := cMaxWindSpeed * 2;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2774
    cGravityf               := 0.00025 * 2;
11887
083c12795632 Show symbols at bottom right while extra damage / low grav. are active
Wuzzy <almikes@aol.com>
parents: 11836
diff changeset
  2775
    cLowGravity             := false;
11058
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11057
diff changeset
  2776
    cBuildMaxDist           := cDefaultBuildMaxDist;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2777
    cDamageModifier         := _1;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2778
    TargetPoint             := cTargetPointRef;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2779
7974
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2780
{$IFDEF MOBILE}
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2781
    cMaxZoomLevel:= 0.5;
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2782
    cMinZoomLevel:= 3.5;
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2783
    cZoomDelta:= 0.20;
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2784
{$ELSE}
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2785
    cMaxZoomLevel:= 1.0;
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2786
    cMinZoomLevel:= 3.0;
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2787
    cZoomDelta:= 0.25;
12885
dab60d247b75 also put GL2 fixes into default
sheepluva
parents: 12844
diff changeset
  2788
    {$ENDIF}
dab60d247b75 also put GL2 fixes into default
sheepluva
parents: 12844
diff changeset
  2789
dab60d247b75 also put GL2 fixes into default
sheepluva
parents: 12844
diff changeset
  2790
    aVertex:= 0;
dab60d247b75 also put GL2 fixes into default
sheepluva
parents: 12844
diff changeset
  2791
    aTexCoord:= 1;
dab60d247b75 also put GL2 fixes into default
sheepluva
parents: 12844
diff changeset
  2792
    aColor:= 2;
dab60d247b75 also put GL2 fixes into default
sheepluva
parents: 12844
diff changeset
  2793
7974
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2794
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2795
    cMinMaxZoomLevelDelta:= cMaxZoomLevel - cMinZoomLevel;
7ac6699b6228 support ridiculously large maps
nemo
parents: 7964
diff changeset
  2796
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2797
    // int, longint longword and byte
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2798
    CursorMovementX     := 0;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2799
    CursorMovementY     := 0;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2800
    GameTicks           := 0;
14041
44f20c9e6861 Add Ouch taunt for particulary damaging hits (fall, bullet, shove, hammer)
Wuzzy <Wuzzy2@mail.ru>
parents: 14018
diff changeset
  2801
    OuchTauntTimer      := 0;
7389
15c3fb4882df Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents: 7345
diff changeset
  2802
    CheckSum            := 0;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2803
    cWaterLine          := LAND_HEIGHT;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2804
    cGearScrEdgesDist   := 240;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2805
4522
0f590eefd531 Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents: 4482
diff changeset
  2806
    InputMask           := $FFFFFFFF;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2807
    GameFlags           := 0;
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9367
diff changeset
  2808
    WorldEdge           := weNone;
9557
a5005b7ca305 differentiate borders a bit
nemo
parents: 9473
diff changeset
  2809
    LeftImpactTimer     := 0;
a5005b7ca305 differentiate borders a bit
nemo
parents: 9473
diff changeset
  2810
    RightImpactTimer    := 0;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2811
    TurnTimeLeft        := 0;
11913
232b57a70aca Make the timer red when it is the get-away time
Wuzzy <almikes@aol.com>
parents: 11912
diff changeset
  2812
    IsGetAwayTime       := false;
12322
9aa483762025 Fix sndBoring being played when force-ending turn due to victory
Wuzzy <almikes@aol.com>
parents: 12317
diff changeset
  2813
    GameOver            := false;
9672
8663d299ba62 this should prevent sliding when game clock isn't running. sorry unc0rr, not going to bother encapsulating. maybe later. short on time right now/lazy
nemo
parents: 9670
diff changeset
  2814
    TurnClockActive     := true;
5016
9347d82a26cc added game mode Tag Team, mostly untested, please test :)
Henek
parents: 5013
diff changeset
  2815
    TagTurnTimeLeft     := 0;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2816
    cSuddenDTurns       := 15;
14406
b48c270328a5 Show Sudden Death warning messages only once per round
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  2817
    LastSuddenDWarn     := -2;
14522
d0441c7e9000 Lua: Add InitHealth, read-only variable containing the initial hog health setting
Wuzzy <Wuzzy2@mail.ru>
parents: 14514
diff changeset
  2818
    cInitHealth         := 100;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2819
    cDamagePercent      := 100;
4396
3cfd2e15464a After repeated requests, variable length rope. Intended for the infinite rope folks, but values less than 100 make rope more interesting IMO.
nemo
parents: 4390
diff changeset
  2820
    cRopePercent        := 100;
5026
e83d4552625f percentage modifier for get away time
nikin
parents: 5025
diff changeset
  2821
    cGetAwayTime        := 100;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2822
    cMineDudPercent     := 0;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2823
    cTemplateFilter     := 0;
14416
96624a6cdb93 Allow scaling hand drawn maps
nemo
parents: 14406
diff changeset
  2824
    cFeatureSize        := 12;
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10532
diff changeset
  2825
    cMapGen             := mgRandom;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2826
    cHedgehogTurnTime   := 45000;
4482
34393349f96e Restore millisecond precision for mines time
nemo
parents: 4465
diff changeset
  2827
    cMinesTime          := 3000;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2828
    cMaxAIThinkTime     := 9000;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2829
    cCloudsNumber       := 9;
4792
68f9b331014a sudden death changes: only change visual bit on health decrease and support for water transparancy change and clouds number change
Henek
parents: 4782
diff changeset
  2830
    cSDCloudsNumber     := 9;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2831
    cHealthCaseProb     := 35;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2832
    cHealthCaseAmount   := 25;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2833
    cWaterRise          := 47;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2834
    cHealthDecrease     := 5;
10237
282e49f9ce9d sekret feature (test commit)
unc0rr
parents: 10175
diff changeset
  2835
    cAdvancedMapGenMode := false;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2836
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2837
    InitStepsFlags  := 0;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2838
    RealTicks       := 0;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2839
    AttackBar       := 0; // 0 - none, 1 - just bar at the right-down corner, 2 - from weapon
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2840
    cCaseFactor     := 5;  {0..9}
13627
605767bbd022 Move max. number of crate spawns into variable
Wuzzy <Wuzzy2@mail.ru>
parents: 13582
diff changeset
  2841
    cMaxCaseDrops   := 5;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2842
    cLandMines      := 4;
10955
a60cad2e0d26 change from default of 4 (like land mines) to 0, since it was breaking old scripts.
nemo
parents: 10878
diff changeset
  2843
    cAirMines       := 0;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2844
    cExplosives     := 2;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2845
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2846
    GameState       := Low(TGameState);
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2847
    zoom            := cDefaultZoomLevel;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2848
    ZoomValue       := cDefaultZoomLevel;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2849
    WeaponTooltipTex:= nil;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2850
    cLaserSighting  := false;
12306
cdd884397760 Fix sniper rifle disabling laser sight utility after shooting
Wuzzy <almikes@aol.com>
parents: 12286
diff changeset
  2851
    cLaserSightingSniper := false;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2852
    cVampiric       := false;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2853
    flagMakeCapture := false;
10633
2f062fac5791 Add that "make screenshots of Land/LandPixels" thing for map creators
nemo
parents: 10625
diff changeset
  2854
    flagDumpLand    := false;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2855
    bBetweenTurns   := false;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2856
    bWaterRising    := false;
13777
3fa9e30927f1 Fix team stats screwing up if game ends due to drowning in rising Sudden Death water
Wuzzy <Wuzzy2@mail.ru>
parents: 13627
diff changeset
  2857
    bDuringWaterRise:= false;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2858
    isCursorVisible := false;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2859
    isInLag         := false;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2860
    isPaused        := false;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2861
    isInMultiShoot  := false;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2862
    isSpeed         := false;
9670
1954f692e8c6 Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents: 9656
diff changeset
  2863
    isAFK           := false;
13459
08a3851aaf67 Add dedicated key to display mission panel: M
Wuzzy <Wuzzy2@mail.ru>
parents: 13457
diff changeset
  2864
    isShowMission   := false;
13461
854caa3c9212 Lua API: Add parameter forceDisplay to ShowMission to prevent manual hiding
Wuzzy <Wuzzy2@mail.ru>
parents: 13459
diff changeset
  2865
    isForceMission  := false;
7414
a9f18c66ce34 unc0rr, let me know what you think? Values were chosen semi-arbitrarily. But I was playing through a lot of large demos.
nemo
parents: 7403
diff changeset
  2866
    SpeedStart      := 0;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2867
    fastUntilLag    := false;
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7103
diff changeset
  2868
    fastScrolling   := false;
5247
bf6d4bc531d2 Ability to turn camera following gears off
unc0rr
parents: 5238
diff changeset
  2869
    autoCameraOn    := true;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2870
    cSeed           := '';
13491
f725701ca529 Add variable to make state of sound system clear
Wuzzy <Wuzzy2@mail.ru>
parents: 13461
diff changeset
  2871
    cIsSoundEnabled := false;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2872
    cVolumeDelta    := 0;
13039
aed4b25ff242 Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents: 12999
diff changeset
  2873
    cMuteToggle     := false;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2874
    cHasFocus       := true;
5296
0bb518ad2da8 At mikade's request and w/ unc0rr's blessing, dramatically slash inactivity delay from 1.25s down to a tenth of a second.
nemo
parents: 5294
diff changeset
  2875
    cInactDelay     := 100;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2876
    ReadyTimeLeft   := 0;
8330
aaefa587e277 update branch with default
koda
parents: 8096 8309
diff changeset
  2877
4695
ac2cb3b99d70 add a disabling for landback, set it if flakes are enabled
nemo
parents: 4611
diff changeset
  2878
    disableLandBack := false;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2879
    ScreenFade      := sfNone;
11519
aab4767d9a50 adding a "cinematic mode" - currently: black bars on bottom/top. triggered by rcplane when pressing enter
sheepluva
parents: 11477
diff changeset
  2880
    InCinematicMode := false;
aab4767d9a50 adding a "cinematic mode" - currently: black bars on bottom/top. triggered by rcplane when pressing enter
sheepluva
parents: 11477
diff changeset
  2881
    CinematicSteps  := 0;
aab4767d9a50 adding a "cinematic mode" - currently: black bars on bottom/top. triggered by rcplane when pressing enter
sheepluva
parents: 11477
diff changeset
  2882
    CinematicBarH   := 0;
11520
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11519
diff changeset
  2883
    CinematicScript := false;
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2884
11704
1694b379c83f fix clouds/flakes area not being adjusted after ResizeLand()
sheepluva
parents: 11520
diff changeset
  2885
    initScreenSpaceVars();
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2886
10271
e770bfcf488a whoops, forgot to include this file in commt
sheepluva
parents: 10266
diff changeset
  2887
    dirtyLandTexCount:= 0;
e770bfcf488a whoops, forgot to include this file in commt
sheepluva
parents: 10266
diff changeset
  2888
10625
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10603
diff changeset
  2889
    vobFrameTicks:= 0;
6877
b899393c8450 vob* variables need to be reset
koda
parents: 6828
diff changeset
  2890
    vobFramesCount:= 4;
b899393c8450 vob* variables need to be reset
koda
parents: 6828
diff changeset
  2891
    vobCount:= 0;
b899393c8450 vob* variables need to be reset
koda
parents: 6828
diff changeset
  2892
    vobVelocity:= 10;
b899393c8450 vob* variables need to be reset
koda
parents: 6828
diff changeset
  2893
    vobFallSpeed:= 100;
12189
31184d9b9bfc Water can now be animated
KoBeWi <kobewi4e@gmail.com>
parents: 12163
diff changeset
  2894
    watFrames:= 1;
31184d9b9bfc Water can now be animated
KoBeWi <kobewi4e@gmail.com>
parents: 12163
diff changeset
  2895
    watFrameTicks:= 0;
12282
c0ace4bf45fa Change water speed range for better precision
KoBeWi <kobewi4e@gmail.com>
parents: 12197
diff changeset
  2896
    watMove:= 100;
6877
b899393c8450 vob* variables need to be reset
koda
parents: 6828
diff changeset
  2897
10625
125e120165aa flake FrameTicks value of 0 now indicades that the frame should not be changed
sheepluva
parents: 10603
diff changeset
  2898
    vobSDFrameTicks:= 0;
5558
49cfd05ccb83 new SD flakes from mikade and a flash when sudden death starts
Henek
parents: 5543
diff changeset
  2899
    vobSDFramesCount:= 4;
4806
48c1a395f0a7 added flake configuration also in sudden death and SDClouds for underwater
Henek
parents: 4792
diff changeset
  2900
    vobSDCount:= 30 * cScreenSpace div LAND_WIDTH;
5558
49cfd05ccb83 new SD flakes from mikade and a flash when sudden death starts
Henek
parents: 5543
diff changeset
  2901
    vobSDVelocity:= 15;
49cfd05ccb83 new SD flakes from mikade and a flash when sudden death starts
Henek
parents: 5543
diff changeset
  2902
    vobSDFallSpeed:= 250;
12189
31184d9b9bfc Water can now be animated
KoBeWi <kobewi4e@gmail.com>
parents: 12163
diff changeset
  2903
    watSDFrames:= 1;
31184d9b9bfc Water can now be animated
KoBeWi <kobewi4e@gmail.com>
parents: 12163
diff changeset
  2904
    watSDFrameTicks:= 0;
12282
c0ace4bf45fa Change water speed range for better precision
KoBeWi <kobewi4e@gmail.com>
parents: 12197
diff changeset
  2905
    watSDMove:= 100;
4883
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2906
11136
9b5f60bc059e - Fix for iPhone 4S screen size
antonc27 <antonc27@mail.ru>
parents: 11112
diff changeset
  2907
{$IFDEF MOBILE}
9b5f60bc059e - Fix for iPhone 4S screen size
antonc27 <antonc27@mail.ru>
parents: 11112
diff changeset
  2908
    cMinScreenWidth  := min(cScreenWidth, 480);
9b5f60bc059e - Fix for iPhone 4S screen size
antonc27 <antonc27@mail.ru>
parents: 11112
diff changeset
  2909
    cMinScreenHeight := min(cScreenHeight, 320);
9b5f60bc059e - Fix for iPhone 4S screen size
antonc27 <antonc27@mail.ru>
parents: 11112
diff changeset
  2910
{$ELSE}
8358
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2911
    cMinScreenWidth  := min(cScreenWidth, 640);
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2912
    cMinScreenHeight := min(cScreenHeight, 480);
11136
9b5f60bc059e - Fix for iPhone 4S screen size
antonc27 <antonc27@mail.ru>
parents: 11112
diff changeset
  2913
{$ENDIF}
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2914
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2915
    cNewScreenWidth    := cScreenWidth;
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7848
diff changeset
  2916
    cNewScreenHeight   := cScreenHeight;
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2917
    cScreenResizeDelay := 0;
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6957
diff changeset
  2918
8358
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2919
    // make sure fullscreen resolution is always initialised somehow
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2920
    if cFullscreenWidth = 0 then
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2921
        cFullscreenWidth:= min(cWindowedWidth, 640);
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2922
    if cFullscreenHeight = 0 then
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2923
        cFullscreenHeight:= min(cWindowedHeight, 480);
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2924
10866
c1f75780c56f make using hog speech a bit more comfortable
sheepluva
parents: 10850
diff changeset
  2925
    SpeechHogNumber:= -1;
8358
274afc318dca have the default window size to 5/6, save fullscreen resolution on 'fullscreenResolution' instead of 'resolution', make sure cFullscreenStuff is initialised
koda
parents: 8354
diff changeset
  2926
4883
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4881
diff changeset
  2927
    LuaGoals:= '';
7848
775a72905708 * fix initialisation, preload values and then read args
koda
parents: 7780
diff changeset
  2928
    cMapName:= '';
12711
20dbb3a03e61 extend land digest to all surfaces that could possibly be loaded into Land[] - i.e. ones that impact sync
nemo
parents: 12708
diff changeset
  2929
    syncedPixelDigest:= 1;
7567
da2aa8355d91 allow lua to specify template by number
nemo
parents: 7495
diff changeset
  2930
da2aa8355d91 allow lua to specify template by number
nemo
parents: 7495
diff changeset
  2931
    LuaTemplateNumber:= 0;
9693
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9672
diff changeset
  2932
12286
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12282
diff changeset
  2933
    LuaEndTurnRequested:= false;
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12282
diff changeset
  2934
    LuaNoEndTurnTaunts:= false;
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12282
diff changeset
  2935
13121
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
  2936
    for t:= Low(TSound) to High(TSound) do
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
  2937
        MaskedSounds[t]:= false;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
  2938
13370
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13174
diff changeset
  2939
    for a:= Low(TAmmoStrId) to High(TAmmoStrId) do
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13174
diff changeset
  2940
        trluaammoe[a]:= true;
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13174
diff changeset
  2941
9693
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9672
diff changeset
  2942
    UIDisplay:= uiAll;
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9672
diff changeset
  2943
    LocalMessage:= 0;
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10271
diff changeset
  2944
10532
28651db3f90e fix view limits in stereo 3d
sheepluva
parents: 10526
diff changeset
  2945
    cStereoDepth:= 0;
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10271
diff changeset
  2946
    cViewLimitsDebug:= false;
10526
b43d175d1577 Avoid promoting violence to hedgehogs. At least once a year.
nemo
parents: 10472
diff changeset
  2947
    AprilOne := false;
10850
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10820
diff changeset
  2948
11154
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2949
    // initialize pointers to nil
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2950
    // (don't rely on implicit init of fpc, because that one only happens ONCE when used as lib)
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2951
    CurAmmoGear:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2952
    lastGearByUID:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2953
    GearsList:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2954
    CurrentTeam:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2955
    PreviousTeam:= nil;
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2956
    MissionTeam:= nil;
11154
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2957
    CurrentHedgehog:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2958
    FollowGear:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2959
    lastVisualGearByUID:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2960
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2961
    ChefHatTexture:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2962
    CrosshairTexture:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2963
    GenericHealthTexture:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2964
    WeaponTooltipTex:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2965
    HHTexture:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2966
    LandBackSurface:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2967
    ConfirmTexture:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2968
    MissionIcons:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2969
    ropeIconTex:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2970
12844
22cc3d82905a Should probably have gl context stuff in its own unit separate from store, but, don't close the gl context before anything that might still want to do gl operations
nemo
parents: 12838
diff changeset
  2971
    SDLWindow:= nil;
22cc3d82905a Should probably have gl context stuff in its own unit separate from store, but, don't close the gl context before anything that might still want to do gl operations
nemo
parents: 12838
diff changeset
  2972
    SDLGLContext:= nil;
22cc3d82905a Should probably have gl context stuff in its own unit separate from store, but, don't close the gl context before anything that might still want to do gl operations
nemo
parents: 12838
diff changeset
  2973
11154
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2974
    for i:= Low(ClansArray) to High(ClansArray) do
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2975
        begin
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2976
        ClansArray[i]:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2977
        end;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2978
11734
f48408dcea36 create forts in random order
sheepluva
parents: 11704
diff changeset
  2979
    SpawnClansArray:= ClansArray;
f48408dcea36 create forts in random order
sheepluva
parents: 11704
diff changeset
  2980
11154
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2981
    for i:= Low(TeamsArray) to High(TeamsArray) do
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2982
        begin
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2983
        TeamsArray[i]:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2984
        end;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2985
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2986
    for i:= Low(CountTexz) to High(CountTexz) do
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2987
        begin
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2988
        CountTexz[i]:= nil;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2989
        end;
1d08386a7c0f make uVariables not depend on implicit one-time initialization by FPC
sheepluva
parents: 11151
diff changeset
  2990
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2991
end;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2992
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2993
procedure freeModule;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2994
begin
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2995
end;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents:
diff changeset
  2996
4372
3836973380b9 remove some more PHedgehog casts
nemo
parents: 4371
diff changeset
  2997
end.