author | koda |
Sat, 04 Dec 2010 08:52:57 +0100 | |
changeset 4454 | 42bfc1a70968 |
parent 4437 | 05192cdbce9b |
child 4460 | bdace1e2f8aa |
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"} |
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
28 |
type PPByte = ^PByte; |
4187 | 29 |
var dummy: boolean; // avoid compiler hint |
2691 | 30 |
|
2690 | 31 |
implementation |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
32 |
{$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
|
33 |
var cZoomVal: GLfloat; |
4454 | 34 |
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
|
35 |
|
3063 | 36 |
// retrieve protocol information |
3650 | 37 |
procedure HW_versionInfo(netProto: PShortInt; versionStr: PPChar); cdecl; export; |
2691 | 38 |
begin |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3063
diff
changeset
|
39 |
// http://bugs.freepascal.org/view.php?id=16156 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
40 |
if netProto <> nil then netProto^:= cNetProtoVersion; |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3063
diff
changeset
|
41 |
if versionStr <> nil then versionStr^:= cVersionString; |
2691 | 42 |
end; |
43 |
||
2690 | 44 |
procedure HW_click; cdecl; export; |
45 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
46 |
leftClick:= true; |
2690 | 47 |
end; |
48 |
||
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
|
49 |
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
|
50 |
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
|
51 |
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
|
52 |
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
|
53 |
|
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 |
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
|
55 |
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
|
56 |
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
|
57 |
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
|
58 |
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
|
59 |
|
2690 | 60 |
procedure HW_zoomIn; cdecl; export; |
61 |
begin |
|
3523 | 62 |
if wheelDown = false then |
63 |
wheelUp:= true; |
|
2690 | 64 |
end; |
65 |
||
66 |
procedure HW_zoomOut; cdecl; export; |
|
67 |
begin |
|
3523 | 68 |
if wheelUp = false then |
69 |
wheelDown:= true; |
|
2690 | 70 |
end; |
71 |
||
72 |
procedure HW_zoomReset; cdecl; export; |
|
73 |
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
|
74 |
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
|
75 |
//middleClick:= true; |
3672
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
76 |
// center the camera at current hog |
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
77 |
if CurrentHedgehog <> nil then |
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
78 |
followGear:= CurrentHedgehog^.Gear; |
2690 | 79 |
end; |
80 |
||
3680 | 81 |
function HW_zoomFactor: GLfloat; cdecl; export; |
82 |
begin |
|
83 |
exit( ZoomValue / cDefaultZoomLevel ); |
|
84 |
end; |
|
85 |
||
86 |
function HW_zoomLevel: LongInt; cdecl; export; |
|
87 |
begin |
|
88 |
exit( trunc((ZoomValue - cDefaultZoomLevel) / cZoomDelta) ); |
|
89 |
end; |
|
90 |
||
3626 | 91 |
procedure HW_walkingKeysUp; cdecl; export; |
92 |
begin |
|
93 |
leftKey:= false; |
|
94 |
rightKey:= false; |
|
95 |
upKey:= false; |
|
96 |
downKey:= false; |
|
3649 | 97 |
preciseKey:= false; |
3626 | 98 |
end; |
99 |
||
100 |
procedure HW_otherKeysUp; cdecl; export; |
|
101 |
begin |
|
102 |
spaceKey:= false; |
|
103 |
enterKey:= false; |
|
104 |
backspaceKey:= false; |
|
105 |
end; |
|
106 |
||
2690 | 107 |
procedure HW_allKeysUp; cdecl; export; |
108 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
109 |
// set all keys to released |
3040
3e7f4a30e18a
Insert commit message here (to get along with palewolf)
koda
parents:
3015
diff
changeset
|
110 |
uKeys.initModule; |
2690 | 111 |
end; |
112 |
||
113 |
procedure HW_walkLeft; cdecl; export; |
|
114 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
115 |
leftKey:= true; |
2690 | 116 |
end; |
117 |
||
118 |
procedure HW_walkRight; cdecl; export; |
|
119 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
120 |
rightKey:= true; |
2690 | 121 |
end; |
122 |
||
3649 | 123 |
procedure HW_preciseSet(status:boolean); cdecl; export; |
124 |
begin |
|
125 |
preciseKey:= status; |
|
126 |
end; |
|
127 |
||
2690 | 128 |
procedure HW_aimUp; cdecl; export; |
129 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
130 |
upKey:= true; |
2690 | 131 |
end; |
132 |
||
133 |
procedure HW_aimDown; cdecl; export; |
|
134 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
135 |
downKey:= true; |
2690 | 136 |
end; |
137 |
||
138 |
procedure HW_shoot; cdecl; export; |
|
139 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
140 |
spaceKey:= true; |
2690 | 141 |
end; |
142 |
||
3015 | 143 |
procedure HW_jump; cdecl; export; |
144 |
begin |
|
145 |
enterKey:= true; |
|
146 |
end; |
|
147 |
||
148 |
procedure HW_backjump; cdecl; export; |
|
149 |
begin |
|
150 |
backspaceKey:= true; |
|
151 |
end; |
|
152 |
||
3651 | 153 |
procedure HW_tab; cdecl; export; |
154 |
begin |
|
155 |
tabKey:= true; |
|
156 |
end; |
|
157 |
||
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
158 |
procedure HW_chat; cdecl; export; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
159 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
160 |
chatAction:= true; |
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
161 |
end; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
162 |
|
3648 | 163 |
procedure HW_chatEnd; cdecl; export; |
164 |
begin |
|
165 |
KeyPressChat(27); // esc - cleans buffer |
|
166 |
KeyPressChat(13); // enter - removes chat |
|
167 |
end; |
|
168 |
||
2805 | 169 |
procedure HW_pause; cdecl; export; |
170 |
begin |
|
4454 | 171 |
if isPaused = false then |
172 |
pauseAction:= true; |
|
173 |
end; |
|
174 |
||
175 |
procedure HW_pauseToggle; cdecl; export; |
|
176 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
177 |
pauseAction:= true; |
2805 | 178 |
end; |
179 |
||
4454 | 180 |
function HW_isPaused: boolean; cdecl; export; |
181 |
begin |
|
182 |
exit( isPaused ); |
|
183 |
end; |
|
184 |
||
185 |
procedure HW_suspend; cdecl; export; |
|
186 |
begin |
|
187 |
previousGameState:= GameState; |
|
188 |
GameState:= gsSuspend; |
|
189 |
end; |
|
190 |
||
191 |
procedure HW_resume; cdecl; export; |
|
192 |
begin |
|
193 |
GameState:= previousGameState; |
|
194 |
end; |
|
195 |
||
3063 | 196 |
procedure HW_terminate(closeFrontend: boolean); cdecl; export; |
197 |
begin |
|
198 |
isTerminated:= true; |
|
199 |
if closeFrontend then alsoShutdownFrontend:= true; |
|
200 |
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
|
201 |
|
3551 | 202 |
procedure HW_setCursor(x,y: LongInt); cdecl; export; |
203 |
begin |
|
204 |
CursorPoint.X:= x; |
|
205 |
CursorPoint.Y:= y; |
|
206 |
end; |
|
207 |
||
3661 | 208 |
procedure HW_getCursor(x,y: PLongInt); cdecl; export; |
209 |
begin |
|
210 |
x^:= CursorPoint.X; |
|
211 |
y^:= CursorPoint.Y; |
|
212 |
end; |
|
213 |
||
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
214 |
function HW_isAmmoMenuOpen: boolean; cdecl; export; |
3551 | 215 |
begin |
216 |
exit(bShowAmmoMenu); |
|
217 |
end; |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
218 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
219 |
function HW_isAmmoMenuNotAllowed: boolean; cdecl; export; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
220 |
begin; |
4150 | 221 |
exit ( (TurnTimeLeft = 0) or (not CurrentTeam^.ExtDriven and (((CurAmmoGear = nil) or |
222 |
((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
|
223 |
end; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
224 |
|
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
225 |
function HW_isWaiting: boolean; cdecl; export; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
226 |
begin |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
227 |
exit( ReadyTimeLeft > 0 ); |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
228 |
end; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
229 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
230 |
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
|
231 |
begin |
3739 | 232 |
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
|
233 |
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
|
234 |
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
|
235 |
exit(false); |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
236 |
end; |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
237 |
|
3650 | 238 |
function HW_isWeaponTimerable: boolean; cdecl; export; |
239 |
begin |
|
3739 | 240 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3874 | 241 |
exit( (Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_Timerable) <> 0) |
3739 | 242 |
else |
243 |
exit(false); |
|
3650 | 244 |
end; |
245 |
||
3651 | 246 |
function HW_isWeaponSwitch: boolean cdecl; export; |
247 |
begin |
|
3739 | 248 |
if (CurAmmoGear <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3697 | 249 |
exit(CurAmmoGear^.AmmoType = amSwitch) |
3651 | 250 |
else |
251 |
exit(false) |
|
252 |
end; |
|
253 |
||
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
|
254 |
function HW_isWeaponRope: boolean cdecl; export; |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
255 |
begin |
3739 | 256 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3874 | 257 |
exit (CurrentHedgehog^.CurAmmoType = amRope) |
3739 | 258 |
else |
259 |
exit(false); |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
260 |
end; |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
261 |
|
3650 | 262 |
procedure HW_setGrenadeTime(time: LongInt); cdecl; export; |
263 |
begin |
|
264 |
ParseCommand('/timer ' + inttostr(time), true); |
|
265 |
end; |
|
266 |
||
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
|
267 |
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
|
268 |
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
|
269 |
// this most likely won't work in network game |
3739 | 270 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) |
3874 | 271 |
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
|
272 |
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
|
273 |
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
|
274 |
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
|
275 |
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
|
276 |
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
|
277 |
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
|
278 |
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
|
279 |
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
|
280 |
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
|
281 |
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
|
282 |
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
|
283 |
end; |
3924 | 284 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
285 |
function HW_getWeaponNameByIndex(whichone: LongInt): PChar; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
286 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
287 |
exit (str2pchar(trammo[Ammoz[TAmmoType(whichone+1)].NameId])); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
288 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
289 |
|
3981
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
290 |
function HW_getWeaponCaptionByIndex(whichone: LongInt): PChar; cdecl; export; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
291 |
begin |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
292 |
exit (str2pchar(trammoc[Ammoz[TAmmoType(whichone+1)].NameId])); |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
293 |
end; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
294 |
|
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
295 |
function HW_getWeaponDescriptionByIndex(whichone: LongInt): PChar; cdecl; export; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
296 |
begin |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
297 |
exit (str2pchar(trammod[Ammoz[TAmmoType(whichone+1)].NameId])); |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
298 |
end; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
299 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
300 |
function HW_getNumberOfWeapons:LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
301 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
302 |
exit(ord(high(TAmmoType))); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
303 |
end; |
3924 | 304 |
|
305 |
procedure HW_setWeapon(whichone: LongInt); cdecl; export; |
|
306 |
begin |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
307 |
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
|
308 |
SetWeapon(TAmmoType(whichone+1)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
309 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
310 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
311 |
function HW_isWeaponAnEffect(whichone: LongInt): boolean; cdecl; export; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
312 |
begin |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
313 |
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
|
314 |
end; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
315 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
316 |
function HW_getAmmoCounts(counts: PLongInt): LongInt; cdecl; export; |
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
317 |
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
|
318 |
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
|
319 |
begin |
3989 | 320 |
if (CurrentTeam = nil) or |
321 |
(CurrentHedgehog = nil) or |
|
322 |
(CurrentTeam^.ExtDriven) or |
|
323 |
(CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
324 |
exit(-1); |
3989 | 325 |
|
3928
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
326 |
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
|
327 |
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
|
328 |
for index:= 0 to cMaxSlotAmmoIndex do |
3973 | 329 |
if a^[slot,index].Count <> 0 then // yes, ammomenu is hell |
330 |
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
|
331 |
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
|
332 |
end; |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
333 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
334 |
procedure HW_getAmmoDelays (skipTurns: PByte); cdecl; export; |
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
335 |
var a : TAmmoType; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
336 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
337 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
338 |
skipTurns[ord(a)-1]:= byte(Ammoz[a].SkipTurns); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
339 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
340 |
|
3989 | 341 |
function HW_getTurnsForCurrentTeam: LongInt; cdecl; export; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
342 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
343 |
exit(CurrentTeam^.Clan^.TurnNumber); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
344 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
345 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
346 |
function HW_getMaxNumberOfHogs: LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
347 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
348 |
exit(cMaxHHIndex+1); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
349 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
350 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
351 |
function HW_getMaxNumberOfTeams: LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
352 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
353 |
exit(cMaxTeams); |
3924 | 354 |
end; |
2690 | 355 |
{$ENDIF} |
356 |
||
357 |
end. |
|
358 |