hedgewars/PascalExports.pas
author koda
Wed, 20 Apr 2011 05:26:47 +0200
changeset 5166 d1eb1560b4d5
parent 5125 715cf3f2b342
child 5194 851c6fbb44e6
permissions -rw-r--r--
and now for something completely different, overlay refactoring! updated project files with new certificate info removed some warnings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
     1
(*
3973
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
     2
 * Hedgewars, a free turn based strategy game
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
     3
 * Copyright (c) 2004-2011 Andrey Korotaev <unC0Rr@gmail.com>
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
     4
 *
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
     8
 *
3973
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
    12
 * GNU General Public License for more details.
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    13
 *
3973
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
    14
 * You should have received a copy of the GNU General Public License
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
    15
 * along with this program; if not, write to the Free Software
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    17
 *)
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    18
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    19
{$INCLUDE "options.inc"}
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    20
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    21
unit PascalExports;
5125
sheepluva
parents: 4939
diff changeset
    22
(*
sheepluva
parents: 4939
diff changeset
    23
 * If the engine is compiled as library this unit will export functions
sheepluva
parents: 4939
diff changeset
    24
 * as C declarations for convenient library usage in your application and
sheepluva
parents: 4939
diff changeset
    25
 * language of choice.
sheepluva
parents: 4939
diff changeset
    26
 *
sheepluva
parents: 4939
diff changeset
    27
 * See also: C declarations on wikipedia
sheepluva
parents: 4939
diff changeset
    28
 *           http://en.wikipedia.org/wiki/X86_calling_conventions#cdecl
sheepluva
parents: 4939
diff changeset
    29
 *)
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    30
interface
5166
d1eb1560b4d5 and now for something completely different, overlay refactoring!
koda
parents: 5125
diff changeset
    31
uses uTypes, uConsts, uVariables, GLunit, uKeys, uSound, uAmmos, uUtils,
4861
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4812
diff changeset
    32
     uCommands, uMobile;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    33
2924
908851e59958 Engine:
smxx
parents: 2905
diff changeset
    34
{$INCLUDE "config.inc"}
5166
d1eb1560b4d5 and now for something completely different, overlay refactoring!
koda
parents: 5125
diff changeset
    35
procedure HW_versionInfo(netProto: PLongInt; versionStr: PPChar); cdecl; export;
2691
c0da3a98c01c initial support for engine protocol
koda
parents: 2690
diff changeset
    36
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    37
implementation
2803
1f446fc5c8ec allow to compile engine as library with HWLIBRARY symbol
koda
parents: 2799
diff changeset
    38
{$IFDEF HWLIBRARY}
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: 3697
diff changeset
    39
var cZoomVal: GLfloat;
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
    40
    previousGameState: TGameState;
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
    41
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3040
diff changeset
    42
// retrieve protocol information
4603
d362ab6c7f53 damn. it.
koda
parents: 4507
diff changeset
    43
procedure HW_versionInfo(netProto: PLongInt; versionStr: PPChar); cdecl; export;
2691
c0da3a98c01c initial support for engine protocol
koda
parents: 2690
diff changeset
    44
begin
4460
bdace1e2f8aa write some version information inside the application
koda
parents: 4454
diff changeset
    45
    netProto^:= cNetProtoVersion;
bdace1e2f8aa write some version information inside the application
koda
parents: 4454
diff changeset
    46
    versionStr^:= cVersionString;
2691
c0da3a98c01c initial support for engine protocol
koda
parents: 2690
diff changeset
    47
end;
c0da3a98c01c initial support for engine protocol
koda
parents: 2690
diff changeset
    48
4861
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4812
diff changeset
    49
// emulate mouse/keyboard input
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    50
procedure HW_click; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    51
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2924
diff changeset
    52
    leftClick:= true;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    53
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    54
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: 3697
diff changeset
    55
procedure HW_ammoMenu; cdecl; export;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    56
begin
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    57
    rightClick:= true;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    58
end;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    59
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    60
procedure HW_zoomSet(value: GLfloat); cdecl; export;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    61
begin
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    62
    cZoomVal:= value;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    63
    ZoomValue:= value;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    64
