author | koda |
Sun, 18 Jul 2010 03:26:15 +0200 | |
changeset 3650 | ec90e573f47a |
parent 3649 | bc35f8fee587 |
child 3651 | 7058ca178f3b |
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 |
|
3648 | 16 |
uses uKeys, GLunit, uWorld, uMisc, uConsole, uTeams, uConsts, uChat, 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 |
var xx, yy: LongInt; |
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 |
||
38 |
procedure HW_zoomIn; cdecl; export; |
|
39 |
begin |
|
3523 | 40 |
if wheelDown = false then |
41 |
wheelUp:= true; |
|
2690 | 42 |
end; |
43 |
||
44 |
procedure HW_zoomOut; cdecl; export; |
|
45 |
begin |
|
3523 | 46 |
if wheelUp = false then |
47 |
wheelDown:= true; |
|
2690 | 48 |
end; |
49 |
||
50 |
procedure HW_zoomReset; cdecl; export; |
|
51 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
52 |
middleClick:= true; |
2690 | 53 |
end; |
54 |
||
55 |
procedure HW_ammoMenu; cdecl; export; |
|
56 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
57 |
rightClick:= true; |
2690 | 58 |
end; |
59 |
||
3626 | 60 |
procedure HW_walkingKeysUp; cdecl; export; |
61 |
begin |
|
62 |
leftKey:= false; |
|
63 |
rightKey:= false; |
|
64 |
upKey:= false; |
|
65 |
downKey:= false; |
|
3649 | 66 |
preciseKey:= false; |
3626 | 67 |
end; |
68 |
||
69 |
procedure HW_otherKeysUp; cdecl; export; |
|
70 |
begin |
|
71 |
spaceKey:= false; |
|
72 |
enterKey:= false; |
|
73 |
backspaceKey:= false; |
|
74 |
end; |
|
75 |
||
2690 | 76 |
procedure HW_allKeysUp; cdecl; export; |
77 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
78 |
// set all keys to released |
3040
3e7f4a30e18a
Insert commit message here (to get along with palewolf)
koda
parents:
3015
diff
changeset
|
79 |
uKeys.initModule; |
2690 | 80 |
end; |
81 |
||
82 |
procedure HW_walkLeft; cdecl; export; |
|
83 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
84 |
leftKey:= true; |
2690 | 85 |
end; |
86 |
||
87 |
procedure HW_walkRight; cdecl; export; |
|
88 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
89 |
rightKey:= true; |
2690 | 90 |
end; |
91 |
||
3649 | 92 |
procedure HW_preciseSet(status:boolean); cdecl; export; |
93 |
begin |
|
94 |
preciseKey:= status; |
|
95 |
end; |
|
96 |
||
2690 | 97 |
procedure HW_aimUp; cdecl; export; |
98 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
99 |
upKey:= true; |
2690 | 100 |
end; |
101 |
||
102 |
procedure HW_aimDown; cdecl; export; |
|
103 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
104 |
downKey:= true; |
2690 | 105 |
end; |
106 |
||
107 |
procedure HW_shoot; cdecl; export; |
|
108 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
109 |
spaceKey:= true; |
2690 | 110 |
end; |
111 |
||
3015 | 112 |
procedure HW_jump; cdecl; export; |
113 |
begin |
|
114 |
enterKey:= true; |
|
115 |
end; |
|
116 |
||
117 |
procedure HW_backjump; cdecl; export; |
|
118 |
begin |
|
119 |
backspaceKey:= true; |
|
120 |
end; |
|
121 |
||
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
122 |
procedure HW_chat; cdecl; export; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
123 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
124 |
chatAction:= true; |
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
125 |
end; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
126 |
|
3648 | 127 |
procedure HW_chatEnd; cdecl; export; |
128 |
begin |
|
129 |
KeyPressChat(27); // esc - cleans buffer |
|
130 |
KeyPressChat(13); // enter - removes chat |
|
131 |
end; |
|
132 |
||
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
133 |
procedure HW_tab; cdecl; export; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
134 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
135 |
switchAction:= true; |
2754
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
136 |
end; |
ad4f81fbfb76
touchinput works, invisible buttons added and initial support for chat
koda
parents:
2716
diff
changeset
|
137 |
|
2805 | 138 |
procedure HW_pause; cdecl; export; |
139 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
140 |
pauseAction:= true; |
2805 | 141 |
end; |
142 |
||
3347 | 143 |
procedure HW_cursorUp(coefficient:LongInt); cdecl; export; |
144 |
begin |
|
145 |
coeff:= coefficient; |
|
146 |
cursorUp:= true; |
|
147 |
end; |
|
148 |
||
149 |
procedure HW_cursorDown(coefficient:LongInt); cdecl; export; |
|
2690 | 150 |
begin |
3347 | 151 |
coeff:= coefficient; |
152 |
cursorDown:= true; |
|
153 |
end; |
|
2690 | 154 |
|
3347 | 155 |
procedure HW_cursorLeft(coefficient:LongInt); cdecl; export; |
156 |
begin |
|
157 |
coeff:= coefficient; |
|
158 |
cursorLeft:= true; |
|
159 |
end; |
|
160 |
||
161 |
procedure HW_cursorRight(coefficient:LongInt); cdecl; export; |
|
162 |
begin |
|
163 |
coeff:= coefficient; |
|
164 |
cursorRight:= true; |
|
2690 | 165 |
end; |
3063 | 166 |
|
167 |
procedure HW_terminate(closeFrontend: boolean); cdecl; export; |
|
168 |
begin |
|
169 |
isTerminated:= true; |
|
170 |
if closeFrontend then alsoShutdownFrontend:= true; |
|
171 |
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
|
172 |
|
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
|
173 |
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
|
174 |
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
|
175 |
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
|
176 |
begin |
3463 | 177 |
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
|
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 |
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
|
180 |
begin |
3463 | 181 |
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
|
182 |
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
|
183 |
end; |
3551 | 184 |
|
185 |
procedure HW_setCursor(x,y: LongInt); cdecl; export; |
|
186 |
begin |
|
187 |
CursorPoint.X:= x; |
|
188 |
CursorPoint.Y:= y; |
|
189 |
end; |
|
190 |
||
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
|
191 |
procedure HW_saveCursor(reset: boolean); cdecl; export; |
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
|
192 |
begin |
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
|
193 |
if reset then |
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
|
194 |
begin |
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
|
195 |
CursorPoint.X:= xx; |
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
|
196 |
CursorPoint.Y:= yy; |
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
|
197 |
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
|
198 |
else |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
199 |
begin |
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
|
200 |
xx:= CursorPoint.X; |
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
|
201 |
yy:= CursorPoint.Y; |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
202 |
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
|
203 |
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
|
204 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
205 |
function HW_isAmmoOpen: boolean; cdecl; export; |
3551 | 206 |
begin |
207 |
exit(bShowAmmoMenu); |
|
208 |
end; |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
209 |
|
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
210 |
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
|
211 |
begin |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
212 |
exit( (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
|
213 |
end; |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
214 |
|
3650 | 215 |
function HW_isWeaponTimerable: boolean; cdecl; export; |
216 |
var CurSlot, CurAmmo: LongWord; |
|
217 |
begin |
|
218 |
CurSlot:= CurrentHedgehog^.CurSlot; |
|
219 |
CurAmmo:= CurrentHedgehog^.CurAmmo; |
|
220 |
exit( (CurrentHedgehog^.Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Timerable) <> 0) |
|
221 |
end; |
|
222 |
||
223 |
procedure HW_setGrenadeTime(time: LongInt); cdecl; export; |
|
224 |
begin |
|
225 |
ParseCommand('/timer ' + inttostr(time), true); |
|
226 |
end; |
|
227 |
||
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
228 |
//amSwitch |
2690 | 229 |
{$ENDIF} |
230 |
||
231 |
end. |
|
232 |