author | koda |
Sat, 09 Oct 2010 05:57:46 +0200 | |
changeset 3933 | 1a873262f5dd |
parent 3928 | 2560731c860d |
child 3940 | cc29628976cc |
permissions | -rw-r--r-- |
2690 | 1 |
(* |
2 |
* PascalExports.pas |
|
3 |
* hwengine |
|
4 |
* |
|
5 |
* Created by Vittorio on 09/01/10. |
|
6 |
* Copyright 2009 __MyCompanyName__. All rights reserved. |
|
7 |
* |
|
8 |
*) |
|
9 |
||
10 |
||
11 |
{$INCLUDE "options.inc"} |
|
12 |
||
13 |
unit PascalExports; |
|
14 |
||
15 |
interface |
|
3924 | 16 |
uses uKeys, GLunit, uWorld, uMisc, uConsole, uTeams, uConsts, uChat, |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
17 |
uGears, uSound, hwengine, uAmmos, uLocale; // don't change the order! |
2690 | 18 |
|
2924 | 19 |
{$INCLUDE "config.inc"} |
2691 | 20 |
|
2690 | 21 |
implementation |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
22 |
{$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
|
23 |
var cZoomVal: GLfloat; |
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
|
24 |
|
3063 | 25 |
// retrieve protocol information |
3650 | 26 |
procedure HW_versionInfo(netProto: PShortInt; versionStr: PPChar); cdecl; export; |
2691 | 27 |
begin |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3063
diff
changeset
|
28 |
// http://bugs.freepascal.org/view.php?id=16156 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
29 |
if netProto <> nil then netProto^:= cNetProtoVersion; |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3063
diff
changeset
|
30 |
if versionStr <> nil then versionStr^:= cVersionString; |
2691 | 31 |
end; |
32 |
||
2690 | 33 |
procedure HW_click; cdecl; export; |
34 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
35 |
leftClick:= true; |
2690 | 36 |
end; |
37 |
||
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
|
38 |
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
|
39 |
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
|
40 |
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
|
41 |
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
|
42 |
|
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
|
43 |
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
|
44 |
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
|
45 |
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
|
46 |
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
|
47 |
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
|
48 |
|
2690 | 49 |
procedure HW_zoomIn; cdecl; export; |
50 |
begin |
|
3523 | 51 |
if wheelDown = false then |
52 |
wheelUp:= true; |
|
2690 | 53 |
end; |
54 |
||
55 |
procedure HW_zoomOut; cdecl; export; |
|
56 |
begin |
|
3523 | 57 |
if wheelUp = false then |
58 |
wheelDown:= true; |
|
2690 | 59 |
end; |
60 |
||
61 |
procedure HW_zoomReset; cdecl; export; |
|
62 |
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
|
63 |
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
|
64 |
//middleClick:= true; |
3672
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
65 |
// center the camera at current hog |
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
66 |
if CurrentHedgehog <> nil then |
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
67 |
followGear:= CurrentHedgehog^.Gear; |
2690 | 68 |
end; |
69 |
||
3680 | 70 |
function HW_zoomFactor: GLfloat; cdecl; export; |
71 |
begin |
|
72 |
exit( ZoomValue / cDefaultZoomLevel ); |
|
73 |
end; |
|
74 |
||
75 |
function HW_zoomLevel: LongInt; cdecl; export; |
|
76 |
begin |
|
77 |
exit( trunc((ZoomValue - cDefaultZoomLevel) / cZoomDelta) ); |
|
78 |
end; |
|
79 |
||
3626 | 80 |
procedure HW_walkingKeysUp; cdecl; export; |
81 |
begin |
|
82 |
leftKey:= false; |
|
83 |
rightKey:= false; |
|
84 |
upKey:= false; |
|
85 |
downKey:= false; |
|
3649 | 86 |
preciseKey:= false; |
3626 | 87 |
end; |
88 |
||
89 |
procedure HW_otherKeysUp; cdecl; export; |
|
90 |
begin |
|
91 |
spaceKey:= false; |
|
92 |
enterKey:= false; |
|
93 |
backspaceKey:= false; |
|
94 |
end; |
|
95 |
||
2690 | 96 |
procedure HW_allKeysUp; cdecl; export; |
97 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
98 |
// set all keys to released |
3040
3e7f4a30e18a
Insert commit message here (to get along with palewolf)
koda
parents:
3015
diff
changeset
|
99 |
uKeys.initModule; |
2690 | 100 |
end; |
101 |
||
102 |
procedure HW_walkLeft; cdecl; export; |
|
103 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
104 |
leftKey:= true; |
2690 | 105 |
end; |
106 |
||
107 |
procedure HW_walkRight; cdecl; export; |
|
108 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
109 |
rightKey:= true; |
2690 | 110 |
end; |
111 |
||
3649 | 112 |
procedure HW_preciseSet(status:boolean); cdecl; export; |
113 |
begin |
|
114 |
preciseKey:= status; |
|
115 |
end; |
|
116 |
||
2690 | 117 |
procedure HW_aimUp; cdecl; export; |
118 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
119 |
upKey:= true; |
2690 | 120 |
end; |
121 |
||
122 |
procedure HW_aimDown; cdecl; export; |
|
123 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
124 |
downKey:= true; |
2690 | 125 |
end; |
126 |
||
127 |
procedure HW_shoot; cdecl; export; |
|
128 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
129 |
spaceKey:= true; |
2690 | 130 |
end; |
131 |
||
3015 | 132 |
procedure HW_jump; cdecl; export; |
133 |
begin |
|
134 |
enterKey:= true; |
|
135 |
end; |
|
136 |
||
137 |
procedure HW_backjump; cdecl; export; |
|
138 |
begin |
|
139 |
backspaceKey:= true; |
|
140 |
end; |
|
141 |
||
3651 | 142 |
procedure HW_tab; cdecl; export; |
143 |
begin |
|
144 |
tabKey:= true; |
|
145 |
end; |
|
146 |
||
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
147 |
procedure HW_chat; cdecl; export; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
148 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
149 |
chatAction:= true; |
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
150 |
end; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
151 |
|
3648 | 152 |
procedure HW_chatEnd; cdecl; export; |
153 |
begin |
|
154 |
KeyPressChat(27); // esc - cleans buffer |
|
155 |
KeyPressChat(13); // enter - removes chat |
|
156 |
end; |
|
157 |
||
2805 | 158 |
procedure HW_pause; cdecl; export; |
159 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
160 |
pauseAction:= true; |
2805 | 161 |
end; |
162 |
||
3063 | 163 |
procedure HW_terminate(closeFrontend: boolean); cdecl; export; |
164 |
begin |
|
165 |
isTerminated:= true; |
|
166 |
if closeFrontend then alsoShutdownFrontend:= true; |
|
167 |
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
|
168 |
|
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
|
169 |
procedure HW_setLandscape(landscape: boolean); cdecl; export; |
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
|
170 |
begin |
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
|
171 |
if landscape then |
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
|
172 |
begin |
3463 | 173 |
cOffsetY:= 0; |
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
|
174 |
end |
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
|
175 |
else |
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
|
176 |
begin |
3463 | 177 |
cOffsetY:= 120; |
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
|
178 |
end; |
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
|
179 |
end; |
3551 | 180 |
|
181 |
procedure HW_setCursor(x,y: LongInt); cdecl; export; |
|
182 |
begin |
|
183 |
CursorPoint.X:= x; |
|
184 |
CursorPoint.Y:= y; |
|
185 |
end; |
|
186 |
||
3661 | 187 |
procedure HW_getCursor(x,y: PLongInt); cdecl; export; |
188 |
begin |
|
189 |
x^:= CursorPoint.X; |
|
190 |
y^:= CursorPoint.Y; |
|
191 |
end; |
|
192 |
||
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
193 |
function HW_isAmmoOpen: boolean; cdecl; export; |
3551 | 194 |
begin |
195 |
exit(bShowAmmoMenu); |
|
196 |
end; |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
197 |
|
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
|
198 |
function HW_isPaused: boolean; 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
|
199 |
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
|
200 |
exit( isPaused ); |
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
|
201 |
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
|
202 |
|
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
203 |
function HW_isWaiting: boolean; cdecl; export; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
204 |
begin |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
205 |
exit( ReadyTimeLeft > 0 ); |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
206 |
end; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3778
diff
changeset
|
207 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
208 |
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
|
209 |
begin |
3739 | 210 |
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
|
211 |
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
|
212 |
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
|
213 |
exit(false); |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
214 |
end; |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
215 |
|
3650 | 216 |
function HW_isWeaponTimerable: boolean; cdecl; export; |
217 |
begin |
|
3739 | 218 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3874 | 219 |
exit( (Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_Timerable) <> 0) |
3739 | 220 |
else |
221 |
exit(false); |
|
3650 | 222 |
end; |
223 |
||
3651 | 224 |
function HW_isWeaponSwitch: boolean cdecl; export; |
225 |
begin |
|
3739 | 226 |
if (CurAmmoGear <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3697 | 227 |
exit(CurAmmoGear^.AmmoType = amSwitch) |
3651 | 228 |
else |
229 |
exit(false) |
|
230 |
end; |
|
231 |
||
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
|
232 |
function HW_isWeaponRope: boolean cdecl; export; |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
233 |
begin |
3739 | 234 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
3874 | 235 |
exit (CurrentHedgehog^.CurAmmoType = amRope) |
3739 | 236 |
else |
237 |
exit(false); |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
238 |
end; |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
239 |
|
3650 | 240 |
procedure HW_setGrenadeTime(time: LongInt); cdecl; export; |
241 |
begin |
|
242 |
ParseCommand('/timer ' + inttostr(time), true); |
|
243 |
end; |
|
244 |
||
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
|
245 |
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
|
246 |
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
|
247 |
// this most likely won't work in network game |
3739 | 248 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) |
3874 | 249 |
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
|
250 |
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
|
251 |
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
|
252 |
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
|
253 |
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
|
254 |
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
|
255 |
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
|
256 |
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
|
257 |
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
|
258 |
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
|
259 |
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
|
260 |
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
|
261 |
end; |
3924 | 262 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
263 |
function HW_getWeaponNameByIndex(whichone: LongInt): PChar; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
264 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
265 |
exit (str2pchar(trammo[Ammoz[TAmmoType(whichone+1)].NameId])); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
266 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
267 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
268 |
function HW_getNumberOfWeapons:LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
269 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
270 |
exit(ord(high(TAmmoType))); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
271 |
end; |
3924 | 272 |
|
273 |
procedure HW_setWeapon(whichone: LongInt); cdecl; export; |
|
274 |
begin |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
275 |
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
|
276 |
SetWeapon(TAmmoType(whichone+1)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
277 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
278 |
|
3928
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
279 |
function HW_getAmmoCounts: PByte; cdecl; export; |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
280 |
var counts : PByte; |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
281 |
a : PHHAmmo; |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
282 |
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
|
283 |
begin |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
284 |
if (CurrentTeam^.ExtDriven) or (CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
285 |
exit(nil); |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
286 |
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
|
287 |
GetMem(counts,ord(High(TAmmoType))); |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
288 |
FillChar(counts^,ord(High(TAmmoType)),0); |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
289 |
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
|
290 |
for index:= 0 to cMaxSlotAmmoIndex do |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
291 |
counts[ord(a^[slot,index].AmmoType)-1]:= byte(a^[slot,index].Count); |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
292 |
exit(counts); |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
293 |
// leak? |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
294 |
end; |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
295 |
|
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
296 |
function HW_getAmmoDelays: PByte; cdecl; export; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
297 |
var skipTurns : PByte; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
298 |
a : TAmmoType; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
299 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
300 |
GetMem(skipTurns,ord(High(TAmmoType))); |
3928
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
301 |
FillChar(skipTurns^,ord(High(TAmmoType)),0); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
302 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
303 |
skipTurns[ord(a)-1]:= byte(Ammoz[a].SkipTurns); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
304 |
exit(skipTurns); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
305 |
// leak? |
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 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
308 |
function HW_getTurnsForCurrentTeam:LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
309 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
310 |
exit(CurrentTeam^.Clan^.TurnNumber); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
311 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
312 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
313 |
function HW_getMaxNumberOfHogs: LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
314 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
315 |
exit(cMaxHHIndex+1); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
316 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
317 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
318 |
function HW_getMaxNumberOfTeams: LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
319 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
320 |
exit(cMaxTeams); |
3924 | 321 |
end; |
2690 | 322 |
{$ENDIF} |
323 |
||
324 |
end. |
|
325 |