hedgewars/uTypes.pas
author Wuzzy <Wuzzy2@mail.ru>
Sat, 20 Apr 2019 05:39:57 +0200
changeset 14820 183677a07c8d
parent 14819 fba15e2f5e5b
child 14844 9e8c201eae9d
permissions -rw-r--r--
Separate Yoohoo.ogg into "Yoohoo" voice and kiss sound Sound has been separated with mp3splt, so no quality loss
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: 10874
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: 10040
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
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    19
{$INCLUDE "options.inc"}
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    20
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    21
unit uTypes;
5125
sheepluva
parents: 5118
diff changeset
    22
(*
sheepluva
parents: 5118
diff changeset
    23
 * This unit defines various types and enumerations for usage in different
sheepluva
parents: 5118
diff changeset
    24
 * places in the engine code.
sheepluva
parents: 5118
diff changeset
    25
 *)
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    26
interface
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    27
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
    28
uses SDLh, uFloat, GLunit, uConsts, Math;
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    29
4812
f924be23ffb4 merge with HEAD after 0.9.15 release, move consts and vars in their proper files
koda
parents: 4807
diff changeset
    30
// NOTE: typed const is a variable despite const qualifier
f924be23ffb4 merge with HEAD after 0.9.15 release, move consts and vars in their proper files
koda
parents: 4807
diff changeset
    31
// in freepascal you may actually use var for the same purpose
f924be23ffb4 merge with HEAD after 0.9.15 release, move consts and vars in their proper files
koda
parents: 4807
diff changeset
    32
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    33
type
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    34
    HwColor4f = record
6277
627b5752733a A try to improve parser move (has regressions)
unc0rr
parents: 5968
diff changeset
    35
        r, g, b, a: byte;
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    36
        end;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    37
5125
sheepluva
parents: 5118
diff changeset
    38
    // Possible states of the game
13077
c213645ff848 Having chat mode as game state was a mistake
unc0rr
parents: 13068
diff changeset
    39
    TGameState = (gsLandGen, gsStart, gsGame, gsConfirm, gsExit, gsSuspend);
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    40
5125
sheepluva
parents: 5118
diff changeset
    41
    // Game types that help determining what the engine is actually supposed to do
13487
d23731fe84d4 Fix hwengine --help returning with exit code 51
Wuzzy <Wuzzy2@mail.ru>
parents: 13458
diff changeset
    42
    TGameType = (gmtLocal, gmtDemo, gmtNet, gmtSave, gmtLandPreview, gmtBadSyntax, gmtRecord, gmtSyntaxHelp);
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    43
5125
sheepluva
parents: 5118
diff changeset
    44
    // Different files are stored in different folders, this enumeration is used to tell which folder to use
12106
9bc19f722169 Bug #108 - Phyfs/Pathz: Fix binds not being loaded
sheepluva
parents: 12072
diff changeset
    45
    TPathType = (ptNone, ptData, ptGraphics, ptThemes, ptCurrTheme, ptConfig, ptTeams, ptMaps,
9244
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
    46
            ptMapCurrent, ptDemos, ptSounds, ptGraves, ptFonts, ptForts, ptLocale,
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
    47
            ptAmmoMenu, ptHedgehog, ptVoices, ptHats, ptFlags, ptMissionMaps,
14819
fba15e2f5e5b Poison taunts: Fall back to Default voice if missing
Wuzzy <Wuzzy2@mail.ru>
parents: 14752
diff changeset
    48
            ptSuddenDeath, ptButtons, ptShaders, ptDefaultVoice);
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    49
5125
sheepluva
parents: 5118
diff changeset
    50
    // Available sprites for displaying stuff
11912
d3a852554aa7 Turn timer digits green when it's still the ready timer
Wuzzy <almikes@aol.com>
parents: 11911
diff changeset
    51
    TSprite = (sprWater, sprCloud, sprBomb, sprBigDigit, sprBigDigitGray, sprBigDigitGreen,
d3a852554aa7 Turn timer digits green when it's still the ready timer
Wuzzy <almikes@aol.com>
parents: 11911
diff changeset
    52
            sprBigDigitRed, sprFrame, sprLag, sprArrow, sprBazookaShell, sprTargetP, sprBee,
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    53
            sprSmokeTrace, sprRopeHook, sprExplosion50, sprMineOff,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    54
            sprMineOn, sprMineDead, sprCase, sprFAid, sprDynamite, sprPower,
6609
5861b2cc991f minor cleanup, gather AMSlotSize in uConsts
koda
parents: 6580
diff changeset
    55
            sprClusterBomb, sprClusterParticle, sprFlame,
5861b2cc991f minor cleanup, gather AMSlotSize in uConsts
koda
parents: 6580
diff changeset
    56
            sprHorizont, sprHorizontL, sprHorizontR, sprSky, sprSkyL, sprSkyR,
6627
18cbb75aba59 add individual hog healths to team health bar
nemo
parents: 6609
diff changeset
    57
            sprAMSlot, sprAMAmmos, sprAMAmmosBW, sprAMSlotKeys, sprAMCorners,
6609
5861b2cc991f minor cleanup, gather AMSlotSize in uConsts
koda
parents: 6580
diff changeset
    58
            sprFinger, sprAirBomb, sprAirplane, sprAmAirplane, sprAmGirder,
5861b2cc991f minor cleanup, gather AMSlotSize in uConsts
koda
parents: 6580
diff changeset
    59
            sprHHTelepMask, sprSwitch, sprParachute, sprTarget, sprRopeNode,
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    60
            sprQuestion, sprPowerBar, sprWindBar, sprWindL, sprWindR,
6676
21cf35a570a7 add keywords for landscape ammomenu and touch interface
koda
parents: 6637
diff changeset
    61
{$IFDEF USE_TOUCH_INTERFACE}
6685
ef706fccfb0a moved other widgets under the USE_TOUCH_INTERFACE, added pause button (at least, graphically...)
koda
parents: 6683
diff changeset
    62
            sprFireButton, sprArrowUp, sprArrowDown, sprArrowLeft, sprArrowRight,
6957
ab8034208fcd target using the utility button, this fixes bee
Xeli
parents: 6889
diff changeset
    63
            sprJumpWidget, sprAMWidget, sprPauseButton, sprTimerButton, sprTargetButton,
14538
1dab5d92aca7 Add button to set bounciness in touch interface
Wuzzy <Wuzzy2@mail.ru>
parents: 14530
diff changeset
    64
            sprSwitchButton, sprBounceButton,
6637
b4a3310f2974 show buttons on the screen, similar to the iOS overlay
Xeli
parents: 6627
diff changeset
    65
{$ENDIF}
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    66
            sprFlake, sprHandRope, sprHandBazooka, sprHandShotgun,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    67
            sprHandDEagle, sprHandAirAttack, sprHandBaseball, sprPHammer,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    68
            sprHandBlowTorch, sprBlowTorch, sprTeleport, sprHHDeath,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    69
            sprShotgun, sprDEagle, sprHHIdle, sprMortar, sprTurnsLeft,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    70
            sprKamikaze, sprWhip, sprKowtow, sprSad, sprWave,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    71
            sprHurrah, sprLemonade, sprShrug, sprJuggle, sprExplPart, sprExplPart2,
6609
5861b2cc991f minor cleanup, gather AMSlotSize in uConsts
koda
parents: 6580
diff changeset
    72
            sprCakeWalk, sprCakeDown, sprWatermelon,
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    73
            sprEvilTrace, sprHellishBomb, sprSeduction, sprDress,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    74
            sprCensored, sprDrill, sprHandDrill, sprHandBallgun, sprBalls,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    75
            sprPlane, sprHandPlane, sprUtility, sprInvulnerable, sprVampiric, sprGirder,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    76
            sprSpeechCorner, sprSpeechEdge, sprSpeechTail,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    77
            sprThoughtCorner, sprThoughtEdge, sprThoughtTail,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    78
            sprShoutCorner, sprShoutEdge, sprShoutTail,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    79
            sprSniperRifle, sprBubbles, sprJetpack, sprHealth, sprHandMolotov, sprMolotov,
5065
0c2c509ccc7b mikade really likes the snow dust
nemo
parents: 5062
diff changeset
    80
            sprSmoke, sprSmokeWhite, sprShell, sprDust, sprSnowDust, sprExplosives, sprExplosivesRoll,
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    81
            sprAmTeleport, sprSplash, sprDroplet, sprBirdy, sprHandCake, sprHandConstruction,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    82
            sprHandGrenade, sprHandMelon, sprHandMortar, sprHandSkip, sprHandCluster,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    83
            sprHandDynamite, sprHandHellish, sprHandMine, sprHandSeduction, sprHandVamp,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    84
            sprBigExplosion, sprSmokeRing, sprBeeTrace, sprEgg, sprTargetBee, sprHandBee,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    85
            sprFeather, sprPiano, sprHandSineGun, sprPortalGun, sprPortal,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    86
            sprCheese, sprHandCheese, sprHandFlamethrower, sprChunk, sprNote,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    87
            sprSMineOff, sprSMineOn, sprHandSMine, sprHammer,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    88
            sprHandResurrector, sprCross, sprAirDrill, sprNapalmBomb,
4782
603916ddf4b6 added also splash and droplets to sd and refactored theme.cfg, not all themes updated
Henek
parents: 4772
diff changeset
    89
            sprBulletHit, sprSnowball, sprHandSnowball, sprSnow,
6025
cac1d5601d7c reviewed the build system and parts of the previous merge, performed some code cleanup
koda
parents: 6023
diff changeset
    90
            sprSDFlake, sprSDWater, sprSDCloud, sprSDSplash, sprSDDroplet, sprTardis,
10792
f6df7d6e18e5 Toss in scaled down underwater SD mine as "air mine" pending, er, cybernetic butterflies or whatever
nemo
parents: 10789
diff changeset
    91
            sprSlider, sprBotlevels, sprHandKnife, sprKnife, sprStar, sprIceTexture, sprIceGun,
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: 12464
diff changeset
    92
            sprFrozenHog, sprAmRubber, sprBoing, sprCustom1, sprCustom2, sprCustom3, sprCustom4,
13404
8ce83caec236 Make mine active/hunting glow a bit more obvious. Add frozen sprite, increase ice beam mine "hit" radius a bit
nemo
parents: 13161
diff changeset
    93
            sprCustom5, sprCustom6, sprCustom7, sprCustom8, sprFrozenAirMine, sprAirMine, sprHandAirMine,
14736
8563cc40fc1e Invert colors if clan color is very dark
Wuzzy <Wuzzy2@mail.ru>
parents: 14611
diff changeset
    94
            sprFlakeL, sprSDFlakeL, sprCloudL, sprSDCloudL, sprCreeper, sprHandCreeper, sprMinigun,
8563cc40fc1e Invert colors if clan color is very dark
Wuzzy <Wuzzy2@mail.ru>
parents: 14611
diff changeset
    95
            sprSliderInverted, sprFingerBack, sprFingerBackInv, sprTargetPBack, sprTargetPBackInv
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    96
            );
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    97
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
    98
    // Gears that interact with other Gears and/or Land
