author | nemo |
Wed, 08 Aug 2012 10:26:10 -0400 | |
changeset 7517 | f287f00063e8 |
parent 7505 | 94e1fa117081 |
child 7525 | 5c840e221993 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
6700 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
2599 | 19 |
{$INCLUDE "options.inc"} |
2587
0dfa56a8513c
fix a segfault in the iphone simulator by moving options.inc at the beginning of the file
koda
parents:
2586
diff
changeset
|
20 |
|
4 | 21 |
unit uConsts; |
22 |
interface |
|
1906 | 23 |
|
4361 | 24 |
uses SDLh, uFloat, GLunit; |
1906 | 25 |
|
2924 | 26 |
{$INCLUDE "config.inc"} |
2671
7e0f88013fe8
smaller patches, one missing Sky-lowres, IMG_Init and Mix_Init (might require newer libraries), updates to SDL bindings, code cleanup, new compile flags
koda
parents:
2653
diff
changeset
|
27 |
|
3709 | 28 |
const |
29 |
sfMax = 1000; |
|
4004
b1c2c2f6fc5e
update branch with latest head, most likely breaking water color in stereo mode
koda
diff
changeset
|
30 |
cDefaultParamNum = 17; |
3107 | 31 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
32 |
// message constants |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
33 |
errmsgCreateSurface = 'Error creating SDL surface'; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
34 |
errmsgTransparentSet = 'Error setting transparent color'; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
35 |
errmsgUnknownCommand = 'Unknown command'; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
36 |
errmsgUnknownVariable = 'Unknown variable'; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
37 |
errmsgIncorrectUse = 'Incorrect use'; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
38 |
errmsgShouldntRun = 'This program shouldn''t be run manually'; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
39 |
errmsgWrongNumber = 'Wrong parameters number'; |
4 | 40 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
41 |
msgLoading = 'Loading '; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
42 |
msgOK = 'ok'; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
43 |
msgFailed = 'failed'; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
44 |
msgFailedSize = 'failed due to size'; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
45 |
msgGettingConfig = 'Getting game config...'; |
4 | 46 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
47 |
// color constants |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
48 |
cWhiteColorChannels : TSDL_Color = (r:$FF; g:$FF; b:$FF; unused:$FF); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
49 |
cNearBlackColorChannels : TSDL_Color = (r:$00; g:$00; b:$10; unused:$FF); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2697
diff
changeset
|
50 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
51 |
cWhiteColor : Longword = $FFFFFFFF; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
52 |
cYellowColor : Longword = $FFFFFF00; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
53 |
cNearBlackColor : Longword = $FF000010; |
2376 | 54 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2697
diff
changeset
|
55 |
{$WARNINGS OFF} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
56 |
cAirPlaneSpeed: hwFloat = (isNegative: false; QWordValue: 3006477107); // 1.4 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
57 |
cBombsSpeed : hwFloat = (isNegative: false; QWordValue: 429496729); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2697
diff
changeset
|
58 |
{$WARNINGS ON} |
621 | 59 |
|
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3569
diff
changeset
|
60 |
// reducedquality flags |
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3569
diff
changeset
|
61 |
rqNone = $00000000; // don't reduce quality |
3634 | 62 |
rqLowRes = $00000001; // use half land array |
63 |
rqBlurryLand = $00000002; // downscaled terrain |
|
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3569
diff
changeset
|
64 |
rqNoBackground= $00000004; // don't draw background |
3862 | 65 |
rqSimpleRope = $00000008; // draw rope using lines only |
66 |
rq2DWater = $00000010; // disable 3D water effect |
|
4809
9c7d5f802618
rearrange quality flags a little, disable snow rendering on rqLowRes
koda
parents:
4808
diff
changeset
|
67 |
rqAntiBoom = $00000020; // no fancy explosion effects |
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3569
diff
changeset
|
68 |
rqKillFlakes = $00000040; // no flakes |
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3569
diff
changeset
|
69 |
rqSlowMenu = $00000080; // ammomenu appears with no animation |
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3569
diff
changeset
|
70 |
rqPlainSplash = $00000100; // no droplets |
3611 | 71 |
rqClampLess = $00000200; // don't clamp textures |
3634 | 72 |
rqTooltipsOff = $00000400; // tooltips are not drawn |
3670
4c673e57f0d7
use llvm to compile, don't preview map on wimpier devices, merge vsync, fix iphone launch image
koda
parents:
3668
diff
changeset
|
73 |
rqDesyncVBlank= $00000800; // don't sync on vblank |
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3569
diff
changeset
|
74 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
75 |
// image flags (for LoadImage()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
76 |
ifNone = $00000000; // nothing special |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
77 |
ifAlpha = $00000001; // use alpha channel (unused right now?) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
78 |
ifCritical = $00000002; // image is critical for gameplay (exit game if unable to load) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
79 |
ifTransparent = $00000004; // image uses transparent pixels (color keying) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
80 |
ifIgnoreCaps = $00000008; // ignore hardware capabilities when loading (i.e. image will not be drawn using OpenGL) |
74 | 81 |
|
3491 | 82 |
// texture priority (allows OpenGL to keep frequently used textures in video memory more easily) |
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3569
diff
changeset
|
83 |
tpLowest = 0.00; |
3491 | 84 |
tpLow = 0.25; |
85 |
tpMedium = 0.50; |
|
86 |
tpHigh = 0.75; |
|
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3569
diff
changeset
|
87 |
tpHighest = 1.00; |
3491 | 88 |
|
3509
d72c2219595d
Make land types flagged (to allow stacking future attributes such as indestructible ice, but also for a damaged flag)
nemo
parents:
3493
diff
changeset
|
89 |
// To allow these to layer, going to treat them as masks. The bottom byte is reserved for objects |
3524
8d0783d2a0ff
This reduces CheckLand ~5.5% on average over prior making the overall reduction ~77.4% instead of ~81.9%. It does skip centre pixel in odd w/h, but that really shouldn't matter much in this case. Can alter if any objects are noticeably off.
nemo
parents:
3519
diff
changeset
|
90 |
// TODO - set lfBasic for all solid land, ensure all uses of the flags can handle multiple flag bits |
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6077
diff
changeset
|
91 |
// lfObject and lfBasic are only to be different *graphically* in all other ways they should be treated the same |
3519 | 92 |
lfBasic = $8000; // white |
93 |
lfIndestructible = $4000; // red |
|
6081
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6077
diff
changeset
|
94 |
lfObject = $2000; |
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6077
diff
changeset
|
95 |
lfDamaged = $1000; // |
537bbd5c1a62
Basic test implementation of an ice flag. Allows for slick parts of terrain. Intended for ice gun, or "ice" mask on portions of land objects.
nemo
parents:
6077
diff
changeset
|
96 |
lfIce = $0800; // blue |
7293
468cf6d561e5
Add green mask for anti-portal areas on custom maps. Flagged as Bouncy since it is intended for that general use. Needs testing.
nemo
parents:
7197
diff
changeset
|
97 |
lfBouncy = $0400; // green |
64 | 98 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
99 |
cMaxPower = 1500; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
100 |
cMaxAngle = 2048; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
101 |
cPowerDivisor = 1500; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2697
diff
changeset
|
102 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
103 |
MAXNAMELEN = 192; |
4396
3cfd2e15464a
After repeated requests, variable length rope. Intended for the infinite rope folks, but values less than 100 make rope more interesting IMO.
nemo
parents:
4385
diff
changeset
|
104 |
MAXROPEPOINTS = 3840; |
3697 | 105 |
|
6891
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6797
diff
changeset
|
106 |
{$IFNDEF PAS2C} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
107 |
// some opengl headers do not have these macros |
3493 | 108 |
GL_BGR = $80E0; |
109 |
GL_BGRA = $80E1; |
|
110 |
GL_CLAMP_TO_EDGE = $812F; |
|
111 |
GL_TEXTURE_PRIORITY = $8066; |
|
6891
ab9843957664
Improve rendering of function types, ranges, and more
unc0rr
parents:
6797
diff
changeset
|
112 |
{$ENDIF} |
3697 | 113 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
114 |
cSendCursorPosTime : LongWord = 50; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
115 |
cVisibleWater : LongInt = 128; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
116 |
cCursorEdgesDist : LongInt = 100; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
117 |
cTeamHealthWidth : LongInt = 128; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2153
diff
changeset
|
118 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
119 |
cifRandomize = $00000001; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
120 |
cifTheme = $00000002; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
121 |
cifMap = $00000002; // either theme or map (or map+theme) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
122 |
cifAllInited = cifRandomize or cifTheme or cifMap; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
123 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
124 |
cTransparentColor: Longword = $00000000; |
5441
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5366
diff
changeset
|
125 |
|
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5366
diff
changeset
|
126 |
RGB_LUMINANCE_RED = 0.212671; |
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5366
diff
changeset
|
127 |
RGB_LUMINANCE_GREEN = 0.715160; |
39962b855540
Add grayscale option for 3d, helps with colour clashing
nemo
parents:
5366
diff
changeset
|
128 |
RGB_LUMINANCE_BLUE = 0.072169; |
4 | 129 |
|
4406
beb4de0af990
Increase teams to 8 to match the 8 colours, fix issue #108, reenable rope length modifier
nemo
parents:
4396
diff
changeset
|
130 |
cMaxTeams = 8; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
131 |
cMaxHHIndex = 7; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
132 |
cMaxHHs = 48; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
133 |
cMaxSpawnPoints = 1024; |
4 | 134 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
135 |
cMaxEdgePoints = 16384; |
22 | 136 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
137 |
cHHRadius = 9; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
138 |
cHHStepTicks = 29; |
509 | 139 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
140 |
cUsualZ = 500; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
141 |
cSmokeZ = 499; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
142 |
cHHZ = 1000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
143 |
cCurrHHZ = Succ(cHHZ); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
144 |
cOnHHZ = 2000; |
4 | 145 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
146 |
cBarrelHealth = 60; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
147 |
cShotgunRadius = 22; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
148 |
cBlowTorchC = 6; |
7416
2f2f78fc65a3
AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents:
7400
diff
changeset
|
149 |
cakeDmg = 75; |
509 | 150 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
151 |
cKeyMaxIndex = 1023; |
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
6982
diff
changeset
|
152 |
cKbdMaxIndex = 65536;//need more room for the modifier keys |
6917 | 153 |
|
6982 | 154 |
cHHFileName = 'Hedgehog'; |
155 |
cCHFileName = 'Crosshair'; |
|
156 |
cThemeCFGFilename = 'theme.cfg'; |
|
157 |
||
158 |
cFontBorder = 2; |
|
4 | 159 |
|
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3734
diff
changeset
|
160 |
// do not change this value |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3667
diff
changeset
|
161 |
cDefaultZoomLevel = 2.0; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3734
diff
changeset
|
162 |
|
5550
50650032c251
Zoom and moving the camera now works with SDL_FINGER* events
Xeli
parents:
5441
diff
changeset
|
163 |
{$IFDEF MOBILE} |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
164 |
cMaxZoomLevel = 0.5; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
165 |
cMinZoomLevel = 3.5; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
166 |
cZoomDelta = 0.20; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
167 |
{$ELSE} |
7505 | 168 |
cMaxZoomLevel = 1.0; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
169 |
cMinZoomLevel = 3.0; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
170 |
cZoomDelta = 0.25; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
171 |
{$ENDIF} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
95
diff
changeset
|
172 |
|
5550
50650032c251
Zoom and moving the camera now works with SDL_FINGER* events
Xeli
parents:
5441
diff
changeset
|
173 |
cMinMaxZoomLevelDelta = cMaxZoomLevel - cMinZoomLevel; |
50650032c251
Zoom and moving the camera now works with SDL_FINGER* events
Xeli
parents:
5441
diff
changeset
|
174 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
175 |
cSendEmptyPacketTime = 1000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
176 |
trigTurns = $80000001; |
2630 | 177 |
|
3743 | 178 |
gfAny = $FFFFFFFF; |
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3999
diff
changeset
|
179 |
gfOneClanMode = $00000001; // used in trainings |
3999 | 180 |
gfMultiWeapon = $00000002; // used in trainings |
3743 | 181 |
gfSolidLand = $00000004; |
182 |
gfBorder = $00000008; |
|
183 |
gfDivideTeams = $00000010; |
|
184 |
gfLowGravity = $00000020; |
|
185 |
gfLaserSight = $00000040; |
|
186 |
gfInvulnerable = $00000080; |
|
4099 | 187 |
gfResetHealth = $00000100; |
3743 | 188 |
gfVampiric = $00000200; |
189 |
gfKarma = $00000400; |
|
190 |
gfArtillery = $00000800; |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3999
diff
changeset
|
191 |
gfForts = $00001000; |
3743 | 192 |
gfRandomOrder = $00002000; |
193 |
gfKing = $00004000; |
|
194 |
gfPlaceHog = $00008000; |
|
195 |
gfSharedAmmo = $00010000; |
|
196 |
gfDisableGirders = $00020000; |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3999
diff
changeset
|
197 |
gfDisableLandObjects = $00040000; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3999
diff
changeset
|
198 |
gfAISurvival = $00080000; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3999
diff
changeset
|
199 |
gfInfAttack = $00100000; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3999
diff
changeset
|
200 |
gfResetWeps = $00200000; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3999
diff
changeset
|
201 |
gfPerHogAmmo = $00400000; |
4776
ab956d4647a4
set windspeed to 0 at the very beginning of the game. (fixes DisableWind game modifier)
sheepluva
parents:
4406
diff
changeset
|
202 |
gfDisableWind = $00800000; |
4272
cf18de7ea3d4
engine side of a more wind patch. no frontend hook. just want to check it in to pull it from another machine
nemo
parents:
4246
diff
changeset
|
203 |
gfMoreWind = $01000000; |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
204 |
gfTagTeam = $02000000; |
5717 | 205 |
gfBottomBorder = $04000000; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
206 |
// NOTE: When adding new game flags, ask yourself |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
207 |
// if a "game start notice" would be useful. If so, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
208 |
// add one in uWorld.pas - look for "AddGoal". |
4 | 209 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
210 |
gstDrowning = $00000001; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
211 |
gstHHDriven = $00000002; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
212 |
gstMoving = $00000004; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
213 |
gstAttacked = $00000008; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
214 |
gstAttacking = $00000010; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
215 |
gstCollision = $00000020; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
216 |
gstHHChooseTarget = $00000040; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
217 |
gstHHJumping = $00000100; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
218 |
gsttmpFlag = $00000200; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
219 |
gstHHThinking = $00000800; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
220 |
gstNoDamage = $00001000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
221 |
gstHHHJump = $00002000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
222 |
gstAnimation = $00004000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
223 |
gstHHDeath = $00008000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
224 |
gstWinner = $00010000; // this, along with gstLoser, is good for indicating hedgies know they screwed up |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
225 |
gstWait = $00020000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
226 |
gstNotKickable = $00040000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
227 |
gstLoser = $00080000; |
3310 | 228 |
gstHHGone = $00100000; |
5348
0bc81de36e08
Don't draw snow flakes spawned in land, introduce gstInvisible flag
unc0rr
parents:
5316
diff
changeset
|
229 |
gstInvisible = $00200000; |
4 | 230 |
|
7400
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
231 |
gmLeft = $00000001; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
232 |
gmRight = $00000002; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
233 |
gmUp = $00000004; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
234 |
gmDown = $00000008; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
235 |
gmSwitch = $00000010; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
236 |
gmAttack = $00000020; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
237 |
gmLJump = $00000040; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
238 |
gmHJump = $00000080; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
239 |
gmDestroy = $00000100; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
240 |
gmSlot = $00000200; // with param |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
241 |
gmWeapon = $00000400; // with param |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
242 |
gmTimer = $00000800; // with param |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
243 |
gmAnimate = $00001000; // with param |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
244 |
gmPrecise = $00002000; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
245 |
|
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
246 |
gmRemoveFromList = $00004000; |
09427dbec1d8
Fix TARDIS, make switcher work w/ the new more stringent check.
nemo
parents:
7293
diff
changeset
|
247 |
gmAddToList = $00008000; |
7517 | 248 |
gmDelete = $00010000; |
3894 | 249 |
gmAllStoppable = gmLeft or gmRight or gmUp or gmDown or gmAttack or gmPrecise; |
4 | 250 |
|
3485 | 251 |
cMaxSlotIndex = 9; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
252 |
cMaxSlotAmmoIndex = 5; |
4 | 253 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
254 |
ammoprop_Timerable = $00000001; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
255 |
ammoprop_Power = $00000002; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
256 |
ammoprop_NeedTarget = $00000004; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
257 |
ammoprop_ForwMsgs = $00000008; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
258 |
ammoprop_AttackInMove = $00000010; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
259 |
ammoprop_NoCrosshair = $00000040; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
260 |
ammoprop_AttackingPut = $00000080; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
261 |
ammoprop_DontHold = $00000100; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
262 |
ammoprop_AltAttack = $00000200; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
263 |
ammoprop_AltUse = $00000400; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
264 |
ammoprop_NotBorder = $00000800; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
265 |
ammoprop_Utility = $00001000; |
3037
ab6e949eb5cb
Rename current things called utilities to Effects (since they impact game state / flags w/o using a gear) and add a bunch of things that don't cause damage and are just used to move to Utility crate.
nemo
parents:
3032
diff
changeset
|
266 |
ammoprop_Effect = $00002000; |
5316
191cd6c06203
Allow control of grenade bounce. Not sure if this is a good idea, but has been requested a lot, so...
nemo
parents:
5313
diff
changeset
|
267 |
ammoprop_SetBounce = $00004000; |
6941
228c0ab239f1
add ammoprop to enable to up and down buttons on for the touch interface
Xeli
parents:
6917
diff
changeset
|
268 |
ammoprop_NeedUpDown = $00008000;//Used by TouchInterface to show or hide up/down widgets |
7197
5a9775b97c7e
- TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents:
7191
diff
changeset
|
269 |
ammoprop_OscAim = $00010000; |
5a9775b97c7e
- TestSniperRifle ftw (still needs some consts adjustments, because AI seems to love sniper rifle too much)
unc0rr
parents:
7191
diff
changeset
|
270 |
ammoprop_NoMoveAfter = $00020000; |
7416
2f2f78fc65a3
AI uses cake! Known issues: AI could damage itself for no reason, could let cake go looping in a hole with exit closed by AI hog.
unc0rr
parents:
7400
diff
changeset
|
271 |
ammoprop_Track = $00040000; |
4828 | 272 |
ammoprop_NoRoundEnd = $10000000; |
3697 | 273 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
274 |
AMMO_INFINITE = 100; |
4 | 275 |
|
6765 | 276 |
//EXPLAllDamageInRadius = $00000001; Completely unused for ages |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
277 |
EXPLAutoSound = $00000002; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
278 |
EXPLNoDamage = $00000004; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
279 |
EXPLDoNotTouchHH = $00000008; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
280 |
EXPLDontDraw = $00000010; |
3004 | 281 |
EXPLNoGfx = $00000020; |
3383 | 282 |
EXPLPoisoned = $00000040; |
3712 | 283 |
EXPLDoNotTouchAny = $00000080; |
42 | 284 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
285 |
posCaseAmmo = $00000001; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
286 |
posCaseHealth = $00000002; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
287 |
posCaseUtility = $00000004; |
5313
5e18eaef65d0
now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents:
5016
diff
changeset
|
288 |
posCaseDummy = $00000008; |
5343 | 289 |
posCaseExplode = $00000010; |
290 |
posCasePoison = $00000020; |
|
4 | 291 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
292 |
NoPointX = Low(LongInt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
293 |
cTargetPointRef : TPoint = (X: NoPointX; Y: 0); |
4 | 294 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
295 |
// hog tag mask |
2947 | 296 |
htNone = $00; |
297 |
htTeamName = $01; |
|
298 |
htName = $02; |
|
299 |
htHealth = $04; |
|
300 |
htTransparent = $08; |
|
3697 | 301 |
|
6797 | 302 |
AMAnimDuration = 200; |
6796
3e89dbdc7db9
You can now change AMAnimType to enable the animation through the x/y axis and alpha for example
Xeli
parents:
6795
diff
changeset
|
303 |
AMHidden = 0;//AMState values |
6795
e4831e13e04a
make ammomenu's speed dependent on RealTicks rather than frames
Xeli
parents:
6765
diff
changeset
|
304 |
AMShowingUp = 1; |
e4831e13e04a
make ammomenu's speed dependent on RealTicks rather than frames
Xeli
parents:
6765
diff
changeset
|
305 |
AMShowing = 2; |
e4831e13e04a
make ammomenu's speed dependent on RealTicks rather than frames
Xeli
parents:
6765
diff
changeset
|
306 |
AMHiding = 3; |
e4831e13e04a
make ammomenu's speed dependent on RealTicks rather than frames
Xeli
parents:
6765
diff
changeset
|
307 |
|
6796
3e89dbdc7db9
You can now change AMAnimType to enable the animation through the x/y axis and alpha for example
Xeli
parents:
6795
diff
changeset
|
308 |
AMTypeMaskX = $00000001; |
3e89dbdc7db9
You can now change AMAnimType to enable the animation through the x/y axis and alpha for example
Xeli
parents:
6795
diff
changeset
|
309 |
AMTypeMaskY = $00000002; |
3e89dbdc7db9
You can now change AMAnimType to enable the animation through the x/y axis and alpha for example
Xeli
parents:
6795
diff
changeset
|
310 |
AMTypeMaskAlpha = $00000004; |
3e89dbdc7db9
You can now change AMAnimType to enable the animation through the x/y axis and alpha for example
Xeli
parents:
6795
diff
changeset
|
311 |
AMTypeMaskSlide = $00000008; |
3e89dbdc7db9
You can now change AMAnimType to enable the animation through the x/y axis and alpha for example
Xeli
parents:
6795
diff
changeset
|
312 |
|
6622 | 313 |
{$IFDEF MOBILE} |
314 |
AMSlotSize = 48; |
|
315 |
AMTITLE = 30; |
|
316 |
{$ELSE} |
|
6650
56a0b7bf6c15
fixed the blackpixel in the ammomenu, x,y in GetAmmoMenuTexture now initialized correctly
Xeli
parents:
6622
diff
changeset
|
317 |
AMSlotSize = 32; |
6622 | 318 |
{$ENDIF} |
319 |
AMSlotPadding = (AMSlotSize - 32) shr 1; |
|
6688 | 320 |
|
321 |
{$IFDEF USE_TOUCH_INTERFACE} |
|
322 |
FADE_ANIM_TIME = 500; |
|
323 |
MOVE_ANIM_TIME = 500; |
|
324 |
{$ENDIF} |
|
6982 | 325 |
|
326 |
cTagsMasks : array[0..15] of byte = (7, 0, 0, 0, 15, 6, 4, 5, 0, 0, 0, 0, 0, 14, 12, 13); |
|
327 |
cTagsMasksNoHealth: array[0..15] of byte = (3, 2, 11, 1, 0, 0, 0, 0, 0, 10, 0, 9, 0, 0, 0, 0); |
|
328 |
||
4 | 329 |
implementation |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
330 |
|
3145 | 331 |
end. |