author | koda |
Wed, 28 Mar 2012 01:56:42 +0200 | |
changeset 6832 | fae8fd118da9 |
parent 6825 | aca4a6807ecc |
child 7048 | 0a4c88935902 |
permissions | -rw-r--r-- |
3547 | 1 |
/* |
3829 | 2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
6700 | 3 |
* Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 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. |
|
3547 | 17 |
*/ |
18 |
||
3829 | 19 |
|
3547 | 20 |
#ifndef PASCALIMPORTS |
21 |
#define PASCALIMPORTS |
|
22 |
||
23 |
#ifdef __cplusplus |
|
24 |
extern "C" { |
|
25 |
#endif |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
26 |
|
3547 | 27 |
/* add C declarations below for all exported Pascal functions/procedure |
28 |
* that you want to use |
|
29 |
*/ |
|
30 |
||
31 |
void Game(const char *args[]); |
|
32 |
void GenLandPreview(void); |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
33 |
void LoadLocaleWrapper(const char *filename); |
3547 | 34 |
|
4603 | 35 |
void HW_versionInfo(int *protoNum, char **versionStr); |
3547 | 36 |
|
37 |
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
|
38 |
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
|
39 |
|
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_zoomSet(float value); |
3547 | 41 |
void HW_zoomIn(void); |
42 |
void HW_zoomOut(void); |
|
43 |
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
|
44 |
float HW_zoomFactor(void); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
45 |
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
|
46 |
|
3626 | 47 |
void HW_walkingKeysUp(void); |
48 |
void HW_otherKeysUp(void); |
|
3547 | 49 |
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
|
50 |
|
3547 | 51 |
void HW_walkLeft(void); |
52 |
void HW_walkRight(void); |
|
53 |
void HW_aimUp(void); |
|
54 |
void HW_aimDown(void); |
|
3649 | 55 |
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
|
56 |
|
3547 | 57 |
void HW_shoot(void); |
58 |
void HW_jump(void); |
|
59 |
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
|
60 |
|
3547 | 61 |
void HW_chat(void); |
3648 | 62 |
void HW_chatEnd(void); |
3547 | 63 |
void HW_tab(void); |
4939
6d512ba87f72
screenshot binding for library (on ios it just plays the sound)
koda
parents:
4920
diff
changeset
|
64 |
void HW_screenshot(void); |
4454 | 65 |
|
3547 | 66 |
void HW_pause(void); |
4454 | 67 |
void HW_pauseToggle(void); |
68 |
BOOL HW_isPaused(void); |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
69 |
|
4920 | 70 |
void *HW_getSDLWindow(void); |
3649 | 71 |
void HW_terminate(BOOL andCloseFrontend); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3680
diff
changeset
|
72 |
|
3551 | 73 |
void HW_setCursor(int x, int y); |
3661 | 74 |
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
|
75 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
76 |
BOOL HW_isAmmoMenuOpen(void); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
77 |
BOOL HW_isAmmoMenuNotAllowed(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); |
6825 | 84 |
int HW_getGrenadeTime(void); |
85 |
||
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
|
86 |
void HW_setPianoSound(int snd); |
3924 | 87 |
void HW_setWeapon(int whichone); |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
88 |
BOOL HW_isWeaponAnEffect(int whichone); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
89 |
char *HW_getWeaponNameByIndex(int whichone); |
3981
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3952
diff
changeset
|
90 |
char *HW_getWeaponCaptionByIndex(int whichone); |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3952
diff
changeset
|
91 |
char *HW_getWeaponDescriptionByIndex(int whichone); |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
92 |
|
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
93 |
void HW_getAmmoDelays(unsigned char *pointer); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
94 |
int HW_getAmmoCounts(int *pointer); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
95 |
|
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
96 |
int HW_getNumberOfWeapons(void); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
97 |
int HW_getTurnsForCurrentTeam(void); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
98 |
int HW_getMaxNumberOfHogs(void); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
99 |
int HW_getMaxNumberOfTeams(void); |
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
|
100 |
|
ceacd1b61833
modify ReleaseSound so that it performs a partial release of unused sounds, useful for responding to memory warnings
koda
parents:
5975
diff
changeset
|
101 |
void HW_memoryWarningCallback(void); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
102 |
|
3547 | 103 |
#ifdef __cplusplus |
104 |
} |
|
105 |
#endif |
|
106 |
||
107 |
#endif |