10829
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
    99
    // first row of gears (<gtExplosives) should be avoided when searching a spawn place
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   100
    TGearType = (gtFlame, gtHedgehog, gtMine, gtCase, gtAirMine, gtExplosives, 
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   101
            gtGrenade, gtShell, gtGrave, gtBee, // 9
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   102
            gtShotgunShot, gtPickHammer, gtRope,  // 12
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   103
            gtDEagleShot, gtDynamite, gtClusterBomb, gtCluster, gtShover, // 17
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   104
            gtFirePunch, gtATStartGame, // 19
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   105
            gtATFinishGame, gtParachute, gtAirAttack, gtAirBomb, gtBlowTorch, // 24
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   106
            gtGirder, gtTeleport, gtSwitcher, gtTarget, gtMortar, // 29
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   107
            gtWhip, gtKamikaze, gtCake, gtSeduction, gtWatermelon, gtMelonPiece, // 35
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   108
            gtHellishBomb, gtWaterUp, gtDrill, gtBallGun, gtBall, gtRCPlane, // 41
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   109
            gtSniperRifleShot, gtJetpack, gtMolotov, gtBirdy, // 45
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   110
            gtEgg, gtPortal, gtPiano, gtGasBomb, gtSineGunShot, gtFlamethrower, // 51
158b5dd6b3c9 avoid airmines too when spawning
nemo
parents: 10809
diff changeset
   111
            gtSMine, gtPoisonCloud, gtHammer, gtHammerHit, gtResurrector, // 56
14196
ab5e710d353d Remove all traces of dead code related to amStructure/gtStructure
Wuzzy <Wuzzy2@mail.ru>
parents: 14042
diff changeset
   112
            gtNapalmBomb, gtSnowball, gtFlake, gtLandGun, gtTardis, // 61
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13824
diff changeset
   113
            gtIceGun, gtAddAmmo, gtGenericFaller, gtKnife, gtCreeper, gtMinigun, gtMinigunBullet); // 68
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   114
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   115
    // Gears that are _only_ of visual nature (e.g. background stuff, visual effects, speechbubbles, etc.)
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   116
    TVisualGearType = (vgtFlake, vgtCloud, vgtExplPart, vgtExplPart2, vgtFire,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   117
            vgtSmallDamageTag, vgtTeamHealthSorter, vgtSpeechBubble, vgtBubble,
5563
fc73b6e941f7 Use same visual gear for health tags and hearts.
nemo
parents: 5562
diff changeset
   118
            vgtSteam, vgtAmmo, vgtSmoke, vgtSmokeWhite, vgtShell,
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   119
            vgtDust, vgtSplash, vgtDroplet, vgtSmokeRing, vgtBeeTrace, vgtEgg,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   120
            vgtFeather, vgtHealthTag, vgtSmokeTrace, vgtEvilTrace, vgtExplosion,
5357
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5319
diff changeset
   121
            vgtBigExplosion, vgtChunk, vgtNote, vgtLineTrail, vgtBulletHit, vgtCircle,
10251
a3b42e81803c collision indicator on failed girder placement (especially useful with rubberband I guess). still needs some tweaks but I am going to bed now :P
sheepluva
parents: 10162
diff changeset
   122
            vgtSmoothWindBar, vgtStraightShot, vgtNoPlaceWarn);
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   123
5125
sheepluva
parents: 5118
diff changeset
   124
    // Damage can be caused by different sources