end;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    65
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    66
procedure HW_zoomIn; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    67
begin
3523
6592fbb969da fix zoom smoothness
koda
parents: 3463
diff changeset
    68
    if wheelDown = false then
6592fbb969da fix zoom smoothness
koda
parents: 3463
diff changeset
    69
        wheelUp:= true;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    70
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    71
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    72
procedure HW_zoomOut; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    73
begin
3523
6592fbb969da fix zoom smoothness
koda
parents: 3463
diff changeset
    74
    if wheelUp = false then
6592fbb969da fix zoom smoothness
koda
parents: 3463
diff changeset
    75
        wheelDown:= true;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    76
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    77
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    78
procedure HW_zoomReset; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    79
begin
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: 3697
diff changeset
    80
    ZoomValue:= cZoomVal;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
    81
    //middleClick:= true;
3672
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
    82
    // center the camera at current hog
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
    83
    if CurrentHedgehog <> nil then
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
    84
        followGear:= CurrentHedgehog^.Gear;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    85
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
    86
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    87
function HW_zoomFactor: GLfloat; cdecl; export;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    88
begin
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    89
    exit( ZoomValue / cDefaultZoomLevel );
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    90
end;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    91
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    92
function HW_zoomLevel: LongInt; cdecl; export;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    93
begin
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    94
    exit( trunc((ZoomValue - cDefaultZoomLevel) / cZoomDelta) );
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    95
end;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    96
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
    97
procedure HW_walkingKeysUp; cdecl; export;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
    98
begin
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
    99
    leftKey:= false;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   100
    rightKey:= false;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   101
    upKey:= false;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   102
    downKey:= false;
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   103
    preciseKey:= false;
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   104
end;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   105
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   106
procedure HW_otherKeysUp; cdecl; export;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   107
begin
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   108
    spaceKey:= false;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   109
    enterKey:= false;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   110
    backspaceKey:= false;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   111
end;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3551
diff changeset
   112
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   113
procedure HW_allKeysUp; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   114
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2924
diff changeset
   115
    // set all keys to released
3040
3e7f4a30e18a Insert commit message here (to get along with palewolf)
koda
parents: 3015
diff changeset
   116
    uKeys.initModule;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   117
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   118
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   119
procedure HW_walkLeft; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   120
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2924
diff changeset
   121
    leftKey:= true;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   122
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   123
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   124
procedure HW_walkRight; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   125
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2924
diff changeset
   126
    rightKey:= true;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   127
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   128
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   129
procedure HW_preciseSet(status:boolean); cdecl; export;
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   130
begin
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   131
    preciseKey:= status;
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   132
end;
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   133
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   134
procedure HW_aimUp; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   135
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2924
diff changeset
   136
    upKey:= true;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   137
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   138
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   139
procedure HW_aimDown; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   140
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2924
diff changeset
   141
    downKey:= true;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   142
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   143
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   144
procedure HW_shoot; cdecl; export;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   145
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2924
diff changeset
   146
    spaceKey:= true;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   147
end;
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   148
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   149
procedure HW_jump; cdecl; export;
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   150
begin
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   151
    enterKey:= true;
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   152
end;
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   153
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   154
procedure HW_backjump; cdecl; export;
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   155
begin
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   156
    backspaceKey:= true;
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   157
end;
20a9c8160e82 add jump and backjump controls
koda
parents: 2948
diff changeset
   158
3651
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   159
procedure HW_tab; cdecl; export;
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   160
begin
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   161
    tabKey:= true;
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   162
end;
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   163
2754
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2716
diff changeset
   164
procedure HW_chat; cdecl; export;
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2716
diff changeset
   165
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2924
diff changeset
   166
    chatAction:= true;
2754
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2716
diff changeset
   167
end;
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2716
diff changeset
   168
4939
6d512ba87f72 screenshot binding for library (on ios it just plays the sound)
koda
parents: 4924
diff changeset
   169
procedure HW_screenshot; cdecl; export;
6d512ba87f72 screenshot binding for library (on ios it just plays the sound)
koda
parents: 4924
diff changeset
   170
begin
6d512ba87f72 screenshot binding for library (on ios it just plays the sound)
koda
parents: 4924
diff changeset
   171
    flagMakeCapture:= true;
