author | nemo |
Sun, 25 Jul 2010 10:16:34 -0400 | |
changeset 3669 | 19be65b12c43 |
parent 3668 | 3f7a95234d8a |
child 3672 | f225b94a4411 |
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 |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
16 |
uses uKeys, GLunit, uWorld, uMisc, uConsole, uTeams, uConsts, uChat, uGears, uSound, hwengine; |
2690 | 17 |
|
2924 | 18 |
{$INCLUDE "config.inc"} |
2691 | 19 |
|
2690 | 20 |
implementation |
21 |
||
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
22 |
{$IFDEF HWLIBRARY} |
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
|
23 |
|
3063 | 24 |
// retrieve protocol information |
3650 | 25 |
procedure HW_versionInfo(netProto: PShortInt; versionStr: PPChar); cdecl; export; |
2691 | 26 |
begin |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3063
diff
changeset
|
27 |
// http://bugs.freepascal.org/view.php?id=16156 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
28 |
if netProto <> nil then netProto^:= cNetProtoVersion; |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3063
diff
changeset
|
29 |
if versionStr <> nil then versionStr^:= cVersionString; |
2691 | 30 |
end; |
31 |
||
2690 | 32 |
procedure HW_click; cdecl; export; |
33 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
34 |
leftClick:= true; |
2690 | 35 |
end; |
36 |
||
37 |
procedure HW_zoomIn; cdecl; export; |
|
38 |
begin |
|
3523 | 39 |
if wheelDown = false then |
40 |
wheelUp:= true; |
|
2690 | 41 |
end; |
42 |
||
43 |
procedure HW_zoomOut; cdecl; export; |
|
44 |
begin |
|
3523 | 45 |
if wheelUp = false then |
46 |
wheelDown:= true; |
|
2690 | 47 |
end; |
48 |
||
49 |
procedure HW_zoomReset; cdecl; export; |
|
50 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
51 |
middleClick:= true; |
2690 | 52 |
end; |
53 |
||
54 |
procedure HW_ammoMenu; cdecl; export; |
|
55 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
56 |
rightClick:= true; |
2690 | 57 |
end; |
58 |
||
3626 | 59 |
procedure HW_walkingKeysUp; cdecl; export; |
60 |
begin |
|
61 |
leftKey:= false; |
|
62 |
rightKey:= false; |
|
63 |
upKey:= false; |
|
64 |
downKey:= false; |
|
3649 | 65 |
preciseKey:= false; |
3626 | 66 |
end; |
67 |
||
68 |
procedure HW_otherKeysUp; cdecl; export; |
|
69 |
begin |
|
70 |
spaceKey:= false; |
|
71 |
enterKey:= false; |
|
72 |
backspaceKey:= false; |
|
73 |
end; |
|
74 |
||
2690 | 75 |
procedure HW_allKeysUp; cdecl; export; |
76 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
77 |
// set all keys to released |
3040
3e7f4a30e18a
Insert commit message here (to get along with palewolf)
koda
parents:
3015
diff
changeset
|
78 |
uKeys.initModule; |
2690 | 79 |
end; |
80 |
||
81 |
procedure HW_walkLeft; cdecl; export; |
|
82 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
83 |
leftKey:= true; |
2690 | 84 |
end; |
85 |
||
86 |
procedure HW_walkRight; cdecl; export; |
|
87 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
88 |
rightKey:= true; |
2690 | 89 |
end; |
90 |
||
3649 | 91 |
procedure HW_preciseSet(status:boolean); cdecl; export; |
92 |
begin |
|
93 |
preciseKey:= status; |
|
94 |
end; |
|
95 |
||
2690 | 96 |
procedure HW_aimUp; cdecl; export; |
97 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
98 |
upKey:= true; |
2690 | 99 |
end; |
100 |
||
101 |
procedure HW_aimDown; cdecl; export; |
|
102 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
103 |
downKey:= true; |
2690 | 104 |
end; |
105 |
||
106 |
procedure HW_shoot; cdecl; export; |
|
107 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
108 |
spaceKey:= true; |
2690 | 109 |
end; |
110 |
||
3015 | 111 |
procedure HW_jump; cdecl; export; |
112 |
begin |
|
113 |
enterKey:= true; |
|
114 |
end; |
|
115 |
||
116 |
procedure HW_backjump; cdecl; export; |
|
117 |
begin |
|
118 |
backspaceKey:= true; |
|
119 |
end; |
|
120 |
||
3651 | 121 |
procedure HW_tab; cdecl; export; |
122 |
begin |
|
123 |
tabKey:= true; |
|
124 |
end; |
|
125 |
||
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
126 |
procedure HW_chat; cdecl; export; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
127 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
128 |
chatAction:= true; |
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
129 |
end; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
130 |
|
3648 | 131 |
procedure HW_chatEnd; cdecl; export; |
132 |
begin |
|
133 |
KeyPressChat(27); // esc - cleans buffer |
|
134 |
KeyPressChat(13); // enter - removes chat |
|
135 |
end; |
|
136 |
||
2805 | 137 |
procedure HW_pause; cdecl; export; |
138 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
139 |
pauseAction:= true; |
2805 | 140 |
end; |
141 |
||
3063 | 142 |
procedure HW_terminate(closeFrontend: boolean); cdecl; export; |
143 |
begin |
|
144 |
isTerminated:= true; |
|
145 |
if closeFrontend then alsoShutdownFrontend:= true; |
|
146 |
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
|
147 |
|
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
|
148 |
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
|
149 |
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
|
150 |
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
|
151 |
begin |
3463 | 152 |
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
|
153 |
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
|
154 |
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
|
155 |
begin |
3463 | 156 |
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
|
157 |
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
|
158 |
end; |
3551 | 159 |
|
160 |
procedure HW_setCursor(x,y: LongInt); cdecl; export; |
|
161 |
begin |
|
162 |
CursorPoint.X:= x; |
|
163 |
CursorPoint.Y:= y; |
|
164 |
end; |
|
165 |
||
3661 | 166 |
procedure HW_getCursor(x,y: PLongInt); cdecl; export; |
167 |
begin |
|
168 |
x^:= CursorPoint.X; |
|
169 |
y^:= CursorPoint.Y; |
|
170 |
end; |
|
171 |
||
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
172 |
procedure HW_setPianoSound(snd: LongInt); cdecl; export; |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
173 |
var CurSlot, CurAmmo: LongWord; |
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
|
174 |
begin |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
175 |
CurSlot:= CurrentHedgehog^.CurSlot; |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
176 |
CurAmmo:= CurrentHedgehog^.CurAmmo; |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
177 |
// this most likely won't work in network game |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
178 |
if (CurrentHedgehog^.Ammo^[CurSlot, CurAmmo].AmmoType = amPiano) then |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
179 |
case snd of |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
180 |
0: PlaySound(sndPiano0); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
181 |
1: PlaySound(sndPiano1); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
182 |
2: PlaySound(sndPiano2); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
183 |
3: PlaySound(sndPiano3); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
184 |
4: PlaySound(sndPiano4); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
185 |
5: PlaySound(sndPiano5); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
186 |
6: PlaySound(sndPiano6); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
187 |
7: PlaySound(sndPiano7); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
188 |
else PlaySound(sndPiano8); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
189 |
end; |
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
|
190 |
end; |
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
|
191 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
192 |
function HW_isAmmoOpen: boolean; cdecl; export; |
3551 | 193 |
begin |
194 |
exit(bShowAmmoMenu); |
|
195 |
end; |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
196 |
|
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
197 |
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
|
198 |
begin |
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
|
199 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear <> nil) then |
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
|
200 |
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
|
201 |
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
|
202 |
exit(false); |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
203 |
end; |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
204 |
|
3650 | 205 |
function HW_isWeaponTimerable: boolean; cdecl; export; |
206 |
var CurSlot, CurAmmo: LongWord; |
|
207 |
begin |
|
208 |
CurSlot:= CurrentHedgehog^.CurSlot; |
|
209 |
CurAmmo:= CurrentHedgehog^.CurAmmo; |
|
210 |
exit( (CurrentHedgehog^.Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Timerable) <> 0) |
|
211 |
end; |
|
212 |
||
3651 | 213 |
function HW_isWeaponSwitch: boolean cdecl; export; |
214 |
begin |
|
215 |
if CurAmmoGear <> nil then |
|
216 |
exit(CurAmmoGear^.AmmoType = amSwitch) |
|
217 |
else |
|
218 |
exit(false) |
|
219 |
end; |
|
220 |
||
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
221 |
function HW_isPaused: boolean; cdecl; export; |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
222 |
begin |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
223 |
exit( isPaused ); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
224 |
end; |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3662
diff
changeset
|
225 |
|
3650 | 226 |
procedure HW_setGrenadeTime(time: LongInt); cdecl; export; |
227 |
begin |
|
228 |
ParseCommand('/timer ' + inttostr(time), true); |
|
229 |
end; |
|
230 |
||
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
231 |
//amSwitch |
2690 | 232 |
{$ENDIF} |
233 |
||
234 |
end. |
|
235 |