14040
128fbd36eee4 Stop using dsUnknown, replace with concrete damage sources
Wuzzy <Wuzzy2@mail.ru>
parents: 14037
diff changeset
   125
    TDamageSource = (dsUnknown, dsFall, dsBullet, dsExplosion, dsShove, dsPoison, dsHammer);
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   126
5125
sheepluva
parents: 5118
diff changeset
   127
    // Available sounds
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   128
    TSound = (sndNone,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   129
            sndGrenadeImpact, sndExplosion, sndThrowPowerUp, sndThrowRelease,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   130
            sndSplash, sndShotgunReload, sndShotgunFire, sndGraveImpact,
5493
49769489af37 New sounds: mudball, mine bounce, hammer
grammickj
parents: 5357
diff changeset
   131
            sndMineImpact, sndMineTick, sndMudballImpact,
49769489af37 New sounds: mudball, mine bounce, hammer
grammickj
parents: 5357
diff changeset
   132
            sndPickhammer, sndGun, sndBee, sndJump1, sndJump2,
7980
7f8df51553a7 Remove duplicate files from voices (add a fallback check in uSound). Add JustYouWait as an alternate to IllGetYou. Note that IllGetYou being called every turn seems awkward. IMO they probably should be reserved for significant enemy action. Maybe played by team of heavily damaged or killed hog.
nemo
parents: 7754
diff changeset
   133
            sndJump3, sndYesSir, sndLaugh, sndIllGetYou, sndJustYouWait, sndIncoming,
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   134
            sndMissed, sndStupid, sndFirstBlood, sndBoring, sndByeBye,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   135
            sndSameTeam, sndNutter, sndReinforce, sndTraitor, sndRegret,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   136
            sndEnemyDown, sndCoward, sndHurry, sndWatchIt, sndKamikaze,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   137
            sndCake, sndOw1, sndOw2, sndOw3, sndOw4, sndFirePunch1, sndFirePunch2,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   138
            sndFirePunch3, sndFirePunch4, sndFirePunch5, sndFirePunch6,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   139
            sndMelon, sndHellish, sndYoohoo, sndRCPlane, sndWhipCrack,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   140
            sndRideOfTheValkyries, sndDenied, sndPlaced, sndBaseballBat,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   141
            sndVaporize, sndWarp, sndSuddenDeath, sndMortar, sndShutter,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   142
            sndHomerun, sndMolotov, sndCover, sndUhOh, sndOops,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   143
            sndNooo, sndHello, sndRopeShot, sndRopeAttach, sndRopeRelease,
4978
0ef650ea3b12 add victory/flawless victory sounds. untested
nemo
parents: 4976
diff changeset
   144
            sndSwitchHog, sndVictory, sndFlawless, sndSniperReload, sndSteps, sndLowGravity,
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   145
            sndHellishImpact1, sndHellishImpact2, sndHellishImpact3, sndHellishImpact4,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   146
            sndMelonImpact, sndDroplet1, sndDroplet2, sndDroplet3, sndEggBreak, sndDrillRocket,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   147
            sndPoisonCough, sndPoisonMoan, sndBirdyLay, sndWhistle, sndBeeWater,
9244
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
   148
            sndPiano0, sndPiano1, sndPiano2, sndPiano3, sndPiano4, sndPiano5, sndPiano6, sndPiano7,
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
   149
            sndPiano8, sndSkip, sndSineGun, sndOoff1, sndOoff2, sndOoff3, sndWhack,
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
   150
            sndComeonthen, sndParachute, sndBump, sndResurrector, sndPlane, sndTardis, sndFrozenHogImpact,
11911
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11878
diff changeset
   151
            sndIceBeam, sndHogFreeze, sndAirMineImpact, sndKnifeImpact, sndExtraTime, sndLaserSight,
6145efcff302 Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents: 11878
diff changeset
   152
            sndInvulnerable, sndJetpackLaunch, sndJetpackBoost, sndPortalShot, sndPortalSwitch,
12194
ac9cf0cf40ee Add sounds for rubberduck drop, destruction and water collision
Wuzzy <almikes@aol.com>
parents: 12193
diff changeset
   153
            sndPortalOpen, sndBlowTorch, sndCountdown1, sndCountdown2, sndCountdown3, sndCountdown4,
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13824
diff changeset
   154
            sndCreeperDrop, sndCreeperWater, sndCreeperDie, sndCustom1, sndCustom2, sndCustom3, sndCustom4,
13985
1670fc3957df Add sound for landspray
Wuzzy <Wuzzy2@mail.ru>
parents: 13984
diff changeset
   155
            sndCustom5, sndCustom6, sndCustom7, sndCustom8, sndMinigun, sndFlamethrower, sndIceBeamIdle,
14014
f09276eb0c27 Add 7 new taunts
Wuzzy <Wuzzy2@mail.ru>
parents: 14011
diff changeset
   156
            sndLandGun, sndCaseImpact, sndExtraDamage, sndFirePunchHit, sndGrenade, sndThisOneIsMine,
14015
544b32038664 Add 3 taunts: Amazing, Brilliant, Excellent
Wuzzy <Wuzzy2@mail.ru>
parents: 14014
diff changeset
   157
            sndWhatThe, sndSoLong, sndOhDear, sndGonnaGetYou, sndDrat, sndBugger, sndAmazing,
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   158
            sndBrilliant, sndExcellent, sndFire, sndWatchThis, sndRunAway, sndRevenge, sndCutItOut,
14820
183677a07c8d Separate Yoohoo.ogg into "Yoohoo" voice and kiss sound
Wuzzy <Wuzzy2@mail.ru>
parents: 14819
diff changeset
   159
            sndLeaveMeAlone, sndOuch, sndHmm, sndKiss);
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   160
5125
sheepluva
parents: 5118
diff changeset
   161
    // Available ammo types to be used by hedgehogs
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   162
    TAmmoType  = (amNothing, amGrenade, amClusterBomb, amBazooka, amBee, amShotgun, amPickHammer, // 6
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   163
            amSkip, amRope, amMine, amDEagle, amDynamite, amFirePunch, amWhip, // 13
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   164
            amBaseballBat, amParachute, amAirAttack, amMineStrike, amBlowTorch, // 18
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   165
            amGirder, amTeleport, amSwitch, amMortar, amKamikaze, amCake, // 24
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   166
            amSeduction, amWatermelon, amHellishBomb, amNapalm, amDrill, amBallgun, // 30
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   167
            amRCPlane, amLowGravity, amExtraDamage, amInvulnerable, amExtraTime, // 35
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   168
            amLaserSight, amVampiric, amSniperRifle, amJetpack, amMolotov, amBirdy, amPortalGun, // 42
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   169
            amPiano, amGasBomb, amSineGun, amFlamethrower, amSMine, amHammer, // 48
14196
ab5e710d353d Remove all traces of dead code related to amStructure/gtStructure
Wuzzy <Wuzzy2@mail.ru>
parents: 14042
diff changeset
   170
            amResurrector, amDrillStrike, amSnowball, amTardis, amLandGun, // 53
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13824
diff changeset
   171
            amIceGun, amKnife, amRubber, amAirMine, amCreeper, amMinigun); // 59
14530
ec0afe1c6024 Add control (default: X) to unselect current weapon
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   172
    // NOTE: If we ever reach 126 ammo types, make sure to skip ammo type number 126 because it's