6d512ba87f72 screenshot binding for library (on ios it just plays the sound)
koda
parents: 4924
diff changeset
   172
end;
6d512ba87f72 screenshot binding for library (on ios it just plays the sound)
koda
parents: 4924
diff changeset
   173
2805
36a8cebb91e8 new menupage ingame for common actions
koda
parents: 2803
diff changeset
   174
procedure HW_pause; cdecl; export;
36a8cebb91e8 new menupage ingame for common actions
koda
parents: 2803
diff changeset
   175
begin
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   176
    if isPaused = false then
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   177
        pauseAction:= true;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   178
end;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   179
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   180
procedure HW_pauseToggle; cdecl; export;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   181
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2924
diff changeset
   182
    pauseAction:= true;
2805
36a8cebb91e8 new menupage ingame for common actions
koda
parents: 2803
diff changeset
   183
end;
36a8cebb91e8 new menupage ingame for common actions
koda
parents: 2803
diff changeset
   184
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   185
function HW_isPaused: boolean; cdecl; export;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   186
begin
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   187
    exit( isPaused );
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   188
end;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   189
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   190
procedure HW_suspend; cdecl; export;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   191
begin
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   192
    previousGameState:= GameState;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   193
    GameState:= gsSuspend;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   194
end;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   195
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   196
procedure HW_resume; cdecl; export;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   197
begin
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   198
    GameState:= previousGameState;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   199
end;
42bfc1a70968 more retina support and multitasking support
koda
parents: 4437
diff changeset
   200
4861
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4812
diff changeset
   201
// equivalent to esc+y; when closeFrontend = true the game exits after memory cleanup
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3040
diff changeset
   202
procedure HW_terminate(closeFrontend: boolean); cdecl; export;
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3040
diff changeset
   203
begin
4861
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4812
diff changeset
   204
    {$IFDEF IPHONEOS}setGameRunning(false);{$ENDIF}
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4812
diff changeset
   205
    alsoShutdownFrontend:= closeFrontend;
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4812
diff changeset
   206
    ParseCommand('forcequit', true);
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3040
diff changeset
   207
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
   208
4920
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4861
diff changeset
   209
function HW_getSDLWindow: pointer; cdecl; export;
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4861
diff changeset
   210
begin
4924
616b618814b5 show dual head mode some love
koda
parents: 4920
diff changeset
   211
{$IFDEF SDL13}
4920
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4861
diff changeset
   212
    exit( SDLwindow );
4924
616b618814b5 show dual head mode some love
koda
parents: 4920
diff changeset
   213
{$ELSE}
616b618814b5 show dual head mode some love
koda
parents: 4920
diff changeset
   214
    exit( nil );
616b618814b5 show dual head mode some love
koda
parents: 4920
diff changeset
   215
{$ENDIF}
4920
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4861
diff changeset
   216
end;
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4861
diff changeset
   217
4861
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4812
diff changeset
   218
// cursor handling
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3523
diff changeset
   219
procedure HW_setCursor(x,y: LongInt); cdecl; export;
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3523
diff changeset
   220
begin
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3523
diff changeset
   221
    CursorPoint.X:= x;
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3523
diff changeset
   222
    CursorPoint.Y:= y;
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3523
diff changeset
   223
end;
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3523
diff changeset
   224
3661
2378ada8a6ee i can haz panning
koda
parents: 3651
diff changeset
   225
procedure HW_getCursor(x,y: PLongInt); cdecl; export;
2378ada8a6ee i can haz panning
koda
parents: 3651
diff changeset
   226
begin
2378ada8a6ee i can haz panning
koda
parents: 3651
diff changeset
   227
    x^:= CursorPoint.X;
2378ada8a6ee i can haz panning
koda
parents: 3651
diff changeset
   228
    y^:= CursorPoint.Y;
2378ada8a6ee i can haz panning
koda
parents: 3651
diff changeset
   229
end;
2378ada8a6ee i can haz panning
koda
parents: 3651
diff changeset
   230
4861
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4812
diff changeset
   231
