author | koda |
Sat, 15 Jan 2011 21:32:44 +0100 | |
branch | 0.9.15 |
changeset 4751 | 849740a91d36 |
parent 4603 | d362ab6c7f53 |
child 4812 | f924be23ffb4 |
permissions | -rw-r--r-- |
2690 | 1 |
(* |
3973 | 2 |
* Hedgewars, a free turn based strategy game |
3 |
* Copyright (c) 2004-2011 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
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 |
|
2690 | 8 |
* |
3973 | 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. |
|
2690 | 13 |
* |
3973 | 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 |
|
2690 | 17 |
*) |
18 |
||
19 |
{$INCLUDE "options.inc"} |
|
20 |
||
21 |
unit PascalExports; |
|
22 |
||
23 |
interface |
|
4437
05192cdbce9b
un-break build (wrong merge in uConsole) and update project file with the new sources
koda
parents:
4187
diff
changeset
|
24 |
uses uTypes, uConsts, uVariables, GLunit, uKeys, uChat, uSound, uAmmos, uUtils, |
05192cdbce9b
un-break build (wrong merge in uConsole) and update project file with the new sources
koda
parents:
4187
diff
changeset
|
25 |
uCommands; |
2690 | 26 |
|
2924 | 27 |
{$INCLUDE "config.inc"} |
2691 | 28 |
|
2690 | 29 |
implementation |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
30 |
{$IFDEF HWLIBRARY} |
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:
3697
diff
changeset
|
31 |
var cZoomVal: GLfloat; |
4454 | 32 |
previousGameState: TGameState; |
3635
38d3e31556d3
improvements to touch interface (tap to select weap, don't move camera for spourious taps, ask for confirmation when using click-weapons)
koda
parents:
3626
diff
changeset
|
33 |
|
3063 | 34 |
// retrieve protocol information |
4603 | 35 |
procedure HW_versionInfo(netProto: PLongInt; versionStr: PPChar); cdecl; export; |
2691 | 36 |
begin |
4460
bdace1e2f8aa
write some version information inside the application
koda
parents:
4454
diff
changeset
|
37 |
netProto^:= cNetProtoVersion; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4454
diff
changeset
|
38 |
versionStr^:= cVersionString; |
2691 | 39 |
end; |
40 |
||
2690 | 41 |
procedure HW_click; cdecl; export; |
42 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
43 |
leftClick:= true; |
2690 | 44 |
end; |
45 |
||
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:
3697
diff
changeset
|
46 |
procedure HW_ammoMenu; cdecl; export; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
47 |
begin |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
48 |
rightClick:= true; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
49 |
end; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
50 |
|
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
51 |
procedure HW_zoomSet(value: GLfloat); cdecl; export; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
52 |
begin |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
53 |
cZoomVal:= value; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
54 |
ZoomValue:= value; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
55 |
end; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
56 |
|
2690 | 57 |
procedure HW_zoomIn; cdecl; export; |
58 |
begin |
|
3523 | 59 |
if wheelDown = false then |
60 |
wheelUp:= true; |
|
2690 | 61 |
end; |
62 |
||
63 |
procedure HW_zoomOut; cdecl; export; |
|
64 |
begin |
|
3523 | 65 |
if wheelUp = false then |
66 |
wheelDown:= true; |
|
2690 | 67 |
end; |
68 |
||
69 |
procedure HW_zoomReset; cdecl; export; |
|
70 |
begin |
|
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:
3697
diff
changeset
|
71 |
ZoomValue:= cZoomVal; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
72 |
//middleClick:= true; |
3672
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
73 |
// center the camera at current hog |
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
74 |
if CurrentHedgehog <> nil then |
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
75 |
followGear:= CurrentHedgehog^.Gear; |
2690 | 76 |
end; |
77 |
||
3680 | 78 |
function HW_zoomFactor: GLfloat; cdecl; export; |
79 |
begin |
|
80 |
exit( ZoomValue / cDefaultZoomLevel ); |
|
81 |
end; |
|
82 |
||
83 |
function HW_zoomLevel: LongInt; cdecl; export; |
|
84 |
begin |
|
85 |
exit( trunc((ZoomValue - cDefaultZoomLevel) / cZoomDelta) ); |
|
86 |
end; |
|
87 |
||
3626 | 88 |
procedure HW_walkingKeysUp; cdecl; export; |
89 |
begin |
|
90 |
leftKey:= false; |
|
91 |
rightKey:= false; |
|
92 |
upKey:= false; |
|
93 |
downKey:= false; |
|
3649 | 94 |
preciseKey:= false; |
3626 | 95 |
end; |
96 |
||
97 |
procedure HW_otherKeysUp; cdecl; export; |
|
98 |
begin |
|
99 |
spaceKey:= false; |
|
100 |
enterKey:= false; |
|
101 |
backspaceKey:= false; |
|
102 |
end; |
|
103 |
||
2690 | 104 |
procedure HW_allKeysUp; cdecl; export; |
105 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
106 |
// set all keys to released |
3040
3e7f4a30e18a
Insert commit message here (to get along with palewolf)
koda
parents:
3015
diff
changeset
|
107 |
uKeys.initModule; |
2690 | 108 |
end; |
109 |
||
110 |
procedure HW_walkLeft; cdecl; export; |
|
111 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
112 |
leftKey:= true; |
2690 | 113 |
end; |
114 |
||
115 |
procedure HW_walkRight; cdecl; export; |
|
116 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
117 |
rightKey:= true; |
2690 | 118 |
end; |
119 |
||
3649 | 120 |
procedure HW_preciseSet(status:boolean); cdecl; export; |
121 |
begin |
|
122 |
preciseKey:= status; |
|
123 |
end; |
|
124 |
||
2690 | 125 |
procedure HW_aimUp; cdecl; export; |
126 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
127 |
upKey:= true; |
2690 | 128 |
end; |
129 |
||
130 |
procedure HW_aimDown; cdecl; export; |
|
131 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
132 |
downKey:= true; |
2690 | 133 |
end; |
134 |
||
135 |
procedure HW_shoot; cdecl; export; |
|
136 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
137 |
spaceKey:= true; |
2690 | 138 |
end; |
139 |
||
3015 | 140 |
procedure HW_jump; cdecl; export; |
141 |
begin |
|
142 |
enterKey:= true; |
|
143 |
end; |
|
144 |
||
145 |
procedure HW_backjump; cdecl; export; |
|
146 |
begin |
|
147 |
backspaceKey:= true; |
|
148 |
end; |
|
149 |
||
3651 | 150 |
procedure HW_tab; cdecl; export; |
151 |
begin |
|
152 |
tabKey:= true; |
|
153 |
end; |
|
154 |
||
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
155 |
procedure HW_chat; cdecl; export; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
156 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
157 |
chatAction:= true; |
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
158 |
end; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
159 |
|
3648 | 160 |
procedure HW_chatEnd; cdecl; export; |
161 |
begin |
|
162 |
KeyPressChat(27); // esc - cleans buffer |
|
163 |
KeyPressChat(13); // enter - removes chat |
|
164 |
end; |
|
165 |
||
2805 | 166 |
procedure HW_pause; cdecl; export; |
167 |
begin |
|
4454 | 168 |
if isPaused = false then |
169 |
pauseAction:= true; |
|
170 |
end; |
|
171 |
||
172 |
procedure HW_pauseToggle; cdecl; export; |
|
173 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
174 |
pauseAction:= true; |
2805 | 175 |
end; |
176 |
||
4454 | 177 |
function HW_isPaused: boolean; cdecl; export; |
178 |
begin |
|
179 |
exit( isPaused ); |
|
180 |
end; |
|
181 |
||
182 |
procedure HW_suspend; cdecl; export; |
|
183 |
begin |
|
184 |
previousGameState:= GameState; |
|
185 |
GameState:= gsSuspend; |
|
186 |
end; |
|
187 |
||
188 |
procedure HW_resume; cdecl; export; |
|
189 |
begin |
|
190 |
GameState:= previousGameState; |
|
191 |
end; |
|
192 |
||
3063 | 193 |
procedure HW_terminate(closeFrontend: boolean); cdecl; export; |
194 |
begin |
|
195 |
isTerminated:= true; |
|
196 |
if closeFrontend then alsoShutdownFrontend:= true; |
|
197 |
end; |
|
3395
095273ad0e08
adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents:
3347
diff
changeset
|
198 |
|
3551 | 199 |
procedure HW_setCursor(x,y: LongInt); cdecl; export; |
200 |
begin |
|
201 |
CursorPoint.X:= x; |
|
202 |
CursorPoint.Y:= y; |
|
203 |
end; |
|
204 |
||
3661 | 205 |
procedure HW_getCursor(x,y: PLongInt); cdecl; export; |
206 |
begin |
|
207 |
x^:= CursorPoint.X; |
|
208 |
y^:= CursorPoint.Y; |
|
209 |
end; |
|
210 |
||
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
211 |
function HW_isAmmoMenuOpen: boolean; cdecl; export; |
3551 | 212 |
begin |
213 |
exit(bShowAmmoMenu); |
|
214 |
end; |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
215 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
216 |
function HW_isAmmoMenuNotAllowed: boolean; cdecl; export; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
217 |
begin; |
4150 | 218 |
exit ( (TurnTimeLeft = 0) or (not CurrentTeam^.ExtDriven and (((CurAmmoGear = nil) or |
219 |
((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) = 0)) and hideAmmoMenu)) ); |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
220 |
end; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
221 |
|
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
222 |
function HW_isWaiting: boolean; cdecl; export; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
223 |
begin |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
224 |
exit( ReadyTimeLeft > 0 ); |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
225 |
end; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
226 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
227 |
function HW_isWeaponRequiringClick: boolean; cdecl; export; |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
228 |
begin |
3739 | 229 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
230 |
exit( (CurrentHedgehog^.Gear^.State and gstHHChooseTarget) <> 0 ) |
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
231 |
else |
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
232 |
exit(false); |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
233 |
end; |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
234 |
|
3650 | 235 |
function HW_isWeaponTimerable: boolean; cdecl; export; |
236 |
begin |
|
3739 | 237 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3874 | 238 |
exit( (Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_Timerable) <> 0) |
3739 | 239 |
else |
240 |
exit(false); |
|
3650 | 241 |
end; |
242 |
||
3651 | 243 |
function HW_isWeaponSwitch: boolean cdecl; export; |
244 |
begin |
|
3739 | 245 |
if (CurAmmoGear <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3697 | 246 |
exit(CurAmmoGear^.AmmoType = amSwitch) |
3651 | 247 |
else |
248 |
exit(false) |
|
249 |
end; |
|
250 |
||
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:
3697
diff
changeset
|
251 |
function HW_isWeaponRope: boolean cdecl; export; |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
252 |
begin |
3739 | 253 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3874 | 254 |
exit (CurrentHedgehog^.CurAmmoType = amRope) |
3739 | 255 |
else |
256 |
exit(false); |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
257 |
end; |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
258 |
|
3650 | 259 |
procedure HW_setGrenadeTime(time: LongInt); cdecl; export; |
260 |
begin |
|
261 |
ParseCommand('/timer ' + inttostr(time), true); |
|
262 |
end; |
|
263 |
||
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:
3697
diff
changeset
|
264 |
procedure HW_setPianoSound(snd: LongInt); cdecl; export; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
265 |
begin |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
266 |
// this most likely won't work in network game |
3739 | 267 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) |
3874 | 268 |
and (CurrentHedgehog^.CurAmmoType = amPiano) then |
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:
3697
diff
changeset
|
269 |
case snd of |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
270 |
0: PlaySound(sndPiano0); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
271 |
1: PlaySound(sndPiano1); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
272 |
2: PlaySound(sndPiano2); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
273 |
3: PlaySound(sndPiano3); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
274 |
4: PlaySound(sndPiano4); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
275 |
5: PlaySound(sndPiano5); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
276 |
6: PlaySound(sndPiano6); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
277 |
7: PlaySound(sndPiano7); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
278 |
else PlaySound(sndPiano8); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
279 |
end; |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3697
diff
changeset
|
280 |
end; |
3924 | 281 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
282 |
function HW_getWeaponNameByIndex(whichone: LongInt): PChar; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
283 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
284 |
exit (str2pchar(trammo[Ammoz[TAmmoType(whichone+1)].NameId])); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
285 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
286 |
|
3981
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
287 |
function HW_getWeaponCaptionByIndex(whichone: LongInt): PChar; cdecl; export; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
288 |
begin |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
289 |
exit (str2pchar(trammoc[Ammoz[TAmmoType(whichone+1)].NameId])); |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
290 |
end; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
291 |
|
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
292 |
function HW_getWeaponDescriptionByIndex(whichone: LongInt): PChar; cdecl; export; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
293 |
begin |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
294 |
exit (str2pchar(trammod[Ammoz[TAmmoType(whichone+1)].NameId])); |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
295 |
end; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
296 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
297 |
function HW_getNumberOfWeapons:LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
298 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
299 |
exit(ord(high(TAmmoType))); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
300 |
end; |
3924 | 301 |
|
302 |
procedure HW_setWeapon(whichone: LongInt); cdecl; export; |
|
303 |
begin |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
304 |
if (not CurrentTeam^.ExtDriven) and (CurrentTeam^.Hedgehogs[0].BotLevel = 0) then |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
305 |
SetWeapon(TAmmoType(whichone+1)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
306 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
307 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
308 |
function HW_isWeaponAnEffect(whichone: LongInt): boolean; cdecl; export; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
309 |
begin |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
310 |
exit(Ammoz[TAmmoType(whichone+1)].Ammo.Propz and ammoprop_Effect <> 0) |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
311 |
end; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
312 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
313 |
function HW_getAmmoCounts(counts: PLongInt): LongInt; cdecl; export; |
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
314 |
var a : PHHAmmo; |
3928
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
315 |
slot, index: LongInt; |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
316 |
begin |
3989 | 317 |
if (CurrentTeam = nil) or |
318 |
(CurrentHedgehog = nil) or |
|
319 |
(CurrentTeam^.ExtDriven) or |
|
320 |
(CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
321 |
exit(-1); |
3989 | 322 |
|
3928
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
323 |
a:= CurrentHedgehog^.Ammo; |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
324 |
for slot:= 0 to cMaxSlotIndex do |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
325 |
for index:= 0 to cMaxSlotAmmoIndex do |
3973 | 326 |
if a^[slot,index].Count <> 0 then // yes, ammomenu is hell |
327 |
counts[ord(a^[slot,index].AmmoType)-1]:= a^[slot,index].Count; |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
328 |
exit(0); |
3928
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
329 |
end; |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
330 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
331 |
procedure HW_getAmmoDelays (skipTurns: PByte); cdecl; export; |
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
332 |
var a : TAmmoType; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
333 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
334 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
335 |
skipTurns[ord(a)-1]:= byte(Ammoz[a].SkipTurns); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
336 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
337 |
|
3989 | 338 |
function HW_getTurnsForCurrentTeam: LongInt; cdecl; export; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
339 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
340 |
exit(CurrentTeam^.Clan^.TurnNumber); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
341 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
342 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
343 |
function HW_getMaxNumberOfHogs: LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
344 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
345 |
exit(cMaxHHIndex+1); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
346 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
347 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
348 |
function HW_getMaxNumberOfTeams: LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
349 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
350 |
exit(cMaxTeams); |
3924 | 351 |
end; |
2690 | 352 |
{$ENDIF} |
353 |
||
354 |
end. |
|
355 |