ec0afe1c6024 Add control (default: X) to unselect current weapon
Wuzzy <Wuzzy2@mail.ru>
parents: 14398
diff changeset
   173
    // reserved as synonym for amNothing. See also chSetWeapon.
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   174
5125
sheepluva
parents: 5118
diff changeset
   175
    // Different kind of crates that e.g. hedgehogs can pick up
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   176
    TCrateType = (HealthCrate, AmmoCrate, UtilityCrate);
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   177
5639
ebe9858eb6a3 Removed chinese font
Xeli
parents: 5619
diff changeset
   178
    THWFont = (fnt16, fntBig, fntSmall {$IFNDEF MOBILE}, CJKfnt16, CJKfntBig, CJKfntSmall{$ENDIF});
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   179
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   180
    TCapGroup = (capgrpGameState, capgrpAmmoinfo, capgrpVolume,
5118
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5065
diff changeset
   181
            capgrpMessage, capgrpMessage2, capgrpAmmostate);
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   182
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   183
    TStatInfoType = (siGameResult, siMaxStepDamage, siMaxStepKills, siKilledHHs,
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   184
            siClanHealth, siTeamStats, siPlayerKills, siMaxTeamDamage,
9178
c0902317c823 created a new sendstat type for changing the kills label
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9175
diff changeset
   185
            siMaxTeamKills, siMaxTurnSkips, siCustomAchievement, siGraphTitle,
13768
c084bd440009 Add funny message in stats screen when everyone wins
Wuzzy <Wuzzy2@mail.ru>
parents: 13758
diff changeset
   186
            siPointType, siTeamRank, siEverAfter);
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   187
9244
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
   188
    // Various 'emote' animations a hedgehog can do
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   189
    TWave = (waveRollup, waveSad, waveWave, waveHurrah, waveLemonade, waveShrug, waveJuggle);
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   190
4812
f924be23ffb4 merge with HEAD after 0.9.15 release, move consts and vars in their proper files
koda
parents: 4807
diff changeset
   191
    TRenderMode = (rmDefault, rmLeftEye, rmRightEye);
8359
9a7024b2a4d3 Removed wiggle 3D mode, reorder the list of 3D modes.
martin_bede
parents: 8204
diff changeset
   192
    TStereoMode = (smNone, smRedCyan, smCyanRed, smRedBlue, smBlueRed, smRedGreen, smGreenRed, smHorizontal, smVertical);
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9377
diff changeset
   193
    TWorldEdge = (weNone, weWrap, weBounce, weSea, weSky);
9693
9e31e3bb4476 Delete now toggles hiding team area
nemo
parents: 9685
diff changeset
   194
    TUIDisplay = (uiAll, uiNoTeams, uiNone);
11744
ac58a063d26a Added "Forts" to map type selection. This makes the mode easier selectable/discoverable. Also the slider can be used to adjust the distance between forts.
sheepluva
parents: 11734
diff changeset
   195
    TMapGen = (mgRandom, mgMaze, mgPerlin, mgDrawn, mgForts);
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10466
diff changeset
   196
9473
a51a69094c24 partial implementation of non-infinite world (edge wrap/warp/bounce)
nemo
parents: 9377
diff changeset
   197
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   198
    THHFont = record
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   199
            Handle: PTTF_Font;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   200
            Height: LongInt;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   201
            style: LongInt;
6889
149638c9cbc4 More string types
unc0rr
parents: 6888
diff changeset
   202
            Name: string[31];
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   203
            end;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   204
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   205
    PAmmo = ^TAmmo;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   206
    TAmmo = record
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   207
            Propz: LongWord;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   208
            Count: LongWord;
9244
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
   209
// Using for place hedgehogs mode, but for any other situation where the initial count would be needed I guess.
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
   210
// For example, say, a mode where the weaponset is reset each turn, or on sudden death
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   211
            NumPerTurn: LongWord;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   212
            Timer: LongWord;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   213
            Pos: LongWord;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   214
            AmmoType: TAmmoType;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   215
            AttackVoice: TSound;
5319
51d8e4747876 bounce. tweak of values, remove friction modifier, move to weapon, to match timer behaviour
nemo
parents: 5316
diff changeset
   216
            Bounciness: LongWord;
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   217
            end;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   218
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   219
    TVertex2f = record
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6426
diff changeset
   220
            X, Y: GLfloat;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6426
diff changeset
   221
            end;
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   222
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   223
    TVertex2i = record
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6426
diff changeset
   224
            X, Y: GLint;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6426
diff changeset
   225
            end;
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   226
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7996
diff changeset
   227
    TMatrix4x4f = array[0..3, 0..3] of GLfloat;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7996
diff changeset
   228
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   229
    PTexture = ^TTexture;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   230
    TTexture = record
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   231
            id: GLuint;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   232
            w, h, scale: LongInt;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   233
            rx, ry: GLfloat;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   234
            priority: GLfloat;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   235
            vb, tb: array [0..3] of TVertex2f;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   236
            PrevTexture, NextTexture: PTexture;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   237
            end;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   238
13096
d78e65c66573 Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents: 13077
diff changeset
   239
    THogEffect = (heInvulnerable, heResurrectable, hePoisoned, heResurrected, heFrozen, heArtillery);
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   240
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   241
    TScreenFade = (sfNone, sfInit, sfToBlack, sfFromBlack, sfToWhite, sfFromWhite);
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   242
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   243
    PGear = ^TGear;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   244
    PHedgehog = ^THedgehog;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   245
    PTeam     = ^TTeam;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   246
    PClan     = ^TClan;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   247
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   248
    TGearStepProcedure = procedure (Gear: PGear);
9244
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
   249
// So, you are here looking for variables you can (ab)use to store some gear state?
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   250
// Not all members of this structure are created equal. Comments below are my take on what can be used for what in the gear structure.
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   251
    TGear = record
9244
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
   252
// Do *not* ever override these.
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   253
            NextGear, PrevGear: PGear;  // Linked list
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   254
            Z: Longword;                // Z index. For rendering. Sets order in list
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   255
            Active: Boolean;            // Is gear Active (running step code)
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   256
            Kind: TGearType;
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   257
            doStep: TGearStepProcedure; // Code the gear is running
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   258
            AmmoType : TAmmoType;       // Ammo type associated with this kind of gear
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   259
            RenderTimer: Boolean;       // Will visually display Timer if true
14749
533ac9774279 Add key to display extra gear info tags
Wuzzy <Wuzzy2@mail.ru>
parents: 14736
diff changeset
   260
            RenderHealth: Boolean;      // Will visually display Health if true
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   261
            Target : TPoint;            // Gear target. Will render in uGearsRender unless a special case is added
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   262
            AIHints: LongWord;          // hints for ai.
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   263
            LastDamage: PHedgehog;      // Used to track damage source for stats
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   264
            CollisionIndex: LongInt;    // Position in collision array
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   265
            Message: LongWord;          // Game messages are stored here. See gm bitmasks in uConsts
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   266
            uid: Longword;              // Lua use this to reference gears
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10792
diff changeset
   267
            Hedgehog: PHedgehog;        // set to CurrentHedgehog on gear creation.  uStats damage code appears to assume it will never be nil and never be changed.  If you override it, make sure it is set to a non-nil PHedgehog before dealing damage.
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   268
// Strongly recommended not to override these.  Will mess up generic operations like portaling
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   269
            X : hwFloat;              // X/Y/dX/dY are position/velocity. People count on these having semi-normal values
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   270
            Y : hwFloat;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   271
            dX: hwFloat;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   272
            dY: hwFloat;
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   273
            State : Longword;        // See gst bitmask values in uConsts
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   274
            PortalCounter: LongWord; // Necessary to interrupt portal loops.  Not possible to avoid infinite loops without it.
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   275
// Don't use these if you're using generic movement like doStepFallingGear and explosion shoves. Generally recommended not to use.
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   276
            Radius: LongInt;     // Radius. If not using uCollisions, is usually used to indicate area of effect
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   277
            CollisionMask: Word; // Masking off Land impact  FF7F for example ignores current hog and crates
9248
3e8558dc285a BOM, pas2c only support ASCII
koda
parents: 9244
diff changeset
   278
            AdvBounce: Longword; // Triggers 45 bounces. Is a counter to avoid edge cases
