author | koda |
Wed, 02 May 2012 10:53:13 +0100 | |
changeset 6990 | 40e5af28d026 |
parent 6954 | a61458a81480 |
child 6997 | 2356bf174df8 |
permissions | -rw-r--r-- |
2690 | 1 |
(* |
3973 | 2 |
* Hedgewars, a free turn based strategy game |
6700 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
3973 | 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; |
|
5125 | 22 |
(* |
23 |
* If the engine is compiled as library this unit will export functions |
|
24 |
* as C declarations for convenient library usage in your application and |
|
25 |
* language of choice. |
|
26 |
* |
|
27 |
* See also: C declarations on wikipedia |
|
28 |
* http://en.wikipedia.org/wiki/X86_calling_conventions#cdecl |
|
29 |
*) |
|
2690 | 30 |
interface |
6954
a61458a81480
changed uKeys to uInputHandler to better reflect its function
Xeli
parents:
6925
diff
changeset
|
31 |
uses uTypes, uConsts, uVariables, GLunit, uInputHandler, uSound, uAmmos, uUtils, uCommands; |
2690 | 32 |
|
2924 | 33 |
{$INCLUDE "config.inc"} |
5166
d1eb1560b4d5
and now for something completely different, overlay refactoring!
koda
parents:
5125
diff
changeset
|
34 |
procedure HW_versionInfo(netProto: PLongInt; versionStr: PPChar); cdecl; export; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
35 |
|
5452
3edc3e3b8cdc
Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
5194
diff
changeset
|
36 |
function HW_getNumberOfWeapons:LongInt; cdecl; export; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
37 |
|
5452
3edc3e3b8cdc
Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
5194
diff
changeset
|
38 |
function HW_getMaxNumberOfTeams:LongInt; cdecl; export; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
39 |
|
5452
3edc3e3b8cdc
Created callbacks to give the frontend information of maxteams/hogs
Xeli
parents:
5194
diff
changeset
|
40 |
function HW_getMaxNumberOfHogs:LongInt; cdecl; export; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
41 |
|
6035
bdd0528ee8a6
Close a game without leaking memory. It should be noted that sending an SDL Quit event leaks memory
Xeli
parents:
6023
diff
changeset
|
42 |
procedure HW_terminate(closeFrontend: Boolean); cdecl; export; |
2691 | 43 |
|
2690 | 44 |
implementation |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
45 |
{$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
|
46 |
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
|
47 |
|
3063 | 48 |
// retrieve protocol information |
4603 | 49 |
procedure HW_versionInfo(netProto: PLongInt; versionStr: PPChar); cdecl; export; |
2691 | 50 |
begin |
4460
bdace1e2f8aa
write some version information inside the application
koda
parents:
4454
diff
changeset
|
51 |
netProto^:= cNetProtoVersion; |
bdace1e2f8aa
write some version information inside the application
koda
parents:
4454
diff
changeset
|
52 |
versionStr^:= cVersionString; |
2691 | 53 |
end; |
54 |
||
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4812
diff
changeset
|
55 |
// emulate mouse/keyboard input |
2690 | 56 |
procedure HW_click; cdecl; export; |
57 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
58 |
leftClick:= true; |
2690 | 59 |
end; |
60 |
||
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
|
61 |
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
|
62 |
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
|
63 |
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
|
64 |
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
|
65 |
|
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
|
66 |
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
|
67 |
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
|
68 |
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
|
69 |
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
|
70 |
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
|
71 |
|
2690 | 72 |
procedure HW_zoomIn; cdecl; export; |
73 |
begin |
|
3523 | 74 |
if wheelDown = false then |
75 |
wheelUp:= true; |
|
2690 | 76 |
end; |
77 |
||
78 |
procedure HW_zoomOut; cdecl; export; |
|
79 |
begin |
|
3523 | 80 |
if wheelUp = false then |
81 |
wheelDown:= true; |
|
2690 | 82 |
end; |
83 |
||
84 |
procedure HW_zoomReset; cdecl; export; |
|
85 |
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
|
86 |
ZoomValue:= cZoomVal; |
3672
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
87 |
// center the camera at current hog |
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
88 |
if CurrentHedgehog <> nil then |
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
89 |
followGear:= CurrentHedgehog^.Gear; |
2690 | 90 |
end; |
91 |
||
3680 | 92 |
function HW_zoomFactor: GLfloat; cdecl; export; |
93 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
94 |
HW_zoomFactor:= ZoomValue / cDefaultZoomLevel; |
3680 | 95 |
end; |
96 |
||
97 |
function HW_zoomLevel: LongInt; cdecl; export; |
|
98 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
99 |
HW_zoomLevel:= trunc((ZoomValue - cDefaultZoomLevel) / cZoomDelta); |
3680 | 100 |
end; |
101 |
||
3626 | 102 |
procedure HW_walkingKeysUp; cdecl; export; |
103 |
begin |
|
104 |
leftKey:= false; |
|
105 |
rightKey:= false; |
|
106 |
upKey:= false; |
|
107 |
downKey:= false; |
|
3649 | 108 |
preciseKey:= false; |
3626 | 109 |
end; |
110 |
||
111 |
procedure HW_otherKeysUp; cdecl; export; |
|
112 |
begin |
|
113 |
spaceKey:= false; |
|
114 |
enterKey:= false; |
|
115 |
backspaceKey:= false; |
|
116 |
end; |
|
117 |
||
2690 | 118 |
procedure HW_allKeysUp; cdecl; export; |
119 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
120 |
// set all keys to released |
6954
a61458a81480
changed uKeys to uInputHandler to better reflect its function
Xeli
parents:
6925
diff
changeset
|
121 |
uInputHandler.initModule; |
2690 | 122 |
end; |
123 |
||
124 |
procedure HW_walkLeft; cdecl; export; |
|
125 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
126 |
leftKey:= true; |
2690 | 127 |
end; |
128 |
||
129 |
procedure HW_walkRight; cdecl; export; |
|
130 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
131 |
rightKey:= true; |
2690 | 132 |
end; |
133 |
||
3649 | 134 |
procedure HW_preciseSet(status:boolean); cdecl; export; |
135 |
begin |
|
136 |
preciseKey:= status; |
|
137 |
end; |
|
138 |
||
2690 | 139 |
procedure HW_aimUp; cdecl; export; |
140 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
141 |
upKey:= true; |
2690 | 142 |
end; |
143 |
||
144 |
procedure HW_aimDown; cdecl; export; |
|
145 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
146 |
downKey:= true; |
2690 | 147 |
end; |
148 |
||
149 |
procedure HW_shoot; cdecl; export; |
|
150 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
151 |
spaceKey:= true; |
2690 | 152 |
end; |
153 |
||
3015 | 154 |
procedure HW_jump; cdecl; export; |
155 |
begin |
|
156 |
enterKey:= true; |
|
157 |
end; |
|
158 |
||
159 |
procedure HW_backjump; cdecl; export; |
|
160 |
begin |
|
161 |
backspaceKey:= true; |
|
162 |
end; |
|
163 |
||
3651 | 164 |
procedure HW_tab; cdecl; export; |
165 |
begin |
|
166 |
tabKey:= true; |
|
167 |
end; |
|
168 |
||
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
169 |
procedure HW_chat; cdecl; export; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
170 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
171 |
chatAction:= true; |
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
172 |
end; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
173 |
|
4939
6d512ba87f72
screenshot binding for library (on ios it just plays the sound)
koda
parents:
4924
diff
changeset
|
174 |
procedure HW_screenshot; cdecl; export; |
6d512ba87f72
screenshot binding for library (on ios it just plays the sound)
koda
parents:
4924
diff
changeset
|
175 |
begin |
6d512ba87f72
screenshot binding for library (on ios it just plays the sound)
koda
parents:
4924
diff
changeset
|
176 |
flagMakeCapture:= true; |
6d512ba87f72
screenshot binding for library (on ios it just plays the sound)
koda
parents:
4924
diff
changeset
|
177 |
end; |
6d512ba87f72
screenshot binding for library (on ios it just plays the sound)
koda
parents:
4924
diff
changeset
|
178 |
|
2805 | 179 |
procedure HW_pause; cdecl; export; |
180 |
begin |
|
4454 | 181 |
if isPaused = false then |
182 |
pauseAction:= true; |
|
183 |
end; |
|
184 |
||
185 |
procedure HW_pauseToggle; cdecl; export; |
|
186 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
187 |
pauseAction:= true; |
2805 | 188 |
end; |
189 |
||
4454 | 190 |
function HW_isPaused: boolean; cdecl; export; |
191 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
192 |
HW_isPaused:= isPaused; |
4454 | 193 |
end; |
194 |
||
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4812
diff
changeset
|
195 |
// equivalent to esc+y; when closeFrontend = true the game exits after memory cleanup |
3063 | 196 |
procedure HW_terminate(closeFrontend: boolean); cdecl; export; |
197 |
begin |
|
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4812
diff
changeset
|
198 |
alsoShutdownFrontend:= closeFrontend; |
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4812
diff
changeset
|
199 |
ParseCommand('forcequit', true); |
3063 | 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 |
|
4920 | 202 |
function HW_getSDLWindow: pointer; cdecl; export; |
203 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
204 |
HW_getSDLWindow:= nil; |
4924 | 205 |
{$IFDEF SDL13} |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
206 |
HW_getSDLWindow:= SDLwindow; |
4924 | 207 |
{$ENDIF} |
4920 | 208 |
end; |
209 |
||
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4812
diff
changeset
|
210 |
// cursor handling |
3551 | 211 |
procedure HW_setCursor(x,y: LongInt); cdecl; export; |
212 |
begin |
|
213 |
CursorPoint.X:= x; |
|
214 |
CursorPoint.Y:= y; |
|
215 |
end; |
|
216 |
||
3661 | 217 |
procedure HW_getCursor(x,y: PLongInt); cdecl; export; |
218 |
begin |
|
219 |
x^:= CursorPoint.X; |
|
220 |
y^:= CursorPoint.Y; |
|
221 |
end; |
|
222 |
||
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4812
diff
changeset
|
223 |
// ammo menu related functions |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
224 |
function HW_isAmmoMenuOpen: boolean; cdecl; export; |
3551 | 225 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
226 |
HW_isAmmoMenuOpen:= bShowAmmoMenu; |
3551 | 227 |
end; |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
228 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
229 |
function HW_isAmmoMenuNotAllowed: boolean; cdecl; export; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
230 |
begin; |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
231 |
HW_isAmmoMenuNotAllowed:= ( (TurnTimeLeft = 0) or (not CurrentTeam^.ExtDriven and (((CurAmmoGear = nil) or |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
232 |
((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
|
233 |
end; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
234 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
235 |
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
|
236 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
237 |
HW_isWeaponRequiringClick:= false; |
3739 | 238 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
239 |
HW_isWeaponRequiringClick:= (CurrentHedgehog^.Gear^.State and gstHHChooseTarget) <> 0; |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
240 |
end; |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
241 |
|
3650 | 242 |
function HW_isWeaponTimerable: boolean; cdecl; export; |
243 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
244 |
HW_isWeaponTimerable:= false; |
3739 | 245 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
246 |
HW_isWeaponTimerable:= (Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_Timerable) <> 0; |
3650 | 247 |
end; |
248 |
||
3651 | 249 |
function HW_isWeaponSwitch: boolean cdecl; export; |
250 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
251 |
HW_isWeaponSwitch:= false; |
3739 | 252 |
if (CurAmmoGear <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
253 |
HW_isWeaponSwitch:= (CurAmmoGear^.AmmoType = amSwitch); |
3651 | 254 |
end; |
255 |
||
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
|
256 |
function HW_isWeaponRope: boolean cdecl; export; |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
257 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
258 |
HW_isWeaponRope:= false |
3739 | 259 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
260 |
HW_isWeaponRope:= (CurrentHedgehog^.CurAmmoType = amRope); |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
261 |
end; |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
262 |
|
3650 | 263 |
procedure HW_setGrenadeTime(time: LongInt); cdecl; export; |
264 |
begin |
|
265 |
ParseCommand('/timer ' + inttostr(time), true); |
|
266 |
end; |
|
267 |
||
6825 | 268 |
function HW_getGrenadeTime: LongInt; cdecl; export; |
269 |
var CurWeapon: PAmmo; |
|
270 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
271 |
HW_getGrenadeTime:= 3; |
6825 | 272 |
if HW_isWeaponTimerable then |
273 |
begin |
|
6925 | 274 |
CurWeapon:= GetCurAmmoEntry(CurrentHedgehog^); |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
275 |
HW_getGrenadeTime:= CurWeapon^.Timer div 1000; |
6825 | 276 |
end; |
277 |
end; |
|
278 |
||
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
|
279 |
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
|
280 |
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
|
281 |
// this most likely won't work in network game |
3739 | 282 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
283 |
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
|
284 |
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
|
285 |
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
|
286 |
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
|
287 |
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
|
288 |
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
|
289 |
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
|
290 |
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
|
291 |
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
|
292 |
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
|
293 |
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
|
294 |
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
|
295 |
end; |
3924 | 296 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
297 |
function HW_getWeaponNameByIndex(whichone: LongInt): PChar; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
298 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
299 |
HW_getWeaponNameByIndex:= (str2pchar(trammo[Ammoz[TAmmoType(whichone+1)].NameId])); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
300 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
301 |
|
3981
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
302 |
function HW_getWeaponCaptionByIndex(whichone: LongInt): PChar; cdecl; export; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
303 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
304 |
HW_getWeaponCaptionByIndex:= (str2pchar(trammoc[Ammoz[TAmmoType(whichone+1)].NameId])); |
3981
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
305 |
end; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
306 |
|
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
307 |
function HW_getWeaponDescriptionByIndex(whichone: LongInt): PChar; cdecl; export; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
308 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
309 |
HW_getWeaponDescriptionByIndex:= (str2pchar(trammod[Ammoz[TAmmoType(whichone+1)].NameId])); |
3981
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
310 |
end; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3973
diff
changeset
|
311 |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
312 |
function HW_getNumberOfWeapons: LongInt; cdecl; export; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
313 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
314 |
HW_getNumberOfWeapons:= ord(high(TAmmoType)); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
315 |
end; |
3924 | 316 |
|
317 |
procedure HW_setWeapon(whichone: LongInt); cdecl; export; |
|
318 |
begin |
|
5492 | 319 |
if (CurrentTeam = nil) then exit; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
320 |
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
|
321 |
SetWeapon(TAmmoType(whichone+1)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
322 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
323 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
324 |
function HW_isWeaponAnEffect(whichone: LongInt): boolean; cdecl; export; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
325 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
326 |
HW_isWeaponAnEffect:= Ammoz[TAmmoType(whichone+1)].Ammo.Propz and ammoprop_Effect <> 0; |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
327 |
end; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
328 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
329 |
function HW_getAmmoCounts(counts: PLongInt): LongInt; cdecl; export; |
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
330 |
var a : PHHAmmo; |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
331 |
slot, index, res: LongInt; |
3928
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
332 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
333 |
HW_getAmmoCounts:= -1; |
5492 | 334 |
// nil check |
335 |
if (CurrentHedgehog = nil) or (CurrentHedgehog^.Ammo = nil) or (CurrentTeam = nil) then |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
336 |
exit; |
5492 | 337 |
// hog controlled by opponent (net or ai) |
338 |
if (CurrentTeam^.ExtDriven) or (CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
339 |
exit; |
3989 | 340 |
|
3928
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
341 |
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
|
342 |
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
|
343 |
for index:= 0 to cMaxSlotAmmoIndex do |
3973 | 344 |
if a^[slot,index].Count <> 0 then // yes, ammomenu is hell |
345 |
counts[ord(a^[slot,index].AmmoType)-1]:= a^[slot,index].Count; |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
346 |
HW_getAmmoCounts:= 0; |
3928
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
347 |
end; |
2560731c860d
move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents:
3926
diff
changeset
|
348 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
349 |
procedure HW_getAmmoDelays (skipTurns: PByte); cdecl; export; |
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3933
diff
changeset
|
350 |
var a : TAmmoType; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
351 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
352 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
353 |
skipTurns[ord(a)-1]:= byte(Ammoz[a].SkipTurns); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
354 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
355 |
|
3989 | 356 |
function HW_getTurnsForCurrentTeam: LongInt; cdecl; export; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
357 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
358 |
HW_getTurnsForCurrentTeam:= 0; |
5492 | 359 |
if (CurrentTeam <> nil) and (CurrentTeam^.Clan <> nil) then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
360 |
HW_getTurnsForCurrentTeam:= CurrentTeam^.Clan^.TurnNumber; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
361 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
362 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
363 |
function HW_getMaxNumberOfHogs: LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
364 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
365 |
HW_getMaxNumberOfHogs:= cMaxHHIndex + 1; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
366 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
367 |
|
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
368 |
function HW_getMaxNumberOfTeams: LongInt; cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
369 |
begin |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6954
diff
changeset
|
370 |
HW_getMaxNumberOfTeams:= cMaxTeams; |
3924 | 371 |
end; |
6362
ceacd1b61833
modify ReleaseSound so that it performs a partial release of unused sounds, useful for responding to memory warnings
koda
parents:
5975
diff
changeset
|
372 |
|
ceacd1b61833
modify ReleaseSound so that it performs a partial release of unused sounds, useful for responding to memory warnings
koda
parents:
5975
diff
changeset
|
373 |
procedure HW_memoryWarningCallback; cdecl; export; |
ceacd1b61833
modify ReleaseSound so that it performs a partial release of unused sounds, useful for responding to memory warnings
koda
parents:
5975
diff
changeset
|
374 |
begin |
ceacd1b61833
modify ReleaseSound so that it performs a partial release of unused sounds, useful for responding to memory warnings
koda
parents:
5975
diff
changeset
|
375 |
ReleaseSound(false); |
ceacd1b61833
modify ReleaseSound so that it performs a partial release of unused sounds, useful for responding to memory warnings
koda
parents:
5975
diff
changeset
|
376 |
end; |
ceacd1b61833
modify ReleaseSound so that it performs a partial release of unused sounds, useful for responding to memory warnings
koda
parents:
5975
diff
changeset
|
377 |
|
2690 | 378 |
{$ENDIF} |
379 |
||
380 |
end. |
|
381 |