hedgewars/uScript.pas
author Wuzzy <Wuzzy2@mail.ru>
Wed, 16 Jan 2019 15:40:11 +0100
changeset 14611 3cf7799e04b5
parent 14598 62dea281e4d5
child 14618 7c5a9c1b9d4e
permissions -rw-r--r--
Add SetTeamPassive. Passive teams are treated like frozen teams
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
     1
(*
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 11029
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
     4
 *
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
     8
 *
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    12
 * GNU General Public License for more details.
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    13
 *
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    14
 * You should have received a copy of the GNU General Public License
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 10078
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    17
 *)
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    18
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    19
{$INCLUDE "options.inc"}
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    20
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    21
unit uScript;
5124
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    22
(*
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    23
 * This unit defines, implements and registers functions and
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    24
 * variables/constants bindings for usage in Lua scripts.
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    25
 *
12107
0695302f3f5f Fix ScriptExists() destroying lua stack (fixes Bug #146)
sheepluva
parents: 12090
diff changeset
    26
 * Please keep https://hedgewars.org/kb/LuaAPI up to date!
5124
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    27
 *
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    28
 * Note: If you add a new function, make sure to test if _all_ parameters
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    29
 *       work as intended! (Especially conversions errors can sneak in
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    30
 *       unnoticed and render the parameter useless!)
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    31
 *)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    32
interface
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    33
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    34
procedure ScriptPrintStack;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    35
procedure ScriptClearStack;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    36
13726
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
    37
function ScriptLoad(name : shortstring; mustExist : boolean): boolean;
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
    38
procedure ScriptOnPreviewInit;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    39
procedure ScriptOnGameInit;
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
    40
procedure ScriptOnScreenResize;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
    41
procedure ScriptSetInteger(name : shortstring; value : LongInt);
9985
42cd42e44c9a GravRacer, GravHigh, GravMutant, Grav... uhm... shoppamap? Easy! Gravity script could be combined with any other script now.
unc0rr
parents: 9917
diff changeset
    42
procedure ScriptSetString(name : shortstring; value : shortstring);
13752
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
    43
procedure ScriptSetMapGlobals;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    44
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    45
procedure ScriptCall(fname : shortstring);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    46
function ScriptCall(fname : shortstring; par1: LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    47
function ScriptCall(fname : shortstring; par1, par2: LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    48
function ScriptCall(fname : shortstring; par1, par2, par3: LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    49
function ScriptCall(fname : shortstring; par1, par2, par3, par4 : LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    50
function ScriptExists(fname : shortstring) : boolean;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    51
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
    52
procedure LuaParseString(s: shortString);
5410
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
    53
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
    54
//function ParseCommandOverride(key, value : shortstring) : shortstring;  This did not work out well
5577
Xeli
parents: 5548 5554
diff changeset
    55
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    56
procedure initModule;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    57
procedure freeModule;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    58
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    59
implementation
9205
abce6011f86c aaaaand let's not forget about lua, which has also a slightly revised build process
koda
parents: 9180
diff changeset
    60
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6430
diff changeset
    61
uses LuaPas,
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    62
    uConsole,
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    63
    uConsts,
6543
697e9b730189 Fix build
unc0rr
parents: 6529
diff changeset
    64
    uGears,
6468
da1e7fe7cff7 Start refactoring uGears. Breaks build.
unc0rr
parents: 6453
diff changeset
    65
    uGearsList,
6543
697e9b730189 Fix build
unc0rr
parents: 6529
diff changeset
    66
    uGearsUtils,
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    67
    uFloat,
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    68
    uWorld,
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    69
    uAmmos,
6763
8a06161ede49 Recount team health if modifying hedgehog health
nemo
parents: 6752
diff changeset
    70
    uTeams,
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    71
    uSound,
4235
6b1dfbd60a45 added TeamsCount and TotalTurns to lua as requested by mikade
Henek
parents: 4221
diff changeset
    72
    uChat,
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
    73
    uStats,
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
    74
    uStore,
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4319
diff changeset
    75
    uRandom,
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents: 4357
diff changeset
    76
    uTypes,
4373
fe0e3903bb9e Introduce uCommands.pas
unC0Rr
parents: 4372
diff changeset
    77
    uVariables,
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents: 4373
diff changeset
    78
    uCommands,
4403
unc0rr
parents: 4399
diff changeset
    79
    uCaptions,
4832
e55e2b6f59b0 update collision in set gear position
nemo
parents: 4780
diff changeset
    80
    uDebug,
4889
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
    81
    uCollisions,
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
    82
    uRenderUtils,
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
    83
    uTextures,
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
    84
    uLandGraphics,
11821
d8844d4c67de always include uUtils _after_ SysUtils
sheepluva
parents: 11737
diff changeset
    85
    uUtils,
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
    86
    uIO,
9283
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9245
diff changeset
    87
    uVisualGearsList,
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    88
    uGearsHandlersMess,
10978
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
    89
    uPhysFSLayer,
13674
3f6fae745f84 Make engine chat syntax translatable
Wuzzy <Wuzzy2@mail.ru>
parents: 13663
diff changeset
    90
    uLocale,
10978
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
    91
    SDLh
10129
cd2a64a1f4aa - Pas2C: make use of 'external' function decorator
unc0rr
parents: 10127
diff changeset
    92
{$IFNDEF PAS2C}
9952
32f5982604f4 Fix build (no idea what's going on in this branch btw)
unc0rr
parents: 9950
diff changeset
    93
    , typinfo
9521
8054d9d775fd merge with latest defaul, fixing compiling with fpc, parsing and rendering with pas2c, some minor problems with compiling with clang
koda
parents: 9264 9409
diff changeset
    94
{$ENDIF}
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
    95
    ;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3539
diff changeset
    96
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    97
var luaState : Plua_State;
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
    98
    ScriptAmmoLoadout : shortstring;
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
    99
    ScriptAmmoProbability : shortstring;
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
   100
    ScriptAmmoDelay : shortstring;
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
   101
    ScriptAmmoReinforcement : shortstring;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   102
    ScriptLoaded : boolean;
10615
e3dcb235a354 fix some things I messed up with the drawing functions
sheepluva
parents: 10613
diff changeset
   103
    PointsBuffer: shortstring;
13216
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
   104
    PrevCursorX, PrevCursorY: LongInt;
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   105
    PendingTurnTimeLeft, PendingReadyTimeLeft: LongWord;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   106
    isPendingTurnTimeLeft, isPendingReadyTimeLeft: boolean;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3539
diff changeset
   107
11678
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
   108
{$IFDEF USE_LUA_SCRIPT}
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   109
procedure ScriptPrepareAmmoStore; forward;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   110
procedure ScriptApplyAmmoStore; forward;
9750
8963312df207 fix misspelled variable name (cosmetic change)
sheepluva
parents: 9748
diff changeset
   111
procedure ScriptSetAmmo(ammo : TAmmoType; count, probability, delay, reinforcement: Byte); forward;
9751
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
   112
procedure ScriptSetAmmoDelay(ammo : TAmmoType; delay: Byte); forward;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   113
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   114
var LuaDebugInfo: lua_Debug;
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   115
10617
457730f03c47 set globals in commandline lua
nemo
parents: 10615
diff changeset
   116
procedure SetGlobals; forward;
13745
be265ab8a4fb Call GetGlobals after entering Lua command with /lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13743
diff changeset
   117
procedure GetGlobals; forward;
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   118
procedure LuaParseString(s: shortString);
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   119
begin
10617
457730f03c47 set globals in commandline lua
nemo
parents: 10615
diff changeset
   120
    SetGlobals;
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   121
    AddFileLog('[Lua] input string: ' + s);
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   122
    AddChatString(#3 + '[Lua] > ' + s);
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   123
    if luaL_dostring(luaState, Str2PChar(s)) <> 0 then
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   124
        begin
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   125
        AddFileLog('[Lua] input string parsing error!');
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   126
        AddChatString(#5 + '[Lua] Error while parsing!');
13745
be265ab8a4fb Call GetGlobals after entering Lua command with /lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13743
diff changeset
   127
        end
be265ab8a4fb Call GetGlobals after entering Lua command with /lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13743
diff changeset
   128
    else
be265ab8a4fb Call GetGlobals after entering Lua command with /lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13743
diff changeset
   129
        GetGlobals();
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   130
end;
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   131
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   132
function LuaUpdateDebugInfo(): Boolean;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   133
begin
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   134
    FillChar(LuaDebugInfo, sizeof(LuaDebugInfo), 0);
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   135
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   136
    if lua_getstack(luaState, 1, @LuaDebugInfo) = 0 then
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   137
        exit(false); // stack not deep enough
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   138
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   139
    // get source name and line count
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   140
    lua_getinfo(luaState, PChar('Sl'), @LuaDebugInfo);
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   141
    exit(true);
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   142
end;
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   143
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   144
procedure LuaErrorOrWarning(s: shortstring; isWarning: boolean);
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   145
var src, intro: shortstring;
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   146
const
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   147
    maxsrclen = 20;
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   148
begin
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   149
    if isWarning then
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   150
        intro:= 'LUA WARNING'
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   151
    else
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   152
        intro:= 'LUA ERROR';
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   153
    if LuaUpdateDebugInfo() then
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   154
        begin
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   155
        src:= StrPas(LuaDebugInfo.source);
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   156
        s:= intro + ': [ ... '
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   157
            + copy(src, Length(src) - maxsrclen, maxsrclen - 3) + ':'
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   158
            + inttostr(LuaDebugInfo.currentLine) + ']: ' + s;
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   159
        end
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   160
    else
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   161
        s:= intro + ': ' + s;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   162
    WriteLnToConsole(s);
13742
cb2857f55130 Change chat text color for Lua warnings to yellow
Wuzzy <Wuzzy2@mail.ru>
parents: 13741
diff changeset
   163
    if isWarning then
cb2857f55130 Change chat text color for Lua warnings to yellow
Wuzzy <Wuzzy2@mail.ru>
parents: 13741
diff changeset
   164
        AddChatString(#0 + s)
cb2857f55130 Change chat text color for Lua warnings to yellow
Wuzzy <Wuzzy2@mail.ru>
parents: 13741
diff changeset
   165
    else
cb2857f55130 Change chat text color for Lua warnings to yellow
Wuzzy <Wuzzy2@mail.ru>
parents: 13741
diff changeset
   166
        AddChatString(#5 + s);
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   167
    if cTestLua and (not isWarning) then
10306
4fca8bcfaff0 clean up halting a little
sheepluva
parents: 10297
diff changeset
   168
        halt(HaltTestLuaError);
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   169
end;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   170
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   171
procedure LuaError(s: shortstring);
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   172
begin
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   173
    LuaErrorOrWarning(s, false);
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   174
end;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   175
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   176
procedure LuaWarning(s: shortstring);
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   177
begin
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   178
    LuaErrorOrWarning(s, true);
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   179
end;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
   180
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   181
procedure LuaCallError(error, call, paramsyntax: shortstring);
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   182
begin
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   183
    LuaError(call + ': ' + error);
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   184
    LuaError('-- SYNTAX: ' + call + ' ( ' + paramsyntax + ' )');
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   185
end;
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   186
10285
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   187
procedure LuaParameterCountError(expected, call, paramsyntax: shortstring; wrongcount: LongInt); inline;
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   188
begin
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   189
    // TODO: i18n?
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   190
    LuaCallError('Wrong number of parameters! (is: ' + inttostr(wrongcount) + ', should be: '+ expected + ')', call, paramsyntax);
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   191
end;
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   192
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   193
// compare with allowed count
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   194
function CheckLuaParamCount(L : Plua_State; count: LongInt; call, paramsyntax: shortstring): boolean; inline;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   195
var c: LongInt;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   196
begin
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   197
    c:= lua_gettop(L);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   198
    if c <> count then
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   199
        begin
10285
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   200
        LuaParameterCountError('exactly ' + inttostr(count), call, paramsyntax, c);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   201
        exit(false);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   202
        end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   203
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   204
    CheckLuaParamCount:= true;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   205
end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   206
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   207
// check if is either count1 or count2
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   208
function CheckAndFetchParamCount(L : Plua_State; count1, count2: LongInt; call, paramsyntax: shortstring; out actual: LongInt): boolean; inline;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   209
begin
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   210
    actual:= lua_gettop(L);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   211
    if (actual <> count1) and (actual <> count2) then
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   212
        begin
10285
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   213
        LuaParameterCountError('either ' + inttostr(count1) + ' or ' + inttostr(count2), call, paramsyntax, actual);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   214
        exit(false);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   215
        end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   216
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   217
    CheckAndFetchParamCount:= true;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   218
end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   219
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   220
// check if is in range of count1 and count2
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   221
function CheckAndFetchParamCountRange(L : Plua_State; count1, count2: LongInt; call, paramsyntax: shortstring; out actual: LongInt): boolean; inline;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   222
begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   223
    actual:= lua_gettop(L);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   224
    if (actual < count1) or (actual > count2) then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   225
        begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   226
        LuaParameterCountError('at least ' + inttostr(count1) + ', but at most ' + inttostr(count2), call, paramsyntax, actual);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   227
        exit(false);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   228
        end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   229
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   230
    CheckAndFetchParamCountRange:= true;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   231
end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   232
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   233
// check if is same or higher as minCount
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   234
function CheckAndFetchLuaParamMinCount(L : Plua_State; minCount: LongInt; call, paramsyntax: shortstring; out actual: LongInt): boolean; inline;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   235
begin
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   236
    actual:= lua_gettop(L);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   237
    if (actual < minCount) then
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   238
        begin
10285
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   239
        LuaParameterCountError(inttostr(minCount) + ' or more', call, paramsyntax, actual);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   240
        exit(false);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   241
        end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   242
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   243
    CheckAndFetchLuaParamMinCount:= true;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   244
end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   245
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   246
function LuaToGearTypeOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   247
begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   248
    if lua_isnoneornil(L, i) then i:= -1
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   249
    else i:= Trunc(lua_tonumber(L, i));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   250
    if (i < ord(Low(TGearType))) or (i > ord(High(TGearType))) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   251
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   252
        LuaCallError('Invalid gearType!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   253
        LuaToGearTypeOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   254
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   255
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   256
        LuaToGearTypeOrd:= i;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   257
end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   258
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   259
function LuaToVisualGearTypeOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   260
begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   261
    if lua_isnoneornil(L, i) then i:= -1
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   262
    else i:= Trunc(lua_tonumber(L, i));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   263
    if (i < ord(Low(TVisualGearType))) or (i > ord(High(TVisualGearType))) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   264
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   265
        LuaCallError('Invalid visualGearType!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   266
        LuaToVisualGearTypeOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   267
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   268
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   269
        LuaToVisualGearTypeOrd:= i;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   270
end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   271
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   272
function LuaToAmmoTypeOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   273
begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   274
    if lua_isnoneornil(L, i) then i:= -1
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   275
    else i:= Trunc(lua_tonumber(L, i));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   276
    if (i < ord(Low(TAmmoType))) or (i > ord(High(TAmmoType))) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   277
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   278
        LuaCallError('Invalid ammoType!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   279
        LuaToAmmoTypeOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   280
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   281
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   282
        LuaToAmmoTypeOrd:= i;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   283
end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   284
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   285
function LuaToStatInfoTypeOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   286
begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   287
    if lua_isnoneornil(L, i) then i:= -1
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   288
    else i:= Trunc(lua_tonumber(L, i));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   289
    if (i < ord(Low(TStatInfoType))) or (i > ord(High(TStatInfoType))) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   290
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   291
        LuaCallError('Invalid statInfoType!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   292
        LuaToStatInfoTypeOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   293
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   294
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   295
        LuaToStatInfoTypeOrd:= i;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   296
end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   297
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   298
function LuaToSoundOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   299
begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   300
    if lua_isnoneornil(L, i) then i:= -1
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   301
    else i:= Trunc(lua_tonumber(L, i));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   302
    if (i < ord(Low(TSound))) or (i > ord(High(TSound))) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   303
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   304
        LuaCallError('Invalid soundId!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   305
        LuaToSoundOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   306
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   307
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   308
        LuaToSoundOrd:= i;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   309
end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   310
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   311
function LuaToHogEffectOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   312
begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   313
    if lua_isnoneornil(L, i) then i:= -1
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   314
    else i:= Trunc(lua_tonumber(L, i));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   315
    if (i < ord(Low(THogEffect))) or (i > ord(High(THogEffect))) then
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   316
        begin
11844
a784866c91ad Lua API: fix incorrect error message. thanks to TheAnachron and rhino for pointing this out
sheepluva
parents: 11823
diff changeset
   317
        LuaCallError('Invalid effect type!', call, paramsyntax);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   318
        LuaToHogEffectOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   319
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   320
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   321
        LuaToHogEffectOrd:= i;
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
   322
end;
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
   323
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   324
function LuaToCapGroupOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
   325
begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   326
    if lua_isnoneornil(L, i) then i:= -1
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   327
    else i:= Trunc(lua_tonumber(L, i));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   328
    if (i < ord(Low(TCapGroup))) or (i > ord(High(TCapGroup))) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   329
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   330
        LuaCallError('Invalid capgroup type!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   331
        LuaToCapGroupOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   332
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   333
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   334
        LuaToCapGroupOrd:= i;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   335
end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   336
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   337
function LuaToSpriteOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   338
begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   339
    if lua_isnoneornil(L, i) then i:= -1
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   340
    else i:= Trunc(lua_tonumber(L, i));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   341
    if (i < ord(Low(TSprite))) or (i > ord(High(TSprite))) then
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
   342
        begin
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
   343
        LuaCallError('Invalid sprite id!', call, paramsyntax);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   344
        LuaToSpriteOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   345
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   346
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   347
        LuaToSpriteOrd:= i;
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
   348
end;
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
   349
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   350
function LuaToMapGenOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   351
begin
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   352
    if lua_isnoneornil(L, i) then i:= -1
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   353
    else i:= Trunc(lua_tonumber(L, i));
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   354
    if (i < ord(Low(TMapGen))) or (i > ord(High(TMapGen))) then
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   355
        begin
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   356
        LuaCallError('Invalid mapgen id!', call, paramsyntax);
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   357
        LuaToMapGenOrd:= -1;
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   358
        end
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   359
    else
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   360
        LuaToMapGenOrd:= i;
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   361
end;
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   362
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
   363
// wrapped calls
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   364
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   365
// functions called from Lua:
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   366
// function(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   367
// where L contains the state, returns the number of return values on the stack
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   368
// call CheckLuaParamCount or CheckAndFetchParamCount
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   369
// to validate/get the number of passed arguments (see their call definitions)
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   370
//
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   371
// use as return value the number of variables pushed back to the lua script
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   372
4483
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   373
function lc_band(L: PLua_State): LongInt; Cdecl;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   374
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   375
    if CheckLuaParamCount(L, 2, 'band', 'value1, value2') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   376
        lua_pushnumber(L, Trunc(lua_tonumber(L, 2)) and Trunc(lua_tonumber(L, 1)))
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   377
    else
4483
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   378
        lua_pushnil(L);
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   379
    lc_band := 1;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   380
end;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   381
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   382
function lc_bor(L: PLua_State): LongInt; Cdecl;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   383
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   384
    if CheckLuaParamCount(L, 2, 'bor', 'value1, value2') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   385
        lua_pushnumber(L, Trunc(lua_tonumber(L, 2)) or Trunc(lua_tonumber(L, 1)))
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   386
    else
4483
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   387
        lua_pushnil(L);
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   388
    lc_bor := 1;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   389
end;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   390
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   391
function lc_bnot(L: PLua_State): LongInt; Cdecl;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   392
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   393
    if CheckLuaParamCount(L, 1, 'bnot', 'value') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   394
        lua_pushnumber(L, (not Trunc(lua_tonumber(L, 1))))
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   395
    else
4483
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   396
        lua_pushnil(L);
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   397
    lc_bnot := 1;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   398
end;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   399
6764
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   400
function lc_div(L: PLua_State): LongInt; Cdecl;
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   401
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   402
    if CheckLuaParamCount(L, 2, 'div', 'dividend, divisor') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   403
        lua_pushnumber(L, Trunc(lua_tonumber(L, 1)) div Trunc(lua_tonumber(L, 2)))
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   404
    else
6764
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   405
        lua_pushnil(L);
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   406
    lc_div := 1;
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   407
end;
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   408
4523
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   409
function lc_getinputmask(L : Plua_State) : LongInt; Cdecl;
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   410
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   411
    if CheckLuaParamCount(L, 0, 'GetInputMask', '') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   412
        lua_pushnumber(L, InputMask);
4523
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   413
    lc_getinputmask:= 1
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   414
end;
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   415
4522
0f590eefd531 Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents: 4517
diff changeset
   416
function lc_setinputmask(L : Plua_State) : LongInt; Cdecl;
0f590eefd531 Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents: 4517
diff changeset
   417
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   418
    if CheckLuaParamCount(L, 1, 'SetInputMask', 'mask') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   419
        InputMask:= Trunc(lua_tonumber(L, 1));
4522
0f590eefd531 Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents: 4517
diff changeset
   420
    lc_setinputmask:= 0
0f590eefd531 Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents: 4517
diff changeset
   421
end;
0f590eefd531 Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents: 4517
diff changeset
   422
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   423
function lc_writelntoconsole(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   424
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   425
    if CheckLuaParamCount(L, 1, 'WriteLnToConsole', 'string') then
5549
ccfb9b8ab9d1 sheepluva pointed out there are 2 StrPas in pascal, in different units. Do conversion in LuaPas instead
nemo
parents: 5547
diff changeset
   426
        WriteLnToConsole('Lua: ' + lua_tostring(L ,1));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   427
    lc_writelntoconsole:= 0;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   428
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   429
12910
383445810e42 Lua API: Add WriteLnToChat
Wuzzy <Wuzzy2@mail.ru>
parents: 12848
diff changeset
   430
function lc_writelntochat(L : Plua_State) : LongInt; Cdecl;
383445810e42 Lua API: Add WriteLnToChat
Wuzzy <Wuzzy2@mail.ru>
parents: 12848
diff changeset
   431
begin
383445810e42 Lua API: Add WriteLnToChat
Wuzzy <Wuzzy2@mail.ru>
parents: 12848
diff changeset
   432
    if CheckLuaParamCount(L, 1, 'WriteLnToChat', 'string') then
383445810e42 Lua API: Add WriteLnToChat
Wuzzy <Wuzzy2@mail.ru>
parents: 12848
diff changeset
   433
        AddChatString(#2 + lua_tostring(L, 1));
383445810e42 Lua API: Add WriteLnToChat
Wuzzy <Wuzzy2@mail.ru>
parents: 12848
diff changeset
   434
    lc_writelntochat:= 0;
383445810e42 Lua API: Add WriteLnToChat
Wuzzy <Wuzzy2@mail.ru>
parents: 12848
diff changeset
   435
end;
383445810e42 Lua API: Add WriteLnToChat
Wuzzy <Wuzzy2@mail.ru>
parents: 12848
diff changeset
   436
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   437
function lc_parsecommand(L : Plua_State) : LongInt; Cdecl;
7307
f830a65d6a6d This is necessary because commands can contain 0s, and StrPas used by LuaPas halts at the first 0. It might be necessary to change the base string handling.
nemo
parents: 7270
diff changeset
   438
var t: PChar;
f830a65d6a6d This is necessary because commands can contain 0s, and StrPas used by LuaPas halts at the first 0. It might be necessary to change the base string handling.
nemo
parents: 7270
diff changeset
   439
    i,c: LongWord;
f830a65d6a6d This is necessary because commands can contain 0s, and StrPas used by LuaPas halts at the first 0. It might be necessary to change the base string handling.
nemo
parents: 7270
diff changeset
   440
    s: shortstring;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   441
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   442
    if CheckLuaParamCount(L, 1, 'ParseCommand', 'string') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   443
        begin
10131
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10129
diff changeset
   444
        t:= lua_tolstring(L, 1, Psize_t(@c));
7307
f830a65d6a6d This is necessary because commands can contain 0s, and StrPas used by LuaPas halts at the first 0. It might be necessary to change the base string handling.
nemo
parents: 7270
diff changeset
   445
f830a65d6a6d This is necessary because commands can contain 0s, and StrPas used by LuaPas halts at the first 0. It might be necessary to change the base string handling.
nemo
parents: 7270
diff changeset
   446
        for i:= 1 to c do s[i]:= t[i-1];
f830a65d6a6d This is necessary because commands can contain 0s, and StrPas used by LuaPas halts at the first 0. It might be necessary to change the base string handling.
nemo
parents: 7270
diff changeset
   447
        s[0]:= char(c);
f830a65d6a6d This is necessary because commands can contain 0s, and StrPas used by LuaPas halts at the first 0. It might be necessary to change the base string handling.
nemo
parents: 7270
diff changeset
   448
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
   449
        ParseCommand(s, true, true);
7307
f830a65d6a6d This is necessary because commands can contain 0s, and StrPas used by LuaPas halts at the first 0. It might be necessary to change the base string handling.
nemo
parents: 7270
diff changeset
   450
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   451
        end;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   452
    lc_parsecommand:= 0;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   453
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   454
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   455
// sets weapon to the desired ammo type
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   456
function lc_setweapon(L : Plua_State) : LongInt; Cdecl;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   457
var at: LongInt;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   458
const
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   459
    call = 'SetWeapon';
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   460
    params = 'ammoType';
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   461
begin
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   462
    // no point to run this without any CurrentHedgehog
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   463
    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 1, call, params)) then
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   464
        begin
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   465
        at:= LuaToAmmoTypeOrd(L, 1, call, params);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   466
        if at >= 0 then
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   467
            ParseCommand('setweap ' + char(at), true, true);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   468
        end;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   469
    lc_setweapon:= 0;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   470
end;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   471
11520
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   472
// enable/disable cinematic effects
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   473
function lc_setcinematicmode(L : Plua_State) : LongInt; Cdecl;
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   474
const
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   475
    call = 'SetCinematicMode';
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   476
    params = 'enable';
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   477
begin
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   478
    if (CheckLuaParamCount(L, 1, call, params)) then
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   479
        begin
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   480
        CinematicScript:= lua_toboolean(L, 1);
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   481
        end;
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   482
    lc_setcinematicmode:= 0;
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   483
end;
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
   484
11058
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   485
// no parameter means reset to default (and 0 means unlimited)
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   486
function lc_setmaxbuilddistance(L : Plua_State) : LongInt; Cdecl;
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   487
var np: LongInt;
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   488
const
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   489
    call = 'SetMaxBuildDistance';
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   490
    params = '[ distInPx ]';
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   491
begin
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   492
    if CheckAndFetchParamCountRange(L, 0, 1, call, params, np) then
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   493
        begin
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   494
        if np = 0 then
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   495
            begin
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   496
            // no args? reset
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   497
            cBuildMaxDist:= cDefaultBuildMaxDist;
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   498
            end
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   499
        else
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   500
            CBuildMaxDist:= Trunc(lua_tonumber(L, 1));
11058
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   501
        end;
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   502
    lc_setmaxbuilddistance:= 0;
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   503
end;
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
   504
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   505
// sets weapon to whatever weapons is next (wraps around, amSkip is skipped)
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   506
function lc_setnextweapon(L : Plua_State) : LongInt; Cdecl;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   507
var at          : LongInt;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   508
    nextAmmo    : TAmmo;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   509
    s, a, cs, fa: LongInt;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   510
const
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   511
    call = 'SetNextWeapon';
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   512
    params = '';
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   513
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   514
    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 0, call, params)) then
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   515
        begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   516
        at:= -1;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   517
        with CurrentHedgehog^ do
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   518
            begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   519
            cs:= 0; // current slot
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   520
            fa:= 0; // first ammo item to check
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   521
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
   522
            // if something is selected, find it is successor
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   523
            if curAmmoType <> amNothing then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   524
                begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   525
                // get current slot index
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   526
                cs:= Ammoz[CurAmmoType].Slot;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   527
                // find current ammo index
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   528
                while (fa < cMaxSlotAmmoIndex)
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   529
                    and (Ammo^[cs, fa].AmmoType <> CurAmmoType) do
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   530
                        inc(fa);
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
   531
                // increase once more because we will not successor
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   532
                inc(fa);
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   533
                end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   534
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   535
            // find first available ammo
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   536
            // revisit current slot too (current item might not be first)
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   537
            for s:= cs to cs + cMaxSlotIndex + 1 do
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   538
                begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   539
                for a:= fa to cMaxSlotAmmoIndex do
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   540
                    begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   541
                    // check if we went full circle
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   542
                    if (a = fa) and (s = cs + cMaxSlotIndex + 1)  then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   543
                        exit(0);
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   544
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   545
                    // get ammo
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   546
                    nextAmmo:= Ammo^[s mod (cMaxSlotIndex + 1), a];
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   547
                    // only switch to ammos the hog actually has
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   548
                    if (nextAmmo.AmmoType <> amNothing)
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   549
                        and (nextAmmo.AmmoType <> amSkip) and (nextAmmo.Count > 0) then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   550
                            begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   551
                            at:= ord(nextAmmo.AmmoType);
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   552
                            break;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   553
                            end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   554
                    end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   555
                // stop slot loop if something was found
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   556
                if at >= 0 then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   557
                    break;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   558
                // check following slots starting with first item
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   559
                fa:= 0;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   560
                end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   561
            end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   562
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   563
        if at >= 0 then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   564
            ParseCommand('setweap ' + char(at), true, true);
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   565
        end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   566
    lc_setnextweapon:= 0;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   567
end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   568
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   569
function lc_showmission(L : Plua_State) : LongInt; Cdecl;
13461
854caa3c9212 Lua API: Add parameter forceDisplay to ShowMission to prevent manual hiding
Wuzzy <Wuzzy2@mail.ru>
parents: 13455
diff changeset
   570
var n: LongInt;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   571
begin
13461
854caa3c9212 Lua API: Add parameter forceDisplay to ShowMission to prevent manual hiding
Wuzzy <Wuzzy2@mail.ru>
parents: 13455
diff changeset
   572
    if CheckAndFetchParamCount(L, 5, 6, 'ShowMission', 'caption, subcaption, text, icon, time [, forceDisplay]', n) then
854caa3c9212 Lua API: Add parameter forceDisplay to ShowMission to prevent manual hiding
Wuzzy <Wuzzy2@mail.ru>
parents: 13455
diff changeset
   573
        if n = 5 then
854caa3c9212 Lua API: Add parameter forceDisplay to ShowMission to prevent manual hiding
Wuzzy <Wuzzy2@mail.ru>
parents: 13455
diff changeset
   574
            ShowMission(lua_tostringA(L, 1), lua_tostringA(L, 2), lua_tostringA(L, 3), Trunc(lua_tonumber(L, 4)), Trunc(lua_tonumber(L, 5)))
854caa3c9212 Lua API: Add parameter forceDisplay to ShowMission to prevent manual hiding
Wuzzy <Wuzzy2@mail.ru>
parents: 13455
diff changeset
   575
        else
854caa3c9212 Lua API: Add parameter forceDisplay to ShowMission to prevent manual hiding
Wuzzy <Wuzzy2@mail.ru>
parents: 13455
diff changeset
   576
            ShowMission(lua_tostringA(L, 1), lua_tostringA(L, 2), lua_tostringA(L, 3), Trunc(lua_tonumber(L, 4)), Trunc(lua_tonumber(L, 5)), lua_toboolean(L, 6));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   577
    lc_showmission:= 0;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   578
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   579
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   580
function lc_hidemission(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   581
begin
3407
dcc129c4352e Engine:
smxx
parents: 3368
diff changeset
   582
    L:= L; // avoid compiler hint
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   583
    HideMission;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   584
    lc_hidemission:= 0;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   585
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   586
11939
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11880
diff changeset
   587
function lc_setammotexts(L : Plua_State) : LongInt; Cdecl;
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11880
diff changeset
   588
const
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11880
diff changeset
   589
    call = 'SetAmmoTexts';
13370
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   590
    params = 'ammoType, name, caption, description [, showExtra]';
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   591
var n: integer;
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   592
    showExtra: boolean;
11939
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11880
diff changeset
   593
begin
13370
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   594
    if CheckAndFetchParamCount(L, 4, 5, call, params, n) then
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   595
        begin
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   596
        if n = 5 then
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   597
            showExtra:= lua_toboolean(L, 5)
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   598
        else
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   599
            showExtra:= true;
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   600
        SetAmmoTexts(TAmmoType(LuaToAmmoTypeOrd(L, 1, call, params)), lua_tostringA(L, 2), lua_tostringA(L, 3), lua_tostringA(L, 4), showExtra);
e202d58236b1 Lua API: Add 5th parameter showExtra to SetAmmoTexts to hide extra text
Wuzzy <Wuzzy2@mail.ru>
parents: 13349
diff changeset
   601
        end;
11939
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11880
diff changeset
   602
    lc_setammotexts:= 0;
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11880
diff changeset
   603
end;
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11880
diff changeset
   604
11941
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   605
function lc_setammodescriptionappendix(L : Plua_State) : LongInt; Cdecl;
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   606
const
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   607
    call = 'SetAmmoDescriptionAppendix';
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   608
    params = 'ammoType, descAppend';
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   609
var
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   610
    ammoType: TAmmoType;
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   611
    descAppend: ansistring;
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   612
begin
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   613
    if CheckLuaParamCount(L, 2, call, params) then
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   614
        begin
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   615
        ammoType := TAmmoType(LuaToAmmoTypeOrd(L, 1, call, params));
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   616
        descAppend := lua_tostringA(L, 2);
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   617
        trluaammoa[Ammoz[ammoType].NameId] := descAppend;
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   618
        end;
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   619
    lc_setammodescriptionappendix := 0;
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   620
end;
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
   621
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   622
function lc_enablegameflags(L : Plua_State) : LongInt; Cdecl;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   623
var i, n : integer;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   624
begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   625
    // can have 1 or more arguments
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   626
    if CheckAndFetchLuaParamMinCount(L, 1, 'EnableGameFlags', 'gameFlag, ... ', n) then
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   627
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   628
        for i:= 1 to n do
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   629
            GameFlags := GameFlags or LongWord(Trunc(lua_tonumber(L, i)));
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   630
        ScriptSetInteger('GameFlags', GameFlags);
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   631
        end;
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8368
diff changeset
   632
    lc_enablegameflags:= 0;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   633
end;
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   634
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   635
function lc_disablegameflags(L : Plua_State) : LongInt; Cdecl;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   636
var i , n: integer;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   637
begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   638
    // can have 1 or more arguments
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   639
    if CheckAndFetchLuaParamMinCount(L, 1, 'DisableGameFlags', 'gameFlag, ... ', n) then
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   640
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   641
        for i:= 1 to n do
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   642
            GameFlags := GameFlags and (not LongWord(Trunc(lua_tonumber(L, i))));
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   643
        ScriptSetInteger('GameFlags', GameFlags);
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   644
        end;
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8368
diff changeset
   645
    lc_disablegameflags:= 0;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   646
end;
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   647
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   648
function lc_cleargameflags(L : Plua_State) : LongInt; Cdecl;
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   649
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   650
    if CheckLuaParamCount(L, 0, 'ClearGameFlags', '') then
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   651
        begin
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   652
        GameFlags:= 0;
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   653
        ScriptSetInteger('GameFlags', GameFlags);
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   654
        end;
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8368
diff changeset
   655
    lc_cleargameflags:= 0;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   656
end;
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   657
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   658
function lc_getgameflag(L : Plua_State) : LongInt; Cdecl;
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   659
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   660
    if CheckLuaParamCount(L, 1, 'GetGameFlag', 'gameflag') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   661
        lua_pushboolean(L, (GameFlags and LongWord(Trunc(lua_tonumber(L, 1))) <> 0))
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   662
    else
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   663
        lua_pushnil(L);
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   664
    lc_getgameflag:= 1;
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   665
end;
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   666
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   667
function lc_addcaption(L : Plua_State) : LongInt; Cdecl;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   668
var cg: LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   669
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   670
    call = 'AddCaption';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   671
    params = 'text [, color, captiongroup]';
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   672
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   673
    if CheckAndFetchParamCount(L, 1, 3, call, params, cg) then
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   674
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   675
        if cg = 1 then
13642
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13627
diff changeset
   676
            AddCaption(lua_tostringA(L, 1), capcolDefault, capgrpMessage)
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   677
        else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   678
            begin
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   679
            cg:= LuaToCapGroupOrd(L, 3, call, params);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   680
            if cg >= 0 then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   681
                AddCaption(lua_tostringA(L, 1), Trunc(lua_tonumber(L, 2)) shr 8, TCapGroup(cg));
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   682
            end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   683
        end;
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   684
    lc_addcaption:= 0;
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   685
end;
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   686
5313
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   687
function lc_spawnfakehealthcrate(L: Plua_State) : LongInt; Cdecl;
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   688
var gear: PGear;
14393
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   689
    explode, poison: boolean;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   690
    n: LongInt;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   691
begin
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   692
    if CheckAndFetchParamCountRange(L, 2, 4, 'SpawnFakeHealthCrate', 'x, y [, explode [, poison]]', n) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   693
        begin
14393
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   694
        explode:= false;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   695
        poison:= false;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   696
        if (n >= 3) and (not lua_isnil(L, 3)) then
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   697
            explode:= lua_toboolean(L, 3);
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   698
        if (n = 4) and (not lua_isnil(L, 4)) then
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   699
            poison:= lua_toboolean(L, 4);
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   700
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   701
        gear := SpawnFakeCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)),
14393
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   702
        HealthCrate, explode, poison);
11196
f4cf2cdea8e5 Add nil check in fake crate spawn for if crate fails to spawn
nemo
parents: 11179
diff changeset
   703
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   704
             lua_pushnumber(L, gear^.uid)
11196
f4cf2cdea8e5 Add nil check in fake crate spawn for if crate fails to spawn
nemo
parents: 11179
diff changeset
   705
        else lua_pushnil(L)
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   706
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   707
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   708
        lua_pushnil(L);
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
   709
    lc_spawnfakehealthcrate := 1;
5313
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   710
end;
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   711
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   712
function lc_spawnfakeammocrate(L: PLua_State): LongInt; Cdecl;
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   713
var gear: PGear;
14393
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   714
    explode, poison: boolean;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   715
    n: LongInt;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   716
begin
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   717
    if CheckAndFetchParamCountRange(L, 2, 4, 'SpawnFakeAmmoCrate', 'x, y [, explode [, poison]]', n) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   718
        begin
14393
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   719
        explode:= false;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   720
        poison:= false;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   721
        if (n >= 3) and (not lua_isnil(L, 3)) then
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   722
            explode:= lua_toboolean(L, 3);
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   723
        if (n = 4) and (not lua_isnil(L, 4)) then
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   724
            poison:= lua_toboolean(L, 4);
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   725
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   726
        gear := SpawnFakeCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)),
14393
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   727
        AmmoCrate, explode, poison);
11251
66796cd627d8 few more missing nil checks in crate spawn
nemo
parents: 11196
diff changeset
   728
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   729
             lua_pushnumber(L, gear^.uid)
11251
66796cd627d8 few more missing nil checks in crate spawn
nemo
parents: 11196
diff changeset
   730
        else lua_pushnil(L)
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   731
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   732
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   733
        lua_pushnil(L);
5313
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   734
    lc_spawnfakeammocrate := 1;
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   735
end;
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   736
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   737
function lc_spawnfakeutilitycrate(L: PLua_State): LongInt; Cdecl;
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   738
var gear: PGear;
14393
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   739
    explode, poison: boolean;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   740
    n: LongInt;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   741
begin
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   742
    if CheckAndFetchParamCountRange(L, 2, 4, 'SpawnFakeUtilityCrate', 'x, y [, explode [, poison]]', n) then
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
   743
        begin
14393
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   744
        explode:= false;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   745
        poison:= false;
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   746
        if (n >= 3) and (not lua_isnil(L, 3)) then
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   747
            explode:= lua_toboolean(L, 3);
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   748
        if (n = 4) and (not lua_isnil(L, 4)) then
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   749
            poison:= lua_toboolean(L, 4);
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   750
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   751
        gear := SpawnFakeCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)),
14393
c2cd3f64b9f7 Lua API: Make the last 2 params optional in the SpawnFake*Crate functions
Wuzzy <Wuzzy2@mail.ru>
parents: 14366
diff changeset
   752
        UtilityCrate, explode, poison);
11251
66796cd627d8 few more missing nil checks in crate spawn
nemo
parents: 11196
diff changeset
   753
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   754
             lua_pushnumber(L, gear^.uid)
11251
66796cd627d8 few more missing nil checks in crate spawn
nemo
parents: 11196
diff changeset
   755
        else lua_pushnil(L)
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   756
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   757
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   758
        lua_pushnil(L);
5313
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   759
    lc_spawnfakeutilitycrate := 1;
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   760
end;
5e18eaef65d0 now scripts can create unique crates: dummy (empty) crates and booby traps. scripts can also set health crate values
Henek
parents: 5277
diff changeset
   761
3730
aecea9aa53dc Engine:
smaxx
parents: 3724
diff changeset
   762
function lc_spawnhealthcrate(L: Plua_State) : LongInt; Cdecl;
3750
3aa85b5f3318 SpawnCustomCrateAt: spawn crate at random position for x=y=0, also let it return the gear, and luabindings the gear uid
burp
parents: 3736
diff changeset
   763
var gear: PGear;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   764
var health, n: LongInt;
3730
aecea9aa53dc Engine:
smaxx
parents: 3724
diff changeset
   765
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   766
    if CheckAndFetchParamCount(L, 2, 3, 'SpawnHealthCrate', 'x, y [, health]', n) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   767
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   768
        if n = 3 then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   769
            health:= Trunc(lua_tonumber(L, 3))
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   770
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   771
            health:= cHealthCaseAmount;
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   772
        gear := SpawnCustomCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)), HealthCrate, health, 0);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   773
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   774
             lua_pushnumber(L, gear^.uid)
11251
66796cd627d8 few more missing nil checks in crate spawn
nemo
parents: 11196
diff changeset
   775
        else lua_pushnil(L);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   776
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   777
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   778
        lua_pushnil(L);
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
   779
    lc_spawnhealthcrate := 1;
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   780
end;
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   781
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   782
function lc_spawnammocrate(L: PLua_State): LongInt; Cdecl;
3750
3aa85b5f3318 SpawnCustomCrateAt: spawn crate at random position for x=y=0, also let it return the gear, and luabindings the gear uid
burp
parents: 3736
diff changeset
   783
var gear: PGear;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   784
    n   : LongInt;
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   785
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   786
    if CheckAndFetchParamCount(L, 3, 4, 'SpawnAmmoCrate', 'x, y, content [, amount]', n) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   787
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   788
        if n = 3 then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   789
             gear := SpawnCustomCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)), AmmoCrate, Trunc(lua_tonumber(L, 3)), 0)
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   790
        else gear := SpawnCustomCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)), AmmoCrate, Trunc(lua_tonumber(L, 3)), Trunc(lua_tonumber(L, 4)));
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   791
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   792
             lua_pushnumber(L, gear^.uid)