13610
f1b6070a6e14 Fix projectiles reacing incorrectly with land just behind the wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents: 13487
diff changeset
   279
            Sticky: Boolean;     // True if gear is *normally* able to stick to landscape on impact
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   280
            Elasticity: hwFloat;
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   281
            Friction  : hwFloat;
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   282
            Density   : hwFloat; // Density is kind of a mix of size and density. Impacts distance thrown, wind.
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   283
            ImpactSound: TSound; // first sound, others have to be after it in the sounds def.
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   284
            nImpactSounds: Word; // count of ImpactSounds.
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   285
// Don't use these if you want to take damage normally, otherwise health/damage are commonly used for other purposes
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   286
            Health, Damage, Karma: LongInt;
9244
bb95e351270c fix a few loose ends here
koda
parents: 9197
diff changeset
   287
// DirAngle is a 'real' - if you do not need it for rotation of sprite in uGearsRender, you can use it for any visual-only value
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   288
            DirAngle: real;
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   289
// These are frequently overridden to serve some other purpose
12159
cb3e785534da whitespace fixes (SEE, I AM USEFUL!)
sheepluva
parents: 12158
diff changeset
   290
            Boom: Longword;          // amount of damage caused by the gear
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   291
            Pos: Longword;           // Commonly overridden.  Example use is posCase values in uConsts.
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   292
            Angle, Power : Longword; // Used for hog aiming/firing.  Angle is rarely used as an Angle otherwise.
9969
f27921b31b61 Cake falls when loses ground
unc0rr
parents: 9790
diff changeset
   293
            Timer, WDTimer : LongWord;        // Typically used for some sort of gear timer. Time to explosion, remaining fuel...
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   294
            Tag: LongInt;            // Quite generic. Variety of uses.
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   295
            FlightTime: Longword;    // Initially added for batting of hogs to determine homerun. Used for some firing delays
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   296
            MsgParam: LongWord;      // Initially stored a set of messages. So usually gm values like Message. Frequently overriden
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   297
// These are not used generically, but should probably be used for purpose intended. Definitely shouldn't override pointer type
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   298
            Tex: PTexture;          // A texture created by the gear. Shouldn't use for anything but textures
10032
db65298717da This adds idle hog tinting. Active hog tinting still needed.
nemo
parents: 9998
diff changeset
   299
            Tint: LongWord;         // Used to colour a texture
8774
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   300
            LinkedGear: PGear;      // Used to track a related gear. Portal pairs for example.
39754516eee6 Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents: 8557
diff changeset
   301
            SoundChannel: LongInt;  // Used to track a sound the gear started
10874
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   302
            Data: Pointer; // pointer to gear type specific data structure (if any)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6426
diff changeset
   303
            end;
6426
2d44f6561e72 Help parser a bit
unc0rr
parents: 6328
diff changeset
   304
    TPGearArray = array of PGear;
7335
3c6f08af7dac - Don't call Length() on variable size arrays
unc0rr
parents: 7272
diff changeset
   305
    PGearArrayS = record
3c6f08af7dac - Don't call Length() on variable size arrays
unc0rr
parents: 7272
diff changeset
   306
        size: LongWord;
3c6f08af7dac - Don't call Length() on variable size arrays
unc0rr
parents: 7272
diff changeset
   307
        ar: ^TPGearArray;
3c6f08af7dac - Don't call Length() on variable size arrays
unc0rr
parents: 7272
diff changeset
   308
        end;
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   309
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   310
    PVisualGear = ^TVisualGear;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   311
    TVGearStepProcedure = procedure (Gear: PVisualGear; Steps: Longword);
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   312
    TVisualGear = record
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   313
        NextGear, PrevGear: PVisualGear;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   314
        Frame,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   315
        FrameTicks: Longword;
4379
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4367
diff changeset
   316
        X : real;
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4367
diff changeset
   317
        Y : real;
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4367
diff changeset
   318
        dX: real;
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4367
diff changeset
   319
        dY: real;
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4367
diff changeset
   320
        tdX: real;
6cd6b77df8b8 No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents: 4367
diff changeset
   321
        tdY: real;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   322
        State : Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   323
        Timer: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   324
        Angle, dAngle: real;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   325
        Kind: TVisualGearType;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   326
        doStep: TVGearStepProcedure;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   327
        Tex: PTexture;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   328
        alpha, scale: GLfloat;
4365
4f2b1a152979 Remove ugly PHedgehog(Gear^.Hedgehog) cast
unc0rr
parents: 4361
diff changeset
   329
        Hedgehog: PHedgehog;
5357
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5319
diff changeset
   330
        Tag: LongInt;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   331
        Text: shortstring;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   332
        Tint: Longword;
4422
5e8cfef25ccb add a uid to VGs for purpose of Lua manipulation
nemo
parents: 4420
diff changeset
   333
        uid: Longword;
5585
c09f5b41644a Break visual gears list up into 4, to avoid iterating over entire list to draw a single layer. Also fix error in tag zoom.
nemo
parents: 5563
diff changeset
   334
        Layer: byte;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   335
        end;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   336
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   337
    TStatistics = record
14035
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   338
        DamageRecv,              // total damage received
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   339
        DamageGiven: Longword;   // total damage dealt
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   340
        StepDamageRecvInRow,     // number of enemy turns in row this hog received any damage
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   341
        StepDamageRecv,          // damage received in this turn
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   342
        StepDamageGiven,         // damage dealt in this turn
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   343
        StepKills: Longword;     // kills in this turn
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   344
        StepPoisoned,            // whether hog got poisoned this turn
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   345
        StepDied,                // whether hog died this turn
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   346
        Sacrificed,              // whether hog was sacrificed in suicide attack (kamikaze, piano)
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   347
        GotRevenge: boolean;     // whether hog got revenge in this turn
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   348
        MaxStepDamageRecv,       // most damage received in one turn
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   349
        MaxStepDamageGiven,      // most damage dealt in one turn
ecfd13128100 Add taunts: Leavemealone, Cutitout (when attacked many times)
Wuzzy <Wuzzy2@mail.ru>
parents: 14034
diff changeset
   350
        MaxStepKills: Longword;  // most kills in one turn
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   351
        FinishedTurns: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   352
        end;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   353
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   354
    TTeamStats = record
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   355
        Kills : Longword;
5202
45a16280d68d Some improvements on stats subsystem
unc0rr
parents: 5197
diff changeset
   356
        Suicides: Longword;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   357
        AIKills : Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   358
        TeamKills : Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   359
        TurnSkips : Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   360
        TeamDamage : Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   361
        end;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   362
13756
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   363
    PClanDeathLogEntry = ^TClanDeathLogEntry;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   364
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   365
    TClanDeathLogEntry = record
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   366
        Turn : Longword; // turn in which the clans were killed
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   367
        KilledClans : array[0..Pred(cMaxTeams)] of PClan; // array of clans that have died
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   368
        KilledClansCount: Longword; // number of clans that died
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   369
        NextEntry : PClanDeathLogEntry; // linked list
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   370
        end;
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   371
a0d6404a80a2 Rework rankings of losing clans: Rank them in the reverse order they died
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
   372
13068
6369d148cfff Much smaller TBinds type
unc0rr
parents: 13047
diff changeset
   373
    TBinds = record
6369d148cfff Much smaller TBinds type
unc0rr
parents: 13047
diff changeset
   374
                 indices: array[0..cKbdMaxIndex] of byte;
6369d148cfff Much smaller TBinds type
unc0rr
parents: 13047
diff changeset
   375
                 // zeroth element is reserved, indices[i] == 0 means no binding