// ammo menu related functions
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   232
function HW_isAmmoMenuOpen: boolean; cdecl; export;
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3523
diff changeset
   233
begin
4861
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4812
diff changeset
   234
    exit( bShowAmmoMenu );
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3523
diff changeset
   235
end;
3637
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3635
diff changeset
   236
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   237
function HW_isAmmoMenuNotAllowed: boolean; cdecl; export;
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   238
begin;
4150
050163c35c83 perform an additional check on gamestart
koda
parents: 3989
diff changeset
   239
    exit ( (TurnTimeLeft = 0) or (not CurrentTeam^.ExtDriven and (((CurAmmoGear = nil) or
050163c35c83 perform an additional check on gamestart
koda
parents: 3989
diff changeset
   240
           ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) = 0)) and hideAmmoMenu)) );
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   241
end;
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   242
3637
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3635
diff changeset
   243
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
   244
begin
3739
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   245
    if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear <> nil) and (CurrentHedgehog^.BotLevel = 0) then
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
   246
        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
   247
    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
   248
        exit(false);
3637
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3635
diff changeset
   249
end;
0db298524c3d implement the check on the type of ammo requiring a second tap to confirm
koda
parents: 3635
diff changeset
   250
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   251
function HW_isWeaponTimerable: boolean; cdecl; export;
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   252
begin
3739
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   253
    if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then
3874
57e7327d5817 aaaand use the right name
nemo
parents: 3873
diff changeset
   254
        exit( (Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_Timerable) <> 0)
3739
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   255
    else
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   256
        exit(false);
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   257
end;
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   258
3651
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   259
function HW_isWeaponSwitch: boolean cdecl; export;
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   260
begin
3739
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   261
    if (CurAmmoGear <> nil) and (CurrentHedgehog^.BotLevel = 0) then
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   262
        exit(CurAmmoGear^.AmmoType = amSwitch)
3651
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   263
    else
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   264
        exit(false)
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   265
end;
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   266
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: 3697
diff changeset
   267
function HW_isWeaponRope: boolean cdecl; export;
3668
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3662
diff changeset
   268
begin
3739
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   269
    if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0) then
3874
57e7327d5817 aaaand use the right name
nemo
parents: 3873
diff changeset
   270
        exit (CurrentHedgehog^.CurAmmoType = amRope)
3739
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   271
    else
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   272
        exit(false);
3668
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3662
diff changeset
   273
end;
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3662
diff changeset
   274
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   275
procedure HW_setGrenadeTime(time: LongInt); cdecl; export;
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   276
begin
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   277
    ParseCommand('/timer ' + inttostr(time), true);
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   278
end;
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   279
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: 3697
diff changeset
   280
procedure HW_setPianoSound(snd: LongInt); cdecl; export;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   281
begin
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   282
    // this most likely won't work in network game
3739
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   283
    if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Ammo <> nil) and (CurrentHedgehog^.BotLevel = 0)
3874
57e7327d5817 aaaand use the right name
nemo
parents: 3873
diff changeset
   284
       and (CurrentHedgehog^.CurAmmoType = amPiano) then
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: 3697
diff changeset
   285
        case snd of
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   286
            0: PlaySound(sndPiano0);
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   287
            1: PlaySound(sndPiano1);
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   288
            2: PlaySound(sndPiano2);
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   289
            3: PlaySound(sndPiano3);
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   290
            4: PlaySound(sndPiano4);
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   291
            5: PlaySound(sndPiano5);
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   292
            6: PlaySound(sndPiano6);
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   293
            7: PlaySound(sndPiano7);
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   294
            else PlaySound(sndPiano8);
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   295
        end;
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3697
diff changeset
   296
end;
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents: 3904
diff changeset
   297
3926
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   298
function HW_getWeaponNameByIndex(whichone: LongInt): PChar; cdecl; export;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   299
begin
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   300
    exit (str2pchar(trammo[Ammoz[TAmmoType(whichone+1)].NameId]));
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   301
end;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   302
3981
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   303
function HW_getWeaponCaptionByIndex(whichone: LongInt): PChar; cdecl; export;
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   304
begin
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   305
    exit (str2pchar(trammoc[Ammoz[TAmmoType(whichone+1)].NameId]));
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   306
end;
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   307
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   308
function HW_getWeaponDescriptionByIndex(whichone: LongInt): PChar; cdecl; export;
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   309
begin
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   310
    exit (str2pchar(trammod[Ammoz[TAmmoType(whichone+1)].NameId]));
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   311
end;
928e2040d34f add name, caption and description to the new ammomenu
koda
parents: 3973
diff changeset
   312