11251
66796cd627d8 few more missing nil checks in crate spawn
nemo
parents: 11196
diff changeset
   793
        else lua_pushnil(L);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   794
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   795
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   796
        lua_pushnil(L);
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   797
    lc_spawnammocrate := 1;
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   798
end;
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   799
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   800
function lc_spawnutilitycrate(L: PLua_State): LongInt; Cdecl;
3750
3aa85b5f3318 SpawnCustomCrateAt: spawn crate at random position for x=y=0, also let it return the gear, and luabindings the gear uid
burp
parents: 3736
diff changeset
   801
var gear: PGear;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   802
    n   : LongInt;
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   803
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   804
    if CheckAndFetchParamCount(L, 3, 4, 'SpawnUtilityCrate', 'x, y, content [, amount]', n) then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   805
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   806
        if n = 3 then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   807
             gear := SpawnCustomCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)), UtilityCrate, Trunc(lua_tonumber(L, 3)), 0)
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   808
        else gear := SpawnCustomCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)), UtilityCrate, Trunc(lua_tonumber(L, 3)), Trunc(lua_tonumber(L, 4)));
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   809
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   810
             lua_pushnumber(L, gear^.uid)
11251
66796cd627d8 few more missing nil checks in crate spawn
nemo
parents: 11196
diff changeset
   811
        else lua_pushnil(L);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   812
       end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   813
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   814
        lua_pushnil(L);
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   815
    lc_spawnutilitycrate := 1;
3730
aecea9aa53dc Engine:
smaxx
parents: 3724
diff changeset
   816
end;
aecea9aa53dc Engine:
smaxx
parents: 3724
diff changeset
   817