6369d148cfff Much smaller TBinds type
unc0rr
parents: 13047
diff changeset
   376
                 binds: array[0..255] of shortstring;
6369d148cfff Much smaller TBinds type
unc0rr
parents: 13047
diff changeset
   377
                 lastIndex: byte;
6369d148cfff Much smaller TBinds type
unc0rr
parents: 13047
diff changeset
   378
             end;
6369d148cfff Much smaller TBinds type
unc0rr
parents: 13047
diff changeset
   379
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   380
    TKeyboardState = array[0..cKeyMaxIndex] of Byte;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   381
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   382
    PVoicepack = ^TVoicepack;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   383
    TVoicepack = record
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   384
        name: shortstring;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   385
        chunks: array [TSound] of PMixChunk;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   386
        end;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   387
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5612
diff changeset
   388
    TVoice = record
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5612
diff changeset
   389
        snd: TSound;
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5612
diff changeset
   390
        voicepack: PVoicePack;
14037
bf8b7c166b3c Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents: 14035
diff changeset
   391
        isFallback: boolean;
5638
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5612
diff changeset
   392
        end;
e35ba2a400d8 Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents: 5612
diff changeset
   393
7034
e3639ce1d4f8 (PointerTo (SimpleType _)) could be a pointer to a non-struct type
unc0rr
parents: 7016
diff changeset
   394
    THHAmmo = array[0..cMaxSlotIndex, 0..cMaxSlotAmmoIndex] of TAmmo;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   395
    PHHAmmo = ^THHAmmo;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   396
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   397
    THedgehog = record
7016
8b34f46e10c1 HAPPY 7000th COMMIT HEDGEWARS
koda
parents: 7010
diff changeset
   398
            Name: shortstring;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   399
            Gear: PGear;
4881
35e6269227b6 still in developement take on adding structures, working hiding of hogs and ejecting them later.
Henek
parents: 4812
diff changeset
   400
            GearHidden: PGear;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   401
            SpeechGear: PVisualGear;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   402
            NameTagTex,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   403
            HealthTagTex,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   404
            HatTex: PTexture;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   405
            Ammo: PHHAmmo;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   406
            CurAmmoType: TAmmoType;
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: 7335
diff changeset
   407
            PickUpType: LongWord;
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: 7335
diff changeset
   408
            PickUpDelay: LongInt;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   409
            AmmoStore: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   410
            Team: PTeam;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   411
            MultiShootAttacks: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   412
            visStepPos: LongWord;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   413
            BotLevel  : Byte; // 0 - Human player
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   414
            HatVisibility: GLfloat;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   415
            stats: TStatistics;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   416
            Hat: shortstring;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   417
            InitialHealth: LongInt; // used for gfResetHealth
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   418
            King: boolean;  // Flag for a bunch of hedgehog attributes
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   419
            Unplaced: boolean;  // Flag for hog placing mode
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   420
            Timer: Longword;
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9693
diff changeset
   421
            HealthBarHealth: LongInt;
7010
10a0a31804f3 Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents: 7007
diff changeset
   422
            Effects: array[THogEffect] of LongInt;
14034
f9281c294a4c Add revenge taunt
Wuzzy <Wuzzy2@mail.ru>
parents: 14019
diff changeset
   423
            RevengeHog: PHedgehog;   // For which hog this hog wants revenge most. For sndRevenge taunt
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   424
            end;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   425
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   426
    TTeam = record
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   427
            Clan: PClan;
7016
8b34f46e10c1 HAPPY 7000th COMMIT HEDGEWARS
koda
parents: 7010
diff changeset
   428
            TeamName: shortstring;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   429
            ExtDriven: boolean;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   430
            Binds: TBinds;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   431
            Hedgehogs: array[0..cMaxHHIndex] of THedgehog;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   432
            CurrHedgehog: LongWord;
9790
0b4b9fda5bd4 - /owner command to specify team owner
unc0rr
parents: 9769
diff changeset
   433
            NameTagTex,
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10603
diff changeset
   434
            OwnerTex,
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   435
            GraveTex,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   436
            AIKillsTex,
13018
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
   437
            LuaTeamValueTex,
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   438
            FlagTex: PTexture;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   439
            Flag: shortstring;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   440
            GraveName: shortstring;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   441
            FortName: shortstring;
9790
0b4b9fda5bd4 - /owner command to specify team owner
unc0rr
parents: 9769
diff changeset
   442
            Owner: shortstring;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   443
            TeamHealth: LongInt;
9720
453a1c29b7e4 Animate hedgehogs healths inside team health bar. Proper animation for the case when max team health grows is lost though.
unc0rr
parents: 9693
diff changeset
   444
            TeamHealthBarHealth: LongInt;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   445
            DrawHealthY: LongInt;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   446
            AttackBar: LongWord;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   447
            HedgehogsNumber: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   448
            voicepack: PVoicepack;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   449
            PlayerHash: shortstring;   // md5 hash of player name. For temporary enabling of hats as thank you. Hashed for privacy of players
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   450
            stats: TTeamStats;
14611
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14538
diff changeset
   451
            Passive: boolean; // if true, team will not participate in game. It is treated as if all its hedgehogs are frozen.
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14538
diff changeset
   452
                              // updating this value requires updating Passive in TClan as well!
14398
87562a68c41f Fix some King Mode bugs causing minions not always being properly killed
Wuzzy <Wuzzy2@mail.ru>
parents: 14378
diff changeset
   453
            hasKing: boolean; // true if team has a living king
10343
fe9853dea6c4 Finish implementation of ability to take control over your team after being disconnected. Completely untested.
unc0rr
parents: 10339
diff changeset
   454
            hasGone: boolean;
10345
2b264d67fac3 Make team disappear after 3 turns in 'gone' state
unc0rr
parents: 10344
diff changeset
   455
            skippedTurns: Longword;
10397
314164a9c912 rename of variable typo for readability
nemo
parents: 10361
diff changeset
   456
            isGoneFlagPendingToBeSet, isGoneFlagPendingToBeUnset: boolean;
13018
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
   457
            luaTeamValue: ansistring;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12898
diff changeset
   458
            hasLuaTeamValue: boolean;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   459
            end;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   460
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   461
    TClan = record
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   462
            Color: Longword;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   463
            Teams: array[0..Pred(cMaxTeams)] of PTeam;
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9655
diff changeset
   464
            HealthTex: PTexture;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   465
            TeamsNumber: Longword;
5016
9347d82a26cc added game mode Tag Team, mostly untested, please test :)
Henek
parents: 4978
diff changeset
   466
            TagTeamIndex: Longword;
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   467
            CurrTeam: LongWord;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   468
            ClanHealth: LongInt;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   469
            ClanIndex: LongInt;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   470
            TurnNumber: LongWord;
13758
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   471
            DeathLogged: boolean; // true if clan is dead and its latest death has been logged in the clan death log
b1177e9c9ee9 Fix player rankings getting confused if a clan was revived
Wuzzy <Wuzzy2@mail.ru>
parents: 13757
diff changeset
   472
            StatsHandled : boolean; // true if clan's rank has been handled for stats screen
4978
0ef650ea3b12 add victory/flawless victory sounds. untested
nemo
parents: 4976
diff changeset
   473
            Flawless: boolean;
14611
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14538
diff changeset
   474
            Passive: boolean; // informational. Must be set to true if all of the teams are passive
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   475
            end;
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   476
8204
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   477
     cdeclPtr = procedure; cdecl;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   478
     cdeclIntPtr = procedure(num: LongInt); cdecl;
