author | koda |
Sun, 19 Sep 2010 22:56:53 +0200 | |
changeset 3889 | f7d6834a54fe |
parent 3829 | 81db3c85784b |
child 3904 | 22e4d74240e5 |
permissions | -rw-r--r-- |
3547 | 1 |
/* |
3829 | 2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
3 |
* Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com> |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
3547 | 8 |
* |
3829 | 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. |
|
13 |
* |
|
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. |
|
17 |
* |
|
18 |
* File created on 07/01/2010. |
|
3547 | 19 |
*/ |
20 |
||
3829 | 21 |
|
3547 | 22 |
#ifndef PASCALIMPORTS |
23 |
#define PASCALIMPORTS |
|
24 |
||
25 |
#ifdef __cplusplus |
|
26 |
extern "C" { |
|
27 |
#endif |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
28 |
|
3547 | 29 |
/* add C declarations below for all exported Pascal functions/procedure |
30 |
* that you want to use |
|
31 |
*/ |
|
32 |
||
33 |
void Game(const char *args[]); |
|
34 |
void GenLandPreview(void); |
|
35 |
||
36 |
||
3650 | 37 |
void HW_versionInfo(short int *netProto, char **versionStr); |
3547 | 38 |
|
39 |
void HW_click(void); |
|
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:
3703
diff
changeset
|
40 |
void HW_ammoMenu(void); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3703
diff
changeset
|
41 |
|
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3703
diff
changeset
|
42 |
void HW_zoomSet(float value); |
3547 | 43 |
void HW_zoomIn(void); |
44 |
void HW_zoomOut(void); |
|
45 |
void HW_zoomReset(void); |
|
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:
3703
diff
changeset
|
46 |
float HW_zoomFactor(void); |
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3703
diff
changeset
|
47 |
int HW_zoomLevel(void); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
48 |
|
3626 | 49 |
void HW_walkingKeysUp(void); |
50 |
void HW_otherKeysUp(void); |
|
3547 | 51 |
void HW_allKeysUp(void); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
52 |
|
3547 | 53 |
void HW_walkLeft(void); |
54 |
void HW_walkRight(void); |
|
55 |
void HW_aimUp(void); |
|
56 |
void HW_aimDown(void); |
|
3649 | 57 |
void HW_preciseSet(BOOL status); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
58 |
|
3547 | 59 |
void HW_shoot(void); |
60 |
void HW_jump(void); |
|
61 |
void HW_backjump(void); |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
62 |
|
3547 | 63 |
void HW_chat(void); |
3648 | 64 |
void HW_chatEnd(void); |
3547 | 65 |
void HW_tab(void); |
66 |
void HW_pause(void); |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
67 |
|
3649 | 68 |
void HW_terminate(BOOL andCloseFrontend); |
3789
c3eb56754e92
added a smaller version of forts, fixed a couple of regressions
koda
parents:
3779
diff
changeset
|
69 |
void HW_dismissReady(void); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
70 |
|
3649 | 71 |
void HW_setLandscape(BOOL rotate); |
3551 | 72 |
void HW_setCursor(int x, int y); |
3661 | 73 |
void HW_getCursor(int *x, int *y); |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3661
diff
changeset
|
74 |
|
3551 | 75 |
BOOL HW_isAmmoOpen(void); |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3661
diff
changeset
|
76 |
BOOL HW_isPaused(void); |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3737
diff
changeset
|
77 |
BOOL HW_isWaiting(void); |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3635
diff
changeset
|
78 |
BOOL HW_isWeaponRequiringClick(void); |
3650 | 79 |
BOOL HW_isWeaponTimerable(void); |
3651 | 80 |
BOOL HW_isWeaponSwitch(void); |
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:
3703
diff
changeset
|
81 |
BOOL HW_isWeaponRope(void); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
82 |
|
3650 | 83 |
void HW_setGrenadeTime(int time); |
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:
3703
diff
changeset
|
84 |
void HW_setPianoSound(int snd); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
85 |
|
3547 | 86 |
#ifdef __cplusplus |
87 |
} |
|
88 |
#endif |
|
89 |
||
90 |
#endif |