12932
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   818
function lc_spawnsupplycrate(L: PLua_State): LongInt; Cdecl;
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   819
var gear: PGear;
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   820
    n, at:LongInt;
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   821
    t:    TCrateType;
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   822
begin
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   823
    if CheckAndFetchParamCount(L, 3, 4, 'SpawnSupplyCrate', 'x, y, content [, amount]', n) then
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   824
        begin
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   825
        // Get crate type (ammo or utility)
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   826
        at:= Trunc(lua_tonumber(L, 3));
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   827
        if (Ammoz[TAmmoType(at)].Ammo.Propz and ammoprop_Utility) <> 0 then
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   828
            t:= UtilityCrate
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   829
        else
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   830
            t:= AmmoCrate;
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   831
        if n = 3 then
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   832
             gear := SpawnCustomCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)), t, at, 0)
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   833
        else gear := SpawnCustomCrateAt(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)), t, at, Trunc(lua_tonumber(L, 4)));
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   834
        if gear <> nil then
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   835
             lua_pushnumber(L, gear^.uid)
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   836
        else lua_pushnil(L);
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   837
        end
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   838
    else
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   839
        lua_pushnil(L);
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   840
    lc_spawnsupplycrate := 1;
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   841
end;
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
   842
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   843
function lc_addgear(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   844
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   845
    x, y, s, t: LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   846
    dx, dy: hwFloat;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   847
    gt: TGearType;
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   848
const
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   849
    call = 'AddGear';
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   850
    params = 'x, y, gearType, state, dx, dy, timer';
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   851
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   852
    if CheckLuaParamCount(L, 7, call, params) then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   853
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   854
        t:= LuaToGearTypeOrd(L, 3, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   855
        if t >= 0 then
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   856
            begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   857
            gt:= TGearType(t);
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   858
            x:= Trunc(lua_tonumber(L, 1));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   859
            y:= Trunc(lua_tonumber(L, 2));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   860
            s:= Trunc(lua_tonumber(L, 4));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   861
            dx:= int2hwFloat(Trunc(lua_tonumber(L, 5))) / 1000000;
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   862
            dy:= int2hwFloat(Trunc(lua_tonumber(L, 6))) / 1000000;
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   863
            t:= Trunc(lua_tonumber(L, 7));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   864
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   865
            gear:= AddGear(x, y, gt, s, dx, dy, t);
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   866
            lastGearByUID:= gear;
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   867
            lua_pushnumber(L, gear^.uid)
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   868
            end
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   869
        else
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   870
            lua_pushnil(L);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   871
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   872
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   873
        lua_pushnil(L);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   874
    lc_addgear:= 1; // 1 return value
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   875
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   876
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   877
function lc_deletegear(L : Plua_State) : LongInt; Cdecl;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   878
var gear : PGear;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   879
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   880
    if CheckLuaParamCount(L, 1, 'DeleteGear', 'gearUid') then
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   881
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   882
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   883
        if gear <> nil then
7517
f287f00063e8 Allow scripting to delete gears
nemo
parents: 7426
diff changeset
   884
            gear^.Message:= gear^.Message or gmDelete;
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   885
        end;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   886
    lc_deletegear:= 0
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   887
end;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   888
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   889
function lc_addvisualgear(L : Plua_State) : LongInt; Cdecl;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   890
var vg : PVisualGear;
10346
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   891
    x, y, s, n, layer: LongInt;
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   892
    c: Boolean;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   893
    vgt: TVisualGearType;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   894
    uid: Longword;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   895
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   896
    call = 'AddVisualGear';
10346
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   897
    params = 'x, y, visualGearType, state, critical [, layer]';
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   898
begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   899
    uid:= 0;
10346
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   900
    if CheckAndFetchParamCount(L, 5, 6, call, params, n) then
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   901
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   902
        s:= LuaToVisualGearTypeOrd(L, 3, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   903
        if s >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   904
            begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   905
            vgt:= TVisualGearType(s);
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   906
            x:= Trunc(lua_tonumber(L, 1));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   907
            y:= Trunc(lua_tonumber(L, 2));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   908
            s:= Trunc(lua_tonumber(L, 4));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   909
            c:= lua_toboolean(L, 5);
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   910
10346
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   911
            if n = 6 then
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   912
                begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   913
                layer:= Trunc(lua_tonumber(L, 6));
10347
fd80921a8f81 add assignment I forgot
sheepluva
parents: 10346
diff changeset
   914
                vg:= AddVisualGear(x, y, vgt, s, c, layer);
10346
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   915
                end
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   916
            else
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   917
                vg:= AddVisualGear(x, y, vgt, s, c);
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   918
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   919
            if vg <> nil then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   920
                begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   921
                lastVisualGearByUID:= vg;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   922
                uid:= vg^.uid;
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   923
                lua_pushnumber(L, uid);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   924
                end;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   925
            end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   926
            else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   927
                lua_pushnil(L);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   928
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   929
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   930
        lua_pushnil(L); // return value on stack (nil)
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   931
    lc_addvisualgear:= 1; // 1 return value
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   932
end;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   933
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   934
function lc_deletevisualgear(L : Plua_State) : LongInt; Cdecl;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   935
var vg : PVisualGear;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   936
begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   937
    vg:= nil;
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   938
    if CheckLuaParamCount(L, 1, 'DeleteVisualGear', 'vgUid') then
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   939
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   940
        vg:= VisualGearByUID(Trunc(lua_tonumber(L, 1)));
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   941
        if vg <> nil then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   942
            DeleteVisualGear(vg);
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   943
        end;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   944
    // allow caller to know whether there was something to delete
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   945
    lua_pushboolean(L, vg <> nil);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   946
    lc_deletevisualgear:= 1
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   947
end;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   948
11880
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   949
function lc_getvisualgeartype(L : Plua_State) : LongInt; Cdecl;
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   950
var vg : PVisualGear;
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   951
begin
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   952
    if CheckLuaParamCount(L, 1, 'GetVisualGearType', 'vgUid') then
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   953
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   954
        vg := VisualGearByUID(Trunc(lua_tonumber(L, 1)));
11880
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   955
        if vg <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   956
            lua_pushnumber(L, ord(vg^.Kind))
11880
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   957
        else
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   958
            lua_pushnil(L);
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   959
        end
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   960
    else
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   961
        lua_pushnil(L); // return value on stack (nil)
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   962
    lc_getvisualgeartype:= 1
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   963
end;
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   964
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
   965
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   966
function lc_getvisualgearvalues(L : Plua_State) : LongInt; Cdecl;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   967
var vg: PVisualGear;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   968
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   969
    if CheckLuaParamCount(L, 1, 'GetVisualGearValues', 'vgUid') then
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   970
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   971
        vg:= VisualGearByUID(Trunc(lua_tonumber(L, 1)));
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   972
        if vg <> nil then
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   973
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   974
            lua_pushnumber(L, round(vg^.X));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   975
            lua_pushnumber(L, round(vg^.Y));
5075
59b13b38a827 not useful for visual gears, and apparently not helpful for consistency
nemo
parents: 5074
diff changeset
   976
            lua_pushnumber(L, vg^.dX);
59b13b38a827 not useful for visual gears, and apparently not helpful for consistency
nemo
parents: 5074
diff changeset
   977
            lua_pushnumber(L, vg^.dY);
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   978
            lua_pushnumber(L, vg^.Angle);
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   979
            lua_pushnumber(L, vg^.Frame);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   980
            lua_pushnumber(L, vg^.FrameTicks);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   981
            lua_pushnumber(L, vg^.State);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   982
            lua_pushnumber(L, vg^.Timer);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
   983
            lua_pushnumber(L, vg^.Tint);
14167
48b9da0178eb oups getter should have it too
nemo
parents: 14037
diff changeset
   984
            lua_pushnumber(L, vg^.Scale);
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   985
            end
4767
4ee4a49549e2 return nil values if an invalid visual gear is passed to the get, add a check in Control map lua
nemo
parents: 4682
diff changeset
   986
        else
4ee4a49549e2 return nil values if an invalid visual gear is passed to the get, add a check in Control map lua
nemo
parents: 4682
diff changeset
   987
            begin
4ee4a49549e2 return nil values if an invalid visual gear is passed to the get, add a check in Control map lua
nemo
parents: 4682
diff changeset
   988
            lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
14167
48b9da0178eb oups getter should have it too
nemo
parents: 14037
diff changeset
   989
            lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
4767
4ee4a49549e2 return nil values if an invalid visual gear is passed to the get, add a check in Control map lua
nemo
parents: 4682
diff changeset
   990
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   991
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   992
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   993
        begin
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   994
        lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
14167
48b9da0178eb oups getter should have it too
nemo
parents: 14037
diff changeset
   995
        lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   996
        end;
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
   997
    lc_getvisualgearvalues:= 10
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   998
end;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
   999
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
  1000
function lc_setvisualgearvalues(L : Plua_State) : LongInt; Cdecl;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
  1001
var vg : PVisualGear;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
  1002
begin
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1003
// Param count can be 1-11 at present
14167
48b9da0178eb oups getter should have it too
nemo
parents: 14037
diff changeset
  1004
//    if CheckLuaParamCount(L, 11, 'SetVisualGearValues', 'vgUid, X, Y, dX, dY, Angle, Frame, FrameTicks, State, Timer, Tint, Scale') then
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1005
//        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1006
        vg:= VisualGearByUID(Trunc(lua_tonumber(L, 1)));
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
  1007
        if vg <> nil then
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
  1008
            begin
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1009
            if not lua_isnoneornil(L, 2) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1010
                vg^.X:= Trunc(lua_tonumber(L, 2));
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1011
            if not lua_isnoneornil(L, 3) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1012
                vg^.Y:= Trunc(lua_tonumber(L, 3));
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1013
            if not lua_isnoneornil(L, 4) then
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1014
                vg^.dX:= lua_tonumber(L, 4);
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1015
            if not lua_isnoneornil(L, 5) then
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1016
                vg^.dY:= lua_tonumber(L, 5);
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1017
            if not lua_isnoneornil(L, 6) then
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1018
                vg^.Angle:= lua_tonumber(L, 6);
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1019
            if not lua_isnoneornil(L, 7) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1020
                vg^.Frame:= Trunc(lua_tonumber(L, 7));
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1021
            if not lua_isnoneornil(L, 8) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1022
                vg^.FrameTicks:= Trunc(lua_tonumber(L, 8));
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1023
            if not lua_isnoneornil(L, 9) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1024
                vg^.State:= Trunc(lua_tonumber(L, 9));
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1025
            if not lua_isnoneornil(L, 10) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1026
                vg^.Timer:= Trunc(lua_tonumber(L, 10));
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1027
            if not lua_isnoneornil(L, 11) then
13434
745e9174038e somehow scale was omitted from this catch-all VG init. late addition to the struct perhaps.
nemo
parents: 13394
diff changeset
  1028
                vg^.Tint:= Trunc(lua_tonumber(L, 11));
745e9174038e somehow scale was omitted from this catch-all VG init. late addition to the struct perhaps.
nemo
parents: 13394
diff changeset
  1029
            if not lua_isnoneornil(L, 12) then
745e9174038e somehow scale was omitted from this catch-all VG init. late addition to the struct perhaps.
nemo
parents: 13394
diff changeset
  1030
                vg^.Scale:= Trunc(lua_tonumber(L, 12))
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1031
            end;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1032
//        end
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1033
//    else
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1034
//        lua_pushnil(L); // return value on stack (nil)
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1035
    lc_setvisualgearvalues:= 0
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1036
end;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1037
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  1038
// so. going to use this to get/set some of the more obscure gear values which were not already exposed elsewhere
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1039
// can keep adding things in the future. isnoneornil makes it safe
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1040
function lc_getgearvalues(L : Plua_State) : LongInt; Cdecl;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1041
var gear: PGear;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1042
begin
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1043
    if CheckLuaParamCount(L, 1, 'GetGearValues', 'gearUid') then
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1044
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1045
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1046
        if gear <> nil then
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1047
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1048
            lua_pushnumber(L, gear^.Angle);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1049
            lua_pushnumber(L, gear^.Power);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1050
            lua_pushnumber(L, gear^.WDTimer);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1051
            lua_pushnumber(L, gear^.Radius);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1052
            lua_pushnumber(L, hwRound(gear^.Density * _10000));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1053
            lua_pushnumber(L, gear^.Karma);
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1054
            lua_pushnumber(L,  gear^.DirAngle);
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1055
            lua_pushnumber(L, gear^.AdvBounce);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1056
            lua_pushnumber(L, Integer(gear^.ImpactSound));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1057
            lua_pushnumber(L, gear^.nImpactSounds);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1058
            lua_pushnumber(L, gear^.Tint);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1059
            lua_pushnumber(L, gear^.Damage);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1060
            lua_pushnumber(L, gear^.Boom)
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1061
            end
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1062
        else
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1063
            begin
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1064
            lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1065
            lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
11468
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11317
diff changeset
  1066
            lua_pushnil(L); lua_pushnil(L); lua_pushnil(L)
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
  1067
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1068
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1069
    else
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1070
        begin
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1071
        lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1072
        lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
11468
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11317
diff changeset
  1073
        lua_pushnil(L); lua_pushnil(L); lua_pushnil(L)
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1074
        end;
11468
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11317
diff changeset
  1075
    lc_getgearvalues:= 13
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1076
end;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1077
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1078
function lc_setgearvalues(L : Plua_State) : LongInt; Cdecl;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1079
var gear : PGear;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1080
begin
11468
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11317
diff changeset
  1081
// Currently allows 1-14 params
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11317
diff changeset
  1082
//    if CheckLuaParamCount(L, 14, 'SetGearValues', 'gearUid, Angle, Power, WDTimer, Radius, Density, Karma, DirAngle, AdvBounce, ImpactSound, # ImpactSounds, Tint, Damage, Boom') then
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1083
//        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1084
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1085
        if gear <> nil then
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1086
            begin
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1087
            if not lua_isnoneornil(L, 2) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1088
                gear^.Angle := Trunc(lua_tonumber(L, 2));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1089
            if not lua_isnoneornil(L, 3) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1090
                gear^.Power := Trunc(lua_tonumber(L, 3));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1091
            if not lua_isnoneornil(L, 4) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1092
                gear^.WDTimer := Trunc(lua_tonumber(L, 4));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1093
            if not lua_isnoneornil(L, 5) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1094
                gear^.Radius := Trunc(lua_tonumber(L, 5));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1095
            if not lua_isnoneornil(L, 6) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1096
                gear^.Density:= int2hwFloat(Trunc(lua_tonumber(L, 6))) / 10000;
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1097
            if not lua_isnoneornil(L, 7) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1098
                gear^.Karma := Trunc(lua_tonumber(L, 7));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1099
            if not lua_isnoneornil(L, 8) then
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1100
                gear^.DirAngle:= lua_tonumber(L, 8);
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1101
            if not lua_isnoneornil(L, 9) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1102
                gear^.AdvBounce := Trunc(lua_tonumber(L, 9));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1103
            if not lua_isnoneornil(L, 10) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1104
                gear^.ImpactSound := TSound(Trunc(lua_tonumber(L, 10)));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1105
            if not lua_isnoneornil(L, 11) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1106
                gear^.nImpactSounds := Trunc(lua_tonumber(L, 11));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1107
            if not lua_isnoneornil(L, 12) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1108
                gear^.Tint := Trunc(lua_tonumber(L, 12));
11172
78f9fd42fa46 Add damage to gear values to mess with
nemo
parents: 11066
diff changeset
  1109
            if not lua_isnoneornil(L, 13) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1110
                gear^.Damage := Trunc(lua_tonumber(L, 13));
11468
2f6f8baa2a97 Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents: 11317
diff changeset
  1111
            if not lua_isnoneornil(L, 14) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1112
                gear^.Boom := Trunc(lua_tonumber(L, 14));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1113
            end;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1114
//        end
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1115
//    else
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1116
//        lua_pushnil(L); // return value on stack (nil)
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1117
    lc_setgearvalues:= 0
4443
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
  1118
end;
d393b9ccd328 Add an extra pass in FindPlace for AI resurrection mode to try to make it unwinnable, add DeleteGear, DeleteVisualGear, AddVisualGear, GetVisualGearValues, SetVisualGearValues to Lua
nemo
parents: 4411
diff changeset
  1119
3058
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
  1120
function lc_getfollowgear(L : Plua_State) : LongInt; Cdecl;
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
  1121
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1122
    if CheckLuaParamCount(L, 0, 'GetFollowGear', '') then
3058
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
  1123
        begin
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
  1124
        if FollowGear = nil then
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
  1125
            lua_pushnil(L)
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
  1126
        else
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1127
            lua_pushnumber(L, FollowGear^.uid);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1128
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1129
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1130
        lua_pushnil(L);
3058
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
  1131
    lc_getfollowgear:= 1; // 1 return value
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
  1132
end;
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
  1133
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1134
function lc_getgeartype(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1135
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1136
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1137
    if CheckLuaParamCount(L, 1, 'GetGearType', 'gearUid') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1138
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1139
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1140
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1141
            lua_pushnumber(L, ord(gear^.Kind))
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1142
        else
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1143
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1144
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1145
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1146
        lua_pushnil(L); // return value on stack (nil)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1147
    lc_getgeartype:= 1
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1148
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1149
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1150
function lc_getgearmessage(L : Plua_State) : LongInt; Cdecl;
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1151
var gear : PGear;
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1152
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1153
    if CheckLuaParamCount(L, 1, 'GetGearMessage', 'gearUid') then
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1154
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1155
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1156
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1157
            lua_pushnumber(L, gear^.message)
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1158
        else
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1159
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1160
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1161
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1162
        lua_pushnil(L); // return value on stack (nil)
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1163
    lc_getgearmessage:= 1
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1164
end;
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  1165
4682
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1166
function lc_getgearelasticity(L : Plua_State) : LongInt; Cdecl;
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1167
var gear : PGear;
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1168
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1169
    if CheckLuaParamCount(L, 1, 'GetGearElasticity', 'gearUid') then
4682
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1170
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1171
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
4682
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1172
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1173
            lua_pushnumber(L, hwRound(gear^.elasticity * _10000))
4682
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1174
        else
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1175
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1176
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1177
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1178
        lua_pushnil(L); // return value on stack (nil)
4682
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1179
    lc_getgearelasticity:= 1
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1180
end;
0fc1ff341482 add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)
nemo
parents: 4629
diff changeset
  1181
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1182
function lc_setgearelasticity(L : Plua_State) : LongInt; Cdecl;
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1183
var gear: PGear;
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1184
begin
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1185
    if CheckLuaParamCount(L, 2, 'SetGearElasticity', 'gearUid, Elasticity') then
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1186
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1187
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1188
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1189
            gear^.Elasticity:= int2hwFloat(Trunc(lua_tonumber(L, 2))) / 10000
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1190
        end;
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1191
    lc_setgearelasticity:= 0
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1192
end;
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1193
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1194
function lc_getgearfriction(L : Plua_State) : LongInt; Cdecl;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1195
var gear : PGear;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1196
begin
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1197
    if CheckLuaParamCount(L, 1, 'GetGearFriction', 'gearUid') then
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1198
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1199
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1200
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1201
            lua_pushnumber(L, hwRound(gear^.friction * _10000))
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1202
        else
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1203
            lua_pushnil(L);
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1204
        end
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1205
    else
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1206
        lua_pushnil(L); // return value on stack (nil)
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1207
    lc_getgearfriction:= 1
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1208
end;
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  1209
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1210
function lc_setgearfriction(L : Plua_State) : LongInt; Cdecl;
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1211
var gear: PGear;
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1212
begin
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1213
    if CheckLuaParamCount(L, 2, 'SetGearFriction', 'gearUid, Friction') then
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1214
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1215
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1216
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1217
            gear^.Friction:= int2hwFloat(Trunc(lua_tonumber(L, 2))) / 10000
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1218
        end;
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1219
    lc_setgearfriction:= 0
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1220
end;
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  1221
3896
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
  1222
function lc_setgearmessage(L : Plua_State) : LongInt; Cdecl;
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
  1223
var gear : PGear;
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
  1224
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1225
    if CheckLuaParamCount(L, 2, 'SetGearMessage', 'gearUid, message') then
3896
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
  1226
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1227
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3896
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
  1228
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1229
            gear^.message:= Trunc(lua_tonumber(L, 2));
3896
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
  1230
        end;
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
  1231
    lc_setgearmessage:= 0
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
  1232
end;
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
  1233
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1234
function lc_getgearpos(L : Plua_State) : LongInt; Cdecl;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1235
var gear : PGear;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1236
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1237
    if CheckLuaParamCount(L, 1, 'GetGearPos', 'gearUid') then
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1238
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1239
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1240
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1241
            lua_pushnumber(L, gear^.Pos)
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1242
        else
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1243
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1244
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1245
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1246
        lua_pushnil(L); // return value on stack (nil)
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1247
    lc_getgearpos:= 1
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1248
end;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1249
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1250
function lc_setgearpos(L : Plua_State) : LongInt; Cdecl;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1251
var gear : PGear;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1252
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1253
    if CheckLuaParamCount(L, 2, 'SetGearPos', 'gearUid, value') then
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1254
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1255
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1256
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1257
            gear^.Pos:= Trunc(lua_tonumber(L, 2));
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1258
        end;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1259
    lc_setgearpos:= 0
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1260
end;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  1261
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1262
function lc_getgearcollisionmask(L : Plua_State) : LongInt; Cdecl;
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1263
var gear : PGear;
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1264
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1265
    if CheckLuaParamCount(L, 1, 'GetGearCollisionMask', 'gearUid') then
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1266
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1267
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1268
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1269
            lua_pushnumber(L, gear^.CollisionMask)
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1270
        else
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1271
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1272
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1273
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1274
        lua_pushnil(L); // return value on stack (nil)
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1275
    lc_getgearcollisionmask:= 1
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1276
end;
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1277
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1278
function lc_setgearcollisionmask(L : Plua_State) : LongInt; Cdecl;
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1279
var gear : PGear;
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1280
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1281
    if CheckLuaParamCount(L, 2, 'SetGearCollisionMask', 'gearUid, mask') then
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1282
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1283
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1284
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1285
            gear^.CollisionMask:= Trunc(lua_tonumber(L, 2));
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1286
        end;
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1287
    lc_setgearcollisionmask:= 0
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1288
end;
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  1289
3755
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1290
function lc_gethoglevel(L : Plua_State): LongInt; Cdecl;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1291
var gear : PGear;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1292
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1293
    if CheckLuaParamCount(L, 1, 'GetHogLevel', 'gearUid') then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  1294
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1295
        gear := GearByUID(Trunc(lua_tonumber(L, 1)));
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  1296
        if (gear <> nil) and ((gear^.Kind = gtHedgehog) or (gear^.Kind = gtGrave)) and (gear^.Hedgehog <> nil) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1297
            lua_pushnumber(L, gear^.Hedgehog^.BotLevel)
3755
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1298
        else
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1299
            lua_pushnil(L);
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1300
    end;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1301
    lc_gethoglevel := 1;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1302
end;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1303
4496
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1304
function lc_sethoglevel(L : Plua_State) : LongInt; Cdecl;
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1305
var gear : PGear;
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1306
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1307
    if CheckLuaParamCount(L, 2, 'SetHogLevel', 'gearUid, level') then
4496
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1308
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1309
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
4496
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1310
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1311
            gear^.Hedgehog^.BotLevel:= Trunc(lua_tonumber(L, 2));
4496
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1312
        end;
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1313
    lc_sethoglevel:= 0
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1314
end;
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1315
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1316
function lc_gethogclan(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1317
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1318
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1319
    if CheckLuaParamCount(L, 1, 'GetHogClan', 'gearUid') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1320
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1321
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  1322
        if (gear <> nil) and ((gear^.Kind = gtHedgehog) or (gear^.Kind = gtGrave)) and (gear^.Hedgehog <> nil) then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1323
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1324
            lua_pushnumber(L, gear^.Hedgehog^.Team^.Clan^.ClanIndex)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1325
            end
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1326
        else
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1327
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1328
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1329
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1330
        lua_pushnil(L); // return value on stack (nil)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1331
    lc_gethogclan:= 1
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1332
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1333
4498
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1334
function lc_getclancolor(L : Plua_State) : LongInt; Cdecl;
11736
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1335
var idx: integer;
4498
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1336
begin
11736
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1337
    if CheckLuaParamCount(L, 1, 'GetClanColor', 'clanIdx') then
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1338
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1339
        idx:= Trunc(lua_tonumber(L, 1));
11736
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1340
        if (not lua_isnumber(L, 1)) then
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1341
            begin
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1342
            LuaError('Argument ''clanIdx'' must be a number!');
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1343
            lua_pushnil(L);
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1344
            end
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1345
        else if (idx < 0) or (idx >= ClansCount) then
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1346
            begin
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1347
            LuaError('Argument ''clanIdx'' out of range! (There are currently ' + IntToStr(ClansCount) + ' clans, so valid range is: 0-' + IntToStr(ClansCount-1) + ')');
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1348
            lua_pushnil(L);
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1349
            end
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1350
        else
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1351
            lua_pushnumber(L, ClansArray[idx]^.Color shl 8 or $FF);
11736
e9481c5a130b Lua-API - GetClanColor: Verify argument and display error message on fail (instead of engine crash)
sheepluva
parents: 11678
diff changeset
  1352
        end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1353
    else
4498
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1354
        lua_pushnil(L); // return value on stack (nil)
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1355
    lc_getclancolor:= 1
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1356
end;
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1357
4882
b4c84db92d8f expose set clan color for Cairo. might also be useful for betrayals in campaign mode or somesuch
nemo
parents: 4875
diff changeset
  1358
function lc_setclancolor(L : Plua_State) : LongInt; Cdecl;
4889
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1359
var clan : PClan;
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1360
    team : PTeam;
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1361
    hh   : THedgehog;
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1362
    i, j : LongInt;
4882
b4c84db92d8f expose set clan color for Cairo. might also be useful for betrayals in campaign mode or somesuch
nemo
parents: 4875
diff changeset
  1363
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1364
    if CheckLuaParamCount(L, 2, 'SetClanColor', 'clan, color') then
4889
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1365
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1366
        i:= Trunc(lua_tonumber(L,1));
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  1367
        if i >= ClansCount then exit(0);
10581
f0b4c14a3c62 Wuzzy's changes to climbhome w/ some tweaks by me
nemo
parents: 10560
diff changeset
  1368
        clan := ClansArray[i];
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1369
        clan^.Color:= Trunc(lua_tonumber(L, 2)) shr 8;
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9648
diff changeset
  1370
4889
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1371
        for i:= 0 to Pred(clan^.TeamsNumber) do
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1372
            begin
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1373
            team:= clan^.Teams[i];
13618
edffc9b7ad58 Add comments for most hwengine constants
Wuzzy <Wuzzy2@mail.ru>
parents: 13617
diff changeset
  1374
            for j:= 0 to cMaxHHIndex do
4889
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1375
                begin
4891
nemo
parents: 4890
diff changeset
  1376
                hh:= team^.Hedgehogs[j];
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1377
                if (hh.Gear <> nil) or (hh.GearHidden <> nil) then
4889
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1378
                    begin
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10618
diff changeset
  1379
                    FreeAndNilTexture(hh.NameTagTex);
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10122
diff changeset
  1380
                    hh.NameTagTex:= RenderStringTex(ansistring(hh.Name), clan^.Color, fnt16);
4889
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1381
                    RenderHealth(hh);
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1382
                    end;
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1383
                end;
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10618
diff changeset
  1384
            FreeAndNilTexture(team^.NameTagTex);
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10122
diff changeset
  1385
            team^.NameTagTex:= RenderStringTex(ansistring(clan^.Teams[i]^.TeamName), clan^.Color, fnt16);
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9648
diff changeset
  1386
            end;
4889
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1387
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  1388
        FreeAndNilTexture(clan^.HealthTex);
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9648
diff changeset
  1389
        clan^.HealthTex:= makeHealthBarTexture(cTeamHealthWidth + 5, clan^.Teams[0]^.NameTagTex^.h, clan^.Color);
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9648
diff changeset
  1390
        end;
4889
f71e30eb1d37 Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it.
nemo
parents: 4883
diff changeset
  1391
4882
b4c84db92d8f expose set clan color for Cairo. might also be useful for betrayals in campaign mode or somesuch
nemo
parents: 4875
diff changeset
  1392
    lc_setclancolor:= 0
b4c84db92d8f expose set clan color for Cairo. might also be useful for betrayals in campaign mode or somesuch
nemo
parents: 4875
diff changeset
  1393
end;
b4c84db92d8f expose set clan color for Cairo. might also be useful for betrayals in campaign mode or somesuch
nemo
parents: 4875
diff changeset
  1394
11029
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1395
function lc_gethogvoicepack(L : Plua_State) : LongInt; Cdecl;
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1396
var gear : PGear;
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1397
begin
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1398
    if CheckLuaParamCount(L, 1, 'GetHogVoicepack', 'gearUid') then
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1399
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1400
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
11029
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1401
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1402
            lua_pushstring(L, str2pchar(gear^.Hedgehog^.Team^.Voicepack^.name))
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1403
        else
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1404
            lua_pushnil(L);
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1405
        end
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1406
    else
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1407
        lua_pushnil(L); // return value on stack (nil)
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1408
    lc_gethogvoicepack:= 1
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1409
end;
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1410
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1411
function lc_gethoggrave(L : Plua_State) : LongInt; Cdecl;
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1412
var gear : PGear;
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1413
begin
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1414
    if CheckLuaParamCount(L, 1, 'GetHogGrave', 'gearUid') then
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1415
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1416
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
11029
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1417
        if (gear <> nil) and ((gear^.Kind = gtHedgehog) or (gear^.Kind = gtGrave)) and (gear^.Hedgehog <> nil) then
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1418
            lua_pushstring(L, str2pchar(gear^.Hedgehog^.Team^.GraveName))
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1419
        else
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1420
            lua_pushnil(L);
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1421
        end
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1422
    else
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1423
        lua_pushnil(L); // return value on stack (nil)
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1424
    lc_gethoggrave:= 1
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1425
end;
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1426
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1427
function lc_gethogflag(L : Plua_State) : LongInt; Cdecl;
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1428
var gear : PGear;
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1429
begin
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1430
    if CheckLuaParamCount(L, 1, 'GetHogFlag', 'gearUid') then
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1431
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1432
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
11847
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1433
        // TODO error messages
11029
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1434
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1435
            lua_pushstring(L, str2pchar(gear^.Hedgehog^.Team^.Flag))
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1436
        else
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1437
            lua_pushnil(L);
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1438
        end
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1439
    else
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1440
        lua_pushnil(L); // return value on stack (nil)
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1441
    lc_gethogflag:= 1
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1442
end;
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  1443
12046
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1444
function lc_gethogfort(L : Plua_State) : LongInt; Cdecl;
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1445
var gear : PGear;
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1446
begin
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1447
    if CheckLuaParamCount(L, 1, 'GetHogFort', 'gearUid') then
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1448
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1449
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
12046
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1450
        // TODO error messages
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1451
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1452
            lua_pushstring(L, str2pchar(gear^.Hedgehog^.Team^.FortName))
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1453
        else
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1454
            lua_pushnil(L);
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1455
        end
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1456
    else
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1457
        lua_pushnil(L); // return value on stack (nil)
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1458
    lc_gethogfort:= 1
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1459
end;
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  1460
11847
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1461
function lc_ishoglocal(L : Plua_State) : LongInt; Cdecl;
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1462
var gear : PGear;
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1463
begin
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1464
    if CheckLuaParamCount(L, 1, 'IsHogLocal', 'gearUid') then
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1465
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1466
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
11847
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1467
        // TODO error messages
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1468
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1469
            lua_pushboolean(L, IsHogLocal(gear^.Hedgehog))
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1470
        else
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1471
            lua_pushnil(L);
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1472
        end
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1473
    else
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1474
        lua_pushnil(L); // return value on stack (nil)
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1475
    lc_ishoglocal:= 1
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1476
end;
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1477
4236
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1478
function lc_gethogteamname(L : Plua_State) : LongInt; Cdecl;
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1479
var gear : PGear;
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1480
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1481
    if CheckLuaParamCount(L, 1, 'GetHogTeamName', 'gearUid') then
4236
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1482
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1483
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
11847
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  1484
        // TODO error messages
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  1485
        if (gear <> nil) and ((gear^.Kind = gtHedgehog) or (gear^.Kind = gtGrave)) and (gear^.Hedgehog <> nil) then
4372
3836973380b9 remove some more PHedgehog casts
nemo
parents: 4371
diff changeset
  1486
            lua_pushstring(L, str2pchar(gear^.Hedgehog^.Team^.TeamName))
4236
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1487
        else
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1488
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1489
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1490
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1491
        lua_pushnil(L); // return value on stack (nil)
4236
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1492
    lc_gethogteamname:= 1
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1493
end;
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1494
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1495
function lc_sethogteamname(L : Plua_State) : LongInt; Cdecl;
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1496
var gear : PGear;
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1497
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1498
    if CheckLuaParamCount(L, 2, 'SetHogTeamName', 'gearUid, name') then
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1499
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1500
        gear := GearByUID(Trunc(lua_tonumber(L, 1)));
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1501
        if (gear <> nil) and ((gear^.Kind = gtHedgehog) or (gear^.Kind = gtGrave)) and (gear^.Hedgehog <> nil) then
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1502
            begin
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1503
            gear^.Hedgehog^.Team^.TeamName := lua_tostring(L, 2);
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1504
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10618
diff changeset
  1505
            FreeAndNilTexture(gear^.Hedgehog^.Team^.NameTagTex);
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10122
diff changeset
  1506
            gear^.Hedgehog^.Team^.NameTagTex:= RenderStringTex(ansistring(gear^.Hedgehog^.Team^.TeamName), gear^.Hedgehog^.Team^.Clan^.Color, fnt16);
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1507
            end
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1508
        else
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1509
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1510
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1511
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1512
        lua_pushnil(L); // return value on stack (nil)
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1513
    lc_sethogteamname:= 1
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1514
end;
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1515
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1516
function lc_gethogname(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1517
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1518
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1519
    if CheckLuaParamCount(L, 1, 'GetHogName', 'gearUid') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1520
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1521
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  1522
        if (gear <> nil) and ((gear^.Kind = gtHedgehog) or (gear^.Kind = gtGrave)) and (gear^.Hedgehog <> nil) then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1523
            begin
4372
3836973380b9 remove some more PHedgehog casts
nemo
parents: 4371
diff changeset
  1524
            lua_pushstring(L, str2pchar(gear^.Hedgehog^.Name))
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1525
            end
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1526
        else
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1527
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1528
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1529
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1530
        lua_pushnil(L); // return value on stack (nil)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1531
    lc_gethogname:= 1
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1532
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1533
5245
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1534
function lc_sethogname(L : Plua_State) : LongInt; Cdecl;
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1535
var gear : PGear;
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1536
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1537
    if CheckLuaParamCount(L, 2, 'SetHogName', 'gearUid, name') then
5245
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1538
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1539
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
5245
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1540
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
9748
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  1541
            begin
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  1542
            gear^.Hedgehog^.Name:= lua_tostring(L, 2);
5245
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1543
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10618
diff changeset
  1544
            FreeAndNilTexture(gear^.Hedgehog^.NameTagTex);
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10122
diff changeset
  1545
            gear^.Hedgehog^.NameTagTex:= RenderStringTex(ansistring(gear^.Hedgehog^.Name), gear^.Hedgehog^.Team^.Clan^.Color, fnt16)
9748
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  1546
            end
5245
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1547
        end;
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1548
    lc_sethogname:= 0;
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1549
end;
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1550
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1551
function lc_gettimer(L : Plua_State) : LongInt; Cdecl;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1552
var gear : PGear;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1553
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1554
    if CheckLuaParamCount(L, 1, 'GetTimer', 'gearUid') then
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1555
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1556
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1557
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1558
            lua_pushnumber(L, gear^.Timer)
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1559
        else
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1560
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1561
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1562
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1563
        lua_pushnil(L); // return value on stack (nil)
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1564
    lc_gettimer:= 1
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1565
end;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1566
10589
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1567
function lc_getflighttime(L : Plua_State) : LongInt; Cdecl;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1568
var gear : PGear;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1569
begin
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1570
    if CheckLuaParamCount(L, 1, 'GetFlightTime', 'gearUid') then
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1571
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1572
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
10589
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1573
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1574
            lua_pushnumber(L, gear^.FlightTime)
10589
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1575
        else
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1576
            lua_pushnil(L);
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1577
        end
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1578
    else
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1579
        lua_pushnil(L); // return value on stack (nil)
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1580
    lc_getflighttime:= 1
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1581
end;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1582
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1583
function lc_gethealth(L : Plua_State) : LongInt; Cdecl;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1584
var gear : PGear;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1585
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1586
    if CheckLuaParamCount(L, 1, 'GetHealth', 'gearUid') then
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1587
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1588
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1589
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1590
            lua_pushnumber(L, gear^.Health)
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1591
        else
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1592
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1593
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1594
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1595
        lua_pushnil(L); // return value on stack (nil)
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1596
    lc_gethealth:= 1
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1597
end;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1598
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1599
function lc_getx(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1600
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1601
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1602
    if CheckLuaParamCount(L, 1, 'GetX', 'gearUid') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1603
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1604
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1605
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1606
            lua_pushnumber(L, hwRound(gear^.X))
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1607
        else
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1608
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1609
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1610
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1611
        lua_pushnil(L); // return value on stack (nil)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1612
    lc_getx:= 1
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1613
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1614
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1615
function lc_gety(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1616
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1617
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1618
    if CheckLuaParamCount(L, 1, 'GetY', 'gearUid') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1619
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1620
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1621
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1622
            lua_pushnumber(L, hwRound(gear^.Y))
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1623
        else
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1624
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1625
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1626
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1627
        lua_pushnil(L); // return value on stack (nil)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1628
    lc_gety:= 1
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1629
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1630
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1631
function lc_copypv(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1632
var gears, geard : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1633
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1634
    if CheckLuaParamCount(L, 2, 'CopyPV', 'fromGearUid, toGearUid') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1635
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1636
        gears:= GearByUID(Trunc(lua_tonumber(L, 1)));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1637
        geard:= GearByUID(Trunc(lua_tonumber(L, 2)));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1638
        if (gears <> nil) and (geard <> nil) then
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1639
            begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1640
            geard^.X:= gears^.X;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1641
            geard^.Y:= gears^.Y;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1642
            geard^.dX:= gears^.dX;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1643
            geard^.dY:= gears^.dY;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1644
            end
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1645
        end;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1646
    lc_copypv:= 0
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1647
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1648
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1649
function lc_followgear(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1650
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1651
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1652
    if CheckLuaParamCount(L, 1, 'FollowGear', 'gearUid') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1653
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1654
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1655
        if gear <> nil then FollowGear:= gear
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1656
        end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1657
    lc_followgear:= 0
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1658
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1659
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1660
function lc_hogsay(L : Plua_State) : LongInt; Cdecl;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1661
var gear : PGear;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1662
   vgear : PVisualGear;
4533
8d35c3e0e6ba add optional state parameter to hogsay
nemo
parents: 4523
diff changeset
  1663
       s : LongWord;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1664
       n : LongInt;
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1665
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1666
    if CheckAndFetchParamCount(L, 3, 4, 'HogSay', 'gearUid, text, manner [, vgState]', n) then
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1667
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1668
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1669
        if gear <> nil then
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1670
            begin
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1671
            // state defaults to 0 if state param is given
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1672
            if n = 4 then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1673
                s:= Trunc(lua_tonumber(L, 4))
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1674
            else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1675
                s:= 0;
4533
8d35c3e0e6ba add optional state parameter to hogsay
nemo
parents: 4523
diff changeset
  1676
            vgear:= AddVisualGear(0, 0, vgtSpeechBubble, s, true);
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1677
            if vgear <> nil then
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1678
               begin
10518
dbbe2f6c0a96 make gear ability to speak somewhat less ironic
sheepluva
parents: 10516
diff changeset
  1679
               vgear^.Text:= lua_tostring(L, 2);
10210
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1680
               if Gear^.Kind = gtHedgehog then
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1681
                   begin
13876
aa321e51da14 make explicit for pas2c some string casts that fpc was probably doing automatically
nemo
parents: 13868
diff changeset
  1682
                   AddChatString(#9+Format(shortstring(trmsg[sidChatHog]), gear^.Hedgehog^.Name, vgear^.text));
10210
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1683
                   vgear^.Hedgehog:= gear^.Hedgehog
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1684
                   end
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1685
               else vgear^.Frame:= gear^.uid;
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1686
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1687
               vgear^.FrameTicks:= Trunc(lua_tonumber(L, 3));
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  1688
               if (vgear^.FrameTicks < 1) or (vgear^.FrameTicks > 3) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  1689
                   vgear^.FrameTicks:= 1;
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1690
               lua_pushnumber(L, vgear^.Uid);
5529
9a47cff3910a return visual gear in hogsay
nemo
parents: 5527
diff changeset
  1691
               end
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1692
            end
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  1693
        else
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  1694
            lua_pushnil(L)
4533
8d35c3e0e6ba add optional state parameter to hogsay
nemo
parents: 4523
diff changeset
  1695
        end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1696
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1697
        lua_pushnil(L);
5529
9a47cff3910a return visual gear in hogsay
nemo
parents: 5527
diff changeset
  1698
    lc_hogsay:= 1
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1699
end;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1700
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1701
function lc_switchhog(L : Plua_State) : LongInt; Cdecl;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1702
var gear, prevgear : PGear;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1703
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1704
    if CheckLuaParamCount(L, 1, 'SwitchHog', 'gearUid') then
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1705
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1706
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1707
// should we allow this when there is no current hedgehog? might do some odd(er) things to turn sequence.
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1708
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) and (CurrentHedgehog <> nil) then
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1709
            begin
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1710
            prevgear := CurrentHedgehog^.Gear;
7573
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1711
            if prevgear <> nil then
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1712
                begin
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1713
                prevgear^.Active := false;
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1714
                prevgear^.State:= prevgear^.State and (not gstHHDriven);
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1715
                prevgear^.Z := cHHZ;
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1716
                prevgear^.Message:= prevgear^.Message or gmRemoveFromList or gmAddToList;
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1717
                end;
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1718
7270
93e92e82d5c8 Step 1. Add current hedgehog as top bit of bottom byte.
nemo
parents: 7156
diff changeset
  1719
            SwitchCurrentHedgehog(gear^.Hedgehog);
12371
2b1dd699b371 Lua: Fix SwitchHog breaking the ammo menu of the new hog
Wuzzy <almikes@aol.com>
parents: 12360
diff changeset
  1720
            AmmoMenuInvalidated:= true;
7270
93e92e82d5c8 Step 1. Add current hedgehog as top bit of bottom byte.
nemo
parents: 7156
diff changeset
  1721
            CurrentTeam:= CurrentHedgehog^.Team;
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1722
12371
2b1dd699b371 Lua: Fix SwitchHog breaking the ammo menu of the new hog
Wuzzy <almikes@aol.com>
parents: 12360
diff changeset
  1723
            repeat
2b1dd699b371 Lua: Fix SwitchHog breaking the ammo menu of the new hog
Wuzzy <almikes@aol.com>
parents: 12360
diff changeset
  1724
                CurrentTeam^.CurrHedgehog := (CurrentTeam^.CurrHedgehog + 1) mod CurrentTeam^.HedgehogsNumber
2b1dd699b371 Lua: Fix SwitchHog breaking the ammo menu of the new hog
Wuzzy <almikes@aol.com>
parents: 12360
diff changeset
  1725
            until
2b1dd699b371 Lua: Fix SwitchHog breaking the ammo menu of the new hog
Wuzzy <almikes@aol.com>
parents: 12360
diff changeset
  1726
                CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear = CurrentHedgehog^.Gear;
2b1dd699b371 Lua: Fix SwitchHog breaking the ammo menu of the new hog
Wuzzy <almikes@aol.com>
parents: 12360
diff changeset
  1727
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1728
            gear^.State:= gear^.State or gstHHDriven;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1729
            gear^.Active := true;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1730
            gear^.Z := cCurrHHZ;
7401
4c3ec3dca0c7 oh yeah, these too
nemo
parents: 7339
diff changeset
  1731
            gear^.Message:= gear^.Message or gmRemoveFromList or gmAddToList;
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1732
            end
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1733
        end;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1734
    lc_switchhog:= 0
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1735
end;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1736
13378
c53530142442 Lua API: Add EnableSwitchHog to manually enable hog switching
Wuzzy <Wuzzy2@mail.ru>
parents: 13373
diff changeset
  1737
function lc_enableswitchhog(L : Plua_State) : LongInt; Cdecl;
13380
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1738
var gear, iterator: PGear;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1739
    alreadySwitching: boolean;
13378
c53530142442 Lua API: Add EnableSwitchHog to manually enable hog switching
Wuzzy <Wuzzy2@mail.ru>
parents: 13373
diff changeset
  1740
begin
c53530142442 Lua API: Add EnableSwitchHog to manually enable hog switching
Wuzzy <Wuzzy2@mail.ru>
parents: 13373
diff changeset
  1741
    if CheckLuaParamCount(L, 0, 'EnableSwitchHog', '') then
13380
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1742
        if ((CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear <> nil)) then
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1743
            begin
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1744
            alreadySwitching:= false;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1745
            iterator:= GearsList;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1746
            // Check if there's already a switcher gear
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1747
            while (iterator <> nil) do
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1748
                begin
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1749
                if (iterator^.Kind = gtSwitcher) then
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1750
                    begin
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1751
                    alreadySwitching:= true;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1752
                    lua_pushnumber(L, iterator^.Uid);
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1753
                    break;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1754
                    end;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1755
                iterator:= iterator^.NextGear;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1756
                end;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1757
            if (not alreadySwitching) then
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1758
                begin
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1759
                // Enable switching and return gear UID
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1760
                gear:= AddGear(hwRound(CurrentHedgehog^.Gear^.X), hwRound(CurrentHedgehog^.Gear^.Y), gtSwitcher, 0, _0, _0, 0);
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1761
                CurAmmoGear:= gear;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1762
                lastGearByUID:= gear;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1763
                bShowFinger:= false;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1764
                lua_pushnumber(L, gear^.Uid);
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1765
                end;
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1766
            end
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1767
    // Return nil on failure
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1768
        else
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1769
            lua_pushnil(L)
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1770
    else
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1771
        lua_pushnil(L);
cd55c7f25e04 Make EnableSwitchHog() more robust against failure, return gear UID
Wuzzy <Wuzzy2@mail.ru>
parents: 13378
diff changeset
  1772
    lc_enableswitchhog:= 1;
13378
c53530142442 Lua API: Add EnableSwitchHog to manually enable hog switching
Wuzzy <Wuzzy2@mail.ru>
parents: 13373
diff changeset
  1773
end;
c53530142442 Lua API: Add EnableSwitchHog to manually enable hog switching
Wuzzy <Wuzzy2@mail.ru>
parents: 13373
diff changeset
  1774
4481
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1775
function lc_addammo(L : Plua_State) : LongInt; Cdecl;
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1776
var gear : PGear;
12947
c8b7bc04eb4c Lua API: AddAmmo unselects weapons before it would remove current ammo from current hog
Wuzzy <Wuzzy2@mail.ru>
parents: 12939
diff changeset
  1777
    at, n, c: LongInt;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1778
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1779
    call = 'AddAmmo';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1780
    params = 'gearUid, ammoType [, ammoCount]';
4481
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1781
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1782
    if CheckAndFetchParamCount(L, 2, 3, call, params, n) then
4481
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1783
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1784
        at:= LuaToAmmoTypeOrd(L, 2, call, params);
12947
c8b7bc04eb4c Lua API: AddAmmo unselects weapons before it would remove current ammo from current hog
Wuzzy <Wuzzy2@mail.ru>
parents: 12939
diff changeset
  1785
        if (at >= 0) and (TAmmoType(at) <> amNothing) then
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1786
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1787
            gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1788
            if (gear <> nil) and (gear^.Hedgehog <> nil) then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1789
                if n = 2 then
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1790
                    AddAmmo(gear^.Hedgehog^, TAmmoType(at))
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1791
                else
12947
c8b7bc04eb4c Lua API: AddAmmo unselects weapons before it would remove current ammo from current hog
Wuzzy <Wuzzy2@mail.ru>
parents: 12939
diff changeset
  1792
                    begin
c8b7bc04eb4c Lua API: AddAmmo unselects weapons before it would remove current ammo from current hog
Wuzzy <Wuzzy2@mail.ru>
parents: 12939
diff changeset
  1793
                    c:= Trunc(lua_tonumber(L, 3));
c8b7bc04eb4c Lua API: AddAmmo unselects weapons before it would remove current ammo from current hog
Wuzzy <Wuzzy2@mail.ru>
parents: 12939
diff changeset
  1794
                    if (c = 0) and (CurrentHedgehog = gear^.Hedgehog) and (gear^.Hedgehog^.CurAmmoType = TAmmoType(at)) then
c8b7bc04eb4c Lua API: AddAmmo unselects weapons before it would remove current ammo from current hog
Wuzzy <Wuzzy2@mail.ru>
parents: 12939
diff changeset
  1795
                        ParseCommand('setweap ' + char(0), true, true);
c8b7bc04eb4c Lua API: AddAmmo unselects weapons before it would remove current ammo from current hog
Wuzzy <Wuzzy2@mail.ru>
parents: 12939
diff changeset
  1796
                    SetAmmo(gear^.Hedgehog^, TAmmoType(at), c);
c8b7bc04eb4c Lua API: AddAmmo unselects weapons before it would remove current ammo from current hog
Wuzzy <Wuzzy2@mail.ru>
parents: 12939
diff changeset
  1797
                    end;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1798
            end;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1799
        end;
4481
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1800
    lc_addammo:= 0
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1801
end;
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1802
5676
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  1803
function lc_getammocount(L : Plua_State) : LongInt; Cdecl;
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  1804
var gear : PGear;
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  1805
    ammo : PAmmo;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1806
    at   : LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1807
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1808
    call = 'GetAmmoCount';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1809
    params = 'gearUid, ammoType';
5676
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  1810
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1811
    if CheckLuaParamCount(L, 2, call, params) then
5676
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  1812
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1813
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1814
        if (gear <> nil) and (gear^.Hedgehog <> nil) then
5676
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  1815
            begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1816
            at:= LuaToAmmoTypeOrd(L, 2, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1817
            if at >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1818
                begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1819
                ammo:= GetAmmoEntry(gear^.Hedgehog^, TAmmoType(at));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1820
                if ammo^.AmmoType = amNothing then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1821
                    lua_pushnumber(L, 0)
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1822
                else
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1823
                    lua_pushnumber(L, ammo^.Count);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1824
                end;
5676
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  1825
            end
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1826
        else lua_pushnumber(L, 0);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1827
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1828
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1829
        lua_pushnil(L);
6046
d681b8127523 this needs to actually return something
nemo
parents: 6019
diff changeset
  1830
    lc_getammocount:= 1
5676
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  1831
end;
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  1832
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1833
function lc_sethealth(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1834
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1835
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1836
    if CheckLuaParamCount(L, 2, 'SetHealth', 'gearUid, health') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1837
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1838
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1839
        if gear <> nil then
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1840
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1841
            gear^.Health:= Trunc(lua_tonumber(L, 2));
5245
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1842
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1843
            if (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1844
                begin
13597
f7cbf7d8298d Cap hedgehog health to prevent overflow bugs
Wuzzy <Wuzzy2@mail.ru>
parents: 13595
diff changeset
  1845
                if gear^.Health > cMaxHogHealth then
f7cbf7d8298d Cap hedgehog health to prevent overflow bugs
Wuzzy <Wuzzy2@mail.ru>
parents: 13595
diff changeset
  1846
                    gear^.Health:= cMaxHogHealth;
f7cbf7d8298d Cap hedgehog health to prevent overflow bugs
Wuzzy <Wuzzy2@mail.ru>
parents: 13595
diff changeset
  1847
                if gear^.Health < 0 then
f7cbf7d8298d Cap hedgehog health to prevent overflow bugs
Wuzzy <Wuzzy2@mail.ru>
parents: 13595
diff changeset
  1848
                    gear^.Health:= 0;
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1849
                RenderHealth(gear^.Hedgehog^);
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1850
                RecountTeamHealth(gear^.Hedgehog^.Team)
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1851
                end;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1852
            // Why did this do a "setalltoactive" ?
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 10009 9952
diff changeset
  1853
            //SetAllToActive;
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1854
            Gear^.Active:= true;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1855
            AllInactive:= false
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1856
            end
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1857
        end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1858
    lc_sethealth:= 0
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1859
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1860
12939
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1861
function lc_healhog(L : Plua_State) : LongInt; Cdecl;
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1862
var gear : PGear;
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1863
    healthBoost, n: LongInt;
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1864
begin
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1865
    if CheckAndFetchParamCountRange(L, 2, 4, 'HealHog', 'gearUid, healthBoost [, showMessage [, tint]]', n) then
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1866
        begin
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1867
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1868
        healthBoost:= Trunc(lua_tonumber(L, 2));
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1869
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) and (healthBoost >= 1) then
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1870
            begin
13617
a6abc2c1fc1a Show correct health increase when hog health cap is reached
Wuzzy <Wuzzy2@mail.ru>
parents: 13604
diff changeset
  1871
            healthBoost:= IncHogHealth(gear^.Hedgehog, healthBoost);
12939
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1872
            RenderHealth(gear^.Hedgehog^);
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1873
            RecountTeamHealth(gear^.Hedgehog^.Team);
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1874
            if n = 4 then
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1875
                HHHeal(gear^.Hedgehog, healthBoost, lua_toboolean(L, 3), Trunc(lua_tonumber(L, 4)))
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1876
            else if n = 3 then
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1877
                HHHeal(gear^.Hedgehog, healthBoost, lua_toboolean(L, 3))
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1878
            else if n = 2 then
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1879
                HHHeal(gear^.Hedgehog, healthBoost, true);
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1880
            Gear^.Active:= true;
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1881
            AllInactive:= false
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1882
            end
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1883
        end;
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1884
    lc_healhog:= 0
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1885
end;
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  1886
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1887
function lc_settimer(L : Plua_State) : LongInt; Cdecl;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1888
var gear : PGear;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1889
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1890
    if CheckLuaParamCount(L, 2, 'SetTimer', 'gearUid, timer') then
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1891
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1892
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1893
        if gear <> nil then gear^.Timer:= Trunc(lua_tonumber(L, 2))
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1894
        end;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1895
    lc_settimer:= 0
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1896
end;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1897
10589
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1898
function lc_setflighttime(L : Plua_State) : LongInt; Cdecl;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1899
var gear : PGear;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1900
begin
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1901
    if CheckLuaParamCount(L, 2, 'SetFlightTime', 'gearUid, flighttime') then
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1902
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1903
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1904
        if gear <> nil then gear^.FlightTime:= Trunc(lua_tonumber(L, 2))
10589
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1905
        end;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1906
    lc_setflighttime:= 0
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1907
end;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1908
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1909
function lc_seteffect(L : Plua_State) : LongInt; Cdecl;
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1910
var gear: PGear;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1911
    t   : LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1912
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1913
    call = 'SetEffect';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1914
    params = 'gearUid, effect, effectState';
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1915
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1916
    if CheckLuaParamCount(L, 3, call, params) then
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1917
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1918
        t:= LuaToHogEffectOrd(L, 2, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1919
        if t >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1920
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1921
            gear := GearByUID(Trunc(lua_tonumber(L, 1)));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1922
            if (gear <> nil) and (gear^.Hedgehog <> nil) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1923
                gear^.Hedgehog^.Effects[THogEffect(t)]:= Trunc(lua_tonumber(L, 3));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1924
            end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1925
        end;
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1926
    lc_seteffect := 0;
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1927
end;
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1928
5489
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1929
function lc_geteffect(L : Plua_State) : LongInt; Cdecl;
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1930
var gear : PGear;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1931
    t    : LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1932
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1933
    call = 'GetEffect';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1934
    params = 'gearUid, effect';
5489
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1935
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1936
    if CheckLuaParamCount(L, 2, call, params) then
5489
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1937
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1938
        t:= LuaToHogEffectOrd(L, 2, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1939
        if t >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1940
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1941
            gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1942
            if (gear <> nil) and (gear^.Hedgehog <> nil) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1943
                lua_pushnumber(L, gear^.Hedgehog^.Effects[THogEffect(t)])
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1944
            else
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1945
                lua_pushnumber(L, 0)
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1946
            end;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1947
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1948
    else
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1949
        lua_pushnumber(L, 0);
5489
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1950
    lc_geteffect:= 1
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1951
end;
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1952
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1953
function lc_setstate(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1954
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1955
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1956
    if CheckLuaParamCount(L, 2, 'SetState', 'gearUid, state') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1957
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1958
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1959
        if gear <> nil then
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1960
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1961
            gear^.State:= Trunc(lua_tonumber(L, 2));
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1962
            SetAllToActive;
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1963
            end
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1964
        end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1965
    lc_setstate:= 0
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1966
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1967
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1968
function lc_getstate(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1969
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1970
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1971
    if CheckLuaParamCount(L, 1, 'GetState', 'gearUid') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1972
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1973
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1974
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1975
            lua_pushnumber(L, gear^.State)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1976
        else
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1977
            lua_pushnil(L)
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1978
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1979
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1980
        lua_pushnil(L); // return value on stack (nil)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1981
    lc_getstate:= 1
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1982
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1983
7156
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1984
function lc_gettag(L : Plua_State) : LongInt; Cdecl;
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1985
var gear : PGear;
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1986
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1987
    if CheckLuaParamCount(L, 1, 'GetTag', 'gearUid') then
7156
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1988
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1989
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
7156
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1990
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  1991
            lua_pushnumber(L, gear^.Tag)
7156
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1992
        else
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1993
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1994
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1995
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1996
        lua_pushnil(L); // return value on stack (nil)
7156
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1997
    lc_gettag:= 1
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1998
end;
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1999
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2000
function lc_settag(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2001
var gear : PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2002
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2003
    if CheckLuaParamCount(L, 2, 'SetTag', 'gearUid, tag') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2004
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2005
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  2006
        if gear <> nil then
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  2007
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2008
            gear^.Tag:= Trunc(lua_tonumber(L, 2));
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  2009
            SetAllToActive;
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  2010
            end
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2011
        end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2012
    lc_settag:= 0
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2013
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2014
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2015
function lc_endgame(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2016
begin
3407
dcc129c4352e Engine:
smxx
parents: 3368
diff changeset
  2017
    L:= L; // avoid compiler hint
8460
75e771c3c039 fix EndGame call. w/o a proper exit, demos weren't being saved
nemo
parents: 8370
diff changeset
  2018
    AddGear(0, 0, gtATFinishGame, 0, _0, _0, 3000);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2019
    lc_endgame:= 0
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2020
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2021
12286
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2022
function lc_endturn(L : Plua_State) : LongInt; Cdecl;
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2023
var n: LongInt;
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2024
const
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2025
    call = 'EndTurn';
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2026
    params = '[noTaunts]';
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2027
begin
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2028
    if CheckAndFetchParamCount(L, 0, 1, call, params, n) then
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2029
        if n >= 1 then
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2030
            LuaNoEndTurnTaunts:= lua_toboolean(L, 1);
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2031
    LuaEndTurnRequested:= true;
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2032
    lc_endturn:= 0
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2033
end;
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  2034
13340
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2035
function lc_retreat(L : Plua_State) : LongInt; Cdecl;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2036
var n, time: LongInt;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2037
    respectFactor: Boolean;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2038
const
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2039
    call = 'Retreat';
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2040
    params = 'time [, respectGetAwayTimeFactor]';
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2041
begin
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2042
    if CheckAndFetchParamCount(L, 1, 2, call, params, n) then
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2043
        begin
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2044
        IsGetAwayTime:= true;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2045
        AttackBar:= 0;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2046
        time:= Trunc(lua_tonumber(L, 1));
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2047
        if n = 2 then
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2048
            respectFactor:= lua_toboolean(L, 2)
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2049
        else
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2050
            respectFactor:= True;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2051
        if respectFactor then
13743
d7b72ea8d136 Fix buggy behaviour when setting TurnTimeLeft through Retreat
Wuzzy <Wuzzy2@mail.ru>
parents: 13742
diff changeset
  2052
            PendingTurnTimeLeft:= (time * cGetAwayTime) div 100
13340
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2053
        else
13743
d7b72ea8d136 Fix buggy behaviour when setting TurnTimeLeft through Retreat
Wuzzy <Wuzzy2@mail.ru>
parents: 13742
diff changeset
  2054
            PendingTurnTimeLeft:= time;
d7b72ea8d136 Fix buggy behaviour when setting TurnTimeLeft through Retreat
Wuzzy <Wuzzy2@mail.ru>
parents: 13742
diff changeset
  2055
        isPendingTurnTimeLeft:= true;
13340
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2056
        if ((CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear <> nil)) then
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2057
            begin
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2058
            CurrentHedgehog^.Gear^.State:= CurrentHedgehog^.Gear^.State or gstAttacked;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2059
            CurrentHedgehog^.Gear^.State:= CurrentHedgehog^.Gear^.State and (not gstAttacking);
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2060
            end;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2061
        end;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2062
    lc_retreat:= 0
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2063
end;
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  2064
13170
98a0edb4bb5a Lua API: Add SkipTurn() to replace ParseCommand("skip")
Wuzzy <Wuzzy2@mail.ru>
parents: 13122
diff changeset
  2065
function lc_skipturn(L : Plua_State): LongInt; Cdecl;
98a0edb4bb5a Lua API: Add SkipTurn() to replace ParseCommand("skip")
Wuzzy <Wuzzy2@mail.ru>
parents: 13122
diff changeset
  2066
begin
98a0edb4bb5a Lua API: Add SkipTurn() to replace ParseCommand("skip")
Wuzzy <Wuzzy2@mail.ru>
parents: 13122
diff changeset
  2067
    L:= L; // avoid compiler hint
98a0edb4bb5a Lua API: Add SkipTurn() to replace ParseCommand("skip")
Wuzzy <Wuzzy2@mail.ru>
parents: 13122
diff changeset
  2068
    ParseCommand('skip', true, true);
98a0edb4bb5a Lua API: Add SkipTurn() to replace ParseCommand("skip")
Wuzzy <Wuzzy2@mail.ru>
parents: 13122
diff changeset
  2069
    lc_skipturn:= 0;
98a0edb4bb5a Lua API: Add SkipTurn() to replace ParseCommand("skip")
Wuzzy <Wuzzy2@mail.ru>
parents: 13122
diff changeset
  2070
end;
98a0edb4bb5a Lua API: Add SkipTurn() to replace ParseCommand("skip")
Wuzzy <Wuzzy2@mail.ru>
parents: 13122
diff changeset
  2071
9171
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  2072
function lc_sendstat(L : Plua_State) : LongInt; Cdecl;
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  2073
var statInfo : TStatInfoType;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2074
    i, n     : LongInt;
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2075
    color, tn: shortstring;
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2076
    needsTn  : boolean;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2077
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2078
    call = 'SendStat';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2079
    params = 'statInfoType, color [, teamname]';
9171
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  2080
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2081
    if CheckAndFetchParamCount(L, 2, 3, call, params, n) then
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2082
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2083
        i:= LuaToStatInfoTypeOrd(L, 1, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2084
        if i >= 0 then
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2085
            begin
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2086
            statInfo:= TStatInfoType(i);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2087
            needsTn:= ((statInfo = siPlayerKills) or (statInfo = siClanHealth));
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2088
            // check if param count is correct for the used statInfo
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2089
            if (n = 3) <> needsTn then
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2090
                begin
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2091
                if n = 3 then
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2092
                    LuaCallError(EnumToStr(statInfo) + ' does not support the teamname parameter', call, params)
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2093
                else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2094
                    LuaCallError(EnumToStr(statInfo) + ' requires the teamname parameter', call, params);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2095
                end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2096
            else // count is correct!
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2097
                begin
10542
383328755384 small cleanup
sheepluva
parents: 10518
diff changeset
  2098
                if needsTn then
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2099
                    begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2100
                    // 3: team name
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2101
                    for i:= 0 to Pred(TeamsCount) do
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2102
                        begin
10282
f02cf95b8424 Fix pas2c build
unc0rr
parents: 10281
diff changeset
  2103
                        color:= _S'0';
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2104
                        tn:= lua_tostring(L, 3);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2105
                        with TeamsArray[i]^ do
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2106
                            begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2107
                                if TeamName = tn then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2108
                                    begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2109
                                    color := uUtils.IntToStr(Clan^.Color);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2110
                                    Break;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2111
                                    end
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2112
                            end
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2113
                        end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2114
                    if (statInfo = siPlayerKills) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2115
                        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2116
                            SendStat(siPlayerKills, color + ' ' +
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2117
                                lua_tostring(L, 2) + ' ' + tn);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2118
                        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2119
                    else if (statInfo = siClanHealth) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2120
                        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2121
                            SendStat(siClanHealth, color + ' ' +
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2122
                                lua_tostring(L, 2));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2123
                        end
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2124
                    end
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2125
                else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2126
                    begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2127
                    SendStat(statInfo,lua_tostring(L, 2));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2128
                    end;
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2129
                end;
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2130
            end;
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2131
        end;
9171
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  2132
    lc_sendstat:= 0
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  2133
end;
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  2134
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2135
function lc_sendgameresultoff(L : Plua_State) : LongInt; Cdecl;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2136
begin
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2137
    L:= L; // avoid compiler hint
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2138
    uStats.SendGameResultOn := false;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2139
    lc_sendgameresultoff:= 0
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2140
end;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2141
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2142
function lc_sendrankingstatsoff(L : Plua_State) : LongInt; Cdecl;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2143
begin
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2144
    L:= L; // avoid compiler hint
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2145
    uStats.SendRankingStatsOn := false;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2146
    lc_sendrankingstatsoff:= 0
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2147
end;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2148
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2149
function lc_sendachievementsstatsoff(L : Plua_State) : LongInt; Cdecl;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2150
begin
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2151
    L:= L; // avoid compiler hint
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2152
    uStats.SendAchievementsStatsOn := false;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2153
    lc_sendachievementsstatsoff:= 0
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2154
end;
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  2155
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9179
diff changeset
  2156
function lc_sendhealthstatsoff(L : Plua_State) : LongInt; Cdecl;
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9173
diff changeset
  2157
begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9173
diff changeset
  2158
    L:= L; // avoid compiler hint
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9179
diff changeset
  2159
    uStats.SendHealthStatsOn := false;
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9179
diff changeset
  2160
    lc_sendhealthstatsoff:= 0
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9173
diff changeset
  2161
end;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9173
diff changeset
  2162
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2163
function lc_findplace(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2164
var gear: PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2165
    fall: boolean;
4629
b5d726bc4f8d FindPlace in lua now returns null for failure to find a place, and accepts a 5th parameter to try finding a place without considering proximity (note that this can place a gear right next to mines).
nemo
parents: 4590
diff changeset
  2166
    tryhard: boolean;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2167
    left, right, n: LongInt;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2168
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2169
    if CheckAndFetchParamCount(L, 4, 5, 'FindPlace', 'gearUid, fall, left, right [, tryHarder]', n) then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2170
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2171
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2172
        fall:= lua_toboolean(L, 2);
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2173
        left:= Trunc(lua_tonumber(L, 3));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2174
        right:= Trunc(lua_tonumber(L, 4));
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2175
        if n = 5 then
10496
ba166d4e66f3 Fix use of uninitialized variable
unc0rr
parents: 10421
diff changeset
  2176
            tryhard:= lua_toboolean(L, 5)
ba166d4e66f3 Fix use of uninitialized variable
unc0rr
parents: 10421
diff changeset
  2177
        else
ba166d4e66f3 Fix use of uninitialized variable
unc0rr
parents: 10421
diff changeset
  2178
            tryhard:= false;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2179
        if gear <> nil then
4629
b5d726bc4f8d FindPlace in lua now returns null for failure to find a place, and accepts a 5th parameter to try finding a place without considering proximity (note that this can place a gear right next to mines).
nemo
parents: 4590
diff changeset
  2180
            FindPlace(gear, fall, left, right, tryhard);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2181
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2182
            lua_pushnumber(L, gear^.uid)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2183
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2184
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2185
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2186
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2187
        lua_pushnil(L); // return value on stack (nil)
4629
b5d726bc4f8d FindPlace in lua now returns null for failure to find a place, and accepts a 5th parameter to try finding a place without considering proximity (note that this can place a gear right next to mines).
nemo
parents: 4590
diff changeset
  2188
    lc_findplace:= 1
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2189
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2190
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2191
function lc_playsound(L : Plua_State) : LongInt; Cdecl;
4516
ecf012a762d8 add PlaySound(soundType, hogGearUID) -- this roundabout way to reference a team seems to be how things are done in lua right now. might need changing in future
nemo
parents: 4502
diff changeset
  2192
var gear: PGear;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2193
    n, s: LongInt;
13122
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2194
    instaVoice: boolean;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2195
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2196
    call = 'PlaySound';
13122
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2197
    params = 'soundId [, hhGearUid [, instaVoice]]';
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2198
begin
13122
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2199
    if CheckAndFetchParamCountRange(L, 1, 3, call, params, n) then
4516
ecf012a762d8 add PlaySound(soundType, hogGearUID) -- this roundabout way to reference a team seems to be how things are done in lua right now. might need changing in future
nemo
parents: 4502
diff changeset
  2200
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2201
        s:= LuaToSoundOrd(L, 1, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2202
        if s >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2203
            begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2204
            // no gear specified
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2205
            if n = 1 then
13121
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2206
                PlaySound(TSound(s), false, true)
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2207
            else
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2208
                begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2209
                gear:= GearByUID(Trunc(lua_tonumber(L, 2)));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2210
                if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
13122
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2211
                    begin
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2212
                    instaVoice:= false;
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2213
                    if n = 3 then
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2214
                        instaVoice:= lua_toboolean(L, 3);
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2215
                    if instaVoice then
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2216
                        PlaySoundV(TSound(s), gear^.Hedgehog^.Team^.Voicepack, false, true)
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2217
                    else
14037
bf8b7c166b3c Play another voice as fallback if sndRevenge could not be found
Wuzzy <Wuzzy2@mail.ru>
parents: 13976
diff changeset
  2218
                        AddVoice(TSound(s), gear^.Hedgehog^.Team^.Voicepack, true, false);
13122
d52d79f35558 Lua API: PlaySound: Add 3rd parameter instaVoice to instantly play voice
Wuzzy <Wuzzy2@mail.ru>
parents: 13121
diff changeset
  2219
                    end;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2220
                end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2221
            end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2222
        end;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2223
    lc_playsound:= 0;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2224
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2225
13976
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2226
function lc_playmusicsound(L : Plua_State) : LongInt; Cdecl;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2227
var s: LongInt;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2228
const
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2229
    call = 'PlayMusicSound';
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2230
    params = 'soundId';
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2231
begin
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2232
    if CheckLuaParamCount(L, 1, call, params) then
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2233
        begin
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2234
        s:= LuaToSoundOrd(L, 1, call, params);
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2235
        if s >= 0 then
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2236
            PlayMusicSound(TSound(s))
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2237
        end;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2238
    lc_playmusicsound:= 0;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2239
end;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2240
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2241
function lc_stopmusicsound(L : Plua_State) : LongInt; Cdecl;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2242
var s: LongInt;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2243
const
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2244
    call = 'StopMusicSound';
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2245
    params = 'soundId';
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2246
begin
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2247
    if CheckLuaParamCount(L, 1, call, params) then
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2248
        begin
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2249
        s:= LuaToSoundOrd(L, 1, call, params);
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2250
        if s >= 0 then
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2251
            StopMusicSound(TSound(s))
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2252
        end;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2253
    lc_stopmusicsound:= 0;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2254
end;
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2255
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  2256
13121
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2257
function lc_setsoundmask(L : Plua_State) : LongInt; Cdecl;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2258
var s: LongInt;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2259
    soundState: boolean;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2260
const
13778
e2d902745fd5 Fix some syntax errors in internal Lua syntax documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 13764
diff changeset
  2261
    call = 'SetSoundMask';
e2d902745fd5 Fix some syntax errors in internal Lua syntax documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 13764
diff changeset
  2262
    params = 'soundId, isMasked';
13121
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2263
begin
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2264
    if CheckLuaParamCount(L, 2, call, params) then
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2265
        begin
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2266
        s:= LuaToSoundOrd(L, 1, call, params);
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2267
        if s <> Ord(sndNone) then
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2268
            begin
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2269
            soundState:= lua_toboolean(L, 2);
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2270
            MaskedSounds[TSound(s)]:= soundState;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2271
            end;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2272
        end;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2273
    lc_setsoundmask:= 0;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2274
end;
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  2275
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2276
function lc_addteam(L : Plua_State) : LongInt; Cdecl;
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2277
var np: LongInt;
13582
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2278
    colorArg: Int64;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2279
    colorStr: shortstring;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2280
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2281
    if CheckAndFetchParamCount(L, 5, 6, 'AddTeam', 'teamname, color, grave, fort, voicepack [, flag]', np) then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2282
        begin
13582
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2283
        colorArg:= Trunc(lua_tonumber(L, 2));
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2284
        if (colorArg < 0) and (abs(colorArg) <= cClanColors) then
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2285
            // Pick clan color from settings (recommended)
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2286
            colorStr:= IntToStr(ClanColorArray[Pred(abs(colorArg))])
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2287
        else if (colorArg >= 0) and (colorArg <= $ffffffff) then
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2288
            // Specify color directly
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2289
            colorStr:= IntToStr(colorArg)
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2290
        else
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2291
            begin
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2292
            OutError('Lua error: AddTeam: Invalid ''color'' argument, must be between '+IntToStr(-cClanColors)+' and 0xffffffff!', true);
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2293
            lua_pushnil(L);
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2294
            lua_pushnil(L);
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2295
            lc_addteam:= 2;
13582
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2296
            exit;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2297
            end;
517b26009073 Lua: Allow to use negative value for AddTeam to select a default clan color
Wuzzy <Wuzzy2@mail.ru>
parents: 13577
diff changeset
  2298
        ParseCommand('addteam x ' + colorStr + ' ' + lua_tostring(L, 1), true, true);
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2299
        ParseCommand('grave ' + lua_tostring(L, 3), true, true);
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2300
        ParseCommand('fort ' + lua_tostring(L, 4), true, true);
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2301
        ParseCommand('voicepack ' + lua_tostring(L, 5), true, true);
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2302
        if (np = 6) then ParseCommand('flag ' + lua_tostring(L, 6), true, true);
14537
ce40351e0690 Use player team's control scheme for all teams if there's a mission team
Wuzzy <Wuzzy2@mail.ru>
parents: 14536
diff changeset
  2303
        // If there's a mission team, copy it's control scheme.
ce40351e0690 Use player team's control scheme for all teams if there's a mission team
Wuzzy <Wuzzy2@mail.ru>
parents: 14536
diff changeset
  2304
        // So in singleplayer missions, all teams use the player team's controls.
ce40351e0690 Use player team's control scheme for all teams if there's a mission team
Wuzzy <Wuzzy2@mail.ru>
parents: 14536
diff changeset
  2305
        if MissionTeam <> nil then
ce40351e0690 Use player team's control scheme for all teams if there's a mission team
Wuzzy <Wuzzy2@mail.ru>
parents: 14536
diff changeset
  2306
            CurrentTeam^.Binds:= MissionTeam^.Binds
ce40351e0690 Use player team's control scheme for all teams if there's a mission team
Wuzzy <Wuzzy2@mail.ru>
parents: 14536
diff changeset
  2307
        // Default keys otherwise
ce40351e0690 Use player team's control scheme for all teams if there's a mission team
Wuzzy <Wuzzy2@mail.ru>
parents: 14536
diff changeset
  2308
        else
ce40351e0690 Use player team's control scheme for all teams if there's a mission team
Wuzzy <Wuzzy2@mail.ru>
parents: 14536
diff changeset
  2309
            CurrentTeam^.Binds:= DefaultBinds;
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2310
        // push team name and index
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2311
        lua_pushstring(L, str2pchar(CurrentTeam^.TeamName));
14479
4e5280a9e782 Lua: AddTeam / AddMissionTeam now return team index
Wuzzy <Wuzzy2@mail.ru>
parents: 14477
diff changeset
  2312
        lua_pushnumber(L, TeamsCount - 1);
4e5280a9e782 Lua: AddTeam / AddMissionTeam now return team index
Wuzzy <Wuzzy2@mail.ru>
parents: 14477
diff changeset
  2313
        end
4e5280a9e782 Lua: AddTeam / AddMissionTeam now return team index
Wuzzy <Wuzzy2@mail.ru>
parents: 14477
diff changeset
  2314
    else
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2315
        begin
14479
4e5280a9e782 Lua: AddTeam / AddMissionTeam now return team index
Wuzzy <Wuzzy2@mail.ru>
parents: 14477
diff changeset
  2316
        lua_pushnil(L);
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2317
        lua_pushnil(L);
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2318
        end;
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2319
    lc_addteam:= 2;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2320
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2321
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2322
function lc_addmissionteam(L : Plua_State) : LongInt; Cdecl;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2323
var colorArg: Int64;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2324
    colorStr: shortstring;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2325
begin
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2326
    if CheckLuaParamCount(L, 1, 'AddMissionTeam', 'color') then
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2327
        begin
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2328
        if(MissionTeam = nil) then
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2329
            begin
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2330
            OutError('Lua error: AddMissionTeam: Could not add team. Note: This function only works in singleplayer missions!', true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2331
            lc_addmissionteam:= 0;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2332
            exit;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2333
            end;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2334
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2335
        colorArg:= Trunc(lua_tonumber(L, 1));
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2336
        if (colorArg < 0) and (abs(colorArg) <= cClanColors) then
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2337
            // Pick clan color from settings (recommended)
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2338
            colorStr:= IntToStr(ClanColorArray[Pred(abs(colorArg))])
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2339
        else if (colorArg >= 0) and (colorArg <= $ffffffff) then
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2340
            // Specify color directly
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2341
            colorStr:= IntToStr(colorArg)
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2342
        else
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2343
            begin
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2344
            OutError('Lua error: AddMissionTeam: Invalid ''color'' argument, must be between '+IntToStr(-cClanColors)+' and 0xffffffff!', true);
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2345
            lua_pushnil(L);
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2346
            lua_pushnil(L);
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2347
            lc_addmissionteam:= 2;
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2348
            exit;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2349
            end;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2350
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2351
        ParseCommand('addteam x ' + colorStr + ' ' + MissionTeam^.TeamName, true, true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2352
        ParseCommand('grave ' + MissionTeam^.GraveName, true, true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2353
        ParseCommand('fort ' + MissionTeam^.FortName, true, true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2354
        ParseCommand('voicepack ' + MissionTeam^.Voicepack^.name, true, true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2355
        ParseCommand('flag ' + MissionTeam^.Flag, true, true);
14536
181509fe1ae8 Fix player team ignoring custom team control scheme in campaign/missions
Wuzzy <Wuzzy2@mail.ru>
parents: 14522
diff changeset
  2356
        CurrentTeam^.Binds:= MissionTeam^.Binds;
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2357
        // push real team name and team index
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2358
        lua_pushstring(L, str2pchar(CurrentTeam^.TeamName));
14479
4e5280a9e782 Lua: AddTeam / AddMissionTeam now return team index
Wuzzy <Wuzzy2@mail.ru>
parents: 14477
diff changeset
  2359
        lua_pushnumber(L, TeamsCount - 1);
4e5280a9e782 Lua: AddTeam / AddMissionTeam now return team index
Wuzzy <Wuzzy2@mail.ru>
parents: 14477
diff changeset
  2360
        end
4e5280a9e782 Lua: AddTeam / AddMissionTeam now return team index
Wuzzy <Wuzzy2@mail.ru>
parents: 14477
diff changeset
  2361
    else
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2362
        begin
14479
4e5280a9e782 Lua: AddTeam / AddMissionTeam now return team index
Wuzzy <Wuzzy2@mail.ru>
parents: 14477
diff changeset
  2363
        lua_pushnil(L);
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2364
        lua_pushnil(L);
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2365
        end;
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14479
diff changeset
  2366
    lc_addmissionteam:= 2;
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2367
end;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2368
13018
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2369
function lc_setteamlabel(L : Plua_State) : LongInt; Cdecl;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2370
var teamValue: ansistring;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2371
    i, n: LongInt;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2372
    success: boolean;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2373
begin
14283
9548edd9ebcf uninitialised values
nemo
parents: 14219
diff changeset
  2374
	success:= false;
13018
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2375
    if CheckAndFetchParamCount(L, 1, 2, 'SetTeamLabel', 'teamname[, label]', n) then
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2376
        begin
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2377
        success:= false;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2378
        // fetch team
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2379
        if TeamsCount > 0 then
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2380
            for i:= 0 to Pred(TeamsCount) do
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2381
                begin
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2382
                // skip teams that don't have matching name
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2383
                if TeamsArray[i]^.TeamName <> lua_tostring(L, 1) then
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2384
                    continue;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2385
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2386
                // value of type nil? Then let's clear the team value
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2387
                if (n < 2) or lua_isnil(L, 2) then
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2388
                    begin
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2389
                    FreeAndNilTexture(TeamsArray[i]^.LuaTeamValueTex);
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2390
                    TeamsArray[i]^.hasLuaTeamValue:= false;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2391
                    success:= true;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2392
                    end
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2393
                // value of type string? Then let's set the team value
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2394
                else if (lua_isstring(L, 2)) then
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2395
                    begin
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2396
                    teamValue:= lua_tostring(L, 2);
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2397
                    TeamsArray[i]^.LuaTeamValue:= teamValue;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2398
                    FreeAndNilTexture(TeamsArray[i]^.LuaTeamValueTex);
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2399
                    TeamsArray[i]^.LuaTeamValueTex := RenderStringTex(teamValue, TeamsArray[i]^.Clan^.Color, fnt16);
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2400
                    TeamsArray[i]^.hasLuaTeamValue:= true;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2401
                    success:= true;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2402
                    end;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2403
                // don't change more than one team
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2404
                break;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2405
                end;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2406
        end;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2407
    // return true if operation was successful, false otherwise
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2408
    lua_pushboolean(L, success);
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2409
    lc_setteamlabel:= 1;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2410
end;
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  2411
14611
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2412
function lc_setteampassive(L : Plua_State) : LongInt; Cdecl;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2413
var i, j: LongInt;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2414
    success, passive, passiveClan: boolean;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2415
begin
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2416
	success:= false;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2417
    if CheckLuaParamCount(L, 2, 'SetTeamPassive', 'teamname, isPassive') then
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2418
        begin
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2419
        success:= false;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2420
        // fetch team
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2421
        if TeamsCount > 0 then
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2422
            for i:= 0 to Pred(TeamsCount) do
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2423
                if TeamsArray[i]^.TeamName = lua_tostring(L, 1) then
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2424
                    begin
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2425
                    passive:= lua_toboolean(L, 2);
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2426
                    TeamsArray[i]^.Passive:= passive;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2427
                    // also update clan state
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2428
                    if passive then
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2429
                        begin
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2430
                        passiveClan:= true;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2431
                        for j:= 0 to Pred(TeamsCount) do
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2432
                            if (not TeamsArray[j]^.Passive) then
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2433
                                begin
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2434
                                passiveClan:= false;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2435
                                break;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2436
                                end;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2437
                        end
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2438
                    else
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2439
                        passiveClan:= false;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2440
                    TeamsArray[i]^.Clan^.Passive:= passiveClan;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2441
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2442
                    success:= true;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2443
                    // don't change more than one team
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2444
                    break;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2445
                    end;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2446
        end;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2447
    // return true if operation was successful, false otherwise
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2448
    lua_pushboolean(L, success);
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2449
    lc_setteampassive:= 1;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2450
end;
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  2451
12931
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2452
function lc_getteamname(L : Plua_State) : LongInt; Cdecl;
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2453
var t: LongInt;
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2454
begin
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2455
    if CheckLuaParamCount(L, 1, 'GetTeamName', 'teamIdx') then
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2456
        begin
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2457
        t:= Trunc(lua_tonumber(L, 1));
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2458
        if (t < 0) or (t >= TeamsCount) then
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2459
            lua_pushnil(L)
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2460
        else
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2461
            lua_pushstring(L, str2pchar(TeamsArray[t]^.TeamName));
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2462
        end
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2463
    else
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2464
        lua_pushnil(L);
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2465
    lc_getteamname:= 1;
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2466
end;
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  2467
13020
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2468
function lc_getteamindex(L : Plua_state) : LongInt; Cdecl;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2469
var i: LongInt;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2470
    found: boolean;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2471
begin
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2472
    found:= false;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2473
    if CheckLuaParamCount(L, 1, 'GetTeamIndex', 'teamname') then
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2474
        if TeamsCount > 0 then
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2475
            for i:= 0 to Pred(TeamsCount) do
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2476
                begin
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2477
                // skip teams that don't have matching name
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2478
                if TeamsArray[i]^.TeamName <> lua_tostring(L, 1) then
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2479
                    continue;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2480
                lua_pushnumber(L, i);
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2481
                found:= true;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2482
                break;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2483
                end;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2484
    if (not found) then
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2485
        lua_pushnil(L);
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2486
    lc_getteamindex:= 1;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2487
end;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2488
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2489
function lc_getteamclan(L : Plua_state) : LongInt; Cdecl;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2490
var i: LongInt;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2491
    found: boolean;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2492
begin
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2493
    found:= false;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2494
    if CheckLuaParamCount(L, 1, 'GetTeamClan', 'teamname') then
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2495
        if TeamsCount > 0 then
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2496
            for i:= 0 to Pred(TeamsCount) do
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2497
                begin
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2498
                // skip teams that don't have matching name
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2499
                if TeamsArray[i]^.TeamName <> lua_tostring(L, 1) then
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2500
                    continue;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2501
                lua_pushnumber(L, TeamsArray[i]^.Clan^.ClanIndex);
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2502
                found:= true;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2503
                break;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2504
                end;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2505
    if (not found) then
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2506
        lua_pushnil(L);
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2507
    lc_getteamclan:= 1;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2508
end;
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  2509
10290
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  2510
function lc_dismissteam(L : Plua_State) : LongInt; Cdecl;
10553
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2511
var HHGear: PGear;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2512
    i, h  : LongInt;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2513
    hidden: boolean;
10290
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  2514
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2515
    if CheckLuaParamCount(L, 1, 'DismissTeam', 'teamname') then
10553
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2516
        begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2517
        if TeamsCount > 0 then
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2518
            for i:= 0 to Pred(TeamsCount) do
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2519
                begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2520
                // skip teams that don't have matching name
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2521
                if TeamsArray[i]^.TeamName <> lua_tostring(L, 1) then
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2522
                    continue;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2523
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2524
                // destroy all hogs of matching team, including the hidden ones
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2525
                for h:= 0 to cMaxHHIndex do
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2526
                    begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2527
                    hidden:= (TeamsArray[i]^.Hedgehogs[h].GearHidden <> nil);
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2528
                    if hidden then
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2529
                        RestoreHog(@TeamsArray[i]^.Hedgehogs[h]);
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2530
                    // destroy hedgehog gear, if any
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2531
                    HHGear:= TeamsArray[i]^.Hedgehogs[h].Gear;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2532
                    if HHGear <> nil then
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2533
                        begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2534
                        // smoke effect
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2535
                        if (not hidden) then
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2536
                            begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2537
                            AddVisualGear(hwRound(HHGear^.X), hwRound(HHGear^.Y), vgtSmokeWhite);
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2538
                            AddVisualGear(hwRound(HHGear^.X) - 16 + Random(32), hwRound(HHGear^.Y) - 16 + Random(32), vgtSmokeWhite);
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2539
                            AddVisualGear(hwRound(HHGear^.X) - 16 + Random(32), hwRound(HHGear^.Y) - 16 + Random(32), vgtSmokeWhite);
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2540
                            AddVisualGear(hwRound(HHGear^.X) - 16 + Random(32), hwRound(HHGear^.Y) - 16 + Random(32), vgtSmokeWhite);
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2541
                            AddVisualGear(hwRound(HHGear^.X) - 16 + Random(32), hwRound(HHGear^.Y) - 16 + Random(32), vgtSmokeWhite);
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2542
                            end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2543
                        HHGear^.Message:= HHGear^.Message or gmDestroy;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2544
                        end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2545
                    end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2546
                // can't dismiss more than one team
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2547
                break;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2548
                end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2549
        end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  2550
    lc_dismissteam:= 0;
10290
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  2551
end;
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  2552
12536
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2553
function lc_getteamstats(L : Plua_State) : LongInt; Cdecl;
12621
d972b31f8881 fix some fpc hints
sheepluva
parents: 12600
diff changeset
  2554
var i: LongInt;
12536
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2555
begin
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2556
    if CheckLuaParamCount(L, 1, 'GetTeamStats', 'teamname') then
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2557
        begin
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2558
        if TeamsCount > 0 then
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2559
            for i:= 0 to Pred(TeamsCount) do
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2560
                begin
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2561
                // skip teams that don't have matching name
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2562
                if TeamsArray[i]^.TeamName <> lua_tostring(L, 1) then
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2563
                    continue;
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2564
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2565
                lua_newtable(L);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2566
12600
ef780eda6e48 pas2c happiness initiative 2017, continued
sheepluva
parents: 12596
diff changeset
  2567
                lua_pushstring(L, str2pchar('Kills'));
12536
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2568
                lua_pushnumber(L, TeamsArray[i]^.stats.Kills);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2569
                lua_settable(L, -3);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2570
12600
ef780eda6e48 pas2c happiness initiative 2017, continued
sheepluva
parents: 12596
diff changeset
  2571
                lua_pushstring(L, str2pchar('Suicides'));
12536
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2572
                lua_pushnumber(L, TeamsArray[i]^.stats.Suicides);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2573
                lua_settable(L, -3);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2574
12600
ef780eda6e48 pas2c happiness initiative 2017, continued
sheepluva
parents: 12596
diff changeset
  2575
                lua_pushstring(L, str2pchar('AIKills'));
12536
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2576
                lua_pushnumber(L, TeamsArray[i]^.stats.AIKills);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2577
                lua_settable(L, -3);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2578
12600
ef780eda6e48 pas2c happiness initiative 2017, continued
sheepluva
parents: 12596
diff changeset
  2579
                lua_pushstring(L, str2pchar('TeamKills'));
12536
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2580
                lua_pushnumber(L, TeamsArray[i]^.stats.TeamKills);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2581
                lua_settable(L, -3);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2582
12600
ef780eda6e48 pas2c happiness initiative 2017, continued
sheepluva
parents: 12596
diff changeset
  2583
                lua_pushstring(L, str2pchar('TurnSkips'));
12536
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2584
                lua_pushnumber(L, TeamsArray[i]^.stats.TurnSkips);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2585
                lua_settable(L, -3);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2586
12600
ef780eda6e48 pas2c happiness initiative 2017, continued
sheepluva
parents: 12596
diff changeset
  2587
                lua_pushstring(L, str2pchar('TeamDamage'));
12536
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2588
                lua_pushnumber(L, TeamsArray[i]^.stats.TeamDamage);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2589
                lua_settable(L, -3);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2590
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2591
                end;
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2592
        end
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2593
    else
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2594
        lua_pushnil(L);
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2595
    lc_getteamstats:= 1;
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2596
end;
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2597
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2598
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  2599
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2600
function lc_addhog(L : Plua_State) : LongInt; Cdecl;
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2601
var hatName: ShortString;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2602
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2603
    if CheckLuaParamCount(L, 4, 'AddHog', 'hogname, botlevel, health, hat') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2604
        begin
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2605
        hatName:= lua_tostring(L, 4);
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2606
        ParseCommand('addhh ' + lua_tostring(L, 2) + ' ' + lua_tostring(L, 3) + ' ' + lua_tostring(L, 1), true, true);
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2607
        ParseCommand('hat ' + hatName, true, true);
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2608
        lua_pushnumber(L, CurrentHedgehog^.Gear^.uid);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2609
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2610
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2611
        lua_pushnil(L);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2612
    lc_addhog:= 1;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2613
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2614
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2615
function lc_addmissionhog(L : Plua_State) : LongInt; Cdecl;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2616
var hatName: ShortString;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2617
begin
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2618
    if CheckLuaParamCount(L, 1, 'AddMissionHog', 'health') then
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2619
        begin
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2620
        if(MissionTeam = nil) then
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2621
            begin
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2622
            OutError('Lua error: AddMissionHog: Could not add hog. Mission team is not set!', true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2623
            lua_pushnil(L);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2624
            lc_addmissionhog:= 1;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2625
            exit;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2626
            end;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2627
        with MissionTeam^.Hedgehogs[CurrentTeam^.HedgehogsNumber] do
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2628
            begin
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2629
            hatName:= Hat;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2630
            ParseCommand('addhh ' + IntToStr(BotLevel) + ' ' + lua_tostring(L, 1) + ' ' + Name, true, true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2631
            ParseCommand('hat ' + hatName, true, true);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2632
            end;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2633
        lua_pushnumber(L, CurrentHedgehog^.Gear^.uid);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2634
        end
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2635
    else
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2636
        lua_pushnil(L);
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2637
    lc_addmissionhog:= 1;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2638
end;
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  2639
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2640
function lc_hogturnleft(L : Plua_State) : LongInt; Cdecl;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2641
var gear: PGear;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2642
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2643
    if CheckLuaParamCount(L, 2, 'HogTurnLeft', 'gearUid, boolean') then
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2644
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2645
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2646
        if gear <> nil then
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2647
            gear^.dX.isNegative:= lua_toboolean(L, 2);
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2648
        end;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2649
    lc_hogturnleft:= 0;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2650
end;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2651
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2652
function lc_getgearposition(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2653
var gear: PGear;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2654
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2655
    if CheckLuaParamCount(L, 1, 'GetGearPosition', 'gearUid') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2656
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2657
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2658
        if gear <> nil then
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2659
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2660
            lua_pushnumber(L, hwRound(gear^.X));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2661
            lua_pushnumber(L, hwRound(gear^.Y))
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2662
            end
5964
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  2663
        else
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  2664
            begin
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  2665
            lua_pushnil(L);
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  2666
            lua_pushnil(L)
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  2667
            end;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2668
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2669
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2670
        begin
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2671
        lua_pushnil(L);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2672
        lua_pushnil(L)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2673
        end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2674
    lc_getgearposition:= 2;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2675
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2676
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2677
function lc_setgearposition(L : Plua_State) : LongInt; Cdecl;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2678
var gear: PGear;
4832
e55e2b6f59b0 update collision in set gear position
nemo
parents: 4780
diff changeset
  2679
    col: boolean;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2680
    x, y: LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2681
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2682
    if CheckLuaParamCount(L, 3, 'SetGearPosition', 'gearUid, x, y') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2683
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2684
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2685
        if gear <> nil then
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2686
            begin
4832
e55e2b6f59b0 update collision in set gear position
nemo
parents: 4780
diff changeset
  2687
            col:= gear^.CollisionIndex >= 0;
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2688
            x:= Trunc(lua_tonumber(L, 2));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2689
            y:= Trunc(lua_tonumber(L, 3));
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2690
            if col then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2691
                DeleteCI(gear);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2692
            gear^.X:= int2hwfloat(x);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2693
            gear^.Y:= int2hwfloat(y);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2694
            if col then
9291
15f7bb217b66 Make add/delete consistent (this has bugged me for so long)
nemo
parents: 9285
diff changeset
  2695
                AddCI(gear);
4832
e55e2b6f59b0 update collision in set gear position
nemo
parents: 4780
diff changeset
  2696
            SetAllToActive
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2697
            end
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2698
        end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2699
    lc_setgearposition:= 0
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2700
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2701
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2702
function lc_getgeartarget(L : Plua_State) : LongInt; Cdecl;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2703
var gear: PGear;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2704
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2705
    if CheckLuaParamCount(L, 1, 'GetGearTarget', 'gearUid') then
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2706
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2707
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2708
        if gear <> nil then
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2709
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2710
            lua_pushnumber(L, gear^.Target.X);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2711
            lua_pushnumber(L, gear^.Target.Y)
5612
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  2712
            end
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  2713
        else
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  2714
            begin
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  2715
            lua_pushnil(L);
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  2716
            lua_pushnil(L)
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2717
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2718
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2719
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2720
        begin
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2721
        lua_pushnil(L);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2722
        lua_pushnil(L)
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2723
        end;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2724
    lc_getgeartarget:= 2;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2725
end;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2726
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2727
function lc_setgeartarget(L : Plua_State) : LongInt; Cdecl;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2728
var gear: PGear;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2729
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2730
    if CheckLuaParamCount(L, 3, 'SetGearTarget', 'gearUid, x, y') then
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2731
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2732
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2733
        if gear <> nil then
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2734
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2735
            gear^.Target.X:= Trunc(lua_tonumber(L, 2));
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2736
            gear^.Target.Y:= Trunc(lua_tonumber(L, 3))
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2737
            end
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2738
        end;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2739
    lc_setgeartarget:= 0
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2740
end;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  2741
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2742
function lc_getgearvelocity(L : Plua_State) : LongInt; Cdecl;
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2743
var gear: PGear;
6780
166ee5275915 tweak take 2
nemo
parents: 6779
diff changeset
  2744
var t: LongInt;
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2745
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2746
    if CheckLuaParamCount(L, 1, 'GetGearVelocity', 'gearUid') then
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2747
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2748
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2749
        if gear <> nil then
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2750
            begin
6780
166ee5275915 tweak take 2
nemo
parents: 6779
diff changeset
  2751
            t:= hwRound(gear^.dX * 1000000);
6779
ccd8aecaff6d Small tweak to return something more useful in the negative 0 case on dX
nemo
parents: 6764
diff changeset
  2752
            // gear dX determines hog orientation
6780
166ee5275915 tweak take 2
nemo
parents: 6779
diff changeset
  2753
            if (gear^.dX.isNegative) and (t = 0) then t:= -1;
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2754
            lua_pushnumber(L, t);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2755
            lua_pushnumber(L, hwRound(gear^.dY * 1000000))
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2756
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2757
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2758
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2759
        begin
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2760
        lua_pushnil(L);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2761
        lua_pushnil(L);
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2762
        end;
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2763
    lc_getgearvelocity:= 2;
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2764
end;
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2765
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2766
function lc_setgearvelocity(L : Plua_State) : LongInt; Cdecl;
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2767
var gear: PGear;
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2768
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2769
    if CheckLuaParamCount(L, 3, 'SetGearVelocity', 'gearUid, dx, dy') then
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2770
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2771
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2772
        if gear <> nil then
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2773
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2774
            gear^.dX:= int2hwFloat(Trunc(lua_tonumber(L, 2))) / 1000000;
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2775
            gear^.dY:= int2hwFloat(Trunc(lua_tonumber(L, 3))) / 1000000;
4517
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2776
            SetAllToActive;
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2777
            end
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2778
        end;
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2779
    lc_setgearvelocity:= 0
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2780
end;
0618b31023dc added team flag to AddTeam and made AI team allowed to have custom flags. added GetGearVelocity and SetGearVelocity and removed CopyPV2. changed knockball to use use these functions instead.
Henek
parents: 4516
diff changeset
  2781
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2782
function lc_setzoom(L : Plua_State) : LongInt; Cdecl;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2783
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2784
    if CheckLuaParamCount(L, 1, 'SetZoom', 'zoomLevel') then
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2785
        begin
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2786
        ZoomValue:= lua_tonumber(L, 1);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2787
        if ZoomValue < cMaxZoomLevel then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2788
            ZoomValue:= cMaxZoomLevel;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2789
        if ZoomValue > cMinZoomLevel then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2790
            ZoomValue:= cMinZoomLevel;
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2791
        end;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2792
    lc_setzoom:= 0
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2793
end;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2794
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2795
function lc_getzoom(L : Plua_State) : LongInt; Cdecl;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2796
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2797
    if CheckLuaParamCount(L, 0, 'GetZoom', '') then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2798
        lua_pushnumber(L, ZoomValue)
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2799
    else
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2800
        lua_pushnil(L);
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2801
    lc_getzoom:= 1
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2802
end;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  2803
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2804
function lc_setammo(L : Plua_State) : LongInt; Cdecl;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2805
var np, at: LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2806
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2807
    call = 'SetAmmo';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2808
    params = 'ammoType, count, probability, delay [, numberInCrate]';
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2809
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2810
    if CheckAndFetchParamCount(L, 4, 5, call, params, np) then
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2811
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2812
        at:= LuaToAmmoTypeOrd(L, 1, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2813
        if at >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2814
            begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2815
            if np = 4 then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2816
                ScriptSetAmmo(TAmmoType(at), Trunc(lua_tonumber(L, 2)), Trunc(lua_tonumber(L, 3)), Trunc(lua_tonumber(L, 4)), 1)
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2817
            else
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2818
                ScriptSetAmmo(TAmmoType(at), Trunc(lua_tonumber(L, 2)), Trunc(lua_tonumber(L, 3)), Trunc(lua_tonumber(L, 4)), Trunc(lua_tonumber(L, 5)));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2819
            end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2820
        end;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2821
    lc_setammo:= 0
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2822
end;
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2823
13454
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2824
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2825
function lc_getammo(L : Plua_State) : LongInt; Cdecl;
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2826
var i, at, rawProb, probLevel: LongInt;
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2827
const
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2828
    call = 'GetAmmo';
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2829
    params = 'ammoType';
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2830
begin
14288
21e719e35f43 Fix build
unc0rr
parents: 14284
diff changeset
  2831
    lc_getammo:= 0;
13454
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2832
    if CheckLuaParamCount(L, 1, call, params) then
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2833
        begin
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2834
        at:= LuaToAmmoTypeOrd(L, 1, call, params);
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2835
        if at >= 0 then
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2836
            begin
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2837
            // Ammo count
13455
38814954a248 Fix GetAmmo getting wrong ammo count
Wuzzy <Wuzzy2@mail.ru>
parents: 13454
diff changeset
  2838
            i:= InitialAmmoCounts[TAmmoType(at)];
13454
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2839
            if i = AMMO_INFINITE then
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2840
                i:= 9;
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2841
            lua_pushnumber(L, i);
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2842
            // Probability
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2843
            rawProb:=  Ammoz[TAmmoType(at)].Probability;
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2844
            probLevel:= -1;
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2845
            for i := 0 to High(probabilityLevels) do
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2846
                if rawProb = probabilityLevels[i] then
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2847
                    probLevel:= i;
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2848
            lua_pushnumber(L, probLevel);
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2849
            // Delay in turns
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2850
            lua_pushnumber(L, Ammoz[TAmmoType(at)].SkipTurns);
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2851
            // Number in case
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2852
            lua_pushnumber(L, Ammoz[TAmmoType(at)].NumberInCase);
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2853
            lc_getammo:= 4
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2854
            end
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2855
        end;
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2856
end;
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2857
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  2858
9751
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  2859
function lc_setammodelay(L : Plua_State) : LongInt; Cdecl;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2860
var at: LongInt;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2861
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2862
    call = 'SetAmmoDelay';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2863
    params = 'ammoType, delay';
9751
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  2864
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2865
    if CheckLuaParamCount(L, 2, call, params) then
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2866
        begin
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2867
        at:= LuaToAmmoTypeOrd(L, 1, call, params);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2868
        if at >= 0 then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2869
            ScriptSetAmmoDelay(TAmmoType(at), Trunc(lua_tonumber(L, 2)));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2870
        end;
9751
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  2871
    lc_setammodelay:= 0
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  2872
end;
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  2873
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2874
function lc_getrandom(L : Plua_State) : LongInt; Cdecl;
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2875
var m : LongInt;
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2876
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2877
    if CheckLuaParamCount(L, 1, 'GetRandom', 'number') then
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2878
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2879
        m:= Trunc(lua_tonumber(L, 1));
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2880
        if (m > 0) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2881
            lua_pushnumber(L, GetRandom(m))
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2882
        else
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2883
            begin
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2884
            LuaError('Lua: Tried to pass 0 to GetRandom!');
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2885
            lua_pushnil(L);
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2886
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2887
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2888
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2889
        lua_pushnil(L); // return value on stack (nil)
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2890
    lc_getrandom:= 1
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  2891
end;
4399
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  2892
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  2893
function lc_setwind(L : Plua_State) : LongInt; Cdecl;
13062
bcb87269867e Lua API: Fix SetWind not updating flake direction
Wuzzy <Wuzzy2@mail.ru>
parents: 13038
diff changeset
  2894
var vg: PVisualGear;
4399
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  2895
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2896
    if CheckLuaParamCount(L, 1, 'SetWind', 'windSpeed') then
4399
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  2897
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2898
        cWindSpeed:= int2hwfloat(Trunc(lua_tonumber(L, 1))) / 100 * cMaxWindSpeed;
4399
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  2899
        cWindSpeedf:= SignAs(cWindSpeed,cWindSpeed).QWordValue / SignAs(_1,_1).QWordValue;
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  2900
        if cWindSpeed.isNegative then
13062
bcb87269867e Lua API: Fix SetWind not updating flake direction
Wuzzy <Wuzzy2@mail.ru>
parents: 13038
diff changeset
  2901
            cWindSpeedf := -cWindSpeedf;
bcb87269867e Lua API: Fix SetWind not updating flake direction
Wuzzy <Wuzzy2@mail.ru>
parents: 13038
diff changeset
  2902
        vg:= AddVisualGear(0, 0, vgtSmoothWindBar);
bcb87269867e Lua API: Fix SetWind not updating flake direction
Wuzzy <Wuzzy2@mail.ru>
parents: 13038
diff changeset
  2903
        if vg <> nil then vg^.dAngle:= hwFloat2Float(cWindSpeed);
14219
de21f6eb2366 Fix desync bomb
unc0rr
parents: 14217
diff changeset
  2904
            AddFileLog('Script set wind = '+FloatToStr(cWindSpeed));
4399
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  2905
        end;
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  2906
    lc_setwind:= 0
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  2907
end;
4502
759c1a3bb156 lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents: 4499
diff changeset
  2908
12930
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2909
function lc_getwind(L : Plua_State) : LongInt; Cdecl;
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2910
var wind: extended;
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2911
begin
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2912
    if CheckLuaParamCount(L, 0, 'GetWind', '') then
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2913
        begin
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2914
        wind:= hwFloat2float((cWindSpeed / cMaxWindSpeed) * 100);
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2915
        if wind < -100 then
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2916
            wind:= -100
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2917
        else if wind > 100 then
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2918
            wind:= 100;
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2919
        lua_pushnumber(L, wind);
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2920
        end
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2921
    else
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2922
        lua_pushnil(L);
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2923
    lc_getwind:= 1
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2924
end;
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  2925
4590
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2926
function lc_maphasborder(L : Plua_State) : LongInt; Cdecl;
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2927
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2928
    if CheckLuaParamCount(L, 0, 'MapHasBorder', '') then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2929
        lua_pushboolean(L, hasBorder)
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2930
    else
4590
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2931
        lua_pushnil(L);
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2932
    lc_maphasborder:= 1
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2933
end;
4869
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2934
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2935
function lc_getgearradius(L : Plua_State) : LongInt; Cdecl;
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2936
var gear : PGear;
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2937
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2938
    if CheckLuaParamCount(L, 1, 'GetGearRadius', 'gearUid') then
4869
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2939
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2940
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
4869
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2941
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2942
            lua_pushnumber(L, gear^.Radius)
4869
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2943
        else
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2944
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2945
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2946
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2947
        lua_pushnil(L); // return value on stack (nil)
4869
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2948
    lc_getgearradius:= 1
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2949
end;
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2950
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2951
function lc_gethoghat(L : Plua_State): LongInt; Cdecl;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2952
var gear : PGear;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2953
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2954
    if CheckLuaParamCount(L, 1, 'GetHogHat', 'gearUid') then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2955
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2956
        gear := GearByUID(Trunc(lua_tonumber(L, 1)));
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  2957
        if (gear <> nil) and ((gear^.Kind = gtHedgehog) or (gear^.Kind = gtGrave)) and (gear^.Hedgehog <> nil) then
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2958
            lua_pushstring(L, str2pchar(gear^.Hedgehog^.Hat))
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2959
        else
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2960
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2961
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2962
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2963
        lua_pushnil(L);
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2964
    lc_gethoghat := 1;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2965
end;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2966
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2967
function lc_sethoghat(L : Plua_State) : LongInt; Cdecl;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2968
var gear : PGear;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2969
    hat: ShortString;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2970
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2971
    if CheckLuaParamCount(L, 2, 'SetHogHat', 'gearUid, hat') then
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2972
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  2973
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2974
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
9748
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  2975
            begin
5549
ccfb9b8ab9d1 sheepluva pointed out there are 2 StrPas in pascal, in different units. Do conversion in LuaPas instead
nemo
parents: 5547
diff changeset
  2976
            hat:= lua_tostring(L, 2);
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2977
            gear^.Hedgehog^.Hat:= hat;
9748
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  2978
            AddFileLog('Changed hat to: '+hat);
7887
e987dff8e5f2 fix reserved hats from scripting
nemo
parents: 7805
diff changeset
  2979
            if (Length(hat) > 39) and (Copy(hat,1,8) = 'Reserved') and (Copy(hat,9,32) = gear^.Hedgehog^.Team^.PlayerHash) then
e987dff8e5f2 fix reserved hats from scripting
nemo
parents: 7805
diff changeset
  2980
                LoadHedgehogHat(gear^.Hedgehog^, 'Reserved/' + Copy(hat,9,Length(hat)-8))
e987dff8e5f2 fix reserved hats from scripting
nemo
parents: 7805
diff changeset
  2981
            else
9748
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  2982
                LoadHedgehogHat(gear^.Hedgehog^, hat)
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  2983
            end
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2984
        end;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2985
    lc_sethoghat:= 0;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2986
end;
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  2987
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  2988
function lc_placesprite(L : Plua_State) : LongInt; Cdecl;
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  2989
var spr   : TSprite;
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  2990
    lf    : Word;
10897
8ea636ce120a Add options to set colouring, behind existing land, and horizontal/vertical flipping to PlaceSprite
nemo
parents: 10818
diff changeset
  2991
    tint  : LongWord;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2992
    i, n : LongInt;
10897
8ea636ce120a Add options to set colouring, behind existing land, and horizontal/vertical flipping to PlaceSprite
nemo
parents: 10818
diff changeset
  2993
    placed, behind, flipHoriz, flipVert : boolean;
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  2994
const
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  2995
    call = 'PlaceSprite';
13778
e2d902745fd5 Fix some syntax errors in internal Lua syntax documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 13764
diff changeset
  2996
    params = 'x, y, sprite, frameIdx, tint, behind, flipHoriz, flipVert [, landFlag, ... ]';
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  2997
begin
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  2998
    placed:= false;
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2999
    if CheckAndFetchLuaParamMinCount(L, 4, call, params, n) then
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3000
        begin
10897
8ea636ce120a Add options to set colouring, behind existing land, and horizontal/vertical flipping to PlaceSprite
nemo
parents: 10818
diff changeset
  3001
        if not lua_isnoneornil(L, 5) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3002
            tint := Trunc(lua_tonumber(L, 5))
10897
8ea636ce120a Add options to set colouring, behind existing land, and horizontal/vertical flipping to PlaceSprite
nemo
parents: 10818
diff changeset
  3003
        else tint := $FFFFFFFF;
8ea636ce120a Add options to set colouring, behind existing land, and horizontal/vertical flipping to PlaceSprite
nemo
parents: 10818
diff changeset
  3004
        if not lua_isnoneornil(L, 6) then
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  3005
            behind := lua_toboolean(L, 6)
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3006
        else behind := false;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3007
        if not lua_isnoneornil(L, 7) then
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  3008
            flipHoriz := lua_toboolean(L, 7)
10897
8ea636ce120a Add options to set colouring, behind existing land, and horizontal/vertical flipping to PlaceSprite
nemo
parents: 10818
diff changeset
  3009
        else flipHoriz := false;
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3010
        if not lua_isnoneornil(L, 8) then
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  3011
            flipVert := lua_toboolean(L, 8)
10897
8ea636ce120a Add options to set colouring, behind existing land, and horizontal/vertical flipping to PlaceSprite
nemo
parents: 10818
diff changeset
  3012
        else flipVert := false;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  3013
        lf:= 0;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  3014
11061
2f1efb11ddf3 Lua API: expose MapFeatureSize during init
sheepluva
parents: 11060
diff changeset
  3015
        // accept any amount of landflags, loop is never executed if n<9
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3016
        for i:= 9 to n do
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3017
            lf:= lf or Trunc(lua_tonumber(L, i));
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3018
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  3019
        n:= LuaToSpriteOrd(L, 3, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  3020
        if n >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  3021
            begin
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3022
            spr:= TSprite(n);
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3023
            if SpritesData[spr].Surface = nil then
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3024
                LuaError(call + ': ' + EnumToStr(spr) + ' cannot be placed! (required information not loaded)' )
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3025
            else
10368
7ebb71a36e95 Forced sprites placing mode, exposed to scripts (not tested at all)
unc0rr
parents: 10347
diff changeset
  3026
                placed:= ForcePlaceOnLand(
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3027
                    Trunc(lua_tonumber(L, 1)) - SpritesData[spr].Width div 2,
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3028
                    Trunc(lua_tonumber(L, 2)) - SpritesData[spr].Height div 2,
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3029
                    spr, Trunc(lua_tonumber(L, 4)), lf, tint, behind, flipHoriz, flipVert);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  3030
            end;
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3031
        end;
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3032
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3033
    lua_pushboolean(L, placed);
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3034
    lc_placesprite:= 1
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3035
end;
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3036
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3037
function lc_erasesprite(L : Plua_State) : LongInt; Cdecl;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3038
var spr   : TSprite;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3039
    lf    : Word;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3040
    i, n : LongInt;
10903
c9a0cdee4267 tweak erase
nemo
parents: 10901
diff changeset
  3041
    eraseOnLFMatch, onlyEraseLF, flipHoriz, flipVert : boolean;
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3042
const
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3043
    call = 'EraseSprite';
13778
e2d902745fd5 Fix some syntax errors in internal Lua syntax documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 13764
diff changeset
  3044
    params = 'x, y, sprite, frameIdx, eraseOnLFMatch, onlyEraseLF, flipHoriz, flipVert [, landFlag, ... ]';
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3045
begin
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3046
    if CheckAndFetchLuaParamMinCount(L, 4, call, params, n) then
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3047
        begin
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3048
        if not lua_isnoneornil(L, 5) then
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  3049
            eraseOnLFMatch := lua_toboolean(L, 5)
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3050
        else eraseOnLFMatch := false;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3051
        if not lua_isnoneornil(L, 6) then
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  3052
            onlyEraseLF := lua_toboolean(L, 6)
10903
c9a0cdee4267 tweak erase
nemo
parents: 10901
diff changeset
  3053
        else onlyEraseLF := false;
c9a0cdee4267 tweak erase
nemo
parents: 10901
diff changeset
  3054
        if not lua_isnoneornil(L, 7) then
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  3055
            flipHoriz := lua_toboolean(L, 7)
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3056
        else flipHoriz := false;
10903
c9a0cdee4267 tweak erase
nemo
parents: 10901
diff changeset
  3057
        if not lua_isnoneornil(L, 8) then
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  3058
            flipVert := lua_toboolean(L, 8)
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3059
        else flipVert := false;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3060
        lf:= 0;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3061
11060
506b6184f4af fix on-code documentation of EraseSprite
sheepluva
parents: 11058
diff changeset
  3062
        // accept any amount of landflags, loop is never executed if n<9
10903
c9a0cdee4267 tweak erase
nemo
parents: 10901
diff changeset
  3063
        for i:= 9 to n do
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3064
            lf:= lf or Trunc(lua_tonumber(L, i));
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3065
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3066
        n:= LuaToSpriteOrd(L, 3, call, params);
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3067
        if n >= 0 then
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3068
            begin
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3069
            spr:= TSprite(n);
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3070
            if SpritesData[spr].Surface = nil then
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3071
                LuaError(call + ': ' + EnumToStr(spr) + ' cannot be placed! (required information not loaded)' )
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3072
            else
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3073
                EraseLand(
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3074
                    Trunc(lua_tonumber(L, 1)) - SpritesData[spr].Width div 2,
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3075
                    Trunc(lua_tonumber(L, 2)) - SpritesData[spr].Height div 2,
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3076
                    spr, Trunc(lua_tonumber(L, 4)), lf, eraseOnLFMatch, onlyEraseLF, flipHoriz, flipVert);
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3077
            end;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3078
        end;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3079
    lc_erasesprite:= 0
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3080
end;
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  3081
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  3082
function lc_placegirder(L : Plua_State) : LongInt; Cdecl;
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3083
var placed: boolean;
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  3084
begin
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3085
    placed:= false;
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3086
    if CheckLuaParamCount(L, 3, 'PlaceGirder', 'x, y, frameIdx') then
10295
ec6b68241575 fix some pas2c related overloading issue
sheepluva
parents: 10294
diff changeset
  3087
        placed:= TryPlaceOnLandSimple(
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3088
            Trunc(lua_tonumber(L, 1)) - SpritesData[sprAmGirder].Width div 2,
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3089
            Trunc(lua_tonumber(L, 2)) - SpritesData[sprAmGirder].Height div 2,
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3090
            sprAmGirder, Trunc(lua_tonumber(L, 3)), true, false);
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3091
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3092
    lua_pushboolean(L, placed);
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  3093
    lc_placegirder:= 1
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  3094
end;
5013
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  3095
12090
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3096
function lc_placerubber(L : Plua_State) : LongInt; Cdecl;
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3097
var placed: boolean;
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3098
begin
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3099
    placed:= false;
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3100
    if CheckLuaParamCount(L, 3, 'PlaceRubber', 'x, y, frameIdx') then
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3101
        placed:= TryPlaceOnLand(
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3102
            Trunc(lua_tonumber(L, 1)) - SpritesData[sprAmRubber].Width div 2,
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3103
            Trunc(lua_tonumber(L, 2)) - SpritesData[sprAmRubber].Height div 2,
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3104
            sprAmRubber, Trunc(lua_tonumber(L, 3)), true, lfBouncy);
12090
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3105
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3106
    lua_pushboolean(L, placed);
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3107
    lc_placerubber:= 1
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3108
end;
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  3109
5013
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  3110
function lc_getcurammotype(L : Plua_State): LongInt; Cdecl;
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  3111
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3112
    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 0, 'GetCurAmmoType', '')) then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3113
        lua_pushnumber(L, ord(CurrentHedgehog^.CurAmmoType))
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
  3114
    else
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3115
        lua_pushnumber(L, ord(amNothing));
5013
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  3116
    lc_getcurammotype := 1;
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  3117
end;
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3118
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3119
function lc_savecampaignvar(L : Plua_State): LongInt; Cdecl;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3120
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3121
    if CheckLuaParamCount(L, 2, 'SaveCampaignVar', 'varname, value') then
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3122
        SendIPC('V!' + lua_tostring(L, 1) + ' ' + lua_tostring(L, 2) + #0);
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3123
    lc_savecampaignvar := 0;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3124
end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3125
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3126
function lc_getcampaignvar(L : Plua_State): LongInt; Cdecl;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3127
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3128
    if CheckLuaParamCount(L, 1, 'GetCampaignVar', 'varname') then
9718
563a34cd8398 unbreak various parts of campaign variable loading/saving
sheepluva
parents: 9670
diff changeset
  3129
        SendIPCAndWaitReply('V?' + lua_tostring(L, 1) + #0);
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3130
    lua_pushstring(L, str2pchar(CampaignVariable));
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3131
    lc_getcampaignvar := 1;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3132
end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3133
14463
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3134
function lc_savemissionvar(L : Plua_State): LongInt; Cdecl;
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3135
begin
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3136
    if CheckLuaParamCount(L, 2, 'SaveMissionVar', 'varname, value') then
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3137
        SendIPC('v!' + lua_tostring(L, 1) + ' ' + lua_tostring(L, 2) + #0);
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3138
    lc_savemissionvar := 0;
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3139
end;
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3140
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3141
function lc_getmissionvar(L : Plua_State): LongInt; Cdecl;
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3142
begin
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3143
    if CheckLuaParamCount(L, 1, 'GetMissionVar', 'varname') then
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3144
        SendIPCAndWaitReply('v?' + lua_tostring(L, 1) + #0);
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3145
    lua_pushstring(L, str2pchar(MissionVariable));
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3146
    lc_getmissionvar := 1;
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3147
end;
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  3148
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3149
function lc_hidehog(L: Plua_State): LongInt; Cdecl;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3150
var gear: PGear;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3151
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3152
    if CheckLuaParamCount(L, 1, 'HideHog', 'gearUid') then
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3153
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3154
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
12360
a775a61e02ab Lua: Fix HideHog causing engine crash when provided with invalid gear ID or hog was hidden
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
  3155
        if (gear <> nil) and (gear^.hedgehog <> nil) then
a775a61e02ab Lua: Fix HideHog causing engine crash when provided with invalid gear ID or hog was hidden
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
  3156
            begin
a775a61e02ab Lua: Fix HideHog causing engine crash when provided with invalid gear ID or hog was hidden
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
  3157
            HideHog(gear^.hedgehog);
a775a61e02ab Lua: Fix HideHog causing engine crash when provided with invalid gear ID or hog was hidden
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
  3158
            lua_pushboolean(L, true);
a775a61e02ab Lua: Fix HideHog causing engine crash when provided with invalid gear ID or hog was hidden
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
  3159
            end
a775a61e02ab Lua: Fix HideHog causing engine crash when provided with invalid gear ID or hog was hidden
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
  3160
        else
a775a61e02ab Lua: Fix HideHog causing engine crash when provided with invalid gear ID or hog was hidden
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
  3161
            lua_pushboolean(L, false);
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3162
        end;
12360
a775a61e02ab Lua: Fix HideHog causing engine crash when provided with invalid gear ID or hog was hidden
Wuzzy <almikes@aol.com>
parents: 12332
diff changeset
  3163
    lc_hidehog := 1;
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3164
end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3165
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3166
function lc_restorehog(L: Plua_State): LongInt; Cdecl;
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8368
diff changeset
  3167
var i, h: LongInt;
8012
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  3168
    uid: LongWord;
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3169
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3170
    if CheckLuaParamCount(L, 1, 'RestoreHog', 'gearUid') then
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3171
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3172
        uid:= LongWord(Trunc(lua_tonumber(L, 1)));
8012
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  3173
        if TeamsCount > 0 then
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  3174
            for i:= 0 to Pred(TeamsCount) do
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  3175
                for h:= 0 to cMaxHHIndex do
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  3176
                    if (TeamsArray[i]^.Hedgehogs[h].GearHidden <> nil) and (TeamsArray[i]^.Hedgehogs[h].GearHidden^.uid = uid) then
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  3177
                        begin
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  3178
                        RestoreHog(@TeamsArray[i]^.Hedgehogs[h]);
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  3179
                        exit(0)
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  3180
                        end
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3181
        end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3182
    lc_restorehog := 0;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3183
end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  3184
13577
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3185
function lc_ishoghidden(L: Plua_State): LongInt; Cdecl;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3186
var i, h: LongInt;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3187
    uid: LongWord;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3188
    gear: PGear;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3189
begin
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3190
    if CheckLuaParamCount(L, 1, 'IsHogHidden', 'gearUid') then
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3191
        begin
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3192
        uid:= LongWord(Trunc(lua_tonumber(L, 1)));
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3193
        gear:= GearByUID(uid);
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3194
        if (gear <> nil) and (gear^.hedgehog <> nil) then
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3195
            begin
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3196
            lua_pushboolean(L, false);
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3197
            lc_ishoghidden:= 1;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3198
            exit;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3199
            end
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3200
        else
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3201
            if TeamsCount > 0 then
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3202
                for i:= 0 to Pred(TeamsCount) do
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3203
                    for h:= 0 to cMaxHHIndex do
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3204
                        if (TeamsArray[i]^.Hedgehogs[h].GearHidden <> nil) and (TeamsArray[i]^.Hedgehogs[h].GearHidden^.uid = uid) then
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3205
                            begin
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3206
                            lua_pushboolean(L, true);
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3207
                            lc_ishoghidden:= 1;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3208
                            exit;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3209
                            end
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3210
        end;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3211
    lua_pushnil(L);
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3212
    lc_ishoghidden:= 1;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3213
end;
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  3214
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3215
// boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3216
function lc_testrectforobstacle(L : Plua_State) : LongInt; Cdecl;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3217
var rtn: Boolean;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3218
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3219
    if CheckLuaParamCount(L, 5, 'TestRectForObstacle', 'x1, y1, x2, y2, landOnly') then
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3220
        begin
10818
f642a28cab0c Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents: 10809
diff changeset
  3221
        rtn:= TestRectangleForObstacle(
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3222
                    Trunc(lua_tonumber(L, 1)),
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3223
                    Trunc(lua_tonumber(L, 2)),
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3224
                    Trunc(lua_tonumber(L, 3)),
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3225
                    Trunc(lua_tonumber(L, 4)),
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3226
                    lua_toboolean(L, 5)
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3227
                    );
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3228
        lua_pushboolean(L, rtn);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  3229
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  3230
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  3231
        lua_pushnil(L); // return value on stack (nil)
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3232
    lc_testrectforobstacle:= 1
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  3233
end;
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3234
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3235
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3236
function lc_getgravity(L : Plua_State) : LongInt; Cdecl;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3237
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3238
    if CheckLuaParamCount(L, 0, 'GetGravity', '') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3239
        lua_pushnumber(L, hwRound(SignAs(_0_5, cGravity) + (cGravity * 50 / cMaxWindSpeed)));
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3240
    lc_getgravity:= 1
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3241
end;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3242
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3243
function lc_setgravity(L : Plua_State) : LongInt; Cdecl;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3244
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3245
    if CheckLuaParamCount(L, 1, 'SetGravity', 'percent') then
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3246
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3247
        cGravity:= _0_02 * Trunc(lua_tonumber(L, 1)) * cMaxWindSpeed;
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3248
        cGravityf:= 0.00025 * Trunc(lua_tonumber(L, 1)) * 0.02
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3249
        end;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3250
    lc_setgravity:= 0
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3251
end;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3252
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3253
function lc_setwaterline(L : Plua_State) : LongInt; Cdecl;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3254
var iterator: PGear;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3255
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3256
    if CheckLuaParamCount(L, 1, 'SetWaterLine', 'waterline') then
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3257
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3258
        cWaterLine:= Trunc(lua_tonumber(L,1));
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3259
        AllInactive:= false;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3260
        iterator:= GearsList;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3261
        while iterator <> nil do
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3262
            begin
9917
nemo
parents: 9914
diff changeset
  3263
            if not (iterator^.Kind in [gtPortal, gtAirAttack]) and (iterator^.Message and (gmAllStoppable or gmLJump or gmHJump) = 0) then
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3264
                begin
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3265
                iterator^.Active:= true;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3266
                if iterator^.dY.QWordValue = 0 then iterator^.dY.isNegative:= false;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3267
                iterator^.State:= iterator^.State or gstMoving;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3268
                DeleteCI(iterator)
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3269
                end;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3270
            iterator:= iterator^.NextGear
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3271
            end
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3272
        end;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3273
    lc_setwaterline:= 0
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3274
end;
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3275
11066
f10a4bdfa0f4 fix internal function name
sheepluva
parents: 11062
diff changeset
  3276
function lc_setgearaihints(L : Plua_State) : LongInt; Cdecl;
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3277
var gear: PGear;
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3278
begin
13036
434bcdd9562c Fix inconsistent name of SetGearAIHints
Wuzzy <Wuzzy2@mail.ru>
parents: 13020
diff changeset
  3279
    if CheckLuaParamCount(L, 2, 'SetGearAIHints', 'gearUid, aiHints') then
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3280
        begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3281
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3282
        if gear <> nil then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3283
            gear^.aihints:= Trunc(lua_tonumber(L, 2));
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3284
        end;
11066
f10a4bdfa0f4 fix internal function name
sheepluva
parents: 11062
diff changeset
  3285
    lc_setgearaihints:= 0
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3286
end;
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3287
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  3288
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  3289
function lc_hedgewarsscriptload(L : Plua_State) : LongInt; Cdecl;
13726
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3290
var success : boolean;
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3291
    n : LongInt;
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  3292
begin
14283
9548edd9ebcf uninitialised values
nemo
parents: 14219
diff changeset
  3293
	success:= false;
13726
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3294
    if CheckAndFetchParamCount(L, 1, 2, 'HedgewarsScriptLoad', 'scriptPath [, mustExist]', n) then
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3295
        begin
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3296
        if n = 1 then
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3297
            success:= ScriptLoad(lua_tostring(L, 1), true)
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3298
        else
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3299
            success:= ScriptLoad(lua_tostring(L, 1), lua_toboolean(L, 2));
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3300
        end
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  3301
    else
13726
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3302
        success:= false;
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3303
    lua_pushboolean(L, success);
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3304
    lc_hedgewarsscriptload:= 1;
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  3305
end;
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  3306
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  3307
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  3308
function lc_declareachievement(L : Plua_State) : LongInt; Cdecl;
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  3309
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  3310
    if CheckLuaParamCount(L, 4, 'DeclareAchievement', 'achievementId, teamname, location, value') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3311
        declareAchievement(lua_tostring(L, 1), lua_tostring(L, 2), lua_tostring(L, 3), Trunc(lua_tonumber(L, 4)));
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  3312
    lc_declareachievement:= 0
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  3313
end;
9988
317d46a2afd2 simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents: 9987
diff changeset
  3314
11846
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3315
function lc_getammoname(L : Plua_state) : LongInt; Cdecl;
11945
1e58845fa3c1 Allow to ignore overwritten ammo name in GetAmmoName
Wuzzy <almikes@aol.com>
parents: 11944
diff changeset
  3316
var np, at: LongInt;
1e58845fa3c1 Allow to ignore overwritten ammo name in GetAmmoName
Wuzzy <almikes@aol.com>
parents: 11944
diff changeset
  3317
    ignoreOverwrite: Boolean;
11846
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3318
const call = 'GetAmmoName';
11945
1e58845fa3c1 Allow to ignore overwritten ammo name in GetAmmoName
Wuzzy <almikes@aol.com>
parents: 11944
diff changeset
  3319
      params = 'ammoType [, ignoreOverwrite ]';
11846
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3320
begin
11945
1e58845fa3c1 Allow to ignore overwritten ammo name in GetAmmoName
Wuzzy <almikes@aol.com>
parents: 11944
diff changeset
  3321
    if CheckAndFetchParamCountRange(L, 1, 2, call, params, np) then
11846
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3322
        begin
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3323
        at:= LuaToAmmoTypeOrd(L, 1, call, params);
11945
1e58845fa3c1 Allow to ignore overwritten ammo name in GetAmmoName
Wuzzy <almikes@aol.com>
parents: 11944
diff changeset
  3324
        ignoreOverwrite := false;
1e58845fa3c1 Allow to ignore overwritten ammo name in GetAmmoName
Wuzzy <almikes@aol.com>
parents: 11944
diff changeset
  3325
        if np > 1 then
1e58845fa3c1 Allow to ignore overwritten ammo name in GetAmmoName
Wuzzy <almikes@aol.com>
parents: 11944
diff changeset
  3326
            ignoreOverwrite := lua_toboolean(L, 2);
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3327
        if at >= 0 then
11945
1e58845fa3c1 Allow to ignore overwritten ammo name in GetAmmoName
Wuzzy <almikes@aol.com>
parents: 11944
diff changeset
  3328
            if (not ignoreOverwrite) and (length(trluaammo[Ammoz[TAmmoType(at)].NameId]) > 0) then
11944
87edf67f2107 GetAmmoName now returns ammo name overwritten by SetAmmoTexts
Wuzzy <almikes@aol.com>
parents: 11941
diff changeset
  3329
                lua_pushstring(L, PChar(trluaammo[Ammoz[TAmmoType(at)].NameId]))
87edf67f2107 GetAmmoName now returns ammo name overwritten by SetAmmoTexts
Wuzzy <almikes@aol.com>
parents: 11941
diff changeset
  3330
            else
87edf67f2107 GetAmmoName now returns ammo name overwritten by SetAmmoTexts
Wuzzy <almikes@aol.com>
parents: 11941
diff changeset
  3331
                lua_pushstring(L, PChar(trammo[Ammoz[TAmmoType(at)].NameId]));
11846
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3332
        end
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3333
    else
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3334
        lua_pushnil(L);
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3335
    lc_getammoname:= 1;
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3336
end;
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  3337
13371
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3338
function lc_getammotimer(L : Plua_state) : LongInt; Cdecl;
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3339
var at: LongInt;
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3340
    weapon: PAmmo;
13373
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3341
    gear: PGear;
13371
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3342
const call = 'GetAmmoTimer';
13373
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3343
      params = 'gearUid, ammoType';
13371
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3344
begin
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3345
    if CheckLuaParamCount(L, 2, call, params) then
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3346
        begin
13373
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3347
        gear:= GearByUID(Trunc(lua_tonumber(L, 1)));
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3348
        if (gear <> nil) and (gear^.Hedgehog <> nil) then
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3349
            begin
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3350
            at:= LuaToAmmoTypeOrd(L, 2, call, params);
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3351
            weapon:= GetAmmoEntry(gear^.Hedgehog^, TAmmoType(at));
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3352
            if (Ammoz[TAmmoType(at)].Ammo.Propz and ammoprop_Timerable) <> 0 then
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3353
                lua_pushnumber(L, weapon^.Timer)
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3354
            else
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3355
                lua_pushnil(L);
0a93948e8ec7 Fix GetAmmoTimer implementation, swap arguments
Wuzzy <Wuzzy2@mail.ru>
parents: 13371
diff changeset
  3356
            end
13371
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3357
        else
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3358
            lua_pushnil(L);
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3359
        end
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3360
    else
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3361
        lua_pushnil(L);
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3362
    lc_getammotimer:= 1;
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3363
end;
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  3364
12929
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3365
function lc_setvampiric(L : Plua_state) : LongInt; Cdecl;
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3366
begin
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3367
    if CheckLuaParamCount(L, 1, 'SetVampiric', 'bool') then
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3368
        cVampiric := lua_toboolean(L, 1);
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3369
    lc_setvampiric := 0;
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3370
end;
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3371
13576
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3372
function lc_getvampiric(L : Plua_state) : LongInt; Cdecl;
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3373
begin
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3374
    lua_pushboolean(L, cVampiric);
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3375
    lc_getvampiric := 1;
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3376
end;
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3377
12929
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3378
function lc_setlasersight(L : Plua_state) : LongInt; Cdecl;
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3379
begin
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3380
    if CheckLuaParamCount(L, 1, 'SetLaserSight', 'bool') then
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3381
        cLaserSighting:= lua_toboolean(L, 1);
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3382
    lc_setlasersight:= 0;
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3383
end;
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  3384
13576
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3385
function lc_getlasersight(L : Plua_state) : LongInt; Cdecl;
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3386
begin
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3387
    lua_pushboolean(L, cLaserSighting);
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3388
    lc_getlasersight:= 1;
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3389
end;
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  3390
13270
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3391
function lc_explode(L : Plua_state) : LongInt; Cdecl;
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3392
var mask: LongWord;
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3393
    n: LongInt;
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3394
begin
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3395
    if CheckAndFetchParamCount(L, 3, 4, 'Explode', 'x, y, radius[, options]', n) then
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3396
        if CurrentHedgehog <> nil then
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3397
            begin
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3398
            mask:= EXPLAutoSound;
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3399
            if (n = 4) then
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3400
                mask:= Trunc(lua_tonumber(L, 4));
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3401
            doMakeExplosion(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)), Trunc(lua_tonumber(L, 3)), CurrentHedgehog, mask);
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3402
            lua_pushboolean(L, true);
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3403
            end
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3404
        else
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3405
            lua_pushboolean(L, false)
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3406
    else
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3407
        lua_pushboolean(L, false);
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3408
    lc_explode:= 1;
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3409
end;
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  3410
13739
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3411
function lc_setturntimeleft(L : Plua_State) : LongInt; Cdecl;
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3412
var number: Int64;
13739
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3413
begin
13778
e2d902745fd5 Fix some syntax errors in internal Lua syntax documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 13764
diff changeset
  3414
    if CheckLuaParamCount(L, 1, 'SetTurnTimeLeft', 'newTurnTimeLeft') then
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3415
        begin
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3416
        number:= Trunc(lua_tonumber(L, 1));
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3417
        if number < 0 then
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3418
            number:= 0;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3419
        if number > cMaxTurnTime then
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3420
            number:= cMaxTurnTime;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3421
        // The real TurnTimeLeft will be set in SetGlobals
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3422
        PendingTurnTimeLeft:= number;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3423
        isPendingTurnTimeLeft:= true;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3424
        end;
13739
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3425
    lc_setturntimeleft:= 0;
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3426
end;
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3427
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3428
function lc_setreadytimeleft(L : Plua_State) : LongInt; Cdecl;
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3429
var number: Int64;
13739
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3430
begin
13778
e2d902745fd5 Fix some syntax errors in internal Lua syntax documentation
Wuzzy <Wuzzy2@mail.ru>
parents: 13764
diff changeset
  3431
    if CheckLuaParamCount(L, 1, 'SetReadyTimeLeft', 'newReadyTimeLeft') then
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3432
        begin
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3433
        number:= Trunc(lua_tonumber(L, 1));
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3434
        if number < 0 then
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3435
            number:= 0;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3436
        if number > cMaxTurnTime then
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3437
            number:= cMaxTurnTime;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3438
        // The real ReadyTimeLeft will be set in SetGlobals
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3439
        PendingReadyTimeLeft:= number;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3440
        isPendingReadyTimeLeft:= true;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3441
        end;
13739
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3442
    lc_setreadytimeleft:= 0;
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3443
end;
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3444
14394
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3445
function lc_setturntimepaused(L : Plua_State) : LongInt; Cdecl;
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3446
begin
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3447
    if CheckLuaParamCount(L, 1, 'SetTurnTimePaused', 'isPaused') then
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3448
        LuaClockPaused:= lua_toboolean(L, 1);
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3449
    lc_setturntimepaused:= 0;
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3450
end;
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3451
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3452
function lc_getturntimepaused(L : Plua_State) : LongInt; Cdecl;
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3453
begin
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3454
    if CheckLuaParamCount(L, 0, 'GetTurnTimePaused', '') then
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3455
        lua_pushboolean(L, LuaClockPaused)
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3456
    else
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3457
        lua_pushnil(L);
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3458
    lc_getturntimepaused:= 1;
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3459
end;
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  3460
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3461
function lc_startghostpoints(L : Plua_State) : LongInt; Cdecl;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3462
begin
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3463
    if CheckLuaParamCount(L, 1, 'StartGhostPoints', 'count') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3464
        startGhostPoints(Trunc(lua_tonumber(L, 1)));
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3465
    lc_startghostpoints:= 0
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3466
end;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3467
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3468
function lc_dumppoint(L : Plua_State) : LongInt; Cdecl;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3469
begin
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3470
    if CheckLuaParamCount(L, 2, 'DumpPoint', 'x, y') then
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3471
        dumpPoint(Trunc(lua_tonumber(L, 1)), Trunc(lua_tonumber(L, 2)));
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3472
    lc_dumppoint:= 0
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3473
end;
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  3474
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3475
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3476
procedure ScriptFlushPoints();
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3477
begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3478
    ParseCommand('draw ' + PointsBuffer, true, true);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3479
    PointsBuffer:= '';
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3480
end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3481
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3482
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3483
function lc_addPoint(L : Plua_State) : LongInt; Cdecl;
10660
79fa79c77c38 fix size of PtrInt. enable tests for pas2c (all passing now)
sheepluva
parents: 10634
diff changeset
  3484
var np, param: LongInt;
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3485
begin
10613
f2597a21f562 update changelog
sheepluva
parents: 10611
diff changeset
  3486
    if CheckAndFetchParamCountRange(L, 2, 4, 'AddPoint', 'x, y [, width [, erase] ]', np) then
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3487
        begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3488
        // x
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3489
        param:= LongInt(Trunc(lua_tonumber(L,1)));
10660
79fa79c77c38 fix size of PtrInt. enable tests for pas2c (all passing now)
sheepluva
parents: 10634
diff changeset
  3490
        PointsBuffer:= PointsBuffer + char((param shr 8) and $FF);
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3491
        PointsBuffer:= PointsBuffer + char((param and $FF));
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3492
        // y
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3493
        param:= LongInt(Trunc(lua_tonumber(L,2)));
10660
79fa79c77c38 fix size of PtrInt. enable tests for pas2c (all passing now)
sheepluva
parents: 10634
diff changeset
  3494
        PointsBuffer:= PointsBuffer + char((param shr 8) and $FF);
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3495
        PointsBuffer:= PointsBuffer + char((param and $FF));
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3496
        // width
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3497
        if np > 2 then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3498
            begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3499
            param:= Trunc(lua_tonumber(L,3));
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3500
            param:= (param or $80);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3501
            // erase
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3502
            if (np > 3) and lua_toboolean(L, 4) then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3503
                param:= (param or $40);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3504
            PointsBuffer:= PointsBuffer + char(param);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3505
            end
10615
e3dcb235a354 fix some things I messed up with the drawing functions
sheepluva
parents: 10613
diff changeset
  3506
        // no width defined
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3507
        else
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3508
            PointsBuffer:= PointsBuffer + char(0);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3509
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3510
        // flush before shortstring limit length is reached
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3511
        if length(PointsBuffer) > 245 then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3512
            ScriptFlushPoints();
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3513
        end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3514
    lc_addPoint:= 0
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3515
end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3516
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3517
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3518
function lc_flushPoints(L : Plua_State) : LongInt; Cdecl;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3519
begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3520
    if CheckLuaParamCount(L, 0, 'FlushPoints', '') then
10615
e3dcb235a354 fix some things I messed up with the drawing functions
sheepluva
parents: 10613
diff changeset
  3521
        if length(PointsBuffer) > 0 then
e3dcb235a354 fix some things I messed up with the drawing functions
sheepluva
parents: 10613
diff changeset
  3522
            ScriptFlushPoints();
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3523
    lc_flushPoints:= 0
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3524
end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3525
10618
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3526
// stuff for lua tests
9988
317d46a2afd2 simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents: 9987
diff changeset
  3527
function lc_endluatest(L : Plua_State) : LongInt; Cdecl;
10618
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3528
var rstring: shortstring;
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3529
const
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3530
    call = 'EndLuaTest';
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3531
    params = 'TEST_SUCCESSFUL or TEST_FAILED';
9988
317d46a2afd2 simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents: 9987
diff changeset
  3532
begin
10618
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3533
    if CheckLuaParamCount(L, 1, call, params) then
9988
317d46a2afd2 simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents: 9987
diff changeset
  3534
        begin
10618
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3535
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3536
        case Trunc(lua_tonumber(L, 1)) of
10618
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3537
            HaltTestSuccess : rstring:= 'Success';
11617
aed348042a77 fix check for wrong value
sheepluva
parents: 11569
diff changeset
  3538
            HaltTestFailed: rstring:= 'FAILED';
10618
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3539
        else
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3540
            begin
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3541
            LuaCallError('Parameter must be either ' + params, call, params);
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3542
            exit(0);
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3543
            end;
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3544
        end;
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3545
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3546
        if cTestLua then
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3547
            begin
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3548
            WriteLnToConsole('Lua test finished, result: ' + rstring);
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3549
            halt(Trunc(lua_tonumber(L, 1)));
10618
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3550
            end
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3551
        else LuaError('Not in lua test mode, engine will keep running. Reported test result: ' + rstring);
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3552
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3553
        end;
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  3554
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  3555
    lc_endluatest:= 0;
9988
317d46a2afd2 simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents: 9987
diff changeset
  3556
end;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3557
///////////////////
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3558
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3559
procedure ScriptPrintStack;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3560
var n, i : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3561
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3562
    n:= lua_gettop(luaState);
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  3563
    WriteLnToConsole('Lua: Stack (' + inttostr(n) + ' elements):');
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3564
    for i:= 1 to n do
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3565
        if not lua_isboolean(luaState, i) then
5549
ccfb9b8ab9d1 sheepluva pointed out there are 2 StrPas in pascal, in different units. Do conversion in LuaPas instead
nemo
parents: 5547
diff changeset
  3566
            WriteLnToConsole('Lua:  ' + inttostr(i) + ': ' + lua_tostring(luaState, i))
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3567
        else if lua_toboolean(luaState, i) then
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  3568
            WriteLnToConsole('Lua:  ' + inttostr(i) + ': true')
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3569
        else
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  3570
            WriteLnToConsole('Lua:  ' + inttostr(i) + ': false');
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3571
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3572
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3573
procedure ScriptClearStack;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3574
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3575
    lua_settop(luaState, 0)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3576
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3577
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3578
procedure ScriptSetNil(name : shortstring);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3579
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3580
    lua_pushnil(luaState);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3581
    lua_setglobal(luaState, Str2PChar(name));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3582
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3583
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3584
procedure ScriptSetInteger(name : shortstring; value : LongInt);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3585
begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3586
    lua_pushnumber(luaState, value);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3587
    lua_setglobal(luaState, Str2PChar(name));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3588
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3589
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3590
procedure ScriptSetString(name : shortstring; value : shortstring);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3591
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3592
    lua_pushstring(luaState, Str2PChar(value));
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3593
    lua_setglobal(luaState, Str2PChar(name));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3594
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3595
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3596
function ScriptGetInteger(name : shortstring) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3597
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3598
    lua_getglobal(luaState, Str2PChar(name));
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  3599
    ScriptGetInteger:= Trunc(lua_tonumber(luaState, -1));
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3600
    lua_pop(luaState, 1);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3601
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3602
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3603
function ScriptGetString(name : shortstring) : shortstring;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3604
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3605
    lua_getglobal(luaState, Str2PChar(name));
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3606
    ScriptGetString:= lua_tostring(luaState, -1);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3607
    lua_pop(luaState, 1);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3608
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3609
12749
1df909b46c05 Lua API: Fix Goals text being cut off at ca. 255 characters
Wuzzy <Wuzzy2@mail.ru>
parents: 12683
diff changeset
  3610
function ScriptGetAnsiString(name : shortstring) : ansistring;
1df909b46c05 Lua API: Fix Goals text being cut off at ca. 255 characters
Wuzzy <Wuzzy2@mail.ru>
parents: 12683
diff changeset
  3611
begin
1df909b46c05 Lua API: Fix Goals text being cut off at ca. 255 characters
Wuzzy <Wuzzy2@mail.ru>
parents: 12683
diff changeset
  3612
    lua_getglobal(luaState, Str2PChar(name));
1df909b46c05 Lua API: Fix Goals text being cut off at ca. 255 characters
Wuzzy <Wuzzy2@mail.ru>
parents: 12683
diff changeset
  3613
    ScriptGetAnsiString:= lua_tostringa(luaState, -1);
1df909b46c05 Lua API: Fix Goals text being cut off at ca. 255 characters
Wuzzy <Wuzzy2@mail.ru>
parents: 12683
diff changeset
  3614
    lua_pop(luaState, 1);
1df909b46c05 Lua API: Fix Goals text being cut off at ca. 255 characters
Wuzzy <Wuzzy2@mail.ru>
parents: 12683
diff changeset
  3615
end;
1df909b46c05 Lua API: Fix Goals text being cut off at ca. 255 characters
Wuzzy <Wuzzy2@mail.ru>
parents: 12683
diff changeset
  3616
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3617
procedure ScriptOnPreviewInit;
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3618
begin
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3619
// not required if there is no script to run
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3620
if not ScriptLoaded then
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3621
    exit;
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3622
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3623
ScriptSetString('Seed', cSeed);
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3624
ScriptSetInteger('TemplateFilter', cTemplateFilter);
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3625
ScriptSetInteger('TemplateNumber', LuaTemplateNumber);
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
  3626
ScriptSetInteger('MapGen', ord(cMapGen));
11062
46f293e8cbfb also expose MapFeatureSize in onPreviewInit
sheepluva
parents: 11061
diff changeset
  3627
ScriptSetInteger('MapFeatureSize', cFeatureSize);
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3628
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3629
ScriptCall('onPreviewInit');
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3630
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3631
// pop game variables
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3632
ParseCommand('seed ' + ScriptGetString('Seed'), true, true);
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3633
cTemplateFilter  := ScriptGetInteger('TemplateFilter');
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3634
LuaTemplateNumber:= ScriptGetInteger('TemplateNumber');
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
  3635
cMapGen          := TMapGen(ScriptGetInteger('MapGen'));
11062
46f293e8cbfb also expose MapFeatureSize in onPreviewInit
sheepluva
parents: 11061
diff changeset
  3636
cFeatureSize     := ScriptGetInteger('MapFeatureSize');
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3637
end;
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  3638
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3639
procedure ScriptOnGameInit;
6578
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3640
var i, j, k: LongInt;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3641
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3642
// not required if there is no script to run
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3643
if not ScriptLoaded then
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3644
    exit;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3645
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3646
// push game variables so they may be modified by the script
13216
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3647
ScriptSetInteger('CursorX', NoPointX);
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3648
ScriptSetInteger('CursorY', NoPointX);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3649
ScriptSetInteger('GameFlags', GameFlags);
11879
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11849
diff changeset
  3650
ScriptSetInteger('WorldEdge', ord(WorldEdge));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3651
ScriptSetString('Seed', cSeed);
5676
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  3652
ScriptSetInteger('TemplateFilter', cTemplateFilter);
7567
da2aa8355d91 allow lua to specify template by number
nemo
parents: 7546
diff changeset
  3653
ScriptSetInteger('TemplateNumber', LuaTemplateNumber);
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
  3654
ScriptSetInteger('MapGen', ord(cMapGen));
11061
2f1efb11ddf3 Lua API: expose MapFeatureSize during init
sheepluva
parents: 11060
diff changeset
  3655
ScriptSetInteger('MapFeatureSize', cFeatureSize);
5583
63b274a4fb01 At mikade's request, expose screenheight/screenwidth and allow setting tag zoom level
nemo
parents: 5554
diff changeset
  3656
ScriptSetInteger('ScreenHeight', cScreenHeight);
63b274a4fb01 At mikade's request, expose screenheight/screenwidth and allow setting tag zoom level
nemo
parents: 5554
diff changeset
  3657
ScriptSetInteger('ScreenWidth', cScreenWidth);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3658
ScriptSetInteger('TurnTime', cHedgehogTurnTime);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3659
ScriptSetInteger('CaseFreq', cCaseFactor);
13627
605767bbd022 Move max. number of crate spawns into variable
Wuzzy <Wuzzy2@mail.ru>
parents: 13618
diff changeset
  3660
ScriptSetInteger('MaxCaseDrops', cMaxCaseDrops);
4162
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  3661
ScriptSetInteger('HealthCaseProb', cHealthCaseProb);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  3662
ScriptSetInteger('HealthCaseAmount', cHealthCaseAmount);
14522
d0441c7e9000 Lua: Add InitHealth, read-only variable containing the initial hog health setting
Wuzzy <Wuzzy2@mail.ru>
parents: 14484
diff changeset
  3663
ScriptSetInteger('InitHealth', cInitHealth);
4221
a1bf0f6b0d65 added missing game modifiers to lua
Henek
parents: 4219
diff changeset
  3664
ScriptSetInteger('DamagePercent', cDamagePercent);
6557
e3cad9020778 Push RopePercent to lua to fix rope if not set
enveezee
parents: 6543
diff changeset
  3665
ScriptSetInteger('RopePercent', cRopePercent);
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 3999
diff changeset
  3666
ScriptSetInteger('MinesNum', cLandMines);
4221
a1bf0f6b0d65 added missing game modifiers to lua
Henek
parents: 4219
diff changeset
  3667
ScriptSetInteger('MinesTime', cMinesTime);
a1bf0f6b0d65 added missing game modifiers to lua
Henek
parents: 4219
diff changeset
  3668
ScriptSetInteger('MineDudPercent', cMineDudPercent);
11963
0c1420aaa59e Expose number of air mines in Lua variable AirMinesNum
Wuzzy <almikes@aol.com>
parents: 11945
diff changeset
  3669
ScriptSetInteger('AirMinesNum', cAirMines);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3670
ScriptSetInteger('Explosives', cExplosives);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3671
ScriptSetInteger('Delay', cInactDelay);
3774
af0e68ca273e Engine:
smaxx
parents: 3761
diff changeset
  3672
ScriptSetInteger('Ready', cReadyDelay);
3197
smxx
parents: 3058
diff changeset
  3673
ScriptSetInteger('SuddenDeathTurns', cSuddenDTurns);
4162
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  3674
ScriptSetInteger('WaterRise', cWaterRise);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  3675
ScriptSetInteger('HealthDecrease', cHealthDecrease);
9836
00cbbb195f11 Rework of No Gravity script:
unc0rr
parents: 9815
diff changeset
  3676
ScriptSetInteger('GetAwayTime', cGetAwayTime);
12301
46e1e25fec5e Lua variable: AmmoTypeMax (maximum ammo type ID for iterating)
Wuzzy <almikes@aol.com>
parents: 12294
diff changeset
  3677
ScriptSetInteger('AmmoTypeMax', Ord(High(TAmmoType)));
6828
6a5d33bff0b0 At mikade's request. give scripting access to the map name prior to override.
nemo
parents: 6790
diff changeset
  3678
ScriptSetString('Map', cMapName);
11737
571d06a86bb6 fix for issue 71: Lua API: “Theme” variable is set to empty string initially
Wuzzy <almikes@aol.com>
parents: 11736
diff changeset
  3679
ScriptSetString('Theme', Theme);
4883
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4882
diff changeset
  3680
ScriptSetString('Goals', '');
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4882
diff changeset
  3681
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3682
ScriptCall('onGameInit');
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3683
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3684
// pop game variables
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  3685
ParseCommand('seed ' + ScriptGetString('Seed'), true, true);
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3686
cTemplateFilter  := ScriptGetInteger('TemplateFilter');
7567
da2aa8355d91 allow lua to specify template by number
nemo
parents: 7546
diff changeset
  3687
LuaTemplateNumber:= ScriptGetInteger('TemplateNumber');
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
  3688
cMapGen          := TMapGen(ScriptGetInteger('MapGen'));
11061
2f1efb11ddf3 Lua API: expose MapFeatureSize during init
sheepluva
parents: 11060
diff changeset
  3689
cFeatureSize     := ScriptGetInteger('MapFeatureSize');
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3690
GameFlags        := ScriptGetInteger('GameFlags');
11879
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11849
diff changeset
  3691
WorldEdge        := TWorldEdge(ScriptGetInteger('WorldEdge'));
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3692
cHedgehogTurnTime:= ScriptGetInteger('TurnTime');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3693
cCaseFactor      := ScriptGetInteger('CaseFreq');
13627
605767bbd022 Move max. number of crate spawns into variable
Wuzzy <Wuzzy2@mail.ru>
parents: 13618
diff changeset
  3694
cMaxCaseDrops    := ScriptGetInteger('MaxCaseDrops');
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3695
cHealthCaseProb  := ScriptGetInteger('HealthCaseProb');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3696
cHealthCaseAmount:= ScriptGetInteger('HealthCaseAmount');
14522
d0441c7e9000 Lua: Add InitHealth, read-only variable containing the initial hog health setting
Wuzzy <Wuzzy2@mail.ru>
parents: 14484
diff changeset
  3697
cInitHealth      := ScriptGetInteger('InitHealth');
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3698
cDamagePercent   := ScriptGetInteger('DamagePercent');
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  3699
cRopePercent     := ScriptGetInteger('RopePercent');
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3700
cLandMines       := ScriptGetInteger('MinesNum');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3701
cMinesTime       := ScriptGetInteger('MinesTime');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3702
cMineDudPercent  := ScriptGetInteger('MineDudPercent');
11963
0c1420aaa59e Expose number of air mines in Lua variable AirMinesNum
Wuzzy <almikes@aol.com>
parents: 11945
diff changeset
  3703
cAirMines        := ScriptGetInteger('AirMinesNum');
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3704
cExplosives      := ScriptGetInteger('Explosives');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3705
cInactDelay      := ScriptGetInteger('Delay');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3706
cReadyDelay      := ScriptGetInteger('Ready');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3707
cSuddenDTurns    := ScriptGetInteger('SuddenDeathTurns');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3708
cWaterRise       := ScriptGetInteger('WaterRise');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3709
cHealthDecrease  := ScriptGetInteger('HealthDecrease');
9836
00cbbb195f11 Rework of No Gravity script:
unc0rr
parents: 9815
diff changeset
  3710
cGetAwayTime     := ScriptGetInteger('GetAwayTime');
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  3711
7771
ce6d4dd0c780 fix trophyrace. also tweak it a little
nemo
parents: 7754
diff changeset
  3712
if cMapName <> ScriptGetString('Map') then
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  3713
    ParseCommand('map ' + ScriptGetString('Map'), true, true);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3714
if ScriptGetString('Theme') <> '' then
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  3715
    ParseCommand('theme ' + ScriptGetString('Theme'), true, true);
12749
1df909b46c05 Lua API: Fix Goals text being cut off at ca. 255 characters
Wuzzy <Wuzzy2@mail.ru>
parents: 12683
diff changeset
  3716
LuaGoals:= ScriptGetAnsiString('Goals');
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3717
6578
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3718
// Support lua changing the ammo layout - assume all hogs have same ammo, note this might leave a few ammo stores lying around.
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3719
k:= 0;
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3720
if (GameFlags and gfSharedAmmo) <> 0 then
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3721
    for i:= 0 to Pred(ClansCount) do
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3722
        for j:= 0 to Pred(ClansArray[i]^.TeamsNumber) do
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3723
            for k:= 0 to Pred(ClansArray[i]^.Teams[j]^.HedgehogsNumber) do
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3724
                ClansArray[i]^.Teams[j]^.Hedgehogs[k].AmmoStore:= i
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3725
else if (GameFlags and gfPerHogAmmo) <> 0 then
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3726
    for i:= 0 to Pred(TeamsCount) do
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3727
        for j:= 0 to Pred(TeamsArray[i]^.HedgehogsNumber) do
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3728
            begin
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3729
            TeamsArray[i]^.Hedgehogs[j].AmmoStore:= k;
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3730
            if StoreCnt-1 < k then AddAmmoStore;
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3731
            inc(k)
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3732
            end
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  3733
else
6578
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3734
    for i:= 0 to Pred(TeamsCount) do
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3735
        begin
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3736
        for j:= 0 to Pred(TeamsArray[i]^.HedgehogsNumber) do
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3737
            TeamsArray[i]^.Hedgehogs[j].AmmoStore:= k;
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3738
        if StoreCnt-1 < k then AddAmmoStore;
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3739
        inc(k)
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  3740
        end;
6743
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  3741
if ScriptExists('onAmmoStoreInit') or ScriptExists('onNewAmmoStore') then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3742
    begin
6740
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  3743
    // reset ammostore (quite unclean, but works?)
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  3744
    uAmmos.freeModule;
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  3745
    uAmmos.initModule;
6743
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  3746
    if ScriptExists('onAmmoStoreInit') then
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  3747
        begin
6752
nemo
parents: 6746
diff changeset
  3748
        ScriptPrepareAmmoStore;
6743
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  3749
        ScriptCall('onAmmoStoreInit');
6746
nemo
parents: 6743
diff changeset
  3750
        SetAmmoLoadout(ScriptAmmoLoadout);
nemo
parents: 6743
diff changeset
  3751
        SetAmmoProbability(ScriptAmmoProbability);
nemo
parents: 6743
diff changeset
  3752
        SetAmmoDelay(ScriptAmmoDelay);
nemo
parents: 6743
diff changeset
  3753
        SetAmmoReinforcement(ScriptAmmoReinforcement)
6743
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  3754
        end;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3755
    ScriptApplyAmmoStore
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3756
    end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3757
4235
6b1dfbd60a45 added TeamsCount and TotalTurns to lua as requested by mikade
Henek
parents: 4221
diff changeset
  3758
ScriptSetInteger('ClansCount', ClansCount);
9567
42bc1b58a242 This test is intended to avoid repeatedly calling 5 ScriptSetIntegers each script call, that won't ever change after the map is created.
nemo
parents: 9531
diff changeset
  3759
ScriptSetInteger('TeamsCount', TeamsCount);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3760
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3761
5825
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3762
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3763
// Update values of screen dimensions and allow script to react to resolution change
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3764
procedure ScriptOnScreenResize();
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3765
begin
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3766
ScriptSetInteger('ScreenHeight', cScreenHeight);
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3767
ScriptSetInteger('ScreenWidth', cScreenWidth);
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3768
ScriptCall('onScreenResize');
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3769
end;
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3770
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  3771
// custom script loader via physfs, passed to lua_load
8034
fc032c0f7b23 Implement reader in C ffs
unc0rr
parents: 8031
diff changeset
  3772
const BUFSIZE = 1024;
5825
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  3773
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3774
var inComment: boolean;
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3775
var inQuote: boolean;
12459
06bf46238a89 ranges for alnum were silly. also lets not fail to same value
nemo
parents: 12458
diff changeset
  3776
var locSum: LongWord;
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3777
var braceCount: LongWord;
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3778
var wordCount: LongWord;
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3779
var lastChar: char;
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3780
function  ScriptReader(L: Plua_State; f: PFSFile; sz: Psize_t) : PChar; Cdecl;
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3781
var mybuf: PChar;
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3782
    i: LongInt;
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3783
begin
13842
35ba3a550cad Backed out changeset 5f6208031658 (fixes 652)
Wuzzy <Wuzzy2@mail.ru>
parents: 13832
diff changeset
  3784
    SetRandomSeed(cSeed,true);
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3785
    mybuf := physfsReader(L, f, sz);
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3786
    if (mybuf <> nil) and ((sz^) > 0) then
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3787
        begin
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3788
            for i:= 0 to sz^-1 do
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3789
                begin
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3790
                    if (lastChar = '-') and (mybuf[i] = '-') then
14216
3d4a5a10d2cd lua comment handling is seriously WTF, but let's at least allow some partial single line
nemo
parents: 14167
diff changeset
  3791
                        inComment := true
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3792
                    else if not inComment and (byte(mybuf[i]) > $20) and (byte(mybuf[i]) < $7F) and (mybuf[i]<>'-') then
12494
1b483882b60f mix it up some more. also had screwed up -- inside quotes
nemo
parents: 12493
diff changeset
  3793
                        begin
1b483882b60f mix it up some more. also had screwed up -- inside quotes
nemo
parents: 12493
diff changeset
  3794
                        AddRandomness(byte(mybuf[i]));  // wish I had the seed...
1b483882b60f mix it up some more. also had screwed up -- inside quotes
nemo
parents: 12493
diff changeset
  3795
                        CheckSum := CheckSum xor GetRandom($FFFFFFFF);
1b483882b60f mix it up some more. also had screwed up -- inside quotes
nemo
parents: 12493
diff changeset
  3796
                        end;
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3797
                    lastChar := mybuf[i];
14216
3d4a5a10d2cd lua comment handling is seriously WTF, but let's at least allow some partial single line
nemo
parents: 14167
diff changeset
  3798
                    // lua apparently allows --  [===============[  as a valid block comment start.  
3d4a5a10d2cd lua comment handling is seriously WTF, but let's at least allow some partial single line
nemo
parents: 14167
diff changeset
  3799
                    // I can't be bothered to check for that nonsense. Will allow limited single line without [
14217
nemo
parents: 14216
diff changeset
  3800
                    if (byte(mybuf[i]) = $0D) or (byte(mybuf[i]) = $0A) or (mybuf[i] = '[') then
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3801
                        inComment := false
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3802
                end;
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3803
        end;
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3804
    ScriptReader:= mybuf
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3805
end;
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3806
function  ScriptLocaleReader(L: Plua_State; f: PFSFile; sz: Psize_t) : PChar; Cdecl;
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3807
var mybuf: PChar;
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3808
    i: LongInt;
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3809
begin
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3810
    mybuf := physfsReader(L, f, sz);
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3811
    if (mybuf <> nil) and ((sz^) > 0) then
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3812
        begin
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3813
            for i:= 0 to sz^-1 do
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3814
                begin
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3815
                    if not inComment and (mybuf[i] = '"') and (lastChar <> '\') then
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3816
                        inQuote := not inQuote;
12494
1b483882b60f mix it up some more. also had screwed up -- inside quotes
nemo
parents: 12493
diff changeset
  3817
                    if not inQuote and (lastChar = '-') and (mybuf[i] = '-') then
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3818
                        inComment := true;
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3819
                    if not inComment and (not inQuote) then
12459
06bf46238a89 ranges for alnum were silly. also lets not fail to same value
nemo
parents: 12458
diff changeset
  3820
                       locSum := locSum xor (byte(mybuf[i]) shl (i mod 4));
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3821
                    if not inComment and (not inQuote) and
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3822
                        ((mybuf[i] = '(') or
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3823
                        (mybuf[i] = ')') or
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3824
                        (mybuf[i] = '+') or
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3825
                        (mybuf[i] = '#') or
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3826
                        (braceCount > 2) or
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3827
                        (wordCount > 6)) then
12459
06bf46238a89 ranges for alnum were silly. also lets not fail to same value
nemo
parents: 12458
diff changeset
  3828
                       CheckSum := locSum;
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3829
                    if not inComment and (not inQuote) and ((mybuf[i] = '{') or (mybuf[i] = '}')) then
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3830
                        inc(braceCount);
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3831
                    if not inComment and (not inQuote) and
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3832
                        (((byte(mybuf[i]) > $40) and (byte(mybuf[i]) < $5B)) or
12459
06bf46238a89 ranges for alnum were silly. also lets not fail to same value
nemo
parents: 12458
diff changeset
  3833
                        ((byte(mybuf[i]) > $60) and (byte(mybuf[i]) < $7B)) or
06bf46238a89 ranges for alnum were silly. also lets not fail to same value
nemo
parents: 12458
diff changeset
  3834
                        ((byte(mybuf[i]) >= $30) and (byte(mybuf[i]) < $3A))) then
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3835
                        inc(wordCount);
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3836
                    lastChar := mybuf[i];
14216
3d4a5a10d2cd lua comment handling is seriously WTF, but let's at least allow some partial single line
nemo
parents: 14167
diff changeset
  3837
                    // this allows at least supporting the commented strings at end of line with lua script names
14217
nemo
parents: 14216
diff changeset
  3838
                    if (byte(mybuf[i]) = $0D) or (byte(mybuf[i]) = $0A) or (mybuf[i] = '[') then
12596
c9711561f947 fix some things that annoy pas2c and whitespaces
sheepluva
parents: 12576
diff changeset
  3839
                        inComment := false
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3840
                end;
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3841
        end;
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3842
    ScriptLocaleReader:= mybuf
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3843
end;
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3844
13726
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3845
function ScriptLoad(name : shortstring; mustExist : boolean): boolean;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3846
var ret : LongInt;
5243
f2e31a7f953a check alternate script loading path
nemo
parents: 5238
diff changeset
  3847
      s : shortstring;
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  3848
      f : PFSFile;
8034
fc032c0f7b23 Implement reader in C ffs
unc0rr
parents: 8031
diff changeset
  3849
    buf : array[0..Pred(BUFSIZE)] of byte;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3850
begin
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3851
inComment:= false;
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3852
inQuote:= false;
12454
a675a94b5cc1 Totally untested. Trying to ensure scripts loaded more or less match.
nemo
parents: 12371
diff changeset
  3853
lastChar:= 'X';
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3854
braceCount:= 0;
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3855
wordCount:= 0;
12459
06bf46238a89 ranges for alnum were silly. also lets not fail to same value
nemo
parents: 12458
diff changeset
  3856
locSum:= 0;
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  3857
s:= cPathz[ptData] + name;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  3858
if not pfsExists(s) then
9531
7fcdedc45589 Unbreak access to Data dir in profile broken in r8b48c27201af
unc0rr
parents: 9409
diff changeset
  3859
    begin
13721
61095cb5f58a Critical error if loading a script has failed
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
  3860
    if mustExist then
61095cb5f58a Critical error if loading a script has failed
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
  3861
        OutError('Script not found: ' + name, true)
61095cb5f58a Critical error if loading a script has failed
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
  3862
    else
61095cb5f58a Critical error if loading a script has failed
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
  3863
        AddFileLog('[LUA] Script not found: ' + name);
13726
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3864
    ScriptLoad:= false;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  3865
    exit;
9531
7fcdedc45589 Unbreak access to Data dir in profile broken in r8b48c27201af
unc0rr
parents: 9409
diff changeset
  3866
    end;
6088
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 6046
diff changeset
  3867
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  3868
f:= pfsOpenRead(s);
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  3869
if f = nil then
13721
61095cb5f58a Critical error if loading a script has failed
Wuzzy <Wuzzy2@mail.ru>
parents: 13674
diff changeset
  3870
    OutError('Error reading script: ' + name, true);
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  3871
13393
ae5d6448c5be Make wrapping a lua and its sidecar actually work.
nemo
parents: 13340
diff changeset
  3872
hedgewarsMountPackage(Str2PChar(copy(s, 3, length(s)-6)+'.hwp'));
12316
d09eba2e1dd8 Move sidecar lua load to prior to script load. This should let the script use it for dependencies.
nemo
parents: 12301
diff changeset
  3873
8073
5a289ef40fdb physfs compilation on windows
koda
parents: 8063
diff changeset
  3874
physfsReaderSetBuffer(@buf);
13790
552f0d5ab3e7 use locale rules for the challenge hashes
nemo
parents: 13778
diff changeset
  3875
if (Pos('Locale/',s) <> 0) or (s = 'Scripts/OfficialChallengeHashes.lua') then
12457
19e7838bedad Try to prevent the script safety checking from totally screwing up localisation. Also untested.
nemo
parents: 12455
diff changeset
  3876
     ret:= lua_load(luaState, @ScriptLocaleReader, f, Str2PChar(s))
13349
40742f3f7dd9 Seed reset seems fine when moved out of the loader. Also bump protocol
nemo
parents: 13348
diff changeset
  3877
else
14216
3d4a5a10d2cd lua comment handling is seriously WTF, but let's at least allow some partial single line
nemo
parents: 14167
diff changeset
  3878
    begin
13349
40742f3f7dd9 Seed reset seems fine when moved out of the loader. Also bump protocol
nemo
parents: 13348
diff changeset
  3879
    SetRandomSeed(cSeed,true);
14216
3d4a5a10d2cd lua comment handling is seriously WTF, but let's at least allow some partial single line
nemo
parents: 14167
diff changeset
  3880
    ret:= lua_load(luaState, @ScriptReader, f, Str2PChar(s))
3d4a5a10d2cd lua comment handling is seriously WTF, but let's at least allow some partial single line
nemo
parents: 14167
diff changeset
  3881
    end;
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  3882
pfsClose(f);
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  3883
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3884
if ret <> 0 then
3774
af0e68ca273e Engine:
smaxx
parents: 3761
diff changeset
  3885
    begin
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
  3886
    LuaError('Failed to load ' + name + '(error ' + IntToStr(ret) + ')');
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
  3887
    LuaError(lua_tostring(luaState, -1));
13726
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3888
    ScriptLoad:= false;
3774
af0e68ca273e Engine:
smaxx
parents: 3761
diff changeset
  3889
    end
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3890
else
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3891
    begin
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  3892
    WriteLnToConsole('Lua: ' + name + ' loaded');
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3893
    // call the script file
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3894
    lua_pcall(luaState, 0, 0, 0);
13726
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3895
    ScriptLoaded:= true;
247d1bcf3c5e Add 2nd optional parameter to HedgewarsScriptLoad. If false, its OK if file does not exist. Also, return true/false on success
Wuzzy <Wuzzy2@mail.ru>
parents: 13725
diff changeset
  3896
    ScriptLoad:= true;
8978
e6ef8fe314bd suggestion of unc0rr's to fix issue w/ random maps in campaign. load sidecar packages in physfs for lua. should be useful also for lua that does custom layouts
nemo
parents: 8473
diff changeset
  3897
    end;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3898
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3899
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3900
procedure SetGlobals;
13216
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3901
var x, y: LongInt;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3902
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3903
ScriptSetInteger('TurnTimeLeft', TurnTimeLeft);
12576
1fb961480b3c Lua API: Add ReadyTimeLeft variable
Wuzzy <almikes@aol.com>
parents: 12536
diff changeset
  3904
ScriptSetInteger('ReadyTimeLeft', ReadyTimeLeft);
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  3905
ScriptSetInteger('GameTime', GameTicks);
13651
56a925256039 Add separate TotalRounds var for Lua to count the *actual* number of rounds that have been played
Wuzzy <Wuzzy2@mail.ru>
parents: 13642
diff changeset
  3906
ScriptSetInteger('TotalRounds', TotalRoundsReal);
5676
a655dfab27d7 Scripting changes. Add override of mapgen, templatefilter. Expose waterline, add "GetAmmoCount". Default to amNothing in uAmmos if entry is not found.
nemo
parents: 5638
diff changeset
  3907
ScriptSetInteger('WaterLine', cWaterLine);
10978
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
  3908
if isCursorVisible and (not bShowAmmoMenu) then
10989
0ea100eefae7 ambiguous
nemo
parents: 10978
diff changeset
  3909
    begin
13216
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3910
    x:= CursorPoint.X - WorldDx;
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3911
    y:= cScreenHeight - CursorPoint.Y - WorldDy;
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3912
    if (PrevCursorX <> x) or
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3913
       (PrevCursorY <> y) then
10978
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
  3914
        begin
13216
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3915
        ScriptSetInteger('CursorX', x);
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3916
        ScriptSetInteger('CursorY', y);
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3917
        PrevCursorX:= x;
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3918
        PrevCursorY:= y;
10978
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
  3919
        end
10989
0ea100eefae7 ambiguous
nemo
parents: 10978
diff changeset
  3920
    end
10978
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
  3921
else
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
  3922
    begin
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
  3923
    ScriptSetInteger('CursorX', NoPointX);
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
  3924
    ScriptSetInteger('CursorY', NoPointX);
13216
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3925
    PrevCursorX:= NoPointX;
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  3926
    PrevCursorY:= NoPointX
10978
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
  3927
    end;
54a49174dbec cursor x/y when targeting for mikade's visual effects. this is not synced
nemo
parents: 10903
diff changeset
  3928
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3929
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Gear <> nil) then
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3930
    ScriptSetInteger('CurrentHedgehog', CurrentHedgehog^.Gear^.UID)
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3931
else
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3932
    ScriptSetNil('CurrentHedgehog');
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3933
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3934
13752
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
  3935
procedure ScriptSetMapGlobals;
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
  3936
begin
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
  3937
ScriptSetInteger('LAND_WIDTH', LAND_WIDTH);
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
  3938
ScriptSetInteger('LAND_HEIGHT', LAND_HEIGHT);
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
  3939
ScriptSetInteger('LeftX', leftX);
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
  3940
ScriptSetInteger('RightX', rightX);
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
  3941
ScriptSetInteger('TopY', topY);
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
  3942
end;
f1c66a34f2fe Lua: Fix LeftX, RightX, TopY, LAND_WIDTH, LAND_HEIGHT being broken if onVisualGearAdd is set
Wuzzy <Wuzzy2@mail.ru>
parents: 13750
diff changeset
  3943
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3944
procedure GetGlobals;
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3945
var currentTTL, currentRTL, newTTL, newRTL: LongInt;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3946
begin
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3947
// Setting TurnTimeLeft and ReadyTimeLeft should now be done in the setter functions.
13739
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3948
// SetTurnTimeLeft and SetReadTimeLeft.
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  3949
// GetGloals should be removed in a future release.
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3950
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3951
// DEPRECATED: Read TurnTimeLeft and ReadyTimeLeft from script directly.
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3952
// TODO: Remove this behaviour in a future version.
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3953
currentTTL:= TurnTimeLeft;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3954
currentRTL:= ReadyTimeLeft;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3955
newTTL:= ScriptGetInteger('TurnTimeLeft');
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3956
newRTL:= ScriptGetInteger('ReadyTimeLeft');
13764
c46998ecd8fa Don't write TurnTimeLeft deprecation warning if setter function was used
Wuzzy <Wuzzy2@mail.ru>
parents: 13752
diff changeset
  3957
if (currentTTL <> newTTL) and (not isPendingTurnTimeLeft) then
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3958
    begin
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3959
    TurnTimeLeft:= newTTL;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3960
    LuaWarning('Writing to TurnTimeLeft directly is deprecated! Use SetTurnTimeLeft instead!');
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3961
    end;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3962
13764
c46998ecd8fa Don't write TurnTimeLeft deprecation warning if setter function was used
Wuzzy <Wuzzy2@mail.ru>
parents: 13752
diff changeset
  3963
if (currentRTL <> newRTL) and (not isPendingReadyTimeLeft) then
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3964
    begin
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3965
    ReadyTimeLeft:= newRTL;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3966
    LuaWarning('Writing to ReadyTimeLeft directly is deprecated! Use SetReadyTimeLeft instead!');
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3967
    end;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3968
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3969
// Set TurnTimeLeft and ReadyTimeLeft if activated by SetTurnTimeLeft and SetReadyTimeLeft before
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3970
if isPendingTurnTimeLeft then
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3971
    begin
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3972
    TurnTimeLeft:= PendingTurnTimeLeft;
13812
0beff00d223a Set script globals TurnTimeLeft and ReadyTimeLeft immediately after they were changed by Lua call
Wuzzy <Wuzzy2@mail.ru>
parents: 13790
diff changeset
  3973
    ScriptSetInteger('TurnTimeLeft', TurnTimeLeft);
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3974
    isPendingTurnTimeLeft:= false;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3975
    end;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3976
if isPendingReadyTimeLeft then
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3977
    begin
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3978
    ReadyTimeLeft:= PendingReadyTimeLeft;
13812
0beff00d223a Set script globals TurnTimeLeft and ReadyTimeLeft immediately after they were changed by Lua call
Wuzzy <Wuzzy2@mail.ru>
parents: 13790
diff changeset
  3979
    ScriptSetInteger('ReadyTimeLeft', ReadyTimeLeft);
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3980
    isPendingReadyTimeLeft:= false;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  3981
    end;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3982
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3983
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3984
procedure ScriptCall(fname : shortstring);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3985
begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8012
diff changeset
  3986
if (not ScriptLoaded) or (not ScriptExists(fname)) then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3987
    exit;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3988
SetGlobals;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3989
lua_getglobal(luaState, Str2PChar(fname));
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3990
if lua_pcall(luaState, 0, 0, 0) <> 0 then
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3991
    begin
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
  3992
    LuaError('Error while calling ' + fname + ': ' + lua_tostring(luaState, -1));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3993
    lua_pop(luaState, 1)
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3994
    end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3995
GetGlobals;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3996
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3997
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  3998
(*
5352
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  3999
function ParseCommandOverride(key, value : shortstring) : shortstring;
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4000
begin
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4001
ParseCommandOverride:= value;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  4002
if not ScriptExists('ParseCommandOverride') then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  4003
    exit;
5352
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4004
lua_getglobal(luaState, Str2PChar('ParseCommandOverride'));
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4005
lua_pushstring(luaState, Str2PChar(key));
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4006
lua_pushstring(luaState, Str2PChar(value));
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4007
if lua_pcall(luaState, 2, 1, 0) <> 0 then
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4008
    begin
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4009
    LuaError('Lua: Error while calling ParseCommandOverride: ' + lua_tostring(luaState, -1));
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4010
    lua_pop(luaState, 1)
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4011
    end
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4012
else
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4013
    begin
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4014
    ParseCommandOverride:= lua_tostring(luaState, -1);
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4015
    lua_pop(luaState, 1)
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4016
    end;
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4017
end;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  4018
*)
5352
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4019
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4020
function ScriptCall(fname : shortstring; par1: LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4021
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4022
ScriptCall:= ScriptCall(fname, par1, 0, 0, 0)
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4023
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4024
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4025
function ScriptCall(fname : shortstring; par1, par2: LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4026
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4027
ScriptCall:= ScriptCall(fname, par1, par2, 0, 0)
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4028
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4029
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4030
function ScriptCall(fname : shortstring; par1, par2, par3: LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4031
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4032
ScriptCall:= ScriptCall(fname, par1, par2, par3, 0)
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4033
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4034
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4035
function ScriptCall(fname : shortstring; par1, par2, par3, par4 : LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4036
begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8012
diff changeset
  4037
if (not ScriptLoaded) or (not ScriptExists(fname)) then
10560
9f09196d92a6 fix some pas2c related issues
sheepluva
parents: 10553
diff changeset
  4038
    exit(0);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4039
SetGlobals;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4040
lua_getglobal(luaState, Str2PChar(fname));
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  4041
lua_pushnumber(luaState, par1);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  4042
lua_pushnumber(luaState, par2);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  4043
lua_pushnumber(luaState, par3);
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  4044
lua_pushnumber(luaState, par4);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4045
ScriptCall:= 0;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4046
if lua_pcall(luaState, 4, 1, 0) <> 0 then
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4047
    begin
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
  4048
    LuaError('Error while calling ' + fname + ': ' + lua_tostring(luaState, -1));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4049
    lua_pop(luaState, 1)
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4050
    end
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4051
else
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4052
    begin
12294
0deabf747b8f For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit
nemo
parents: 12286
diff changeset
  4053
    ScriptCall:= Trunc(lua_tonumber(luaState, -1));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4054
    lua_pop(luaState, 1)
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4055
    end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4056
GetGlobals;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4057
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4058
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4059
function ScriptExists(fname : shortstring) : boolean;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4060
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4061
if not ScriptLoaded then
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4062
    begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4063
    ScriptExists:= false;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4064
    exit
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4065
    end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4066
lua_getglobal(luaState, Str2PChar(fname));
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4067
ScriptExists:= not lua_isnoneornil(luaState, -1);
12107
0695302f3f5f Fix ScriptExists() destroying lua stack (fixes Bug #146)
sheepluva
parents: 12090
diff changeset
  4068
lua_pop(luaState, 1)
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4069
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4070
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4071
procedure ScriptPrepareAmmoStore;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4072
var i: ShortInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4073
begin
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4074
ScriptAmmoLoadout:= '';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4075
ScriptAmmoDelay:= '';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4076
ScriptAmmoProbability:= '';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4077
ScriptAmmoReinforcement:= '';
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4078
for i:=1 to ord(High(TAmmoType)) do
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4079
    begin
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4080
    ScriptAmmoLoadout:= ScriptAmmoLoadout + '0';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4081
    ScriptAmmoProbability:= ScriptAmmoProbability + '0';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4082
    ScriptAmmoDelay:= ScriptAmmoDelay + '0';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4083
    ScriptAmmoReinforcement:= ScriptAmmoReinforcement + '0';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4084
    end;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4085
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4086
9750
8963312df207 fix misspelled variable name (cosmetic change)
sheepluva
parents: 9748
diff changeset
  4087
procedure ScriptSetAmmo(ammo : TAmmoType; count, probability, delay, reinforcement: Byte);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4088
begin
9750
8963312df207 fix misspelled variable name (cosmetic change)
sheepluva
parents: 9748
diff changeset
  4089
//if (ord(ammo) < 1) or (count > 9) or (count < 0) or (probability < 0) or (probability > 8) or (delay < 0) or (delay > 9) or (reinforcement < 0) or (reinforcement > 8) then
8963312df207 fix misspelled variable name (cosmetic change)
sheepluva
parents: 9748
diff changeset
  4090
if (ord(ammo) < 1) or (count > 9) or (probability > 8) or (delay > 9) or (reinforcement > 8) then
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4091
    exit;
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4092
ScriptAmmoLoadout[ord(ammo)]:= inttostr(count)[1];
9750
8963312df207 fix misspelled variable name (cosmetic change)
sheepluva
parents: 9748
diff changeset
  4093
ScriptAmmoProbability[ord(ammo)]:= inttostr(probability)[1];
9751
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4094
ScriptSetAmmoDelay(ammo, delay);
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  4095
ScriptAmmoReinforcement[ord(ammo)]:= inttostr(reinforcement)[1];
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4096
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4097
9751
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4098
procedure ScriptSetAmmoDelay(ammo : TAmmoType; delay: Byte);
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4099
begin
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  4100
// change loadout string if ammo store has not been initialized yet
9751
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4101
if (StoreCnt = 0) then
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4102
begin
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4103
    if (delay <= 9) then
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4104
        ScriptAmmoDelay[ord(ammo)]:= inttostr(delay)[1];
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4105
end
11677
6a1170def888 uscript cosmetics
koda
parents: 11617
diff changeset
  4106
// change 'live' delay values
9751
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4107
else if (CurrentTeam <> nil) then
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4108
        ammoz[ammo].SkipTurns:= CurrentTeam^.Clan^.TurnNumber + delay;
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4109
end;
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4110
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4111
procedure ScriptApplyAmmoStore;
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4112
var i, j, k : LongInt;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4113
begin
5352
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4114
if (GameFlags and gfSharedAmmo) <> 0 then
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4115
    for i:= 0 to Pred(ClansCount) do
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4116
        begin
6740
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4117
        if ScriptExists('onNewAmmoStore') then
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4118
            begin
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4119
            ScriptPrepareAmmoStore;
6746
nemo
parents: 6743
diff changeset
  4120
            ScriptCall('onNewAmmoStore',i,-1);
nemo
parents: 6743
diff changeset
  4121
            SetAmmoLoadout(ScriptAmmoLoadout);
nemo
parents: 6743
diff changeset
  4122
            SetAmmoProbability(ScriptAmmoProbability);
nemo
parents: 6743
diff changeset
  4123
            SetAmmoDelay(ScriptAmmoDelay);
nemo
parents: 6743
diff changeset
  4124
            SetAmmoReinforcement(ScriptAmmoReinforcement)
6740
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4125
            end;
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4126
        AddAmmoStore;
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4127
        for j:= 0 to Pred(ClansArray[i]^.TeamsNumber) do
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4128
            for k:= 0 to Pred(ClansArray[i]^.Teams[j]^.HedgehogsNumber) do
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4129
                ClansArray[i]^.Teams[j]^.Hedgehogs[k].AmmoStore:= StoreCnt - 1
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4130
        end
5352
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4131
else if (GameFlags and gfPerHogAmmo) <> 0 then
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4132
    for i:= 0 to Pred(TeamsCount) do
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4133
        for j:= 0 to Pred(TeamsArray[i]^.HedgehogsNumber) do
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4134
            begin
6740
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4135
            if ScriptExists('onNewAmmoStore') then
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4136
                begin
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4137
                ScriptPrepareAmmoStore;
6746
nemo
parents: 6743
diff changeset
  4138
                ScriptCall('onNewAmmoStore',i,j);
nemo
parents: 6743
diff changeset
  4139
                SetAmmoLoadout(ScriptAmmoLoadout);
nemo
parents: 6743
diff changeset
  4140
                SetAmmoProbability(ScriptAmmoProbability);
nemo
parents: 6743
diff changeset
  4141
                SetAmmoDelay(ScriptAmmoDelay);
nemo
parents: 6743
diff changeset
  4142
                SetAmmoReinforcement(ScriptAmmoReinforcement)
6740
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4143
                end;
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4144
            AddAmmoStore;
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4145
            TeamsArray[i]^.Hedgehogs[j].AmmoStore:= StoreCnt - 1
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4146
            end
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  4147
else
5352
7f57d0c7816a Fix random weapons with per-hog ammo, fix ammo store loadout number in scripting for per-clan and per-hog ammo, add an advanced script hook into parsecommand to override values, add check for empty map in chSetMap, load script earlier in game params from frontend
nemo
parents: 5343
diff changeset
  4148
    for i:= 0 to Pred(TeamsCount) do
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4149
        begin
6740
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4150
        if ScriptExists('onNewAmmoStore') then
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4151
            begin
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4152
            ScriptPrepareAmmoStore;
6746
nemo
parents: 6743
diff changeset
  4153
            ScriptCall('onNewAmmoStore',i,-1);
nemo
parents: 6743
diff changeset
  4154
            SetAmmoLoadout(ScriptAmmoLoadout);
nemo
parents: 6743
diff changeset
  4155
            SetAmmoProbability(ScriptAmmoProbability);
nemo
parents: 6743
diff changeset
  4156
            SetAmmoDelay(ScriptAmmoDelay);
nemo
parents: 6743
diff changeset
  4157
            SetAmmoReinforcement(ScriptAmmoReinforcement)
6740
4167ebd563d9 Add a new script hook. onNewAmmoStore. This will allow scripts like The Specialists to define separate ammo sets for each hog
nemo
parents: 6700
diff changeset
  4158
            end;
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4159
        AddAmmoStore;
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4160
        for j:= 0 to Pred(TeamsArray[i]^.HedgehogsNumber) do
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4161
            TeamsArray[i]^.Hedgehogs[j].AmmoStore:= StoreCnt - 1
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  4162
        end
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4163
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4164
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4165
procedure initModule;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4166
var at : TGearType;
4453
15a483b2558a add visual gear registration
nemo
parents: 4450
diff changeset
  4167
    vgt: TVisualGearType;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4168
    am : TAmmoType;
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9291
diff changeset
  4169
    si : TStatInfoType;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4170
    st : TSound;
5118
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  4171
    he : THogEffect;
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  4172
    cg : TCapGroup;
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  4173
    spr: TSprite;
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
  4174
    mg : TMapGen;
11879
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11849
diff changeset
  4175
    we : TWorldEdge;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4176
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4177
// initialize lua
10239
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  4178
luaState:= lua_open;
11532
bf86c6cb9341 Bye-bye TryDo
unc0rr
parents: 11520
diff changeset
  4179
if checkFails(luaState <> nil, 'lua_open failed', true) then exit;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4180
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4181
// open internal libraries
10239
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  4182
luaopen_base(luaState);
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  4183
luaopen_string(luaState);
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  4184
luaopen_math(luaState);
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  4185
luaopen_table(luaState);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4186
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4187
// import some variables
14598
62dea281e4d5 Refactor hwengine: Rename cLocale to cLanguage
Wuzzy <Wuzzy2@mail.ru>
parents: 14537
diff changeset
  4188
ScriptSetString(_S'LOCALE', cLanguage);
4502
759c1a3bb156 lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents: 4499
diff changeset
  4189
14297
a6c5ce147530 Lua API: Change PLATFORM to INTERFACE
Wuzzy <Wuzzy2@mail.ru>
parents: 14288
diff changeset
  4190
{$IFDEF USE_TOUCH_INTERFACE}
a6c5ce147530 Lua API: Change PLATFORM to INTERFACE
Wuzzy <Wuzzy2@mail.ru>
parents: 14288
diff changeset
  4191
ScriptSetString(_S'INTERFACE', 'touch');
13933
429945a9b8db Lua: Add PLATFORM global var to distinguish between desktop and mobile builds
Wuzzy <Wuzzy2@mail.ru>
parents: 13876
diff changeset
  4192
{$ELSE}
14297
a6c5ce147530 Lua API: Change PLATFORM to INTERFACE
Wuzzy <Wuzzy2@mail.ru>
parents: 14288
diff changeset
  4193
ScriptSetString(_S'INTERFACE', 'desktop');
13933
429945a9b8db Lua: Add PLATFORM global var to distinguish between desktop and mobile builds
Wuzzy <Wuzzy2@mail.ru>
parents: 13876
diff changeset
  4194
{$ENDIF}
429945a9b8db Lua: Add PLATFORM global var to distinguish between desktop and mobile builds
Wuzzy <Wuzzy2@mail.ru>
parents: 13876
diff changeset
  4195
13851
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13842
diff changeset
  4196
// Add aliases for amDuck and gtDuck because rubber duck was removed.
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13842
diff changeset
  4197
// amDuck and gtDuck are deprecated and should be removed later.
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13842
diff changeset
  4198
// TODO: Remove these aliases in a later version.
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13842
diff changeset
  4199
ScriptSetInteger('amDuck', Ord(amCreeper));
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13842
diff changeset
  4200
ScriptSetInteger('gtDuck', Ord(gtCreeper));
f01798038c2e Rename amDuck and related symbols to amCreeper, gtCreeper, etc.
Wuzzy <Wuzzy2@mail.ru>
parents: 13842
diff changeset
  4201
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4202
// import game flags
13272
5984e8c6cbeb Add new game flag gfSwitchHog, enable hog switching at turn start
Wuzzy <Wuzzy2@mail.ru>
parents: 13270
diff changeset
  4203
ScriptSetInteger('gfSwitchHog', gfSwitchHog);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4204
ScriptSetInteger('gfMultiWeapon', gfMultiWeapon);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4205
ScriptSetInteger('gfSolidLand', gfSolidLand);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4206
ScriptSetInteger('gfBorder', gfBorder);
8980
37f4cdd9cd2c don't draw a border if there's already a bottom border, avoid placing objects over gaps in the floor
nemo
parents: 8978
diff changeset
  4207
ScriptSetInteger('gfBottomBorder', gfBottomBorder);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4208
ScriptSetInteger('gfDivideTeams', gfDivideTeams);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4209
ScriptSetInteger('gfLowGravity', gfLowGravity);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4210
ScriptSetInteger('gfLaserSight', gfLaserSight);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4211
ScriptSetInteger('gfInvulnerable', gfInvulnerable);
10671
17dd6265a08a Issue 865: gfResetHealth is not exposed to Lua
sheepluva
parents: 10660
diff changeset
  4212
ScriptSetInteger('gfResetHealth', gfResetHealth);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4213
ScriptSetInteger('gfVampiric', gfVampiric);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4214
ScriptSetInteger('gfKarma', gfKarma);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4215
ScriptSetInteger('gfArtillery', gfArtillery);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4216
ScriptSetInteger('gfOneClanMode', gfOneClanMode);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4217
ScriptSetInteger('gfRandomOrder', gfRandomOrder);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4218
ScriptSetInteger('gfKing', gfKing);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4219
ScriptSetInteger('gfPlaceHog', gfPlaceHog);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4220
ScriptSetInteger('gfSharedAmmo', gfSharedAmmo);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4221
ScriptSetInteger('gfDisableGirders', gfDisableGirders);
4162
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  4222
ScriptSetInteger('gfDisableLandObjects', gfDisableLandObjects);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  4223
ScriptSetInteger('gfAISurvival', gfAISurvival);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  4224
ScriptSetInteger('gfInfAttack', gfInfAttack);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  4225
ScriptSetInteger('gfResetWeps', gfResetWeps);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  4226
ScriptSetInteger('gfPerHogAmmo', gfPerHogAmmo);
4219
4162db7c11bb fix so gfDisableWind can infact be used in lua
Henek
parents: 4162
diff changeset
  4227
ScriptSetInteger('gfDisableWind', gfDisableWind);
4319
81391b54b078 clean up and lua update, very minor
Henek
parents: 4243
diff changeset
  4228
ScriptSetInteger('gfMoreWind', gfMoreWind);
5016
9347d82a26cc added game mode Tag Team, mostly untested, please test :)
Henek
parents: 5013
diff changeset
  4229
ScriptSetInteger('gfTagTeam', gfTagTeam);
9387
6478ed9ead25 gfShoppaBorder
unc0rr
parents: 9291
diff changeset
  4230
ScriptSetInteger('gfShoppaBorder', gfShoppaBorder);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4231
3894
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4232
ScriptSetInteger('gmLeft', gmLeft);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4233
ScriptSetInteger('gmRight', gmRight);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4234
ScriptSetInteger('gmUp', gmUp);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4235
ScriptSetInteger('gmDown', gmDown);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4236
ScriptSetInteger('gmSwitch', gmSwitch);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4237
ScriptSetInteger('gmAttack', gmAttack);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4238
ScriptSetInteger('gmLJump', gmLJump);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4239
ScriptSetInteger('gmHJump', gmHJump);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4240
ScriptSetInteger('gmDestroy', gmDestroy);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4241
ScriptSetInteger('gmSlot', gmSlot);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4242
ScriptSetInteger('gmWeapon', gmWeapon);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4243
ScriptSetInteger('gmTimer', gmTimer);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4244
ScriptSetInteger('gmAnimate', gmAnimate);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  4245
ScriptSetInteger('gmPrecise', gmPrecise);
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  4246
ScriptSetInteger('gmAllStoppable', gmAllStoppable);
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  4247
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  4248
// speech bubbles
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  4249
ScriptSetInteger('SAY_SAY', 1);
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  4250
ScriptSetInteger('SAY_THINK', 2);
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  4251
ScriptSetInteger('SAY_SHOUT', 3);
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  4252
13593
083733ec7941 Add support for infinite fly time of jetpack and Birdy
Wuzzy <Wuzzy2@mail.ru>
parents: 13582
diff changeset
  4253
// other
13595
0adc82afb784 Add Lua globals: AMMO_INFINITE and NoPointX
Wuzzy <Wuzzy2@mail.ru>
parents: 13593
diff changeset
  4254
ScriptSetInteger('AMMO_INFINITE', AMMO_INFINITE);
13593
083733ec7941 Add support for infinite fly time of jetpack and Birdy
Wuzzy <Wuzzy2@mail.ru>
parents: 13582
diff changeset
  4255
ScriptSetInteger('JETPACK_FUEL_INFINITE', JETPACK_FUEL_INFINITE);
083733ec7941 Add support for infinite fly time of jetpack and Birdy
Wuzzy <Wuzzy2@mail.ru>
parents: 13582
diff changeset
  4256
ScriptSetInteger('BIRDY_ENERGY_INFINITE', BIRDY_ENERGY_INFINITE);
13750
110d6c1e817f Lua: Rename globals: NoPointX→NO_CURSOR, cMaxTurnTime→MAX_TURN_TIME, cMaxHogHealth→MAX_HOG_HEALTH
Wuzzy <Wuzzy2@mail.ru>
parents: 13745
diff changeset
  4257
ScriptSetInteger('NO_CURSOR', NoPointX);
110d6c1e817f Lua: Rename globals: NoPointX→NO_CURSOR, cMaxTurnTime→MAX_TURN_TIME, cMaxHogHealth→MAX_HOG_HEALTH
Wuzzy <Wuzzy2@mail.ru>
parents: 13745
diff changeset
  4258
ScriptSetInteger('MAX_HOG_HEALTH', cMaxHogHealth);
110d6c1e817f Lua: Rename globals: NoPointX→NO_CURSOR, cMaxTurnTime→MAX_TURN_TIME, cMaxHogHealth→MAX_HOG_HEALTH
Wuzzy <Wuzzy2@mail.ru>
parents: 13745
diff changeset
  4259
ScriptSetInteger('MAX_TURN_TIME', cMaxTurnTime);
13593
083733ec7941 Add support for infinite fly time of jetpack and Birdy
Wuzzy <Wuzzy2@mail.ru>
parents: 13582
diff changeset
  4260
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4261
// register gear types
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4262
for at:= Low(TGearType) to High(TGearType) do
3337
75e7455c69ed Engine:
smxx
parents: 3271
diff changeset
  4263
    ScriptSetInteger(EnumToStr(at), ord(at));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4264
4453
15a483b2558a add visual gear registration
nemo
parents: 4450
diff changeset
  4265
for vgt:= Low(TVisualGearType) to High(TVisualGearType) do
15a483b2558a add visual gear registration
nemo
parents: 4450
diff changeset
  4266
    ScriptSetInteger(EnumToStr(vgt), ord(vgt));
15a483b2558a add visual gear registration
nemo
parents: 4450
diff changeset
  4267
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4268
// register sounds
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4269
for st:= Low(TSound) to High(TSound) do
3337
75e7455c69ed Engine:
smxx
parents: 3271
diff changeset
  4270
    ScriptSetInteger(EnumToStr(st), ord(st));
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4271
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4272
// register ammo types
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4273
for am:= Low(TAmmoType) to High(TAmmoType) do
3337
75e7455c69ed Engine:
smxx
parents: 3271
diff changeset
  4274
    ScriptSetInteger(EnumToStr(am), ord(am));
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3539
diff changeset
  4275
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9291
diff changeset
  4276
for si:= Low(TStatInfoType) to High(TStatInfoType) do
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9291
diff changeset
  4277
    ScriptSetInteger(EnumToStr(si), ord(si));
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9291
diff changeset
  4278
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  4279
for he:= Low(THogEffect) to High(THogEffect) do
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  4280
    ScriptSetInteger(EnumToStr(he), ord(he));
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  4281
5118
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  4282
for cg:= Low(TCapGroup) to High(TCapGroup) do
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  4283
    ScriptSetInteger(EnumToStr(cg), ord(cg));
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  4284
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  4285
for spr:= Low(TSprite) to High(TSprite) do
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  4286
    ScriptSetInteger(EnumToStr(spr), ord(spr));
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  4287
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
  4288
for mg:= Low(TMapGen) to High(TMapGen) do
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
  4289
    ScriptSetInteger(EnumToStr(mg), ord(mg));
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  4290
11879
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11849
diff changeset
  4291
for we:= Low(TWorldEdge) to High(TWorldEdge) do
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11849
diff changeset
  4292
    ScriptSetInteger(EnumToStr(we), ord(we));
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11849
diff changeset
  4293
13642
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13627
diff changeset
  4294
ScriptSetInteger('capcolDefault'    , capcolDefault);
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13627
diff changeset
  4295
ScriptSetInteger('capcolSetting'    , capcolSetting);
3d14950641a4 Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents: 13627
diff changeset
  4296
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4297
ScriptSetInteger('gstDrowning'      , gstDrowning);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4298
ScriptSetInteger('gstHHDriven'      , gstHHDriven);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4299
ScriptSetInteger('gstMoving'        , gstMoving);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4300
ScriptSetInteger('gstAttacked'      , gstAttacked);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4301
ScriptSetInteger('gstAttacking'     , gstAttacking);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4302
ScriptSetInteger('gstCollision'     , gstCollision);
11052
f55a49bd13b9 add missing state binds in lua
nemo
parents: 11046
diff changeset
  4303
ScriptSetInteger('gstChooseTarget'  , gstChooseTarget);
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4304
ScriptSetInteger('gstHHJumping'     , gstHHJumping);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4305
ScriptSetInteger('gsttmpFlag'       , gsttmpFlag);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4306
ScriptSetInteger('gstHHThinking'    , gstHHThinking);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4307
ScriptSetInteger('gstNoDamage'      , gstNoDamage);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4308
ScriptSetInteger('gstHHHJump'       , gstHHHJump);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4309
ScriptSetInteger('gstAnimation'     , gstAnimation);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4310
ScriptSetInteger('gstHHDeath'       , gstHHDeath);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4311
ScriptSetInteger('gstWinner'        , gstWinner);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4312
ScriptSetInteger('gstWait'          , gstWait);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4313
ScriptSetInteger('gstNotKickable'   , gstNotKickable);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4314
ScriptSetInteger('gstLoser'         , gstLoser);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4315
ScriptSetInteger('gstHHGone'        , gstHHGone);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4316
ScriptSetInteger('gstInvisible'     , gstInvisible);
11052
f55a49bd13b9 add missing state binds in lua
nemo
parents: 11046
diff changeset
  4317
ScriptSetInteger('gstSubmersible'   , gstSubmersible);
f55a49bd13b9 add missing state binds in lua
nemo
parents: 11046
diff changeset
  4318
ScriptSetInteger('gstFrozen'        , gstFrozen);
f55a49bd13b9 add missing state binds in lua
nemo
parents: 11046
diff changeset
  4319
ScriptSetInteger('gstNoGravity'     , gstNoGravity);
5527
418741abd209 gear state flag names for scripting
nemo
parents: 5517
diff changeset
  4320
8145
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 8077
diff changeset
  4321
// ai hints
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4322
ScriptSetInteger('aihUsualProcessing', aihUsualProcessing);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4323
ScriptSetInteger('aihDoesntMatter'   , aihDoesntMatter);
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  4324
13037
3718637c14be Expose 5 land flags to Lua for use with SetGearCollisionMask
Wuzzy <Wuzzy2@mail.ru>
parents: 13036
diff changeset
  4325
// land flags (partial)
10283
f5573ef8cda9 expose lfIndestructable, lfIce and lfBounce
sheepluva
parents: 10282
diff changeset
  4326
ScriptSetInteger('lfIndestructible', lfIndestructible);
10421
87e47843018e use constants for mapgen, expose those to lua
sheepluva
parents: 10368
diff changeset
  4327
ScriptSetInteger('lfIce'           , lfIce);
87e47843018e use constants for mapgen, expose those to lua
sheepluva
parents: 10368
diff changeset
  4328
ScriptSetInteger('lfBouncy'        , lfBouncy);
87e47843018e use constants for mapgen, expose those to lua
sheepluva
parents: 10368
diff changeset
  4329
13037
3718637c14be Expose 5 land flags to Lua for use with SetGearCollisionMask
Wuzzy <Wuzzy2@mail.ru>
parents: 13036
diff changeset
  4330
ScriptSetInteger('lfLandMask'      , lfLandMask);
13463
f1d349a52bc7 Refactor: lfCurrentHog→lfCurHogCrate, lfNotCurrentMask→lfNotCurHogCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 13461
diff changeset
  4331
ScriptSetInteger('lfCurHogCrate'   , lfCurHogCrate);
13037
3718637c14be Expose 5 land flags to Lua for use with SetGearCollisionMask
Wuzzy <Wuzzy2@mail.ru>
parents: 13036
diff changeset
  4332
ScriptSetInteger('lfHHMask'        , lfHHMask);
3718637c14be Expose 5 land flags to Lua for use with SetGearCollisionMask
Wuzzy <Wuzzy2@mail.ru>
parents: 13036
diff changeset
  4333
ScriptSetInteger('lfNotHHObjMask'  , lfNotHHObjMask);
3718637c14be Expose 5 land flags to Lua for use with SetGearCollisionMask
Wuzzy <Wuzzy2@mail.ru>
parents: 13036
diff changeset
  4334
ScriptSetInteger('lfAllObjMask'    , lfAllObjMask);
3718637c14be Expose 5 land flags to Lua for use with SetGearCollisionMask
Wuzzy <Wuzzy2@mail.ru>
parents: 13036
diff changeset
  4335
13270
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4336
// explosion constants
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4337
ScriptSetInteger('EXPLAutoSound'    , EXPLAutoSound);
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4338
ScriptSetInteger('EXPLNoDamage'     , EXPLNoDamage);
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4339
ScriptSetInteger('EXPLDoNotTouchHH' , EXPLDoNotTouchHH);
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4340
ScriptSetInteger('EXPLDontDraw'     , EXPLDontDraw);
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4341
ScriptSetInteger('EXPLNoGfx'        , EXPLNoGfx);
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4342
ScriptSetInteger('EXPLPoisoned'     , EXPLPoisoned);
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4343
ScriptSetInteger('EXPLDoNotTouchAny', EXPLDoNotTouchAny);
13604
73b096e1d895 Fix hammer/pickhammer not digging land with gfSolidLand on
Wuzzy <Wuzzy2@mail.ru>
parents: 13597
diff changeset
  4344
ScriptSetInteger('EXPLForceDraw'    , EXPLForceDraw);
13270
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4345
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4346
// register functions
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  4347
lua_register(luaState, _P'HideHog', @lc_hidehog);
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  4348
lua_register(luaState, _P'RestoreHog', @lc_restorehog);
13577
66460d5f0d9b Lua API: Add IsHogHidden
Wuzzy <Wuzzy2@mail.ru>
parents: 13576
diff changeset
  4349
lua_register(luaState, _P'IsHogHidden', @lc_ishoghidden);
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  4350
lua_register(luaState, _P'SaveCampaignVar', @lc_savecampaignvar);
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  4351
lua_register(luaState, _P'GetCampaignVar', @lc_getcampaignvar);
14463
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  4352
lua_register(luaState, _P'SaveMissionVar', @lc_savemissionvar);
bd1db668b7c0 Add Lua functions to save/get mission variables
Wuzzy <Wuzzy2@mail.ru>
parents: 14394
diff changeset
  4353
lua_register(luaState, _P'GetMissionVar', @lc_getmissionvar);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4354
lua_register(luaState, _P'band', @lc_band);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4355
lua_register(luaState, _P'bor', @lc_bor);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4356
lua_register(luaState, _P'bnot', @lc_bnot);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4357
lua_register(luaState, _P'div', @lc_div);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4358
lua_register(luaState, _P'GetInputMask', @lc_getinputmask);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4359
lua_register(luaState, _P'SetInputMask', @lc_setinputmask);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4360
lua_register(luaState, _P'AddGear', @lc_addgear);
10290
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  4361
lua_register(luaState, _P'DismissTeam', @lc_dismissteam);
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
  4362
lua_register(luaState, _P'EnableGameFlags', @lc_enablegameflags);
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
  4363
lua_register(luaState, _P'DisableGameFlags', @lc_disablegameflags);
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
  4364
lua_register(luaState, _P'ClearGameFlags', @lc_cleargameflags);
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
  4365
lua_register(luaState, _P'GetGameFlag', @lc_getgameflag);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4366
lua_register(luaState, _P'DeleteGear', @lc_deletegear);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4367
lua_register(luaState, _P'AddVisualGear', @lc_addvisualgear);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4368
lua_register(luaState, _P'DeleteVisualGear', @lc_deletevisualgear);
11880
2eac7a96b342 Lua API: Add GetVisualGearType, onVisualGearAdd, onVisualGearDelete
Wuzzy <almikes@aol.com>
parents: 11879
diff changeset
  4369
lua_register(luaState, _P'GetVisualGearType', @lc_getvisualgeartype);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4370
lua_register(luaState, _P'GetVisualGearValues', @lc_getvisualgearvalues);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4371
lua_register(luaState, _P'SetVisualGearValues', @lc_setvisualgearvalues);
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  4372
lua_register(luaState, _P'GetGearValues', @lc_getgearvalues);
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  4373
lua_register(luaState, _P'SetGearValues', @lc_setgearvalues);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4374
lua_register(luaState, _P'SpawnHealthCrate', @lc_spawnhealthcrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4375
lua_register(luaState, _P'SpawnAmmoCrate', @lc_spawnammocrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4376
lua_register(luaState, _P'SpawnUtilityCrate', @lc_spawnutilitycrate);
12932
e0da398805b6 Lua API: Add SpawnSupplyCrate
Wuzzy <Wuzzy2@mail.ru>
parents: 12931
diff changeset
  4377
lua_register(luaState, _P'SpawnSupplyCrate', @lc_spawnsupplycrate);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4378
lua_register(luaState, _P'SpawnFakeHealthCrate', @lc_spawnfakehealthcrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4379
lua_register(luaState, _P'SpawnFakeAmmoCrate', @lc_spawnfakeammocrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4380
lua_register(luaState, _P'SpawnFakeUtilityCrate', @lc_spawnfakeutilitycrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4381
lua_register(luaState, _P'WriteLnToConsole', @lc_writelntoconsole);
12910
383445810e42 Lua API: Add WriteLnToChat
Wuzzy <Wuzzy2@mail.ru>
parents: 12848
diff changeset
  4382
lua_register(luaState, _P'WriteLnToChat', @lc_writelntochat);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4383
lua_register(luaState, _P'GetGearType', @lc_getgeartype);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4384
lua_register(luaState, _P'EndGame', @lc_endgame);
12286
b4dde7035fe2 New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents: 12162
diff changeset
  4385
lua_register(luaState, _P'EndTurn', @lc_endturn);
13340
85644a45e988 New Lua call: Retreat, to force turn into Retreat time
Wuzzy <Wuzzy2@mail.ru>
parents: 13272
diff changeset
  4386
lua_register(luaState, _P'Retreat', @lc_retreat);
13170
98a0edb4bb5a Lua API: Add SkipTurn() to replace ParseCommand("skip")
Wuzzy <Wuzzy2@mail.ru>
parents: 13122
diff changeset
  4387
lua_register(luaState, _P'SkipTurn', @lc_skipturn);
12536
e54039ea3934 New Lua API function: GetTeamStats, to get team stats
Wuzzy <almikes@aol.com>
parents: 12494
diff changeset
  4388
lua_register(luaState, _P'GetTeamStats', @lc_getteamstats);
9171
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  4389
lua_register(luaState, _P'SendStat', @lc_sendstat);
12332
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  4390
lua_register(luaState, _P'SendGameResultOff', @lc_sendgameresultoff);
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  4391
lua_register(luaState, _P'SendRankingStatsOff', @lc_sendrankingstatsoff);
657a8d63c99d Lua API: SendAchevementsStatsOff, SendGameResultOff, SendRankingStatsOff
Wuzzy <almikes@aol.com>
parents: 12316
diff changeset
  4392
lua_register(luaState, _P'SendAchievementsStatsOff', @lc_sendachievementsstatsoff);
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9179
diff changeset
  4393
lua_register(luaState, _P'SendHealthStatsOff', @lc_sendhealthstatsoff);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4394
lua_register(luaState, _P'FindPlace', @lc_findplace);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4395
lua_register(luaState, _P'SetGearPosition', @lc_setgearposition);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4396
lua_register(luaState, _P'GetGearPosition', @lc_getgearposition);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4397
lua_register(luaState, _P'SetGearTarget', @lc_setgeartarget);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4398
lua_register(luaState, _P'GetGearTarget', @lc_getgeartarget);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4399
lua_register(luaState, _P'SetGearVelocity', @lc_setgearvelocity);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4400
lua_register(luaState, _P'GetGearVelocity', @lc_getgearvelocity);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4401
lua_register(luaState, _P'ParseCommand', @lc_parsecommand);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4402
lua_register(luaState, _P'ShowMission', @lc_showmission);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4403
lua_register(luaState, _P'HideMission', @lc_hidemission);
11939
c7ec309cd685 Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents: 11880
diff changeset
  4404
lua_register(luaState, _P'SetAmmoTexts', @lc_setammotexts);
11941
7ece39a537bd Add SetAmmoDescriptionAppendix to Lua API, see issue 82
Wuzzy <almikes@aol.com>
parents: 11939
diff changeset
  4405
lua_register(luaState, _P'SetAmmoDescriptionAppendix', @lc_setammodescriptionappendix);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4406
lua_register(luaState, _P'AddCaption', @lc_addcaption);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4407
lua_register(luaState, _P'SetAmmo', @lc_setammo);
13454
794dcf69a5aa New Lua API function: GetAmmo, to get ammo config
Wuzzy <Wuzzy2@mail.ru>
parents: 13434
diff changeset
  4408
lua_register(luaState, _P'GetAmmo', @lc_getammo);
9751
7a6038c3faa2 lua call SetAmmoDelay(ammotype, delay). note: as the engine does not yet support per-clan/team/hog ammo delay values, lua scripters will have to keep track of individual delays and set them accordingly before a hedgehog's turn (if they want usage cool-down behavior)
sheepluva
parents: 9750
diff changeset
  4409
lua_register(luaState, _P'SetAmmoDelay', @lc_setammodelay);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4410
lua_register(luaState, _P'PlaySound', @lc_playsound);
13976
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  4411
lua_register(luaState, _P'PlayMusicSound', @lc_playmusicsound);
2828ec67c47c Add PlayMusicSound/StopMusicSound to Lua API
Wuzzy <Wuzzy2@mail.ru>
parents: 13954
diff changeset
  4412
lua_register(luaState, _P'StopMusicSound', @lc_stopmusicsound);
13121
de07c8423beb Lua API: Add SetSoundMask to disable playing certain sounds
Wuzzy <Wuzzy2@mail.ru>
parents: 13088
diff changeset
  4413
lua_register(luaState, _P'SetSoundMask', @lc_setsoundmask);
12931
c27dd59a3ffe Lua API: Add GetTeamName
Wuzzy <Wuzzy2@mail.ru>
parents: 12930
diff changeset
  4414
lua_register(luaState, _P'GetTeamName', @lc_getteamname);
13020
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  4415
lua_register(luaState, _P'GetTeamIndex', @lc_getteamindex);
d1e7f2420f00 Lua API: Add functons: GetTeamIndex and GetTeamClan
Wuzzy <Wuzzy2@mail.ru>
parents: 13018
diff changeset
  4416
lua_register(luaState, _P'GetTeamClan', @lc_getteamclan);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4417
lua_register(luaState, _P'AddTeam', @lc_addteam);
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  4418
lua_register(luaState, _P'AddMissionTeam', @lc_addmissionteam);
13018
0248cf0da834 Add SetTeamLabel to Lua API, can set arbitrary string as team label
Wuzzy <Wuzzy2@mail.ru>
parents: 12947
diff changeset
  4419
lua_register(luaState, _P'SetTeamLabel', @lc_setteamlabel);
14611
3cf7799e04b5 Add SetTeamPassive. Passive teams are treated like frozen teams
Wuzzy <Wuzzy2@mail.ru>
parents: 14598
diff changeset
  4420
lua_register(luaState, _P'SetTeamPassive', @lc_setteampassive);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4421
lua_register(luaState, _P'AddHog', @lc_addhog);
14477
4b678aad50e9 Lua API: Add functions to add team selected in campaign/mission page
Wuzzy <Wuzzy2@mail.ru>
parents: 14463
diff changeset
  4422
lua_register(luaState, _P'AddMissionHog', @lc_addmissionhog);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4423
lua_register(luaState, _P'AddAmmo', @lc_addammo);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4424
lua_register(luaState, _P'GetAmmoCount', @lc_getammocount);
12939
0112ef349ddc Lua API: Add HealHog to heal hog with visual effects + message
Wuzzy <Wuzzy2@mail.ru>
parents: 12932
diff changeset
  4425
lua_register(luaState, _P'HealHog', @lc_healhog);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4426
lua_register(luaState, _P'SetHealth', @lc_sethealth);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4427
lua_register(luaState, _P'GetHealth', @lc_gethealth);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4428
lua_register(luaState, _P'SetEffect', @lc_seteffect);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4429
lua_register(luaState, _P'GetEffect', @lc_geteffect);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4430
lua_register(luaState, _P'GetHogClan', @lc_gethogclan);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4431
lua_register(luaState, _P'GetClanColor', @lc_getclancolor);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4432
lua_register(luaState, _P'SetClanColor', @lc_setclancolor);
11029
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  4433
lua_register(luaState, _P'GetHogVoicepack', @lc_gethogvoicepack);
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  4434
lua_register(luaState, _P'GetHogFlag', @lc_gethogflag);
12046
553f97b1e4fe Add GetHogFort to Lua API
Wuzzy <almikes@aol.com>
parents: 11963
diff changeset
  4435
lua_register(luaState, _P'GetHogFort', @lc_gethogfort);
11029
854f30498a98 GetHogVoicepack,GetHogFlag,GetHogGrave
mikade <redgrinner@gmail.com>
parents: 11022
diff changeset
  4436
lua_register(luaState, _P'GetHogGrave', @lc_gethoggrave);
11847
38e7206a5df4 Lua API: IsHogLocal(gearUid)
sheepluva
parents: 11846
diff changeset
  4437
lua_register(luaState, _P'IsHogLocal', @lc_ishoglocal);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4438
lua_register(luaState, _P'GetHogTeamName', @lc_gethogteamname);
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  4439
lua_register(luaState, _P'SetHogTeamName', @lc_sethogteamname);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4440
lua_register(luaState, _P'GetHogName', @lc_gethogname);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4441
lua_register(luaState, _P'SetHogName', @lc_sethogname);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4442
lua_register(luaState, _P'GetHogLevel', @lc_gethoglevel);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4443
lua_register(luaState, _P'SetHogLevel', @lc_sethoglevel);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4444
lua_register(luaState, _P'GetX', @lc_getx);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4445
lua_register(luaState, _P'GetY', @lc_gety);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4446
lua_register(luaState, _P'CopyPV', @lc_copypv);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4447
lua_register(luaState, _P'FollowGear', @lc_followgear);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4448
lua_register(luaState, _P'GetFollowGear', @lc_getfollowgear);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4449
lua_register(luaState, _P'SetState', @lc_setstate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4450
lua_register(luaState, _P'GetState', @lc_getstate);
7156
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  4451
lua_register(luaState, _P'GetTag', @lc_gettag);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4452
lua_register(luaState, _P'SetTag', @lc_settag);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4453
lua_register(luaState, _P'SetTimer', @lc_settimer);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4454
lua_register(luaState, _P'GetTimer', @lc_gettimer);
10589
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  4455
lua_register(luaState, _P'SetFlightTime', @lc_setflighttime);
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  4456
lua_register(luaState, _P'GetFlightTime', @lc_getflighttime);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4457
lua_register(luaState, _P'SetZoom', @lc_setzoom);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4458
lua_register(luaState, _P'GetZoom', @lc_getzoom);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4459
lua_register(luaState, _P'HogSay', @lc_hogsay);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4460
lua_register(luaState, _P'SwitchHog', @lc_switchhog);
13378
c53530142442 Lua API: Add EnableSwitchHog to manually enable hog switching
Wuzzy <Wuzzy2@mail.ru>
parents: 13373
diff changeset
  4461
lua_register(luaState, _P'EnableSwitchHog', @lc_enableswitchhog);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4462
lua_register(luaState, _P'HogTurnLeft', @lc_hogturnleft);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4463
lua_register(luaState, _P'GetGearElasticity', @lc_getgearelasticity);
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  4464
lua_register(luaState, _P'SetGearElasticity', @lc_setgearelasticity);
10809
bb2e4e9944f7 Add generic getter/setter for a bunch of more obscure gear structure values
nemo
parents: 10808
diff changeset
  4465
lua_register(luaState, _P'GetGearFriction', @lc_getgearfriction);
10808
1e39630d7c2e Add a couple of more variable bindings, make all the set visual gear values optional, to allow skipping trailing params or specifying ones in the middle as nil to not set. Should make using it more convenient in simple cases.
nemo
parents: 10671
diff changeset
  4466
lua_register(luaState, _P'SetGearFriction', @lc_setgearfriction);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4467
lua_register(luaState, _P'GetGearRadius', @lc_getgearradius);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4468
lua_register(luaState, _P'GetGearMessage', @lc_getgearmessage);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4469
lua_register(luaState, _P'SetGearMessage', @lc_setgearmessage);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4470
lua_register(luaState, _P'GetGearPos', @lc_getgearpos);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4471
lua_register(luaState, _P'SetGearPos', @lc_setgearpos);
7726
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  4472
lua_register(luaState, _P'GetGearCollisionMask', @lc_getgearcollisionmask);
1137406bce12 Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents: 7721
diff changeset
  4473
lua_register(luaState, _P'SetGearCollisionMask', @lc_setgearcollisionmask);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4474
lua_register(luaState, _P'GetRandom', @lc_getrandom);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4475
lua_register(luaState, _P'SetWind', @lc_setwind);
12930
330b6c353093 Lua API: Add GetWind function to get current wind
Wuzzy <Wuzzy2@mail.ru>
parents: 12929
diff changeset
  4476
lua_register(luaState, _P'GetWind', @lc_getwind);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4477
lua_register(luaState, _P'MapHasBorder', @lc_maphasborder);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4478
lua_register(luaState, _P'GetHogHat', @lc_gethoghat);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4479
lua_register(luaState, _P'SetHogHat', @lc_sethoghat);
10901
fbf6fbe66092 also erase
nemo
parents: 10899
diff changeset
  4480
lua_register(luaState, _P'EraseSprite', @lc_erasesprite);
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10279
diff changeset
  4481
lua_register(luaState, _P'PlaceSprite', @lc_placesprite);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4482
lua_register(luaState, _P'PlaceGirder', @lc_placegirder);
12090
fac17dd2bc2f Add PlaceRubber to Lua API
Wuzzy <almikes@aol.com>
parents: 12046
diff changeset
  4483
lua_register(luaState, _P'PlaceRubber', @lc_placerubber);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4484
lua_register(luaState, _P'GetCurAmmoType', @lc_getcurammotype);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  4485
lua_register(luaState, _P'TestRectForObstacle', @lc_testrectforobstacle);
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  4486
lua_register(luaState, _P'GetGravity', @lc_getgravity);
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  4487
lua_register(luaState, _P'SetGravity', @lc_setgravity);
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  4488
lua_register(luaState, _P'SetWaterLine', @lc_setwaterline);
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
  4489
lua_register(luaState, _P'SetNextWeapon', @lc_setnextweapon);
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  4490
lua_register(luaState, _P'SetWeapon', @lc_setweapon);
11520
663ecfb05df6 Lua API: SetCinematicMode(enable)
sheepluva
parents: 11515
diff changeset
  4491
lua_register(luaState, _P'SetCinematicMode', @lc_setcinematicmode);
11058
b91667fd6f20 Lua API: SetMaxBuildDistance([ distInPx ]) -- set to 0 for no limit; call with no param to reset to default
sheepluva
parents: 11052
diff changeset
  4492
lua_register(luaState, _P'SetMaxBuildDistance', @lc_setmaxbuilddistance);
11846
6bf91006d630 Lua API: GetAmmoName(ammoType)
sheepluva
parents: 11844
diff changeset
  4493
lua_register(luaState, _P'GetAmmoName', @lc_getammoname);
13371
da913fc1d350 Lua API: GetAmmoTimer, to get the player-set timer for an ammo
Wuzzy <Wuzzy2@mail.ru>
parents: 13370
diff changeset
  4494
lua_register(luaState, _P'GetAmmoTimer', @lc_getammotimer);
12929
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  4495
lua_register(luaState, _P'SetVampiric', @lc_setvampiric);
13576
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  4496
lua_register(luaState, _P'GetVampiric', @lc_getvampiric);
12929
1d7d7d21914a Lua API: Add SetVampiric and SetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 12910
diff changeset
  4497
lua_register(luaState, _P'SetLaserSight', @lc_setlasersight);
13576
e5761b37e99c Lua: Add GetVampiric, GetLaserSight
Wuzzy <Wuzzy2@mail.ru>
parents: 13463
diff changeset
  4498
lua_register(luaState, _P'GetLaserSight', @lc_getlasersight);
13270
969aacfa229c Lua API: Add Explode function
Wuzzy <Wuzzy2@mail.ru>
parents: 13216
diff changeset
  4499
lua_register(luaState, _P'Explode', @lc_explode);
13739
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  4500
lua_register(luaState, _P'SetTurnTimeLeft', @lc_setturntimeleft);
b3b55b03d499 Lua API: Add SetTurnTimeLeft, SetReadyTimeLeft
Wuzzy <Wuzzy2@mail.ru>
parents: 13726
diff changeset
  4501
lua_register(luaState, _P'SetReadyTimeLeft', @lc_setreadytimeleft);
14394
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  4502
lua_register(luaState, _P'SetTurnTimePaused', @lc_setturntimepaused);
d670e4efe1ed Lua API: SetTurnTimePaused/GetTurnTimePaused
Wuzzy <Wuzzy2@mail.ru>
parents: 14393
diff changeset
  4503
lua_register(luaState, _P'GetTurnTimePaused', @lc_getturntimepaused);
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  4504
// drawn map functions
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  4505
lua_register(luaState, _P'AddPoint', @lc_addPoint);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  4506
lua_register(luaState, _P'FlushPoints', @lc_flushPoints);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4507
11066
f10a4bdfa0f4 fix internal function name
sheepluva
parents: 11062
diff changeset
  4508
lua_register(luaState, _P'SetGearAIHints', @lc_setgearaihints);
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  4509
lua_register(luaState, _P'HedgewarsScriptLoad', @lc_hedgewarsscriptload);
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  4510
lua_register(luaState, _P'DeclareAchievement', @lc_declareachievement);
11569
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  4511
lua_register(luaState, _P'StartGhostPoints', @lc_startghostpoints);
294ce0fa65d0 Dump best time ghost on console
unc0rr
parents: 11561
diff changeset
  4512
lua_register(luaState, _P'DumpPoint', @lc_dumppoint);
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  4513
10618
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  4514
ScriptSetInteger('TEST_SUCCESSFUL'   , HaltTestSuccess);
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  4515
ScriptSetInteger('TEST_FAILED'       , HaltTestFailed);
7b72cf27cd04 tweaking the lua test function thingy
sheepluva
parents: 10617
diff changeset
  4516
lua_register(luaState, _P'EndLuaTest', @lc_endluatest);
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4517
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4518
ScriptClearStack; // just to be sure stack is empty
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4519
ScriptLoaded:= false;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4520
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4521
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4522
procedure freeModule;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4523
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4524
lua_close(luaState);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4525
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4526
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4527
{$ELSE}
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4528
procedure ScriptPrintStack;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4529
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4530
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4531
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4532
procedure ScriptClearStack;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4533
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4534
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4535
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4536
procedure ScriptLoad(name : shortstring);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4537
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4538
    name:= name; // avoid hint
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4539
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4540
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4541
procedure ScriptOnGameInit;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4542
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4543
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4544
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4545
procedure ScriptCall(fname : shortstring);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4546
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4547
    fname:= fname; // avoid hint
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4548
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4549
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4550
function ScriptCall(fname : shortstring; par1, par2, par3, par4 : LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4551
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4552
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4553
    fname:= fname;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4554
    par1:= par1;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4555
    par2:= par2;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4556
    par3:= par3;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4557
    par4:= par4;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4558
    ScriptCall:= 0
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4559
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4560
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4561
function ScriptCall(fname : shortstring; par1: LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4562
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4563
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4564
    fname:= fname;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4565
    par1:= par1;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4566
    ScriptCall:= 0
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4567
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4568
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4569
function ScriptCall(fname : shortstring; par1, par2: LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4570
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4571
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4572
    fname:= fname;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4573
    par1:= par1;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4574
    par2:= par2;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4575
    ScriptCall:= 0
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4576
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4577
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4578
function ScriptCall(fname : shortstring; par1, par2, par3: LongInt) : LongInt;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4579
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4580
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4581
    fname:= fname;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4582
    par1:= par1;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4583
    par2:= par2;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4584
    par3:= par3;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4585
    ScriptCall:= 0
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4586
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4587
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4588
function ScriptExists(fname : shortstring) : boolean;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4589
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4590
    fname:= fname; // avoid hint
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4591
    ScriptExists:= false
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4592
end;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  4593
(*
5410
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
  4594
function ParseCommandOverride(key, value : shortstring) : shortstring;
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
  4595
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4596
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4597
    key:= key;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4598
    value:= value;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  4599
    ParseCommandOverride:= ''
5410
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
  4600
end;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  4601
*)
5410
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
  4602
6430
93eefff23bcd fix compiling with LUA_DISABLED
koda
parents: 6415
diff changeset
  4603
procedure ScriptOnScreenResize;
93eefff23bcd fix compiling with LUA_DISABLED
koda
parents: 6415
diff changeset
  4604
begin
93eefff23bcd fix compiling with LUA_DISABLED
koda
parents: 6415
diff changeset
  4605
end;
93eefff23bcd fix compiling with LUA_DISABLED
koda
parents: 6415
diff changeset
  4606
11678
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4607
procedure ScriptOnPreviewInit;
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4608
begin
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4609
end;
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4610
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4611
procedure ScriptSetInteger(name : shortstring; value : LongInt);
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4612
begin
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4613
end;
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4614
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4615
procedure ScriptSetString(name : shortstring; value : shortstring);
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4616
begin
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4617
end;
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4618
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4619
procedure LuaParseString(s : ShortString);
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4620
begin
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4621
end;
b76b7372a2a6 Add missing functions to fully disable lua at compile time
koda
parents: 11677
diff changeset
  4622
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4623
procedure initModule;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4624
begin
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  4625
PointsBuffer:= '';
13216
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  4626
PrevCursorX:= NoPointX;
95311e220eb6 Lua API: Fix not updating CursorX/CursorY properly when moving cursor at screen border
Wuzzy <Wuzzy2@mail.ru>
parents: 13170
diff changeset
  4627
PrevCursorY:= NoPointX;
13741
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  4628
isPendingTurnTimeLeft:= false;
e8f26bc793d9 Add deprecation warning for setting TurnTimeLeft/ReadyTimeLeft directly, fix SetTurnTimeLeft/SetReadyTimeLeft not setting vars reliably
Wuzzy <Wuzzy2@mail.ru>
parents: 13739
diff changeset
  4629
isPendingReadyTimeLeft:= false;
3043
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4630
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4631
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4632
procedure freeModule;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4633
begin
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4634
end;
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4635
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4636
{$ENDIF}
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  4637
end.