8332
9333216f2054 fix hwc install and pas2c preprocessing (but not total conversion)
koda
parents: 8330
diff changeset
   479
     funcDoublePtr = function: Double;
8204
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   480
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   481
     TMobileRecord = record
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   482
                     PerformRumble: cdeclIntPtr;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   483
                     GameLoading: cdeclPtr;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   484
                     GameLoaded: cdeclPtr;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   485
                     SaveLoadingEnded: cdeclPtr;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   486
                     end;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8161
diff changeset
   487
4807
180dbfb13903 display caption for ammotype amNothing when switched to so that players know what just happened
sheepluva
parents: 4782
diff changeset
   488
     TAmmoStrId = (sidGrenade, sidClusterBomb, sidBazooka, sidBee, sidShotgun,
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   489
            sidPickHammer, sidSkip, sidRope, sidMine, sidDEagle,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   490
            sidDynamite, sidBaseballBat, sidFirePunch, sidSeconds,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   491
            sidParachute, sidAirAttack, sidMineStrike, sidBlowTorch,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   492
            sidGirder, sidTeleport, sidSwitch, sidMortar, sidWhip,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   493
            sidKamikaze, sidCake, sidSeduction, sidWatermelon,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   494
            sidHellishBomb, sidDrill, sidBallgun, sidNapalm, sidRCPlane,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   495
            sidLowGravity, sidExtraDamage, sidInvulnerable, sidExtraTime,
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   496
            sidLaserSight, sidVampiric, sidSniperRifle, sidJetpack,
7404
38a23771ee45 ooops (and indentation)
koda
parents: 7403
diff changeset
   497
            sidMolotov, sidBirdy, sidPortalGun, sidPiano, sidGasBomb,
38a23771ee45 ooops (and indentation)
koda
parents: 7403
diff changeset
   498
            sidSineGun, sidFlamethrower,sidSMine, sidHammer, sidResurrector,
38a23771ee45 ooops (and indentation)
koda
parents: 7403
diff changeset
   499
            sidDrillStrike, sidSnowball, sidNothing, sidTardis,
14196
ab5e710d353d Remove all traces of dead code related to amStructure/gtStructure
Wuzzy <Wuzzy2@mail.ru>
parents: 14042
diff changeset
   500
            sidLandGun, sidIceGun, sidKnife, sidRubber, sidAirMine,
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13824
diff changeset
   501
            sidCreeper, sidMinigun);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   502
12186
322aaad4a93d Load screen: Move “LOADING” from image into text box
Wuzzy <almikes@aol.com>
parents: 12175
diff changeset
   503
    TMsgStrId = (sidLoading, sidDraw, sidWinner, sidVolume, sidPaused,
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   504
            sidConfirm, sidSuddenDeath, sidRemaining, sidFuel, sidSync,
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   505
            sidNoEndTurn, sidNotYetAvailable, sidRoundSD, sidRoundsSD, sidReady,
7403
e8d0b21efa82 press 8 to mute audio while ingame
koda
parents: 7389
diff changeset
   506
            sidBounce1, sidBounce2, sidBounce3, sidBounce4, sidBounce5, sidBounce,
12175
9237bfb198c7 Fix time box tooltip saying it is not *yet* available in SD
Wuzzy <almikes@aol.com>
parents: 12174
diff changeset
   507
            sidMute, sidAFK, sidAutoCameraOff, sidAutoCameraOn, sidPressTarget,
13047
eadf8259306f Improve/fix messaging when multiple teams win
Wuzzy <Wuzzy2@mail.ru>
parents: 13042
diff changeset
   508
            sidNotAvailableInSD, sidHealthGain, sidEmptyCrate, sidUnknownKey,
eadf8259306f Improve/fix messaging when multiple teams win
Wuzzy <Wuzzy2@mail.ru>
parents: 13042
diff changeset
   509
            sidWinner2, sidWinner3, sidWinner4, sidWinner5, sidWinner6,
13156
26f0c3669b4e Make a few more engine strings translatable
Wuzzy <Wuzzy2@mail.ru>
parents: 13096
diff changeset
   510
            sidWinner7, sidWinnerAll, sidTeamGone, sidTeamBack, sidAutoSkip,
13639
05dd413393bf Make ammo count in ammo menu translatable, and replace “x” with “×”
Wuzzy <Wuzzy2@mail.ru>
parents: 13610
diff changeset
   511
            sidFPS, sidLuaParsingOff, sidLuaParsingOn, sidLuaParsingDenied,
14752
56098968df90 Don't explose mine timer in game if random (using Karma value)
Wuzzy <Wuzzy2@mail.ru>
parents: 14749
diff changeset
   512
            sidAmmoCount, sidChat, sidChatTeam, sidChatHog, sidUnknownGearValue);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   513
13457
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13404
diff changeset
   514
    TCmdHelpStrId = (
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13404
diff changeset
   515
            sidCmdHeaderBasic, sidCmdTogglechat, sidCmdTeam, sidCmdMe,
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13404
diff changeset
   516
            sidCmdPause, sidCmdPauseNet, sidCmdFullscreen, sidCmdQuit,
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13404
diff changeset
   517
            sidCmdHelp, sidCmdHelpTaunts, sidCmdHistory, sidLua,
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13404
diff changeset
   518
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13404
diff changeset
   519
            sidCmdHeaderTaunts, sidCmdSpeech, sidCmdThink, sidCmdYell,
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13404
diff changeset
   520
            sidCmdSpeechNumberHint, sidCmdHsa, sidCmdHta, sidCmdHya,
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13404
diff changeset
   521
            sidCmdHurrah, sidCmdIlovelotsoflemonade, sidCmdJuggle,
14378
4edc73fc722c Add chat command "/help room" to show room help in game
Wuzzy <Wuzzy2@mail.ru>
parents: 14352
diff changeset
   522
            sidCmdRollup, sidCmdShrug, sidCmdWave, sidCmdUnknown,
4edc73fc722c Add chat command "/help room" to show room help in game
Wuzzy <Wuzzy2@mail.ru>
parents: 14352
diff changeset
   523
            sidCmdHelpRoom, sidCmdHelpRoomFail);
13457
b587cdb03bac Add /help chat command for engine
Wuzzy <Wuzzy2@mail.ru>
parents: 13404
diff changeset
   524
5125
sheepluva
parents: 5118
diff changeset
   525
    // Events that are important for the course of the game or at least interesting for other reasons
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   526
    TEventId = (eidDied, eidDrowned, eidRoundStart, eidRoundWin, eidRoundDraw,
7404
38a23771ee45 ooops (and indentation)
koda
parents: 7403
diff changeset
   527
            eidNewHealthPack, eidNewAmmoPack, eidNewUtilityPack, eidTurnSkipped,
12169
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12159
diff changeset
   528
            eidHurtSelf, eidHomerun, eidGone, eidPoisoned, eidResurrected,
869cf5f34700 More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents: 12159
diff changeset
   529
            eidKamikaze, eidTimeTravelEnd, eidTimeout, eidKingDied);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   530
12072
10aad1cafc10 Game mode messages: New messages for PlaceHog+King; All messages get a colon to get highlighted; Reorder messages more logically
Wuzzy <almikes@aol.com>
parents: 11914
diff changeset
   531
    TGoalStrId = (gidCaption, gidSubCaption, gidPlaceKing, gidLowGravity, gidInvulnerable,
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   532
            gidVampiric, gidKarma, gidKing, gidPlaceHog, gidArtillery,
8795
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   533
            gidSolidLand, gidSharedAmmo, gidMineTimer, gidNoMineTimer,
b5b79a8f9354 merge correction, also what's with all those trailing whitespaces?
koda
parents: 8774
diff changeset
   534
            gidRandomMineTimer, gidDamageModifier, gidResetHealth, gidAISurvival,
11878
74e838b7eecc Show “More Wind” modifier in mission panel
Wuzzy <almikes@aol.com>
parents: 11766
diff changeset
   535
            gidInfAttack, gidResetWeps, gidPerHogAmmo, gidTagTeam, gidMoreWind);
