author | nemo |
Sat, 05 Nov 2011 20:09:48 -0400 | |
changeset 6294 | 34aa727d4a25 |
parent 5975 | c3a8cab64fcb |
child 6362 | ceacd1b61833 |
permissions | -rw-r--r-- |
3547 | 1 |
/* |
3829 | 2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
4976 | 3 |
* Copyright (c) 2009-2011 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. |
|
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); |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
35 |
void LoadLocaleWrapper(const char *filename); |
3547 | 36 |
|
4603 | 37 |
void HW_versionInfo(int *protoNum, 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); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
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); |
4939
6d512ba87f72
screenshot binding for library (on ios it just plays the sound)
koda
parents:
4920
diff
changeset
|
66 |
void HW_screenshot(void); |
4454 | 67 |
|
3547 | 68 |
void HW_pause(void); |
4454 | 69 |
void HW_pauseToggle(void); |
70 |
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
|
71 |
|
4920 | 72 |
void *HW_getSDLWindow(void); |
3649 | 73 |
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
|
74 |
|
3551 | 75 |
void HW_setCursor(int x, int y); |
3661 | 76 |
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
|
77 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
78 |
BOOL HW_isAmmoMenuOpen(void); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
79 |
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
|
80 |
BOOL HW_isWeaponRequiringClick(void); |
3650 | 81 |
BOOL HW_isWeaponTimerable(void); |
3651 | 82 |
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
|
83 |
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
|
84 |
|
3650 | 85 |
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
|
86 |
void HW_setPianoSound(int snd); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
87 |
|
3924 | 88 |
void HW_setWeapon(int whichone); |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
89 |
BOOL HW_isWeaponAnEffect(int whichone); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
90 |
char *HW_getWeaponNameByIndex(int whichone); |
3981
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3952
diff
changeset
|
91 |
char *HW_getWeaponCaptionByIndex(int whichone); |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3952
diff
changeset
|
92 |
char *HW_getWeaponDescriptionByIndex(int whichone); |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
93 |
|
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
94 |
void HW_getAmmoDelays(unsigned char *pointer); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
95 |
int HW_getAmmoCounts(int *pointer); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
96 |
|
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
97 |
int HW_getNumberOfWeapons(void); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
98 |
int HW_getTurnsForCurrentTeam(void); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
99 |
int HW_getMaxNumberOfHogs(void); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
100 |
int HW_getMaxNumberOfTeams(void); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
101 |
|
3547 | 102 |
#ifdef __cplusplus |
103 |
} |
|
104 |
#endif |
|
105 |
||
106 |
#endif |