3926
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   313
function HW_getNumberOfWeapons:LongInt; cdecl; export;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   314
begin
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   315
    exit(ord(high(TAmmoType)));
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   316
end;
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents: 3904
diff changeset
   317
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents: 3904
diff changeset
   318
procedure HW_setWeapon(whichone: LongInt); cdecl; export;
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents: 3904
diff changeset
   319
begin
3926
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   320
    if (not CurrentTeam^.ExtDriven) and (CurrentTeam^.Hedgehogs[0].BotLevel = 0) then
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   321
        SetWeapon(TAmmoType(whichone+1));
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   322
end;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   323
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   324
function HW_isWeaponAnEffect(whichone: LongInt): boolean; cdecl; export;
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   325
begin
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   326
    exit(Ammoz[TAmmoType(whichone+1)].Ammo.Propz and ammoprop_Effect <> 0)
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   327
end;
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   328
3940
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3933
diff changeset
   329
function HW_getAmmoCounts(counts: PLongInt): LongInt; cdecl; export;
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3933
diff changeset
   330
var a : PHHAmmo;
3928
2560731c860d move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents: 3926
diff changeset
   331
    slot, index: LongInt;
2560731c860d move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents: 3926
diff changeset
   332
begin
3989
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
   333
    if (CurrentTeam = nil) or
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
   334
       (CurrentHedgehog = nil) or
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
   335
       (CurrentTeam^.ExtDriven) or
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
   336
       (CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then
3940
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3933
diff changeset
   337
        exit(-1);
3989
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
   338
3928
2560731c860d move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents: 3926
diff changeset
   339
    a:= CurrentHedgehog^.Ammo;
2560731c860d move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents: 3926
diff changeset
   340
    for slot:= 0 to cMaxSlotIndex do
2560731c860d move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents: 3926
diff changeset
   341
        for index:= 0 to cMaxSlotAmmoIndex do
3973
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
   342
            if a^[slot,index].Count <> 0 then // yes, ammomenu is hell
0d1a420531ef i fix up the new ammo menu finally
koda
parents: 3952
diff changeset
   343
                counts[ord(a^[slot,index].AmmoType)-1]:= a^[slot,index].Count;
3940
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3933
diff changeset
   344
    exit(0);
3928
2560731c860d move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents: 3926
diff changeset
   345
end;
2560731c860d move all mobile-related functions in their own module, provides a structure for future mobile ports
koda
parents: 3926
diff changeset
   346
3940
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3933
diff changeset
   347
procedure HW_getAmmoDelays (skipTurns: PByte); cdecl; export;
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3933
diff changeset
   348
var a : TAmmoType;
3926
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   349
begin
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   350
    for a:= Low(TAmmoType) to High(TAmmoType) do
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   351
        skipTurns[ord(a)-1]:= byte(Ammoz[a].SkipTurns);
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   352
end;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   353
3989
adffb668f06e add a default description to the new ammomenu
koda
parents: 3981
diff changeset
   354
function HW_getTurnsForCurrentTeam: LongInt; cdecl; export;
3926
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   355
begin
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   356
    exit(CurrentTeam^.Clan^.TurnNumber);
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   357
end;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   358
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   359
function HW_getMaxNumberOfHogs: LongInt; cdecl; export;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   360
begin
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   361
    exit(cMaxHHIndex+1);
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   362
end;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   363
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   364
function HW_getMaxNumberOfTeams: LongInt; cdecl; export;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   365
begin
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   366
    exit(cMaxTeams);
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents: 3904
diff changeset
   367
end;
2690
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   368
{$ENDIF}
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   369
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   370
end.
8e83c7e31720 move mixed functions in PascalExports
koda
parents:
diff changeset
   371