4361
64ea345ab655 Move variables from uConsts to uVariables
unc0rr
parents: 4357
diff changeset
   536
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7996
diff changeset
   537
4367
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
   538
    TLandArray = packed array of array of LongWord;
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
   539
    TCollisionArray = packed array of array of Word;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7996
diff changeset
   540
    TDirtyTag = packed array of array of byte;
8330
aaefa587e277 update branch with default
koda
parents: 8026 8204
diff changeset
   541
4367
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
   542
    TPreview  = packed array[0..127, 0..31] of byte;
10162
38dbf26475d8 Add alpha channel to preview
unc0rr
parents: 10108
diff changeset
   543
    TPreviewAlpha  = packed array[0..127, 0..255] of byte;
4367
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
   544
6688
b2084a00a4cf added translate/fade animations for OnScreenWidgets
Xeli
parents: 6685
diff changeset
   545
    PWidgetMovement = ^TWidgetMovement;
b2084a00a4cf added translate/fade animations for OnScreenWidgets
Xeli
parents: 6685
diff changeset
   546
    TWidgetMovement = record
6701
58a43c2064ad the onScreenwidgets are multitouch now, frequently (alternating) tapping left and right still causes it to bug though, but you have to try hard to duplicate it, works ok for now
Xeli
parents: 6700
diff changeset
   547
        animate   : Boolean;
58a43c2064ad the onScreenwidgets are multitouch now, frequently (alternating) tapping left and right still causes it to bug though, but you have to try hard to duplicate it, works ok for now
Xeli
parents: 6700
diff changeset
   548
        source    : TPoint;
58a43c2064ad the onScreenwidgets are multitouch now, frequently (alternating) tapping left and right still causes it to bug though, but you have to try hard to duplicate it, works ok for now
Xeli
parents: 6700
diff changeset
   549
        target    : TPoint;
58a43c2064ad the onScreenwidgets are multitouch now, frequently (alternating) tapping left and right still causes it to bug though, but you have to try hard to duplicate it, works ok for now
Xeli
parents: 6700
diff changeset
   550
        startTime : Longword;
6688
b2084a00a4cf added translate/fade animations for OnScreenWidgets
Xeli
parents: 6685
diff changeset
   551
        end;
b2084a00a4cf added translate/fade animations for OnScreenWidgets
Xeli
parents: 6685
diff changeset
   552
b2084a00a4cf added translate/fade animations for OnScreenWidgets
Xeli
parents: 6685
diff changeset
   553
    POnScreenWidget = ^TOnScreenWidget;
b2084a00a4cf added translate/fade animations for OnScreenWidgets
Xeli
parents: 6685
diff changeset
   554
    TOnScreenWidget = record
9317
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9178
diff changeset
   555
        show          : boolean;            // if false widget will not be drawn
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9178
diff changeset
   556
        sprite        : TSprite;            // a convenience type
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9178
diff changeset
   557
        frame         : TSDL_Rect;          // graphical coordinates
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9178
diff changeset
   558
        active        : TSDL_Rect;          // active touch region
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9178
diff changeset
   559
        fadeAnimStart : Longword;           // time the fade started
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9178
diff changeset
   560
                                            //     (0 means do not fade)
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9178
diff changeset
   561
        moveAnim      : TWidgetMovement;    // animation associated to widget
6685
ef706fccfb0a moved other widgets under the USE_TOUCH_INTERFACE, added pause button (at least, graphically...)
koda
parents: 6683
diff changeset
   562
        end;
4367
f4a0ec067601 uLand isn't that important to them
unc0rr
parents: 4365
diff changeset
   563
6693
b6a69c0bc541 carried out some cosmetic TODOs in uTouch
koda
parents: 6688
diff changeset
   564
    PTouch_Data = ^TTouch_Data;
b6a69c0bc541 carried out some cosmetic TODOs in uTouch
koda
parents: 6688
diff changeset
   565
    TTouch_Data = record
b6a69c0bc541 carried out some cosmetic TODOs in uTouch
koda
parents: 6688
diff changeset
   566
        id                       : TSDL_FingerId;
b6a69c0bc541 carried out some cosmetic TODOs in uTouch
koda
parents: 6688
diff changeset
   567
        x,y                      : LongInt;
b6a69c0bc541 carried out some cosmetic TODOs in uTouch
koda
parents: 6688
diff changeset
   568
        dx,dy                    : LongInt;
b6a69c0bc541 carried out some cosmetic TODOs in uTouch
koda
parents: 6688
diff changeset
   569
        historicalX, historicalY : LongInt;
b6a69c0bc541 carried out some cosmetic TODOs in uTouch
koda
parents: 6688
diff changeset
   570
        timeSinceDown            : Longword;
6701
58a43c2064ad the onScreenwidgets are multitouch now, frequently (alternating) tapping left and right still causes it to bug though, but you have to try hard to duplicate it, works ok for now
Xeli
parents: 6700
diff changeset
   571
        pressedWidget            : POnScreenWidget;
6693
b6a69c0bc541 carried out some cosmetic TODOs in uTouch
koda
parents: 6688
diff changeset
   572
        end;
b6a69c0bc541 carried out some cosmetic TODOs in uTouch
koda
parents: 6688
diff changeset
   573
10361
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   574
    PSpriteData = ^TSpriteData;
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   575
    TSpriteData = record
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   576
            FileName: string[15];
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   577
            Path, AltPath: TPathType;
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   578
            Texture: PTexture;
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   579
            Surface: PSDL_Surface;
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   580
            Width, Height, imageWidth, imageHeight: LongInt;
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   581
            saveSurf: boolean;
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: 12668
diff changeset
   582
            critical: boolean;
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: 12668
diff changeset
   583
            checkSum: boolean; // use for images where if they are missing a desync can occur.
10361
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   584
            priority: GLfloat;
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   585
            getDimensions, getImageDimensions: boolean;
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   586
            end;
bc95b7c769a2 simplifying some code
sheepluva
parents: 10345
diff changeset
   587
10874
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   588
    // gear data types
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   589
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   590
    const cakeh =   27;
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   591
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   592
    type TCakeData = record
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   593
        CakeI: integer;
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   594
        CakePoints: array[0..Pred(cakeh)] of record
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   595
            x, y: hwFloat;
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   596
        end;
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   597
    end;
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   598
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   599
    PCakeData = ^TCakeData;
059a6492176e allow gear specific data (with gear type specific type). applied to cake
sheepluva
parents: 10829
diff changeset
   600
11734
f48408dcea36 create forts in random order
sheepluva
parents: 11468
diff changeset
   601
    TClansArray = array[0..Pred(cMaxTeams)] of PClan;
f48408dcea36 create forts in random order
sheepluva
parents: 11468
diff changeset
   602
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   603
implementation
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
diff changeset
   604
4420
6be946bcd17a Add a visual gear for drawing circles. Intent is to allow specifying areas on map for lua scripts (such as to indicate a location to go to). Could also be used to, say, circle a hog in CTF. Also add a "Critical" flag for visual gears so a gear flagges as such will always be created.
nemo
parents: 4379
diff changeset
   605
end.