hedgewars/uScript.pas
author sheepluva
Tue, 02 Dec 2014 23:33:28 +0100
changeset 10611 58cad46782ff
parent 10603 bda5c7caf396
child 10613 f2597a21f562
permissions -rw-r--r--
move functionality of Draw.lua into engine
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
9998
736015b847e3 update copyright to 2014
sheepluva
parents: 9988
diff changeset
     3
 * Copyright (c) 2004-2014 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
 *
84267f79879b comments
sheepluva
parents: 5120
diff changeset
    26
 * Please keep http://code.google.com/p/hedgewars/wiki/LuaAPI up to date!
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
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
    37
procedure ScriptLoad(name : shortstring);
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);
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
    43
3acdb4dac6eb 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
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
    45
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
    46
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
    47
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
    48
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
    49
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
    50
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
    51
procedure LuaParseString(s: shortString);
5410
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
    52
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
    53
//function ParseCommandOverride(key, value : shortstring) : shortstring;  This did not work out well
5577
Xeli
parents: 5548 5554
diff changeset
    54
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
    55
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
    56
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
    57
3acdb4dac6eb 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
implementation
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
    59
{$IFDEF USE_LUA_SCRIPT}
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,
4377
43945842da0c Haven't found a better place than uIO for OutError
unC0Rr
parents: 4374
diff changeset
    79
    uUtils,
4403
unc0rr
parents: 4399
diff changeset
    80
    uCaptions,
4832
e55e2b6f59b0 update collision in set gear position
nemo
parents: 4780
diff changeset
    81
    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
    82
    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
    83
    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
    84
    uTextures,
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
    85
    uLandGraphics,
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
    86
    SysUtils,
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
    87
    uIO,
9283
76e68c136a11 Refactoring: VGSHandlers.inc -> uVisualGearsHandlers.pas
unc0rr
parents: 9245
diff changeset
    88
    uVisualGearsList,
9285
8e8b908970c2 Refactoring: get rid of GSHandlers.inc
unc0rr
parents: 9283
diff changeset
    89
    uGearsHandlersMess,
9952
32f5982604f4 Fix build (no idea what's going on in this branch btw)
unc0rr
parents: 9950
diff changeset
    90
    uPhysFSLayer
10129
cd2a64a1f4aa - Pas2C: make use of 'external' function decorator
unc0rr
parents: 10127
diff changeset
    91
{$IFNDEF PAS2C}
9952
32f5982604f4 Fix build (no idea what's going on in this branch btw)
unc0rr
parents: 9950
diff changeset
    92
    , 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
    93
{$ENDIF}
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
    94
    ;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3539
diff changeset
    95
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
    96
var luaState : Plua_State;
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
    97
    ScriptAmmoLoadout : shortstring;
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
    98
    ScriptAmmoProbability : shortstring;
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
    99
    ScriptAmmoDelay : shortstring;
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
   100
    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
   101
    ScriptLoaded : boolean;
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
   102
    mapDims : boolean;
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   103
    PointsBuffer: shortString;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3539
diff changeset
   104
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
   105
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
   106
procedure ScriptApplyAmmoStore; forward;
9750
8963312df207 fix misspelled variable name (cosmetic change)
sheepluva
parents: 9748
diff changeset
   107
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
   108
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
   109
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   110
var LuaDebugInfo: lua_Debug;
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   111
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   112
procedure LuaParseString(s: shortString);
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   113
begin
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   114
    AddFileLog('[Lua] input string: ' + s);
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   115
    AddChatString(#3 + '[Lua] > ' + s);
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   116
    if luaL_dostring(luaState, Str2PChar(s)) <> 0 then
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   117
        begin
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   118
        AddFileLog('[Lua] input string parsing error!');
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   119
        AddChatString(#5 + '[Lua] Error while parsing!');
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   120
        end;
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   121
end;
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
   122
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   123
function LuaUpdateDebugInfo(): Boolean;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   124
begin
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   125
    FillChar(LuaDebugInfo, sizeof(LuaDebugInfo), 0);
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   126
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   127
    if lua_getstack(luaState, 1, @LuaDebugInfo) = 0 then
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   128
        exit(false); // stack not deep enough
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   129
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   130
    // get source name and line count
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   131
    lua_getinfo(luaState, PChar('Sl'), @LuaDebugInfo);
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   132
    exit(true);
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   133
end;
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   134
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   135
procedure LuaError(s: shortstring);
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   136
var src: shortstring;
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   137
const
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   138
    maxsrclen = 20;
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   139
begin
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   140
    if LuaUpdateDebugInfo() then
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   141
        begin
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   142
        src:= StrPas(LuaDebugInfo.source);
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   143
        s:= 'LUA ERROR [ ... '
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   144
            + copy(src, Length(src) - maxsrclen, maxsrclen - 3) + ':'
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   145
            + inttostr(LuaDebugInfo.currentLine) + ']: ' + s;
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   146
        end
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   147
    else
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   148
        s:= 'LUA ERROR: ' + s;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   149
    WriteLnToConsole(s);
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   150
    AddChatString(#5 + s);
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
   151
    if cTestLua then
10306
4fca8bcfaff0 clean up halting a little
sheepluva
parents: 10297
diff changeset
   152
        halt(HaltTestLuaError);
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   153
end;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   154
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   155
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
   156
begin
10293
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   157
    LuaError(call + ': ' + error);
201ea4989985 state file name and line number in lua error messages
sheepluva
parents: 10291
diff changeset
   158
    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
   159
end;
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   160
10285
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   161
procedure LuaParameterCountError(expected, call, paramsyntax: shortstring; wrongcount: LongInt); inline;
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   162
begin
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   163
    // TODO: i18n?
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   164
    LuaCallError('Wrong number of parameters! (is: ' + inttostr(wrongcount) + ', should be: '+ expected + ')', call, paramsyntax);
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   165
end;
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   166
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   167
// compare with allowed count
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   168
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
   169
var c: LongInt;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   170
begin
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   171
    c:= lua_gettop(L);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   172
    if c <> count then
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   173
        begin
10285
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   174
        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
   175
        exit(false);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   176
        end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   177
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   178
    CheckLuaParamCount:= true;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   179
end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   180
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   181
// check if is either count1 or count2
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   182
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
   183
begin
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   184
    actual:= lua_gettop(L);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   185
    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
   186
        begin
10285
03b615d3c6e1 further WIP (better error messages)
sheepluva
parents: 10284
diff changeset
   187
        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
   188
        exit(false);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   189
        end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   190
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   191
    CheckAndFetchParamCount:= true;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   192
end;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   193
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   194
// check if is in range of count1 and count2
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   195
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
   196
begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   197
    actual:= lua_gettop(L);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   198
    if (actual < count1) or (actual > count2) then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   199
        begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   200
        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
   201
        exit(false);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   202
        end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   203
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   204
    CheckAndFetchParamCountRange:= true;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   205
end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
   206
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   207
// check if is same or higher as minCount
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   208
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
   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 < minCount) 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(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
   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
    CheckAndFetchLuaParamMinCount:= 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
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   220
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
   221
begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   222
    if lua_isnoneornil(L, i) then i:= -1
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   223
    else i:= lua_tointeger(L, i);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   224
    if (i < ord(Low(TGearType))) or (i > ord(High(TGearType))) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   225
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   226
        LuaCallError('Invalid gearType!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   227
        LuaToGearTypeOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   228
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   229
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   230
        LuaToGearTypeOrd:= i;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   231
end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   232
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   233
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
   234
begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   235
    if lua_isnoneornil(L, i) then i:= -1
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   236
    else i:= lua_tointeger(L, i);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   237
    if (i < ord(Low(TVisualGearType))) or (i > ord(High(TVisualGearType))) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   238
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   239
        LuaCallError('Invalid visualGearType!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   240
        LuaToVisualGearTypeOrd:= -1;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   241
        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   242
    else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   243
        LuaToVisualGearTypeOrd:= i;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   244
end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   245
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   246
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
   247
begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   248
    if lua_isnoneornil(L, i) then i:= -1
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   249
    else i:= lua_tointeger(L, i);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   250
    if (i < ord(Low(TAmmoType))) or (i > ord(High(TAmmoType))) 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 ammoType!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   253
        LuaToAmmoTypeOrd:= -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
        LuaToAmmoTypeOrd:= 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 LuaToStatInfoTypeOrd(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
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   262
    else i:= lua_tointeger(L, i);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   263
    if (i < ord(Low(TStatInfoType))) or (i > ord(High(TStatInfoType))) 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 statInfoType!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   266
        LuaToStatInfoTypeOrd:= -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
        LuaToStatInfoTypeOrd:= 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 LuaToSoundOrd(L : Plua_State; i: LongInt; call, paramsyntax: shortstring): LongInt; inline;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   273
begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   274
    if lua_isnoneornil(L, i) then i:= -1
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   275
    else i:= lua_tointeger(L, i);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   276
    if (i < ord(Low(TSound))) or (i > ord(High(TSound))) 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 soundId!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   279
        LuaToSoundOrd:= -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
        LuaToSoundOrd:= 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 LuaToHogEffectOrd(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
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   288
    else i:= lua_tointeger(L, i);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   289
    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
   290
        begin
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   291
        LuaCallError('Invalid gear type!', call, paramsyntax);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   292
        LuaToHogEffectOrd:= -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
        LuaToHogEffectOrd:= i;
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
   296
end;
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
   297
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   298
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
   299
begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   300
    if lua_isnoneornil(L, i) then i:= -1
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   301
    else i:= lua_tointeger(L, i);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   302
    if (i < ord(Low(TCapGroup))) or (i > ord(High(TCapGroup))) 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 capgroup type!', call, paramsyntax);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   305
        LuaToCapGroupOrd:= -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
        LuaToCapGroupOrd:= 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 LuaToSpriteOrd(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
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   314
    else i:= lua_tointeger(L, i);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   315
    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
   316
        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
   317
        LuaCallError('Invalid sprite id!', call, paramsyntax);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   318
        LuaToSpriteOrd:= -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
        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
   322
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
   323
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   324
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
   325
begin
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   326
    if lua_isnoneornil(L, i) then i:= -1
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   327
    else i:= lua_tointeger(L, i);
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   328
    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
   329
        begin
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   330
        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
   331
        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
   332
        end
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   333
    else
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   334
        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
   335
end;
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
   336
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
   337
// wrapped calls //
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   338
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   339
// 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
   340
// 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
   341
// 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
   342
// call CheckLuaParamCount or CheckAndFetchParamCount
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   343
// to validate/get the number of passed arguments (see their call definitions)
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   344
//
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   345
// 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
   346
4483
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   347
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
   348
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   349
    if CheckLuaParamCount(L, 2, 'band', 'value1, value2') then
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   350
        lua_pushinteger(L, lua_tointeger(L, 2) and lua_tointeger(L, 1))
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   351
    else
4483
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   352
        lua_pushnil(L);
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   353
    lc_band := 1;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   354
end;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   355
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   356
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
   357
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   358
    if CheckLuaParamCount(L, 2, 'bor', 'value1, value2') then
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   359
        lua_pushinteger(L, lua_tointeger(L, 2) or lua_tointeger(L, 1))
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   360
    else
4483
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   361
        lua_pushnil(L);
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   362
    lc_bor := 1;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   363
end;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   364
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   365
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
   366
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   367
    if CheckLuaParamCount(L, 1, 'bnot', 'value') then
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   368
        lua_pushinteger(L, (not lua_tointeger(L, 1)))
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   369
    else
4483
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   370
        lua_pushnil(L);
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   371
    lc_bnot := 1;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   372
end;
ad1524a177bd band/bor/bnot to support Lua 5.1 lack of binary ops
nemo
parents: 4481
diff changeset
   373
6764
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   374
function lc_div(L: PLua_State): LongInt; Cdecl;
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   375
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   376
    if CheckLuaParamCount(L, 2, 'div', 'dividend, divisor') then
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   377
        lua_pushinteger(L, lua_tointeger(L, 1) div lua_tointeger(L, 2))
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   378
    else
6764
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   379
        lua_pushnil(L);
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   380
    lc_div := 1;
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   381
end;
e56ff0231540 Add div to allow safe integer division from lua
nemo
parents: 6763
diff changeset
   382
4523
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   383
function lc_getinputmask(L : Plua_State) : LongInt; Cdecl;
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   384
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   385
    if CheckLuaParamCount(L, 0, 'GetInputMask', '') then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   386
        lua_pushinteger(L, InputMask);
4523
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   387
    lc_getinputmask:= 1
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   388
end;
23ed16e6c7d2 oops. forgot the getter.
nemo
parents: 4522
diff changeset
   389
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
   390
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
   391
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   392
    if CheckLuaParamCount(L, 1, 'SetInputMask', 'mask') then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   393
        InputMask:= lua_tointeger(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
   394
    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
   395
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
   396
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
   397
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
   398
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   399
    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
   400
        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
   401
    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
   402
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
   403
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   404
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
   405
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
   406
    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
   407
    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
   408
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   409
    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
   410
        begin
10131
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10129
diff changeset
   411
        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
   412
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
   413
        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
   414
        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
   415
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
   416
        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
   417
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   418
        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
   419
    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
   420
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
   421
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   422
// sets weapon to the desired ammo type
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   423
function lc_setweapon(L : Plua_State) : LongInt; Cdecl;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   424
var at: LongInt;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   425
const
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   426
    call = 'SetWeapon';
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   427
    params = 'ammoType';
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   428
begin
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   429
    // no point to run this without any CurrentHedgehog
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   430
    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 1, call, params)) then
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   431
        begin
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   432
        at:= LuaToAmmoTypeOrd(L, 1, call, params);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   433
        if at >= 0 then
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   434
            ParseCommand('setweap ' + char(at), true, true);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   435
        end;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   436
    lc_setweapon:= 0;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   437
end;
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
   438
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   439
// sets weapon to whatever weapons is next (wraps around, amSkip is skipped)
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   440
function lc_setnextweapon(L : Plua_State) : LongInt; Cdecl;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   441
var at          : LongInt;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   442
    nextAmmo    : TAmmo;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   443
    s, a, cs, fa: LongInt;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   444
const
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   445
    call = 'SetNextWeapon';
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   446
    params = '';
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   447
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   448
    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 0, call, params)) then
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   449
        begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   450
        at:= -1;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   451
        with CurrentHedgehog^ do
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   452
            begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   453
            cs:= 0; // current slot
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   454
            fa:= 0; // first ammo item to check
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   455
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   456
            // if something is selected, find it's successor
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   457
            if curAmmoType <> amNothing then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   458
                begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   459
                // get current slot index
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   460
                cs:= Ammoz[CurAmmoType].Slot;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   461
                // find current ammo index
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   462
                while (fa < cMaxSlotAmmoIndex)
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   463
                    and (Ammo^[cs, fa].AmmoType <> CurAmmoType) do
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   464
                        inc(fa);
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   465
                // increase once more because we won't successor
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   466
                inc(fa);
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   467
                end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   468
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   469
            // find first available ammo
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   470
            // revisit current slot too (current item might not be first)
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   471
            for s:= cs to cs + cMaxSlotIndex + 1 do
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   472
                begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   473
                for a:= fa to cMaxSlotAmmoIndex do
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   474
                    begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   475
                    // check if we went full circle
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   476
                    if (a = fa) and (s = cs + cMaxSlotIndex + 1)  then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   477
                        exit(0);
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   478
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   479
                    // get ammo
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   480
                    nextAmmo:= Ammo^[s mod (cMaxSlotIndex + 1), a];
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   481
                    // only switch to ammos the hog actually has
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   482
                    if (nextAmmo.AmmoType <> amNothing)
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   483
                        and (nextAmmo.AmmoType <> amSkip) and (nextAmmo.Count > 0) then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   484
                            begin
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   485
                            at:= ord(nextAmmo.AmmoType);
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   486
                            break;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   487
                            end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   488
                    end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   489
                // stop slot loop if something was found
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   490
                if at >= 0 then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   491
                    break;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   492
                // check following slots starting with first item
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   493
                fa:= 0;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   494
                end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   495
            end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   496
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   497
        if at >= 0 then
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   498
            ParseCommand('setweap ' + char(at), true, true);
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   499
        end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   500
    lc_setnextweapon:= 0;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   501
end;
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
   502
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
   503
function lc_showmission(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
   504
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   505
    if CheckLuaParamCount(L, 5, 'ShowMission', 'caption, subcaption, text, icon, time') then
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10122
diff changeset
   506
        ShowMission(lua_tostringA(L, 1), lua_tostringA(L, 2), lua_tostringA(L, 3), lua_tointeger(L, 4), lua_tointeger(L, 5));
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
   507
    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
   508
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
   509
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   510
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
   511
begin
3407
dcc129c4352e Engine:
smxx
parents: 3368
diff changeset
   512
    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
   513
    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
   514
    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
   515
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
   516
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   517
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
   518
var i, n : integer;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   519
begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   520
    // can have 1 or more arguments
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   521
    if CheckAndFetchLuaParamMinCount(L, 1, 'EnableGameFlags', 'gameFlag, ... ', n) then
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   522
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   523
        for i:= 1 to n do
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   524
            GameFlags := GameFlags or LongWord(lua_tointeger(L, i));
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   525
        ScriptSetInteger('GameFlags', GameFlags);
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   526
        end;
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8368
diff changeset
   527
    lc_enablegameflags:= 0;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   528
end;
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   529
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   530
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
   531
var i , n: integer;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   532
begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   533
    // can have 1 or more arguments
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   534
    if CheckAndFetchLuaParamMinCount(L, 1, 'DisableGameFlags', 'gameFlag, ... ', n) then
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   535
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   536
        for i:= 1 to n do
10078
8572d1f8b2f0 Some love to pas2c
unc0rr
parents: 10040
diff changeset
   537
            GameFlags := GameFlags and (not LongWord(lua_tointeger(L, i)));
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   538
        ScriptSetInteger('GameFlags', GameFlags);
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   539
        end;
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8368
diff changeset
   540
    lc_disablegameflags:= 0;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   541
end;
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   542
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   543
function lc_cleargameflags(L : Plua_State) : LongInt; Cdecl;
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   544
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   545
    if CheckLuaParamCount(L, 0, 'ClearGameFlags', '') then
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   546
        begin
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   547
        GameFlags:= 0;
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   548
        ScriptSetInteger('GameFlags', GameFlags);
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   549
        end;
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8368
diff changeset
   550
    lc_cleargameflags:= 0;
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   551
end;
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
   552
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   553
function lc_getgameflag(L : Plua_State) : LongInt; Cdecl;
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   554
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   555
    if CheckLuaParamCount(L, 1, 'GetGameFlag', 'gameflag') then
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   556
        lua_pushboolean(L, (GameFlags and LongWord(lua_tointeger(L, 1)) <> 0))
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   557
    else
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   558
        lua_pushnil(L);
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   559
    lc_getgameflag:= 1;
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   560
end;
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
   561
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   562
function lc_addcaption(L : Plua_State) : LongInt; Cdecl;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   563
var cg: LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   564
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   565
    call = 'AddCaption';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   566
    params = 'text [, color, captiongroup]';
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   567
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   568
    if CheckAndFetchParamCount(L, 1, 3, call, params, cg) then
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   569
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   570
        if cg = 1 then
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   571
            AddCaption(lua_tostringA(L, 1), cWhiteColor, capgrpMessage)
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   572
        else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   573
            begin
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   574
            cg:= LuaToCapGroupOrd(L, 3, call, params);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   575
            if cg >= 0 then
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   576
                AddCaption(lua_tostringA(L, 1), lua_tointeger(L, 2) shr 8, TCapGroup(cg));
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   577
            end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   578
        end;
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   579
    lc_addcaption:= 0;
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   580
end;
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
   581
3848
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   582
function lc_campaignlock(L : Plua_State) : LongInt; Cdecl;
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   583
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   584
    if CheckLuaParamCount(L, 1, 'CampaignLock', 'TODO') then
3848
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   585
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   586
        // TODO
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   587
        end;
3848
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   588
    lc_campaignlock:= 0;
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   589
end;
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   590
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   591
function lc_campaignunlock(L : Plua_State) : LongInt; Cdecl;
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   592
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   593
    if CheckLuaParamCount(L, 1, 'CampaignUnlock', 'TODO') then
3848
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   594
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   595
        // TODO
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   596
        end;
3848
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   597
    lc_campaignunlock:= 0;
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   598
end;
32ceb775906b Engine:
smaxx
parents: 3836
diff changeset
   599
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
   600
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
   601
var gear: PGear;
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
   602
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   603
    if CheckLuaParamCount(L, 4,'SpawnFakeHealthCrate', 'x, y, explode, poison') then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   604
        begin
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
   605
        gear := SpawnFakeCrateAt(lua_tointeger(L, 1), lua_tointeger(L, 2),
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   606
        HealthCrate, lua_toboolean(L, 3), lua_toboolean(L, 4));
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
   607
        lua_pushinteger(L, gear^.uid);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   608
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   609
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   610
        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
   611
    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
   612
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
   613
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
   614
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
   615
var gear: PGear;
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
   616
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   617
    if CheckLuaParamCount(L, 4,'SpawnFakeAmmoCrate', 'x, y, explode, poison') then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   618
        begin
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
   619
        gear := SpawnFakeCrateAt(lua_tointeger(L, 1), lua_tointeger(L, 2),
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   620
        AmmoCrate, lua_toboolean(L, 3), lua_toboolean(L, 4));
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
   621
        lua_pushinteger(L, gear^.uid);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   622
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   623
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   624
        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
   625
    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
   626
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
   627
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
   628
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
   629
var gear: PGear;
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
   630
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   631
    if CheckLuaParamCount(L, 4,'SpawnFakeUtilityCrate', 'x, y, explode, poison') then
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
   632
        begin
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
   633
        gear := SpawnFakeCrateAt(lua_tointeger(L, 1), lua_tointeger(L, 2),
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   634
        UtilityCrate, lua_toboolean(L, 3), lua_toboolean(L, 4));
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
   635
        lua_pushinteger(L, gear^.uid);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   636
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   637
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   638
        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
   639
    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
   640
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
   641
3730
aecea9aa53dc Engine:
smaxx
parents: 3724
diff changeset
   642
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
   643
var gear: PGear;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   644
var health, n: LongInt;
3730
aecea9aa53dc Engine:
smaxx
parents: 3724
diff changeset
   645
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   646
    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
   647
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   648
        if n = 3 then
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   649
            health:= lua_tointeger(L, 3)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   650
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   651
            health:= cHealthCaseAmount;
7337
c224cd2d32f3 Allow script to set number of ammo in a crate. untested.
nemo
parents: 7307
diff changeset
   652
        gear := SpawnCustomCrateAt(lua_tointeger(L, 1), lua_tointeger(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
   653
        if gear <> nil then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   654
            lua_pushinteger(L, gear^.uid)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   655
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   656
            lua_pushnil(L);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   657
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   658
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   659
        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
   660
    lc_spawnhealthcrate := 1;
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   661
end;
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   662
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   663
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
   664
var gear: PGear;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   665
    n   : LongInt;
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   666
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   667
    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
   668
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   669
        if n = 3 then
7337
c224cd2d32f3 Allow script to set number of ammo in a crate. untested.
nemo
parents: 7307
diff changeset
   670
             gear := SpawnCustomCrateAt(lua_tointeger(L, 1), lua_tointeger(L, 2), AmmoCrate, lua_tointeger(L, 3), 0)
c224cd2d32f3 Allow script to set number of ammo in a crate. untested.
nemo
parents: 7307
diff changeset
   671
        else gear := SpawnCustomCrateAt(lua_tointeger(L, 1), lua_tointeger(L, 2), AmmoCrate, lua_tointeger(L, 3), lua_tointeger(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
   672
        if gear <> nil then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   673
            lua_pushinteger(L, gear^.uid)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   674
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   675
            lua_pushnil(L);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   676
        end
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
        lua_pushnil(L);
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   679
    lc_spawnammocrate := 1;
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   680
end;
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   681
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   682
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
   683
var gear: PGear;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   684
    n   : LongInt;
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   685
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   686
    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
   687
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   688
        if n = 3 then
7337
c224cd2d32f3 Allow script to set number of ammo in a crate. untested.
nemo
parents: 7307
diff changeset
   689
             gear := SpawnCustomCrateAt(lua_tointeger(L, 1), lua_tointeger(L, 2), UtilityCrate, lua_tointeger(L, 3), 0)
c224cd2d32f3 Allow script to set number of ammo in a crate. untested.
nemo
parents: 7307
diff changeset
   690
        else gear := SpawnCustomCrateAt(lua_tointeger(L, 1), lua_tointeger(L, 2), UtilityCrate, lua_tointeger(L, 3), lua_tointeger(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
   691
        if gear <> nil then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   692
            lua_pushinteger(L, gear^.uid)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   693
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   694
            lua_pushnil(L);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   695
       end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   696
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   697
        lua_pushnil(L);
3734
304a83637eb4 * SpawnCustomCrateAt procedure + lua bindings
burp
parents: 3730
diff changeset
   698
    lc_spawnutilitycrate := 1;
3730
aecea9aa53dc Engine:
smaxx
parents: 3724
diff changeset
   699
end;
aecea9aa53dc Engine:
smaxx
parents: 3724
diff changeset
   700
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
   701
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
   702
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
   703
    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
   704
    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
   705
    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
   706
const
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   707
    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
   708
    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
   709
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   710
    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
   711
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   712
        t:= LuaToGearTypeOrd(L, 3, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   713
        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
   714
            begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   715
            gt:= TGearType(t);
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   716
            x:= lua_tointeger(L, 1);
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   717
            y:= lua_tointeger(L, 2);
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   718
            s:= lua_tointeger(L, 4);
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   719
            dx:= int2hwFloat(lua_tointeger(L, 5)) / 1000000;
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   720
            dy:= int2hwFloat(lua_tointeger(L, 6)) / 1000000;
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   721
            t:= lua_tointeger(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
   722
10279
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   723
            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
   724
            lastGearByUID:= gear;
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   725
            lua_pushinteger(L, gear^.uid)
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   726
            end
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   727
        else
b75e7ebfbe11 fix possible engine crash that a lua script could cause by passing an invalid geartype to addgear
sheepluva
parents: 10278
diff changeset
   728
            lua_pushnil(L);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   729
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   730
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   731
        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
   732
    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
   733
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
   734
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
   735
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
   736
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
   737
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   738
    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
   739
        begin
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
   740
        gear:= GearByUID(lua_tointeger(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
   741
        if gear <> nil then
7517
f287f00063e8 Allow scripting to delete gears
nemo
parents: 7426
diff changeset
   742
            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
   743
        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
   744
    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
   745
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
   746
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
   747
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
   748
var vg : PVisualGear;
10346
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   749
    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
   750
    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
   751
    vgt: TVisualGearType;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   752
    uid: Longword;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   753
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   754
    call = 'AddVisualGear';
10346
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   755
    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
   756
begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   757
    uid:= 0;
10346
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   758
    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
   759
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   760
        s:= LuaToVisualGearTypeOrd(L, 3, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   761
        if s >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   762
            begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   763
            vgt:= TVisualGearType(s);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   764
            x:= lua_tointeger(L, 1);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   765
            y:= lua_tointeger(L, 2);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   766
            s:= lua_tointeger(L, 4);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   767
            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
   768
10346
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   769
            if n = 6 then
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   770
                begin
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   771
                layer:= lua_tointeger(L, 6);
10347
fd80921a8f81 add assignment I forgot
sheepluva
parents: 10346
diff changeset
   772
                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
   773
                end
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   774
            else
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   775
                vg:= AddVisualGear(x, y, vgt, s, c);
dd22bcf08e4f lua api: allow to specify layer when adding visual gear
sheepluva
parents: 10312
diff changeset
   776
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   777
            if vg <> nil then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   778
                begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   779
                lastVisualGearByUID:= vg;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   780
                uid:= vg^.uid;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   781
                lua_pushinteger(L, uid);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   782
                end;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   783
            end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   784
            else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   785
                lua_pushnil(L);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   786
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   787
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
   788
        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
   789
    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
   790
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
   791
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
   792
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
   793
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
   794
begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   795
    vg:= nil;
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   796
    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
   797
        begin
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
   798
        vg:= VisualGearByUID(lua_tointeger(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
   799
        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
   800
            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
   801
        end;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   802
    // allow caller to know whether there was something to delete
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   803
    lua_pushboolean(L, vg <> nil);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
   804
    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
   805
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
   806
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
   807
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
   808
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
   809
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   810
    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
   811
        begin
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
   812
        vg:= VisualGearByUID(lua_tointeger(L, 1));
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
   813
        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
   814
            begin
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
   815
            lua_pushinteger(L, round(vg^.X));
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
   816
            lua_pushinteger(L, round(vg^.Y));
5075
59b13b38a827 not useful for visual gears, and apparently not helpful for consistency
nemo
parents: 5074
diff changeset
   817
            lua_pushnumber(L, vg^.dX);
59b13b38a827 not useful for visual gears, and apparently not helpful for consistency
nemo
parents: 5074
diff changeset
   818
            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
   819
            lua_pushnumber(L, vg^.Angle);
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
   820
            lua_pushinteger(L, vg^.Frame);
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
   821
            lua_pushinteger(L, vg^.FrameTicks);
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
   822
            lua_pushinteger(L, vg^.State);
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
   823
            lua_pushinteger(L, vg^.Timer);
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
   824
            lua_pushinteger(L, vg^.Tint);
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
   825
            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
   826
        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
   827
            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
   828
            lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   829
            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
   830
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   831
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   832
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   833
        begin
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   834
        lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L); lua_pushnil(L);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   835
        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
   836
        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
   837
    lc_getvisualgearvalues:= 10;
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
   838
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
   839
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
   840
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
   841
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
   842
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   843
    if CheckLuaParamCount(L, 11, 'SetVisualGearValues', 'vgUid, X, Y, dX, dY, Angle, Frame, FrameTicks, State, Timer, Tint') 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
   844
        begin
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
   845
        vg:= VisualGearByUID(lua_tointeger(L, 1));
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
   846
        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
   847
            begin
4450
b8d30b0e4829 forgot the passed in uid
nemo
parents: 4443
diff changeset
   848
            vg^.X:= lua_tointeger(L, 2);
b8d30b0e4829 forgot the passed in uid
nemo
parents: 4443
diff changeset
   849
            vg^.Y:= lua_tointeger(L, 3);
5075
59b13b38a827 not useful for visual gears, and apparently not helpful for consistency
nemo
parents: 5074
diff changeset
   850
            vg^.dX:= lua_tonumber(L, 4);
59b13b38a827 not useful for visual gears, and apparently not helpful for consistency
nemo
parents: 5074
diff changeset
   851
            vg^.dY:= lua_tonumber(L, 5);
4450
b8d30b0e4829 forgot the passed in uid
nemo
parents: 4443
diff changeset
   852
            vg^.Angle:= lua_tonumber(L, 6);
b8d30b0e4829 forgot the passed in uid
nemo
parents: 4443
diff changeset
   853
            vg^.Frame:= lua_tointeger(L, 7);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   854
            if lua_tointeger(L, 8) <> 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
   855
                vg^.FrameTicks:= lua_tointeger(L, 8);  // find a better way to do this. maybe need to break all these up.
4450
b8d30b0e4829 forgot the passed in uid
nemo
parents: 4443
diff changeset
   856
            vg^.State:= lua_tointeger(L, 9);
b8d30b0e4829 forgot the passed in uid
nemo
parents: 4443
diff changeset
   857
            vg^.Timer:= lua_tointeger(L, 10);
b8d30b0e4829 forgot the passed in uid
nemo
parents: 4443
diff changeset
   858
            vg^.Tint:= lua_tointeger(L, 11);
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
   859
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   860
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   861
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   862
        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
   863
    lc_setvisualgearvalues:= 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
   864
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
   865
3058
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
   866
function lc_getfollowgear(L : Plua_State) : LongInt; Cdecl;
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
   867
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   868
    if CheckLuaParamCount(L, 0, 'GetFollowGear', '') then
3058
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
   869
        begin
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
   870
        if FollowGear = nil then
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
   871
            lua_pushnil(L)
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
   872
        else
4484
b7a098f2649a these should probably be expressly integer
nemo
parents: 4483
diff changeset
   873
            lua_pushinteger(L, FollowGear^.uid);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   874
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   875
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   876
        lua_pushnil(L);
3058
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
   877
    lc_getfollowgear:= 1; // 1 return value
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
   878
end;
2ebc20485344 Engine:
smxx
parents: 3045
diff changeset
   879
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
   880
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
   881
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
   882
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   883
    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
   884
        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
   885
        gear:= GearByUID(lua_tointeger(L, 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
   886
        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
   887
            lua_pushinteger(L, ord(gear^.Kind))
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
   888
        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
   889
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   890
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   891
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   892
        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
   893
    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
   894
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
   895
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   896
function lc_getgearmessage(L : Plua_State) : LongInt; Cdecl;
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   897
var gear : PGear;
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   898
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   899
    if CheckLuaParamCount(L, 1, 'GetGearMessage', 'gearUid') then
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   900
        begin
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   901
        gear:= GearByUID(lua_tointeger(L, 1));
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   902
        if gear <> nil then
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   903
            lua_pushinteger(L, gear^.message)
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   904
        else
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   905
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   906
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   907
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   908
        lua_pushnil(L); // return value on stack (nil)
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   909
    lc_getgearmessage:= 1
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   910
end;
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
   911
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
   912
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
   913
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
   914
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   915
    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
   916
        begin
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
   917
        gear:= GearByUID(lua_tointeger(L, 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
   918
        if gear <> nil then
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
   919
            lua_pushinteger(L, hwRound(gear^.elasticity * _10000))
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
   920
        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
   921
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   922
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   923
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   924
        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
   925
    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
   926
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
   927
3896
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   928
function lc_setgearmessage(L : Plua_State) : LongInt; Cdecl;
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   929
var gear : PGear;
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   930
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   931
    if CheckLuaParamCount(L, 2, 'SetGearMessage', 'gearUid, message') then
3896
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   932
        begin
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   933
        gear:= GearByUID(lua_tointeger(L, 1));
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   934
        if gear <> nil then
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   935
            gear^.message:= lua_tointeger(L, 2);
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   936
        end;
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   937
    lc_setgearmessage:= 0
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   938
end;
59de68d541f1 Engine:
smaxx
parents: 3894
diff changeset
   939
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   940
function lc_getgearpos(L : Plua_State) : LongInt; Cdecl;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   941
var gear : PGear;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   942
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   943
    if CheckLuaParamCount(L, 1, 'GetGearPos', 'gearUid') then
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   944
        begin
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   945
        gear:= GearByUID(lua_tointeger(L, 1));
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   946
        if gear <> nil then
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   947
            lua_pushinteger(L, gear^.Pos)
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   948
        else
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   949
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   950
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   951
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   952
        lua_pushnil(L); // return value on stack (nil)
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   953
    lc_getgearpos:= 1
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   954
end;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   955
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   956
function lc_setgearpos(L : Plua_State) : LongInt; Cdecl;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   957
var gear : PGear;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   958
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   959
    if CheckLuaParamCount(L, 2, 'SetGearPos', 'gearUid, value') then
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   960
        begin
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   961
        gear:= GearByUID(lua_tointeger(L, 1));
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   962
        if gear <> nil then
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   963
            gear^.Pos:= lua_tointeger(L, 2);
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   964
        end;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   965
    lc_setgearpos:= 0
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   966
end;
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
   967
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
   968
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
   969
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
   970
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   971
    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
   972
        begin
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
   973
        gear:= GearByUID(lua_tointeger(L, 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
   974
        if gear <> nil then
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
   975
            lua_pushinteger(L, gear^.CollisionMask)
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
   976
        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
   977
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   978
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   979
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
   980
        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
   981
    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
   982
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
   983
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
   984
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
   985
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
   986
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   987
    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
   988
        begin
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
   989
        gear:= GearByUID(lua_tointeger(L, 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
   990
        if gear <> nil then
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
   991
            gear^.CollisionMask:= lua_tointeger(L, 2);
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
   992
        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
   993
    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
   994
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
   995
3755
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
   996
function lc_gethoglevel(L : Plua_State): LongInt; Cdecl;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
   997
var gear : PGear;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
   998
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
   999
    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
  1000
        begin
3755
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1001
        gear := GearByUID(lua_tointeger(L, 1));
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  1002
        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
  1003
            lua_pushinteger(L, gear^.Hedgehog^.BotLevel)
3755
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1004
        else
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1005
            lua_pushnil(L);
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1006
    end;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1007
    lc_gethoglevel := 1;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1008
end;
02dc9fcb6477 GetHogLevel lua function
burp
parents: 3750
diff changeset
  1009
4496
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1010
function lc_sethoglevel(L : Plua_State) : LongInt; Cdecl;
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1011
var gear : PGear;
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1012
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1013
    if CheckLuaParamCount(L, 2, 'SetHogLevel', 'gearUid, level') then
4496
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1014
        begin
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1015
        gear:= GearByUID(lua_tointeger(L, 1));
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1016
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1017
            gear^.Hedgehog^.BotLevel:= lua_tointeger(L, 2);
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1018
        end;
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1019
    lc_sethoglevel:= 0
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1020
end;
ba5da3388110 add missing setter for botlevel
nemo
parents: 4484
diff changeset
  1021
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
  1022
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
  1023
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
  1024
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1025
    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
  1026
        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
  1027
        gear:= GearByUID(lua_tointeger(L, 1));
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  1028
        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
  1029
            begin
4372
3836973380b9 remove some more PHedgehog casts
nemo
parents: 4371
diff changeset
  1030
            lua_pushinteger(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
  1031
            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
  1032
        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
  1033
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1034
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1035
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1036
        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
  1037
    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
  1038
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
  1039
4498
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1040
function lc_getclancolor(L : Plua_State) : LongInt; Cdecl;
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1041
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1042
    if CheckLuaParamCount(L, 1, 'GetClanColor', 'clan') then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1043
        lua_pushinteger(L, ClansArray[lua_tointeger(L, 1)]^.Color shl 8 or $FF)
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1044
    else
4498
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1045
        lua_pushnil(L); // return value on stack (nil)
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1046
    lc_getclancolor:= 1
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1047
end;
8c9595e39539 clan color fetch
nemo
parents: 4496
diff changeset
  1048
4882
b4c84db92d8f expose set clan color for Cairo. might also be useful for betrayals in campaign mode or somesuch
nemo
parents: 4875
diff changeset
  1049
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
  1050
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
  1051
    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
  1052
    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
  1053
    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
  1054
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1055
    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
  1056
        begin
10581
f0b4c14a3c62 Wuzzy's changes to climbhome w/ some tweaks by me
nemo
parents: 10560
diff changeset
  1057
	i:= lua_tointeger(L,1);
f0b4c14a3c62 Wuzzy's changes to climbhome w/ some tweaks by me
nemo
parents: 10560
diff changeset
  1058
	if i >= ClansCount then exit(0);
f0b4c14a3c62 Wuzzy's changes to climbhome w/ some tweaks by me
nemo
parents: 10560
diff changeset
  1059
        clan := ClansArray[i];
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
  1060
        clan^.Color:= lua_tointeger(L, 2) shr 8;
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9648
diff changeset
  1061
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
  1062
        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
  1063
            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
  1064
            team:= clan^.Teams[i];
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
  1065
            for j:= 0 to 7 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
  1066
                begin
4891
nemo
parents: 4890
diff changeset
  1067
                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
  1068
                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
  1069
                    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
  1070
                    FreeTexture(hh.NameTagTex);
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10122
diff changeset
  1071
                    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
  1072
                    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
  1073
                    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
  1074
                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
  1075
            FreeTexture(team^.NameTagTex);
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10122
diff changeset
  1076
            team^.NameTagTex:= RenderStringTex(ansistring(clan^.Teams[i]^.TeamName), clan^.Color, fnt16);
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9648
diff changeset
  1077
            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
  1078
10581
f0b4c14a3c62 Wuzzy's changes to climbhome w/ some tweaks by me
nemo
parents: 10560
diff changeset
  1079
	FreeTexture(clan^.HealthTex);
9656
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9648
diff changeset
  1080
        clan^.HealthTex:= makeHealthBarTexture(cTeamHealthWidth + 5, clan^.Teams[0]^.NameTagTex^.h, clan^.Color);
18422d205080 - More HealthTex to clan structure
unc0rr
parents: 9648
diff changeset
  1081
        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
  1082
4882
b4c84db92d8f expose set clan color for Cairo. might also be useful for betrayals in campaign mode or somesuch
nemo
parents: 4875
diff changeset
  1083
    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
  1084
end;
b4c84db92d8f expose set clan color for Cairo. might also be useful for betrayals in campaign mode or somesuch
nemo
parents: 4875
diff changeset
  1085
4236
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1086
function lc_gethogteamname(L : Plua_State) : LongInt; Cdecl;
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1087
var gear : PGear;
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1088
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1089
    if CheckLuaParamCount(L, 1, 'GetHogTeamName', 'gearUid') then
4236
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1090
        begin
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1091
        gear:= GearByUID(lua_tointeger(L, 1));
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  1092
        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
  1093
            lua_pushstring(L, str2pchar(gear^.Hedgehog^.Team^.TeamName))
4236
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1094
        else
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1095
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1096
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1097
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1098
        lua_pushnil(L); // return value on stack (nil)
4236
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1099
    lc_gethogteamname:= 1
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1100
end;
fa2680cfff86 added function GetHogTeamName to lua, makes TeamsCount more useful
Henek
parents: 4235
diff changeset
  1101
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1102
function lc_sethogteamname(L : Plua_State) : LongInt; Cdecl;
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1103
var gear : PGear;
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1104
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1105
    if CheckLuaParamCount(L, 2, 'SetHogTeamName', 'gearUid, name') then
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1106
        begin
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1107
        gear := GearByUID(lua_tointeger(L, 1));
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1108
        if (gear <> nil) and ((gear^.Kind = gtHedgehog) or (gear^.Kind = gtGrave)) and (gear^.Hedgehog <> nil) then
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1109
            begin
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1110
            gear^.Hedgehog^.Team^.TeamName := lua_tostring(L, 2);
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1111
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1112
            FreeTexture(gear^.Hedgehog^.Team^.NameTagTex);
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10122
diff changeset
  1113
            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
  1114
            end
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1115
        else
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1116
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1117
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1118
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1119
        lua_pushnil(L); // return value on stack (nil)
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1120
    lc_sethogteamname:= 1
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1121
end;
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  1122
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
  1123
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
  1124
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
  1125
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1126
    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
  1127
        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
  1128
        gear:= GearByUID(lua_tointeger(L, 1));
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  1129
        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
  1130
            begin
4372
3836973380b9 remove some more PHedgehog casts
nemo
parents: 4371
diff changeset
  1131
            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
  1132
            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
  1133
        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
  1134
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1135
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1136
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1137
        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
  1138
    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
  1139
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
  1140
5245
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1141
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
  1142
var gear : PGear;
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1143
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1144
    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
  1145
        begin
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1146
        gear:= GearByUID(lua_tointeger(L, 1));
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1147
        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
  1148
            begin
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  1149
            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
  1150
9748
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  1151
            FreeTexture(gear^.Hedgehog^.NameTagTex);
10127
7f29a65aa1e4 It compiles \o/
unc0rr
parents: 10122
diff changeset
  1152
            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
  1153
            end
5245
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1154
        end;
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1155
    lc_sethogname:= 0;
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1156
end;
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1157
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1158
function lc_gettimer(L : Plua_State) : LongInt; Cdecl;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1159
var gear : PGear;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1160
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1161
    if CheckLuaParamCount(L, 1, 'GetTimer', 'gearUid') then
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1162
        begin
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1163
        gear:= GearByUID(lua_tointeger(L, 1));
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1164
        if gear <> nil then
4484
b7a098f2649a these should probably be expressly integer
nemo
parents: 4483
diff changeset
  1165
            lua_pushinteger(L, gear^.Timer)
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1166
        else
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1167
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1168
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1169
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1170
        lua_pushnil(L); // return value on stack (nil)
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1171
    lc_gettimer:= 1
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1172
end;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1173
10589
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1174
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
  1175
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
  1176
begin
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1177
    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
  1178
        begin
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1179
        gear:= GearByUID(lua_tointeger(L, 1));
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1180
        if gear <> nil then
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1181
            lua_pushinteger(L, gear^.FlightTime)
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1182
        else
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1183
            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
  1184
        end
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1185
    else
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1186
        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
  1187
    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
  1188
end;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1189
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1190
function lc_gethealth(L : Plua_State) : LongInt; Cdecl;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1191
var gear : PGear;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1192
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1193
    if CheckLuaParamCount(L, 1, 'GetHealth', 'gearUid') then
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1194
        begin
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1195
        gear:= GearByUID(lua_tointeger(L, 1));
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1196
        if gear <> nil then
4484
b7a098f2649a these should probably be expressly integer
nemo
parents: 4483
diff changeset
  1197
            lua_pushinteger(L, gear^.Health)
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1198
        else
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1199
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1200
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1201
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1202
        lua_pushnil(L); // return value on stack (nil)
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1203
    lc_gethealth:= 1
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1204
end;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1205
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
  1206
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
  1207
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
  1208
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1209
    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
  1210
        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
  1211
        gear:= GearByUID(lua_tointeger(L, 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
  1212
        if gear <> nil then
4484
b7a098f2649a these should probably be expressly integer
nemo
parents: 4483
diff changeset
  1213
            lua_pushinteger(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
  1214
        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
  1215
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1216
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1217
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1218
        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
  1219
    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
  1220
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
  1221
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1222
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
  1223
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
  1224
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1225
    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
  1226
        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
  1227
        gear:= GearByUID(lua_tointeger(L, 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
  1228
        if gear <> nil then
4484
b7a098f2649a these should probably be expressly integer
nemo
parents: 4483
diff changeset
  1229
            lua_pushinteger(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
  1230
        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
  1231
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1232
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1233
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1234
        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
  1235
    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
  1236
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
  1237
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1238
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
  1239
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
  1240
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1241
    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
  1242
        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
  1243
        gears:= GearByUID(lua_tointeger(L, 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
  1244
        geard:= GearByUID(lua_tointeger(L, 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
  1245
        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
  1246
            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
  1247
            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
  1248
            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
  1249
            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
  1250
            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
  1251
            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
  1252
        end;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1253
    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
  1254
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
  1255
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1256
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
  1257
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
  1258
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1259
    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
  1260
        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
  1261
        gear:= GearByUID(lua_tointeger(L, 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
  1262
        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
  1263
        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
  1264
    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
  1265
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
  1266
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1267
function lc_hogsay(L : Plua_State) : LongInt; Cdecl;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1268
var gear : PGear;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1269
   vgear : PVisualGear;
4533
8d35c3e0e6ba add optional state parameter to hogsay
nemo
parents: 4523
diff changeset
  1270
       s : LongWord;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1271
       n : LongInt;
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1272
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1273
    if CheckAndFetchParamCount(L, 3, 4, 'HogSay', 'gearUid, text, manner [, vgState]', n) then
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1274
        begin
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1275
        gear:= GearByUID(lua_tointeger(L, 1));
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1276
        if gear <> nil then
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1277
            begin
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1278
            // state defaults to 0 if state param is given
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1279
            if n = 4 then
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1280
                s:= lua_tointeger(L, 4)
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1281
            else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1282
                s:= 0;
4533
8d35c3e0e6ba add optional state parameter to hogsay
nemo
parents: 4523
diff changeset
  1283
            vgear:= AddVisualGear(0, 0, vgtSpeechBubble, s, true);
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1284
            if vgear <> nil then
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1285
               begin
10518
dbbe2f6c0a96 make gear ability to speak somewhat less ironic
sheepluva
parents: 10516
diff changeset
  1286
               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
  1287
               if Gear^.Kind = gtHedgehog then
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1288
                   begin
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1289
                   AddChatString(#1+'[' + gear^.Hedgehog^.Name + '] '+vgear^.text);
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1290
                   vgear^.Hedgehog:= gear^.Hedgehog
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1291
                   end
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1292
               else vgear^.Frame:= gear^.uid;
1a6b9a98147c hm. I think I forgot to commit this when adding speech bubble change
nemo
parents: 10150
diff changeset
  1293
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1294
               vgear^.FrameTicks:= lua_tointeger(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
  1295
               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
  1296
                   vgear^.FrameTicks:= 1;
9764
8dc9d268330f revert r938d1c08d0d1 in favour of putting it in the chat log. I think this addresses main concern about missing text. There've been complaints in past too about conversation in bubbles not being visible in history. If the objection is that r938d1c08d0d1 offers a more æsthetic solution, I think it should augment this, be flagged, and fix the visual issues first.
nemo
parents: 9752
diff changeset
  1297
               lua_pushinteger(L, vgear^.Uid);
5529
9a47cff3910a return visual gear in hogsay
nemo
parents: 5527
diff changeset
  1298
               end
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1299
            end
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  1300
        else
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  1301
            lua_pushnil(L)
4533
8d35c3e0e6ba add optional state parameter to hogsay
nemo
parents: 4523
diff changeset
  1302
        end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1303
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1304
        lua_pushnil(L);
5529
9a47cff3910a return visual gear in hogsay
nemo
parents: 5527
diff changeset
  1305
    lc_hogsay:= 1
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1306
end;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1307
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1308
function lc_switchhog(L : Plua_State) : LongInt; Cdecl;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1309
var gear, prevgear : PGear;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1310
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1311
    if CheckLuaParamCount(L, 1, 'SwitchHog', 'gearUid') then
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1312
        begin
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1313
        gear:= GearByUID(lua_tointeger(L, 1));
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1314
// 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
  1315
        if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) and (CurrentHedgehog <> nil) then
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1316
            begin
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1317
            prevgear := CurrentHedgehog^.Gear;
7573
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1318
            if prevgear <> nil then
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1319
                begin
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1320
                prevgear^.Active := false;
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1321
                prevgear^.State:= prevgear^.State and (not gstHHDriven);
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1322
                prevgear^.Z := cHHZ;
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1323
                prevgear^.Message:= prevgear^.Message or gmRemoveFromList or gmAddToList;
364cd923db43 extra nil check for lua hog switch
nemo
parents: 7567
diff changeset
  1324
                end;
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1325
7270
93e92e82d5c8 Step 1. Add current hedgehog as top bit of bottom byte.
nemo
parents: 7156
diff changeset
  1326
            SwitchCurrentHedgehog(gear^.Hedgehog);
93e92e82d5c8 Step 1. Add current hedgehog as top bit of bottom byte.
nemo
parents: 7156
diff changeset
  1327
            CurrentTeam:= CurrentHedgehog^.Team;
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1328
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1329
            gear^.State:= gear^.State or gstHHDriven;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1330
            gear^.Active := true;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1331
            gear^.Z := cCurrHHZ;
7401
4c3ec3dca0c7 oh yeah, these too
nemo
parents: 7339
diff changeset
  1332
            gear^.Message:= gear^.Message or gmRemoveFromList or gmAddToList;
4851
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1333
            end
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1334
        end;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1335
    lc_switchhog:= 0
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1336
end;
3ba1ecc06dc6 SwitchHog in scripting
nemo
parents: 4850
diff changeset
  1337
4481
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1338
function lc_addammo(L : Plua_State) : LongInt; Cdecl;
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1339
var gear : PGear;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1340
    at, n: LongInt;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1341
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1342
    call = 'AddAmmo';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1343
    params = 'gearUid, ammoType [, ammoCount]';
4481
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1344
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1345
    if CheckAndFetchParamCount(L, 2, 3, call, params, n) then
4481
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1346
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1347
        at:= LuaToAmmoTypeOrd(L, 2, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1348
        if at >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1349
            begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1350
            gear:= GearByUID(lua_tointeger(L, 1));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1351
            if (gear <> nil) and (gear^.Hedgehog <> nil) then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1352
                if n = 2 then
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1353
                    AddAmmo(gear^.Hedgehog^, TAmmoType(at))
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1354
                else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1355
                    SetAmmo(gear^.Hedgehog^, TAmmoType(at), lua_tointeger(L, 3))
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1356
            end;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1357
        end;
4481
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1358
    lc_addammo:= 0
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1359
end;
0d73e7db3d59 Eh. Since you asked. AddAmmo hook for Lua
nemo
parents: 4456
diff changeset
  1360
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
  1361
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
  1362
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
  1363
    ammo : PAmmo;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1364
    at   : LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1365
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1366
    call = 'GetAmmoCount';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1367
    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
  1368
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1369
    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
  1370
        begin
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
  1371
        gear:= GearByUID(lua_tointeger(L, 1));
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1372
        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
  1373
            begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1374
            at:= LuaToAmmoTypeOrd(L, 2, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1375
            if at >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1376
                begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1377
                ammo:= GetAmmoEntry(gear^.Hedgehog^, TAmmoType(at));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1378
                if ammo^.AmmoType = amNothing then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1379
                    lua_pushinteger(L, 0)
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1380
                else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1381
                    lua_pushinteger(L, ammo^.Count);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1382
                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
  1383
            end
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1384
        else lua_pushinteger(L, 0);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1385
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1386
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1387
        lua_pushnil(L);
6046
d681b8127523 this needs to actually return something
nemo
parents: 6019
diff changeset
  1388
    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
  1389
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
  1390
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
  1391
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
  1392
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
  1393
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1394
    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
  1395
        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
  1396
        gear:= GearByUID(lua_tointeger(L, 1));
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1397
        if gear <> nil then
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1398
            begin
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1399
            gear^.Health:= lua_tointeger(L, 2);
5245
ce407084728f Fully playable version of Space Invasion (fingers crossed). No bugs known.
mikade
parents: 5243
diff changeset
  1400
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1401
            if (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1402
                begin
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1403
                RenderHealth(gear^.Hedgehog^);
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1404
                RecountTeamHealth(gear^.Hedgehog^.Team)
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1405
                end;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1406
            // Why did this do a "setalltoactive" ?
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 10009 9952
diff changeset
  1407
            //SetAllToActive;
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1408
            Gear^.Active:= true;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  1409
            AllInactive:= false
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1410
            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
  1411
        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
  1412
    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
  1413
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
  1414
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1415
function lc_settimer(L : Plua_State) : LongInt; Cdecl;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1416
var gear : PGear;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1417
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1418
    if CheckLuaParamCount(L, 2, 'SetTimer', 'gearUid, timer') then
3722
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1419
        begin
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1420
        gear:= GearByUID(lua_tointeger(L, 1));
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1421
        if gear <> nil then gear^.Timer:= lua_tointeger(L, 2)
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1422
        end;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1423
    lc_settimer:= 0
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1424
end;
eadebe4c45c9 Engine:
smaxx
parents: 3697
diff changeset
  1425
10589
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1426
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
  1427
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
  1428
begin
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1429
    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
  1430
        begin
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1431
        gear:= GearByUID(lua_tointeger(L, 1));
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1432
        if gear <> nil then gear^.FlightTime:= lua_tointeger(L, 2)
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1433
        end;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1434
    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
  1435
end;
98ea597e5cd9 expose FlightTime to lua, disable in-air flame harming moving hogs ☹ aaaand override that in ClimbHome ☺
nemo
parents: 10581
diff changeset
  1436
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1437
function lc_seteffect(L : Plua_State) : LongInt; Cdecl;
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1438
var gear: PGear;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1439
    t   : LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1440
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1441
    call = 'SetEffect';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1442
    params = 'gearUid, effect, effectState';
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1443
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1444
    if CheckLuaParamCount(L, 3, call, params) then
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1445
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1446
        t:= LuaToHogEffectOrd(L, 2, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1447
        if t >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1448
            begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1449
            gear := GearByUID(lua_tointeger(L, 1));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1450
            if (gear <> nil) and (gear^.Hedgehog <> nil) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1451
                gear^.Hedgehog^.Effects[THogEffect(t)]:= lua_tointeger(L, 3);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1452
            end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1453
        end;
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1454
    lc_seteffect := 0;
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1455
end;
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1456
5489
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1457
function lc_geteffect(L : Plua_State) : LongInt; Cdecl;
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1458
var gear : PGear;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1459
    t    : LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1460
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1461
    call = 'GetEffect';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1462
    params = 'gearUid, effect';
5489
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1463
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1464
    if CheckLuaParamCount(L, 2, call, params) then
5489
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1465
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1466
        t:= LuaToHogEffectOrd(L, 2, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1467
        if t >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1468
            begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1469
            gear:= GearByUID(lua_tointeger(L, 1));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1470
            if (gear <> nil) and (gear^.Hedgehog <> nil) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1471
                lua_pushinteger(L, gear^.Hedgehog^.Effects[THogEffect(t)])
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1472
            else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1473
                lua_pushinteger(L, 0)
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1474
            end;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1475
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1476
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1477
        lua_pushinteger(L, 0);
5489
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1478
    lc_geteffect:= 1
f7ec6e5ad054 add getter for effects. untested.
nemo
parents: 5366
diff changeset
  1479
end;
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  1480
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
  1481
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
  1482
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
  1483
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1484
    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
  1485
        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
  1486
        gear:= GearByUID(lua_tointeger(L, 1));
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1487
        if gear <> nil then
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1488
            begin
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1489
            gear^.State:= lua_tointeger(L, 2);
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1490
            SetAllToActive;
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1491
            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
  1492
        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
  1493
    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
  1494
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
  1495
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1496
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
  1497
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
  1498
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1499
    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
  1500
        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
  1501
        gear:= GearByUID(lua_tointeger(L, 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
  1502
        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
  1503
            lua_pushinteger(L, gear^.State)
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1504
        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
  1505
            lua_pushnil(L)
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1506
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1507
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1508
        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
  1509
    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
  1510
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
  1511
7156
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1512
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
  1513
var gear : PGear;
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1514
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1515
    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
  1516
        begin
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1517
        gear:= GearByUID(lua_tointeger(L, 1));
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1518
        if gear <> nil then
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1519
            lua_pushinteger(L, gear^.Tag)
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1520
        else
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1521
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1522
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1523
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1524
        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
  1525
    lc_gettag:= 1
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1526
end;
09262f82e99d Add a GetTag method so that SetTag doesn't feel lonely.
mikade <redgrinner@gmail.com>
parents: 7135
diff changeset
  1527
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
  1528
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
  1529
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
  1530
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1531
    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
  1532
        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
  1533
        gear:= GearByUID(lua_tointeger(L, 1));
3723
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1534
        if gear <> nil then
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1535
            begin
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1536
            gear^.Tag:= lua_tointeger(L, 2);
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1537
            SetAllToActive;
958eeaf84714 Engine:
smaxx
parents: 3722
diff changeset
  1538
            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
  1539
        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
  1540
    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
  1541
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
  1542
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1543
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
  1544
begin
3407
dcc129c4352e Engine:
smxx
parents: 3368
diff changeset
  1545
    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
  1546
    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
  1547
    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
  1548
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
  1549
9171
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  1550
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
  1551
var statInfo : TStatInfoType;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1552
    i, n     : LongInt;
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1553
    color, tn: shortstring;
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1554
    needsTn  : boolean;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1555
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1556
    call = 'SendStat';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1557
    params = 'statInfoType, color [, teamname]';
9171
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  1558
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1559
    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
  1560
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1561
        i:= LuaToStatInfoTypeOrd(L, 1, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1562
        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
  1563
            begin
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1564
            statInfo:= TStatInfoType(i);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1565
            needsTn:= ((statInfo = siPlayerKills) or (statInfo = siClanHealth));
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1566
            // check if param count is correct for the used statInfo
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1567
            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
  1568
                begin
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1569
                if n = 3 then
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1570
                    LuaCallError(EnumToStr(statInfo) + ' does not support the teamname parameter', call, params)
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1571
                else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1572
                    LuaCallError(EnumToStr(statInfo) + ' requires the teamname parameter', call, params);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1573
                end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1574
            else // count is correct!
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1575
                begin
10542
383328755384 small cleanup
sheepluva
parents: 10518
diff changeset
  1576
                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
  1577
                    begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1578
                    // 3: team name
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1579
                    for i:= 0 to Pred(TeamsCount) do
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1580
                        begin
10282
f02cf95b8424 Fix pas2c build
unc0rr
parents: 10281
diff changeset
  1581
                        color:= _S'0';
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1582
                        tn:= lua_tostring(L, 3);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1583
                        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
  1584
                            begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1585
                                if TeamName = tn then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1586
                                    begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1587
                                    color := uUtils.IntToStr(Clan^.Color);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1588
                                    Break;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1589
                                    end
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1590
                            end
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1591
                        end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1592
                    if (statInfo = siPlayerKills) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1593
                        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1594
                            SendStat(siPlayerKills, color + ' ' +
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1595
                                lua_tostring(L, 2) + ' ' + tn);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1596
                        end
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1597
                    else if (statInfo = siClanHealth) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1598
                        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1599
                            SendStat(siClanHealth, color + ' ' +
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1600
                                lua_tostring(L, 2));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1601
                        end
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1602
                    end
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1603
                else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1604
                    begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1605
                    SendStat(statInfo,lua_tostring(L, 2));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1606
                    end;
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1607
                end;
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1608
            end;
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  1609
        end;
9171
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  1610
    lc_sendstat:= 0
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  1611
end;
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  1612
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9179
diff changeset
  1613
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
  1614
begin
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9173
diff changeset
  1615
    L:= L; // avoid compiler hint
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9179
diff changeset
  1616
    uStats.SendHealthStatsOn := false;
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9179
diff changeset
  1617
    lc_sendhealthstatsoff:= 0
9174
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9173
diff changeset
  1618
end;
d328fe17b195 made lua scripts able to turn off automatic game stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9173
diff changeset
  1619
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
  1620
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
  1621
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
  1622
    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
  1623
    tryhard: boolean;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1624
    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
  1625
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1626
    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
  1627
        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
  1628
        gear:= GearByUID(lua_tointeger(L, 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
        fall:= lua_toboolean(L, 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
  1630
        left:= lua_tointeger(L, 3);
3acdb4dac6eb 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
        right:= lua_tointeger(L, 4);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1632
        if n = 5 then
10496
ba166d4e66f3 Fix use of uninitialized variable
unc0rr
parents: 10421
diff changeset
  1633
            tryhard:= lua_toboolean(L, 5)
ba166d4e66f3 Fix use of uninitialized variable
unc0rr
parents: 10421
diff changeset
  1634
        else
ba166d4e66f3 Fix use of uninitialized variable
unc0rr
parents: 10421
diff changeset
  1635
            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
  1636
        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
  1637
            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
  1638
        if gear <> nil then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  1639
            lua_pushinteger(L, gear^.uid)
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  1640
        else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  1641
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1642
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1643
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1644
        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
  1645
    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
  1646
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
  1647
3acdb4dac6eb 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
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
  1649
var gear: PGear;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1650
    n, s: LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1651
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1652
    call = 'PlaySound';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1653
    params = 'soundId [, hhGearUid]';
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
  1654
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1655
    if CheckAndFetchParamCount(L, 1, 2, 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
  1656
        begin
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1657
        s:= LuaToSoundOrd(L, 1, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1658
        if s >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1659
            begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1660
            // no gear specified
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1661
            if n = 1 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1662
                PlaySound(TSound(s))
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1663
            else
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1664
                begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1665
                gear:= GearByUID(lua_tointeger(L, 2));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1666
                if (gear <> nil) and (gear^.Kind = gtHedgehog) and (gear^.Hedgehog <> nil) then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1667
                    AddVoice(TSound(s),gear^.Hedgehog^.Team^.Voicepack)
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1668
                end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1669
            end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1670
        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
  1671
    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
  1672
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
  1673
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1674
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
  1675
var np: 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
  1676
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1677
    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
  1678
        begin
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  1679
        ParseCommand('addteam x ' + lua_tostring(L, 2) + ' ' + lua_tostring(L, 1), true, true);
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  1680
        ParseCommand('grave ' + lua_tostring(L, 3), true, true);
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  1681
        ParseCommand('fort ' + lua_tostring(L, 4), true, true);
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  1682
        ParseCommand('voicepack ' + lua_tostring(L, 5), true, true);
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  1683
        if (np = 6) then ParseCommand('flag ' + lua_tostring(L, 6), 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
  1684
        CurrentTeam^.Binds:= DefaultBinds
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1685
        // fails on x64
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1686
        //lua_pushinteger(L, LongInt(CurrentTeam));
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1687
        end;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1688
    //else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1689
        //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
  1690
    lc_addteam:= 0;//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
  1691
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
  1692
10290
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  1693
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
  1694
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
  1695
    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
  1696
    hidden: boolean;
10290
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  1697
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1698
    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
  1699
        begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1700
        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
  1701
            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
  1702
                begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1703
                // 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
  1704
                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
  1705
                    continue;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1706
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1707
                // 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
  1708
                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
  1709
                    begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1710
                    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
  1711
                    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
  1712
                        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
  1713
                    // 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
  1714
                    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
  1715
                    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
  1716
                        begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1717
                        // 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
  1718
                        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
  1719
                            begin
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1720
                            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
  1721
                            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
  1722
                            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
  1723
                            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
  1724
                            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
  1725
                            end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1726
                        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
  1727
                        end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1728
                    end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1729
                // 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
  1730
                break;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1731
                end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1732
        end;
67c6de2a0213 new implementation for Lua API DismissTeam. all hedgehogs of the team are now removed without using teamgone
sheepluva
parents: 10542
diff changeset
  1733
    lc_dismissteam:= 0;
10290
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  1734
end;
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  1735
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
  1736
function lc_addhog(L : Plua_State) : LongInt; Cdecl;
3271
0405e07ca44b * add some kind of SniperRifle training mission
sheepluva
parents: 3209
diff changeset
  1737
var temp: 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
  1738
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1739
    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
  1740
        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
  1741
        temp:= lua_tostring(L, 4);
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  1742
        ParseCommand('addhh ' + lua_tostring(L, 2) + ' ' + lua_tostring(L, 3) + ' ' + lua_tostring(L, 1), true, true);
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  1743
        ParseCommand('hat ' + temp, 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
  1744
        lua_pushinteger(L, CurrentHedgehog^.Gear^.uid);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1745
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1746
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1747
        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
  1748
    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
  1749
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
  1750
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1751
function lc_hogturnleft(L : Plua_State) : LongInt; Cdecl;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1752
var gear: PGear;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1753
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1754
    if CheckLuaParamCount(L, 2, 'HogTurnLeft', 'gearUid, boolean') then
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1755
        begin
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1756
        gear:= GearByUID(lua_tointeger(L, 1));
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1757
        if gear <> nil then
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1758
            gear^.dX.isNegative:= lua_toboolean(L, 2);
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1759
        end;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1760
    lc_hogturnleft:= 0;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1761
end;
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  1762
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
  1763
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
  1764
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
  1765
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1766
    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
  1767
        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
  1768
        gear:= GearByUID(lua_tointeger(L, 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
  1769
        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
  1770
            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
  1771
            lua_pushinteger(L, hwRound(gear^.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
  1772
            lua_pushinteger(L, hwRound(gear^.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
  1773
            end
5964
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  1774
        else
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  1775
            begin
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  1776
            lua_pushnil(L);
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  1777
            lua_pushnil(L)
44d2dc3b438f return nil for position if no gear
nemo
parents: 5900
diff changeset
  1778
            end;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1779
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1780
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1781
        begin
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1782
        lua_pushnil(L);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1783
        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
  1784
        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
  1785
    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
  1786
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
  1787
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  1788
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
  1789
var gear: PGear;
4832
e55e2b6f59b0 update collision in set gear position
nemo
parents: 4780
diff changeset
  1790
    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
  1791
    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
  1792
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1793
    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
  1794
        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
  1795
        gear:= GearByUID(lua_tointeger(L, 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
  1796
        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
  1797
            begin
4832
e55e2b6f59b0 update collision in set gear position
nemo
parents: 4780
diff changeset
  1798
            col:= gear^.CollisionIndex >= 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
  1799
            x:= lua_tointeger(L, 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
  1800
            y:= lua_tointeger(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
  1801
            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
  1802
                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
  1803
            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
  1804
            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
  1805
            if col then
9291
15f7bb217b66 Make add/delete consistent (this has bugged me for so long)
nemo
parents: 9285
diff changeset
  1806
                AddCI(gear);
4832
e55e2b6f59b0 update collision in set gear position
nemo
parents: 4780
diff changeset
  1807
            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
  1808
            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
  1809
        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
  1810
    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
  1811
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
  1812
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1813
function lc_getgeartarget(L : Plua_State) : LongInt; Cdecl;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1814
var gear: PGear;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1815
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1816
    if CheckLuaParamCount(L, 1, 'GetGearTarget', 'gearUid') then
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1817
        begin
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1818
        gear:= GearByUID(lua_tointeger(L, 1));
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1819
        if gear <> nil then
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1820
            begin
5612
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  1821
            lua_pushinteger(L, gear^.Target.X);
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  1822
            lua_pushinteger(L, gear^.Target.Y)
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  1823
            end
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  1824
        else
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  1825
            begin
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  1826
            lua_pushnil(L);
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  1827
            lua_pushnil(L)
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1828
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1829
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1830
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1831
        begin
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1832
        lua_pushnil(L);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1833
        lua_pushnil(L)
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1834
        end;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1835
    lc_getgeartarget:= 2;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1836
end;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1837
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1838
function lc_setgeartarget(L : Plua_State) : LongInt; Cdecl;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1839
var gear: PGear;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1840
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1841
    if CheckLuaParamCount(L, 3, 'SetGearTarget', 'gearUid, x, y') then
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1842
        begin
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1843
        gear:= GearByUID(lua_tointeger(L, 1));
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1844
        if gear <> nil then
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1845
            begin
5612
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  1846
            gear^.Target.X:= lua_tointeger(L, 2);
2638dec1b323 This really should have been a TPoint for consistency
nemo
parents: 5583
diff changeset
  1847
            gear^.Target.Y:= lua_tointeger(L, 3)
5517
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1848
            end
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1849
        end;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1850
    lc_setgeartarget:= 0
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1851
end;
80bc6c0be5d4 Expose TargetX/TargetY to scripting
nemo
parents: 5489
diff changeset
  1852
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
  1853
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
  1854
var gear: PGear;
6780
166ee5275915 tweak take 2
nemo
parents: 6779
diff changeset
  1855
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
  1856
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1857
    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
  1858
        begin
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
  1859
        gear:= GearByUID(lua_tointeger(L, 1));
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
  1860
        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
  1861
            begin
6780
166ee5275915 tweak take 2
nemo
parents: 6779
diff changeset
  1862
            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
  1863
            // gear dX determines hog orientation
6780
166ee5275915 tweak take 2
nemo
parents: 6779
diff changeset
  1864
            if (gear^.dX.isNegative) and (t = 0) then t:= -1;
166ee5275915 tweak take 2
nemo
parents: 6779
diff changeset
  1865
            lua_pushinteger(L, t);
5074
16f9e2d1f3b2 eh. 1,000,000 might be better...
nemo
parents: 5073
diff changeset
  1866
            lua_pushinteger(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
  1867
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1868
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1869
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1870
        begin
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1871
        lua_pushnil(L);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1872
        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
  1873
        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
  1874
    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
  1875
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
  1876
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
  1877
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
  1878
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
  1879
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1880
    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
  1881
        begin
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
  1882
        gear:= GearByUID(lua_tointeger(L, 1));
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
  1883
        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
  1884
            begin
5074
16f9e2d1f3b2 eh. 1,000,000 might be better...
nemo
parents: 5073
diff changeset
  1885
            gear^.dX:= int2hwFloat(lua_tointeger(L, 2)) / 1000000;
16f9e2d1f3b2 eh. 1,000,000 might be better...
nemo
parents: 5073
diff changeset
  1886
            gear^.dY:= int2hwFloat(lua_tointeger(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
  1887
            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
  1888
            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
  1889
        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
  1890
    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
  1891
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
  1892
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1893
function lc_setzoom(L : Plua_State) : LongInt; Cdecl;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1894
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1895
    if CheckLuaParamCount(L, 1, 'SetZoom', 'zoomLevel') then
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1896
        begin
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1897
        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
  1898
        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
  1899
            ZoomValue:= cMaxZoomLevel;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  1900
        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
  1901
            ZoomValue:= cMinZoomLevel;
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1902
        end;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1903
    lc_setzoom:= 0
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1904
end;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1905
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1906
function lc_getzoom(L : Plua_State) : LongInt; Cdecl;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1907
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1908
    if CheckLuaParamCount(L, 0, 'GetZoom', '') then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1909
        lua_pushnumber(L, ZoomValue)
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1910
    else
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1911
        lua_pushnil(L);
3736
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1912
    lc_getzoom:= 1
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1913
end;
d8982f9e7e2c Engine:
smaxx
parents: 3734
diff changeset
  1914
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
  1915
function lc_setammo(L : Plua_State) : LongInt; Cdecl;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1916
var np, at: LongInt;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1917
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1918
    call = 'SetAmmo';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1919
    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
  1920
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1921
    if CheckAndFetchParamCount(L, 4, 5, call, params, np) then
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1922
        begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1923
        at:= LuaToAmmoTypeOrd(L, 1, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1924
        if at >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1925
            begin
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1926
            if np = 4 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1927
                ScriptSetAmmo(TAmmoType(at), lua_tointeger(L, 2), lua_tointeger(L, 3), lua_tointeger(L, 4), 1)
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1928
            else
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1929
                ScriptSetAmmo(TAmmoType(at), lua_tointeger(L, 2), lua_tointeger(L, 3), lua_tointeger(L, 4), lua_tointeger(L, 5));
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1930
            end;
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1931
        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
  1932
    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
  1933
end;
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1934
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
  1935
function lc_setammodelay(L : Plua_State) : LongInt; Cdecl;
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1936
var at: LongInt;
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1937
const
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1938
    call = 'SetAmmoDelay';
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1939
    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
  1940
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1941
    if CheckLuaParamCount(L, 2, call, params) then
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1942
        begin
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1943
        at:= LuaToAmmoTypeOrd(L, 1, call, params);
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1944
        if at >= 0 then
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1945
            ScriptSetAmmoDelay(TAmmoType(at), lua_tointeger(L, 2));
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  1946
        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
  1947
    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
  1948
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
  1949
6529
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1950
function lc_setammostore(L : Plua_State) : LongInt; Cdecl;
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1951
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1952
    if CheckLuaParamCount(L, 4, 'SetAmmoStore', 'loadouts, probabilities, delays, reinforments') then
6529
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1953
        begin
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1954
        ScriptAmmoLoadout:= lua_tostring(L, 1);
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1955
        ScriptAmmoProbability:= lua_tostring(L, 2);
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1956
        ScriptAmmoDelay:= lua_tostring(L, 3);
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1957
        ScriptAmmoReinforcement:= lua_tostring(L, 4);
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1958
        end;
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1959
    lc_setammostore:= 0
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1960
end;
40f9ef7d824d added SetAmmoStore to lua for convinience
Henek
parents: 6523
diff changeset
  1961
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1962
function lc_getrandom(L : Plua_State) : LongInt; Cdecl;
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1963
var m : LongInt;
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1964
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1965
    if CheckLuaParamCount(L, 1, 'GetRandom', 'number') then
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1966
        begin
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1967
        m:= lua_tointeger(L, 1);
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1968
        if (m > 0) then
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1969
            lua_pushinteger(L, GetRandom(m))
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1970
        else
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1971
            begin
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1972
            LuaError('Lua: Tried to pass 0 to GetRandom!');
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1973
            lua_pushnil(L);
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1974
            end
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1975
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1976
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1977
        lua_pushnil(L); // return value on stack (nil)
4243
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1978
    lc_getrandom:= 1
bbf7451f6b4e added getrandom and addcaption to lua
Henek
parents: 4236
diff changeset
  1979
end;
4399
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  1980
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  1981
function lc_setwind(L : Plua_State) : LongInt; Cdecl;
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  1982
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1983
    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
  1984
        begin
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  1985
        cWindSpeed:= int2hwfloat(lua_tointeger(L, 1)) / 100 * cMaxWindSpeed;
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  1986
        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
  1987
        if cWindSpeed.isNegative then
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  1988
            CWindSpeedf := -cWindSpeedf;
5357
ec36f3d53f3c Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents: 5313
diff changeset
  1989
        AddVisualGear(0, 0, vgtSmoothWindBar);
4399
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  1990
        end;
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  1991
    lc_setwind:= 0
87bc4a9e6ef0 fix key binds for lua created teams and added wind control
Henek
parents: 4393
diff changeset
  1992
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
  1993
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
  1994
function lc_getdatapath(L : Plua_State) : LongInt; Cdecl;
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
  1995
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  1996
    if CheckLuaParamCount(L, 0, 'GetDataPath', '') then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1997
        lua_pushstring(L, str2pchar(cPathz[ptData]))
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  1998
    else
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
  1999
        lua_pushnil(L);
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
  2000
    lc_getdatapath:= 1
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
  2001
end;
4590
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2002
5238
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5124
diff changeset
  2003
function lc_getuserdatapath(L : Plua_State) : LongInt; Cdecl;
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5124
diff changeset
  2004
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2005
    if CheckLuaParamCount(L, 0, 'GetUserDataPath', '') then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2006
        lua_pushstring(L, str2pchar(cPathz[ptData]))
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2007
    else
5238
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5124
diff changeset
  2008
        lua_pushnil(L);
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5124
diff changeset
  2009
    lc_getuserdatapath:= 1
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5124
diff changeset
  2010
end;
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5124
diff changeset
  2011
4590
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2012
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
  2013
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2014
    if CheckLuaParamCount(L, 0, 'MapHasBorder', '') then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2015
        lua_pushboolean(L, hasBorder)
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2016
    else
4590
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2017
        lua_pushnil(L);
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2018
    lc_maphasborder:= 1
d9fed5a816e9 added MapHasBorder function for lua and finnished Random Weapons gameplay, might still change though
Henek
parents: 4546
diff changeset
  2019
end;
4869
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2020
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2021
function lc_getgearradius(L : Plua_State) : LongInt; Cdecl;
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2022
var gear : PGear;
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2023
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2024
    if CheckLuaParamCount(L, 1, 'GetGearRadius', 'gearUid') then
4869
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2025
        begin
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2026
        gear:= GearByUID(lua_tointeger(L, 1));
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2027
        if gear <> nil then
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2028
            lua_pushinteger(L, gear^.Radius)
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2029
        else
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2030
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2031
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2032
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2033
        lua_pushnil(L); // return value on stack (nil)
4869
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2034
    lc_getgearradius:= 1
7a720b5d2247 added GetGearRaduis and minor Tracker things
Henek
parents: 4851
diff changeset
  2035
end;
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2036
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2037
function lc_gethoghat(L : Plua_State): LongInt; Cdecl;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2038
var gear : PGear;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2039
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2040
    if CheckLuaParamCount(L, 1, 'GetHogHat', 'gearUid') then
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2041
        begin
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2042
        gear := GearByUID(lua_tointeger(L, 1));
8228
8cc5dc7f7ef9 kinda treat graves like hedgehogs for the purpose of looking up hog info
nemo
parents: 8145
diff changeset
  2043
        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
  2044
            lua_pushstring(L, str2pchar(gear^.Hedgehog^.Hat))
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2045
        else
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2046
            lua_pushnil(L);
10287
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2047
        end
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2048
    else
e17fe8572478 more of the same
sheepluva
parents: 10286
diff changeset
  2049
        lua_pushnil(L);
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2050
    lc_gethoghat := 1;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2051
end;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2052
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2053
function lc_sethoghat(L : Plua_State) : LongInt; Cdecl;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2054
var gear : PGear;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2055
    hat: ShortString;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2056
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2057
    if CheckLuaParamCount(L, 2, 'SetHogHat', 'gearUid, hat') then
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2058
        begin
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2059
        gear:= GearByUID(lua_tointeger(L, 1));
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2060
        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
  2061
            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
  2062
            hat:= lua_tostring(L, 2);
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2063
            gear^.Hedgehog^.Hat:= hat;
9748
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  2064
            AddFileLog('Changed hat to: '+hat);
7887
e987dff8e5f2 fix reserved hats from scripting
nemo
parents: 7805
diff changeset
  2065
            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
  2066
                LoadHedgehogHat(gear^.Hedgehog^, 'Reserved/' + Copy(hat,9,Length(hat)-8))
e987dff8e5f2 fix reserved hats from scripting
nemo
parents: 7805
diff changeset
  2067
            else
9748
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  2068
                LoadHedgehogHat(gear^.Hedgehog^, hat)
b0286b0c91ce sethogname/hat need to wrap entire operation around test of hog/gear
nemo
parents: 9718
diff changeset
  2069
            end
4875
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2070
        end;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2071
    lc_sethoghat:= 0;
2a37a0e0892d lua: getter and setter for hedgehog hats
sheepluva
parents: 4869
diff changeset
  2072
end;
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  2073
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
  2074
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
  2075
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
  2076
    lf    : Word;
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2077
    i, n : LongInt;
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
  2078
    placed: boolean;
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
  2079
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
  2080
    call = 'PlaceSprite';
10516
e2aee295cb16 update changelog a little
sheepluva
parents: 10496
diff changeset
  2081
    params = 'x, y, sprite, frameIdx [, 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
  2082
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
  2083
    placed:= false;
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2084
    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
  2085
        begin
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2086
        lf:= 0;
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2087
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2088
        // accept any amount of landflags, loop is never executed if n>5
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2089
        for i:= 5 to n do
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2090
            lf:= lf or lua_tointeger(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
  2091
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2092
        n:= LuaToSpriteOrd(L, 3, call, params);
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2093
        if n >= 0 then
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2094
            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
  2095
            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
  2096
            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
  2097
                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
  2098
            else
10368
7ebb71a36e95 Forced sprites placing mode, exposed to scripts (not tested at all)
unc0rr
parents: 10347
diff changeset
  2099
                placed:= ForcePlaceOnLand(
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
  2100
                    lua_tointeger(L, 1) - SpritesData[spr].Width div 2,
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
  2101
                    lua_tointeger(L, 2) - SpritesData[spr].Height div 2,
10368
7ebb71a36e95 Forced sprites placing mode, exposed to scripts (not tested at all)
unc0rr
parents: 10347
diff changeset
  2102
                    spr, lua_tointeger(L, 4), lf);
10281
dedc8f23e35e make enums crash-safe. and other fixes
sheepluva
parents: 10280
diff changeset
  2103
            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
  2104
        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
  2105
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
  2106
    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
  2107
    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
  2108
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
  2109
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  2110
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
  2111
var placed: boolean;
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  2112
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
  2113
    placed:= false;
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2114
    if CheckLuaParamCount(L, 3, 'PlaceGirder', 'x, y, frameIdx') then
10295
ec6b68241575 fix some pas2c related overloading issue
sheepluva
parents: 10294
diff changeset
  2115
        placed:= TryPlaceOnLandSimple(
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  2116
            lua_tointeger(L, 1) - SpritesData[sprAmGirder].Width div 2,
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  2117
            lua_tointeger(L, 2) - SpritesData[sprAmGirder].Height div 2,
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  2118
            sprAmGirder, lua_tointeger(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
  2119
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
  2120
    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
  2121
    lc_placegirder:= 1
4985
304d149bb3dd added PlaceGirder to lua
Henek
parents: 4976
diff changeset
  2122
end;
5013
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  2123
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  2124
function lc_getcurammotype(L : Plua_State): LongInt; Cdecl;
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  2125
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2126
    if (CurrentHedgehog <> nil) and (CheckLuaParamCount(L, 0, 'GetCurAmmoType', '')) then
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
  2127
        lua_pushinteger(L, ord(CurrentHedgehog^.CurAmmoType))
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
  2128
    else
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
  2129
        lua_pushinteger(L, ord(amNothing));
5013
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  2130
    lc_getcurammotype := 1;
04789ba3f200 added GetCurAmmoType to lua
Henek
parents: 4985
diff changeset
  2131
end;
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2132
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2133
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
  2134
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2135
    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
  2136
        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
  2137
    lc_savecampaignvar := 0;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2138
end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2139
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2140
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
  2141
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2142
    if CheckLuaParamCount(L, 1, 'GetCampaignVar', 'varname') then
9718
563a34cd8398 unbreak various parts of campaign variable loading/saving
sheepluva
parents: 9670
diff changeset
  2143
        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
  2144
    lua_pushstring(L, str2pchar(CampaignVariable));
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2145
    lc_getcampaignvar := 1;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2146
end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2147
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2148
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
  2149
var gear: PGear;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2150
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2151
    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
  2152
        begin
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2153
        gear:= GearByUID(lua_tointeger(L, 1));
8012
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2154
        HideHog(gear^.hedgehog)
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2155
        end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2156
    lc_hidehog := 0;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2157
end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2158
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2159
function lc_restorehog(L: Plua_State): LongInt; Cdecl;
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8368
diff changeset
  2160
var i, h: LongInt;
8012
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2161
    uid: LongWord;
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2162
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2163
    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
  2164
        begin
8012
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2165
        uid:= LongWord(lua_tointeger(L, 1));
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2166
        if TeamsCount > 0 then
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2167
            for i:= 0 to Pred(TeamsCount) do
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2168
                for h:= 0 to cMaxHHIndex do
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2169
                    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
  2170
                        begin
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2171
                        RestoreHog(@TeamsArray[i]^.Hedgehogs[h]);
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2172
                        exit(0)
2a61631a4505 this wasn't needed IMO
nemo
parents: 7996
diff changeset
  2173
                        end
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2174
        end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2175
    lc_restorehog := 0;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2176
end;
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2177
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2178
// boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2179
function lc_testrectforobstacle(L : Plua_State) : LongInt; Cdecl;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2180
var rtn: Boolean;
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2181
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2182
    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
  2183
        begin
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2184
        rtn:= TestRectancleForObstacle(
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2185
                    lua_tointeger(L, 1),
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2186
                    lua_tointeger(L, 2),
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2187
                    lua_tointeger(L, 3),
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2188
                    lua_tointeger(L, 4),
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2189
                    lua_toboolean(L, 5)
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2190
                    );
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2191
        lua_pushboolean(L, rtn);
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2192
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2193
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2194
        lua_pushnil(L); // return value on stack (nil)
5896
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2195
    lc_testrectforobstacle:= 1
9ce1cf4e5a32 lua: boolean TestRectForObstacle(x1, y1, x2, y2, landOnly)
sheepluva
parents: 5825
diff changeset
  2196
end;
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2197
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2198
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2199
function lc_getgravity(L : Plua_State) : LongInt; Cdecl;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2200
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2201
    if CheckLuaParamCount(L, 0, 'GetGravity', '') then
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2202
        lua_pushinteger(L, hwRound(SignAs(_0_5, cGravity) + (cGravity * 50 / cMaxWindSpeed)));
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2203
    lc_getgravity:= 1
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2204
end;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2205
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2206
function lc_setgravity(L : Plua_State) : LongInt; Cdecl;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2207
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2208
    if CheckLuaParamCount(L, 1, 'SetGravity', 'percent') then
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2209
        begin
10030
f40fdc566e94 * fix divbyzero found by GetGravity test (cWindSpeed was used where cMaxWindSpeed should have been)
sheepluva
parents: 10009
diff changeset
  2210
        cGravity:= _0_02 * lua_tointeger(L, 1) * cMaxWindSpeed;
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2211
        cGravityf:= 0.00025 * lua_tointeger(L, 1) * 0.02
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2212
        end;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2213
    lc_setgravity:= 0
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2214
end;
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2215
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2216
function lc_setwaterline(L : Plua_State) : LongInt; Cdecl;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2217
var iterator: PGear;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2218
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2219
    if CheckLuaParamCount(L, 1, 'SetWaterLine', 'waterline') then
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2220
        begin
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2221
        cWaterLine:= lua_tointeger(L,1);
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2222
        AllInactive:= false;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2223
        iterator:= GearsList;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2224
        while iterator <> nil do
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2225
            begin
9917
nemo
parents: 9914
diff changeset
  2226
            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
  2227
                begin
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2228
                iterator^.Active:= true;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2229
                if iterator^.dY.QWordValue = 0 then iterator^.dY.isNegative:= false;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2230
                iterator^.State:= iterator^.State or gstMoving;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2231
                DeleteCI(iterator)
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2232
                end;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2233
            iterator:= iterator^.NextGear
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2234
            end
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2235
        end;
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2236
    lc_setwaterline:= 0
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  2237
end;
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  2238
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2239
function lc_setaihintsongear(L : Plua_State) : LongInt; Cdecl;
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2240
var gear: PGear;
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2241
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2242
    if CheckLuaParamCount(L, 2, 'SetAIHintOnGear', 'gearUid, aiHints') then
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2243
        begin
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2244
        gear:= GearByUID(lua_tointeger(L, 1));
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2245
        if gear <> nil then
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2246
            gear^.aihints:= lua_tointeger(L, 2);
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2247
        end;
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2248
    lc_setaihintsongear:= 0
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2249
end;
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2250
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  2251
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  2252
function lc_hedgewarsscriptload(L : Plua_State) : LongInt; Cdecl;
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  2253
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2254
    if CheckLuaParamCount(L, 1, 'HedgewarsScriptLoad', 'scriptPath') then
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2255
        ScriptLoad(lua_tostring(L, 1))
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  2256
    else
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2257
        lua_pushnil(L);
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  2258
    lc_hedgewarsscriptload:= 0;
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  2259
end;
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  2260
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  2261
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  2262
function lc_declareachievement(L : Plua_State) : LongInt; Cdecl;
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  2263
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2264
    if CheckLuaParamCount(L, 4, 'DeclareAchievement', 'achievementId, teamname, location, value') then
9409
6564baf7dedf Store TrophyRace records in database
unc0rr
parents: 9397
diff changeset
  2265
        declareAchievement(lua_tostring(L, 1), lua_tostring(L, 2), lua_tostring(L, 3), lua_tointeger(L, 4));
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  2266
    lc_declareachievement:= 0
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  2267
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
  2268
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2269
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2270
procedure ScriptFlushPoints();
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2271
begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2272
    ParseCommand('draw ' + PointsBuffer, true, true);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2273
    PointsBuffer:= '';
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2274
end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2275
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2276
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2277
function lc_addPoint(L : Plua_State) : LongInt; Cdecl;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2278
var np, param: integer;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2279
begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2280
    if CheckAndFetchParamCountRange(L, 2, 4, 'AddPoint', 'x, y, width [, erase]', np) then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2281
        begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2282
        // x
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2283
        param:= lua_tointeger(L,1);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2284
        PointsBuffer:= PointsBuffer + char((param and $FF00) shr 8);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2285
        PointsBuffer:= PointsBuffer + char((param and $FF));
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2286
        // y
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2287
        param:= lua_tointeger(L,2);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2288
        PointsBuffer:= PointsBuffer + char((param and $FF00) shr 8);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2289
        PointsBuffer:= PointsBuffer + char((param and $FF));
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2290
        // width
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2291
        if np > 2 then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2292
            param:= lua_tointeger(L,3)
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2293
        else
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2294
            param:= 0;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2295
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2296
        if param <> 0 then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2297
            begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2298
            param:= (param or $80);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2299
            // erase
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2300
            if (np > 3) and lua_toboolean(L, 4) then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2301
                param:= (param or $40);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2302
            PointsBuffer:= PointsBuffer + char(param);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2303
            end
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2304
        // width is 0
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2305
        else
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2306
            PointsBuffer:= PointsBuffer + char(0);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2307
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2308
        // flush before shortstring limit length is reached
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2309
        if length(PointsBuffer) > 245 then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2310
            ScriptFlushPoints();
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2311
        end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2312
    lc_addPoint:= 0
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2313
end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2314
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2315
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2316
function lc_flushPoints(L : Plua_State) : LongInt; Cdecl;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2317
begin
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2318
    if CheckLuaParamCount(L, 0, 'FlushPoints', '') then
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2319
        ScriptFlushPoints();
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2320
    lc_flushPoints:= 0
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2321
end;
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  2322
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
  2323
// stuff for testing the lua API
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
  2324
function lc_endluatest(L : Plua_State) : LongInt; Cdecl;
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
  2325
begin
10297
e5ed72b40c57 fix pas2c build for real this time...
sheepluva
parents: 10295
diff changeset
  2326
    if CheckLuaParamCount(L, 1, 'EndLuaAPITest', 'LUA_API_TEST_SUCCESSFUL or LUA_API_TEST_FAILED') 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
  2327
        begin
10031
9353632dc661 let log know when a test finished properly, so that an unexpected termination (segfault, divbyzero, etc) is easier to tell apart from test fail
sheepluva
parents: 10030
diff changeset
  2328
        WriteLnToConsole('Lua test finished');
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
  2329
        halt(lua_tointeger(L, 1));
10284
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2330
        end
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2331
    else
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2332
        lua_pushnil(L);
e9c85a0acdd2 placeSprite accepts any amount of landflags now; further WIP wrt cleanup/fixing
sheepluva
parents: 10283
diff changeset
  2333
    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
  2334
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
  2335
///////////////////
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2336
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2337
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
  2338
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
  2339
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
  2340
    n:= lua_gettop(luaState);
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  2341
    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
  2342
    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
  2343
        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
  2344
            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
  2345
        else if lua_toboolean(luaState, i) then
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  2346
            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
  2347
        else
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  2348
            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
  2349
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
  2350
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2351
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
  2352
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2353
    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
  2354
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
  2355
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2356
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
  2357
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2358
    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
  2359
    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
  2360
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
  2361
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2362
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
  2363
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2364
    lua_pushinteger(luaState, value);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2365
    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
  2366
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
  2367
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2368
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
  2369
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2370
    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
  2371
    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
  2372
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
  2373
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2374
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
  2375
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2376
    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
  2377
    ScriptGetInteger:= lua_tointeger(luaState, -1);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2378
    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
  2379
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
  2380
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2381
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
  2382
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2383
    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
  2384
    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
  2385
    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
  2386
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
  2387
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2388
procedure ScriptOnPreviewInit;
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2389
begin
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2390
// 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
  2391
if not ScriptLoaded then
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2392
    exit;
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2393
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2394
ScriptSetString('Seed', cSeed);
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2395
ScriptSetInteger('TemplateFilter', cTemplateFilter);
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2396
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
  2397
ScriptSetInteger('MapGen', ord(cMapGen));
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2398
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2399
ScriptCall('onPreviewInit');
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2400
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2401
// pop game variables
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2402
ParseCommand('seed ' + ScriptGetString('Seed'), true, true);
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2403
cTemplateFilter  := ScriptGetInteger('TemplateFilter');
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2404
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
  2405
cMapGen          := TMapGen(ScriptGetInteger('MapGen'));
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2406
end;
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2407
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
  2408
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
  2409
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
  2410
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
  2411
// 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
  2412
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
  2413
    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
  2414
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2415
// push game variables so they may be modified by the script
6982
8d41d22a291d breaking news, we don't support typed consts anymore
koda
parents: 6924
diff changeset
  2416
ScriptSetInteger('BorderColor', ExplosionBorderColor);
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
  2417
ScriptSetInteger('GameFlags', GameFlags);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2418
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
  2419
ScriptSetInteger('TemplateFilter', cTemplateFilter);
7567
da2aa8355d91 allow lua to specify template by number
nemo
parents: 7546
diff changeset
  2420
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
  2421
ScriptSetInteger('MapGen', ord(cMapGen));
5583
63b274a4fb01 At mikade's request, expose screenheight/screenwidth and allow setting tag zoom level
nemo
parents: 5554
diff changeset
  2422
ScriptSetInteger('ScreenHeight', cScreenHeight);
63b274a4fb01 At mikade's request, expose screenheight/screenwidth and allow setting tag zoom level
nemo
parents: 5554
diff changeset
  2423
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
  2424
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
  2425
ScriptSetInteger('CaseFreq', cCaseFactor);
4162
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  2426
ScriptSetInteger('HealthCaseProb', cHealthCaseProb);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  2427
ScriptSetInteger('HealthCaseAmount', cHealthCaseAmount);
4221
a1bf0f6b0d65 added missing game modifiers to lua
Henek
parents: 4219
diff changeset
  2428
ScriptSetInteger('DamagePercent', cDamagePercent);
6557
e3cad9020778 Push RopePercent to lua to fix rope if not set
enveezee
parents: 6543
diff changeset
  2429
ScriptSetInteger('RopePercent', cRopePercent);
4003
ca0600ab38bf disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents: 3999
diff changeset
  2430
ScriptSetInteger('MinesNum', cLandMines);
4221
a1bf0f6b0d65 added missing game modifiers to lua
Henek
parents: 4219
diff changeset
  2431
ScriptSetInteger('MinesTime', cMinesTime);
a1bf0f6b0d65 added missing game modifiers to lua
Henek
parents: 4219
diff changeset
  2432
ScriptSetInteger('MineDudPercent', cMineDudPercent);
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
  2433
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
  2434
ScriptSetInteger('Delay', cInactDelay);
3774
af0e68ca273e Engine:
smaxx
parents: 3761
diff changeset
  2435
ScriptSetInteger('Ready', cReadyDelay);
3197
smxx
parents: 3058
diff changeset
  2436
ScriptSetInteger('SuddenDeathTurns', cSuddenDTurns);
4162
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  2437
ScriptSetInteger('WaterRise', cWaterRise);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  2438
ScriptSetInteger('HealthDecrease', cHealthDecrease);
9836
00cbbb195f11 Rework of No Gravity script:
unc0rr
parents: 9815
diff changeset
  2439
ScriptSetInteger('GetAwayTime', cGetAwayTime);
6828
6a5d33bff0b0 At mikade's request. give scripting access to the map name prior to override.
nemo
parents: 6790
diff changeset
  2440
ScriptSetString('Map', cMapName);
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
  2441
ScriptSetString('Theme', '');
4883
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4882
diff changeset
  2442
ScriptSetString('Goals', '');
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4882
diff changeset
  2443
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
  2444
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
  2445
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2446
// pop game variables
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2447
ParseCommand('seed ' + ScriptGetString('Seed'), true, true);
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2448
cTemplateFilter  := ScriptGetInteger('TemplateFilter');
7567
da2aa8355d91 allow lua to specify template by number
nemo
parents: 7546
diff changeset
  2449
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
  2450
cMapGen          := TMapGen(ScriptGetInteger('MapGen'));
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2451
GameFlags        := ScriptGetInteger('GameFlags');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2452
cHedgehogTurnTime:= ScriptGetInteger('TurnTime');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2453
cCaseFactor      := ScriptGetInteger('CaseFreq');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2454
cHealthCaseProb  := ScriptGetInteger('HealthCaseProb');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2455
cHealthCaseAmount:= ScriptGetInteger('HealthCaseAmount');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2456
cDamagePercent   := ScriptGetInteger('DamagePercent');
6523
666fccd5cb3a enable lua to also set rope length percent
Henek
parents: 6468
diff changeset
  2457
cRopePercent     := ScriptGetInteger('RopePercent');
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2458
cLandMines       := ScriptGetInteger('MinesNum');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2459
cMinesTime       := ScriptGetInteger('MinesTime');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2460
cMineDudPercent  := ScriptGetInteger('MineDudPercent');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2461
cExplosives      := ScriptGetInteger('Explosives');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2462
cInactDelay      := ScriptGetInteger('Delay');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2463
cReadyDelay      := ScriptGetInteger('Ready');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2464
cSuddenDTurns    := ScriptGetInteger('SuddenDeathTurns');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2465
cWaterRise       := ScriptGetInteger('WaterRise');
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2466
cHealthDecrease  := ScriptGetInteger('HealthDecrease');
9836
00cbbb195f11 Rework of No Gravity script:
unc0rr
parents: 9815
diff changeset
  2467
cGetAwayTime     := ScriptGetInteger('GetAwayTime');
6312
658055a3f160 fix map/template override, remove some pointless command calls
nemo
parents: 6131
diff changeset
  2468
7771
ce6d4dd0c780 fix trophyrace. also tweak it a little
nemo
parents: 7754
diff changeset
  2469
if cMapName <> ScriptGetString('Map') then
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2470
    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
  2471
if ScriptGetString('Theme') <> '' then
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2472
    ParseCommand('theme ' + ScriptGetString('Theme'), true, true);
4883
7cddc9201a1d added dummy for tardis and ugly icons for tardis and structure
Henek
parents: 4882
diff changeset
  2473
LuaGoals:= ScriptGetString('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
  2474
6578
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  2475
// 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
  2476
k:= 0;
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  2477
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
  2478
    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
  2479
        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
  2480
            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
  2481
                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
  2482
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
  2483
    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
  2484
        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
  2485
            begin
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  2486
            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
  2487
            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
  2488
            inc(k)
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  2489
            end
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2490
else
6578
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  2491
    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
  2492
        begin
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  2493
        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
  2494
            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
  2495
        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
  2496
        inc(k)
d4ad42283125 Also allow lua to change gfPerHogAmmo/gfSharedAmmo even if lua does not define new ammo stores
nemo
parents: 6563
diff changeset
  2497
        end;
6743
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  2498
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
  2499
    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
  2500
    // 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
  2501
    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
  2502
    uAmmos.initModule;
6743
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  2503
    if ScriptExists('onAmmoStoreInit') then
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  2504
        begin
6752
nemo
parents: 6746
diff changeset
  2505
        ScriptPrepareAmmoStore;
6743
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  2506
        ScriptCall('onAmmoStoreInit');
6746
nemo
parents: 6743
diff changeset
  2507
        SetAmmoLoadout(ScriptAmmoLoadout);
nemo
parents: 6743
diff changeset
  2508
        SetAmmoProbability(ScriptAmmoProbability);
nemo
parents: 6743
diff changeset
  2509
        SetAmmoDelay(ScriptAmmoDelay);
nemo
parents: 6743
diff changeset
  2510
        SetAmmoReinforcement(ScriptAmmoReinforcement)
6743
864bf0f52a8c make onAmmoStoreInit optional in the case of onNewAmmoStore
nemo
parents: 6742
diff changeset
  2511
        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
  2512
    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
  2513
    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
  2514
4235
6b1dfbd60a45 added TeamsCount and TotalTurns to lua as requested by mikade
Henek
parents: 4221
diff changeset
  2515
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
  2516
ScriptSetInteger('TeamsCount', TeamsCount);
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
  2517
mapDims:= 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
  2518
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
  2519
5825
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  2520
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  2521
// 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
  2522
procedure ScriptOnScreenResize();
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  2523
begin
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  2524
ScriptSetInteger('ScreenHeight', cScreenHeight);
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  2525
ScriptSetInteger('ScreenWidth', cScreenWidth);
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  2526
ScriptCall('onScreenResize');
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  2527
end;
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  2528
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2529
// custom script loader via physfs, passed to lua_load
8034
fc032c0f7b23 Implement reader in C ffs
unc0rr
parents: 8031
diff changeset
  2530
const BUFSIZE = 1024;
5825
a6eab1b7c00d Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents: 5703
diff changeset
  2531
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
  2532
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
  2533
var ret : LongInt;
5243
f2e31a7f953a check alternate script loading path
nemo
parents: 5238
diff changeset
  2534
      s : shortstring;
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2535
      f : PFSFile;
8034
fc032c0f7b23 Implement reader in C ffs
unc0rr
parents: 8031
diff changeset
  2536
    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
  2537
begin
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2538
s:= cPathz[ptData] + name;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2539
if not pfsExists(s) then
9531
7fcdedc45589 Unbreak access to Data dir in profile broken in r8b48c27201af
unc0rr
parents: 9409
diff changeset
  2540
    begin
7fcdedc45589 Unbreak access to Data dir in profile broken in r8b48c27201af
unc0rr
parents: 9409
diff changeset
  2541
    AddFileLog('[LUA] Script not found: ' + name);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6578
diff changeset
  2542
    exit;
9531
7fcdedc45589 Unbreak access to Data dir in profile broken in r8b48c27201af
unc0rr
parents: 9409
diff changeset
  2543
    end;
6088
47d1b04003d1 - Frontend: don't pass /script for missions
unc0rr
parents: 6046
diff changeset
  2544
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2545
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
  2546
if f = nil then
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2547
    exit;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2548
8073
5a289ef40fdb physfs compilation on windows
koda
parents: 8063
diff changeset
  2549
physfsReaderSetBuffer(@buf);
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2550
ret:= lua_load(luaState, @physfsReader, f, Str2PChar(s));
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2551
pfsClose(f);
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8025
diff changeset
  2552
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
  2553
if ret <> 0 then
3774
af0e68ca273e Engine:
smaxx
parents: 3761
diff changeset
  2554
    begin
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
  2555
    LuaError('Failed to load ' + name + '(error ' + IntToStr(ret) + ')');
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
  2556
    LuaError(lua_tostring(luaState, -1));
3774
af0e68ca273e Engine:
smaxx
parents: 3761
diff changeset
  2557
    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
  2558
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
  2559
    begin
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  2560
    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
  2561
    // 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
  2562
    lua_pcall(luaState, 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
  2563
    ScriptLoaded:= 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
  2564
    end;
10150
fa5c83fd0ad9 Allow lua drawn maps (shoppamap, tunnels, diagonal maze etc) to generate previews.
nemo
parents: 10143
diff changeset
  2565
hedgewarsMountPackage(Str2PChar(copy(s, 1, length(s)-4)+'.hwp'));
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
  2566
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
  2567
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2568
procedure 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
  2569
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
  2570
ScriptSetInteger('TurnTimeLeft', TurnTimeLeft);
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2571
ScriptSetInteger('GameTime', GameTicks);
4235
6b1dfbd60a45 added TeamsCount and TotalTurns to lua as requested by mikade
Henek
parents: 4221
diff changeset
  2572
ScriptSetInteger('TotalRounds', TotalRounds);
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
  2573
ScriptSetInteger('WaterLine', cWaterLine);
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
  2574
if not mapDims then
7650
ffa26ebdf8ae LAND_HEIGHT/LAND_WIDTH need setting later now
nemo
parents: 7628
diff changeset
  2575
    begin
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
  2576
    mapDims:= true;
7650
ffa26ebdf8ae LAND_HEIGHT/LAND_WIDTH need setting later now
nemo
parents: 7628
diff changeset
  2577
    ScriptSetInteger('LAND_WIDTH', LAND_WIDTH);
ffa26ebdf8ae LAND_HEIGHT/LAND_WIDTH need setting later now
nemo
parents: 7628
diff changeset
  2578
    ScriptSetInteger('LAND_HEIGHT', LAND_HEIGHT);
ffa26ebdf8ae LAND_HEIGHT/LAND_WIDTH need setting later now
nemo
parents: 7628
diff changeset
  2579
    ScriptSetInteger('LeftX', leftX);
ffa26ebdf8ae LAND_HEIGHT/LAND_WIDTH need setting later now
nemo
parents: 7628
diff changeset
  2580
    ScriptSetInteger('RightX', rightX);
ffa26ebdf8ae LAND_HEIGHT/LAND_WIDTH need setting later now
nemo
parents: 7628
diff changeset
  2581
    ScriptSetInteger('TopY', topY)
ffa26ebdf8ae LAND_HEIGHT/LAND_WIDTH need setting later now
nemo
parents: 7628
diff changeset
  2582
    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
  2583
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
  2584
    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
  2585
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
  2586
    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
  2587
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
  2588
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2589
procedure 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
  2590
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
  2591
TurnTimeLeft:= ScriptGetInteger('TurnTimeLeft');
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2592
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
  2593
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2594
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
  2595
begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8012
diff changeset
  2596
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
  2597
    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
  2598
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
  2599
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
  2600
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
  2601
    begin
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
  2602
    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
  2603
    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
  2604
    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
  2605
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
  2606
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
  2607
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2608
(*
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
  2609
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
  2610
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
  2611
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
  2612
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
  2613
    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
  2614
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
  2615
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
  2616
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
  2617
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
  2618
    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
  2619
    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
  2620
    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
  2621
    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
  2622
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
  2623
    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
  2624
    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
  2625
    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
  2626
    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
  2627
end;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  2628
*)
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
  2629
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
  2630
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
  2631
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
  2632
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
  2633
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
  2634
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2635
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
  2636
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
  2637
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
  2638
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
  2639
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2640
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
  2641
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
  2642
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
  2643
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
  2644
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2645
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
  2646
begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 8012
diff changeset
  2647
if (not ScriptLoaded) or (not ScriptExists(fname)) then
10560
9f09196d92a6 fix some pas2c related issues
sheepluva
parents: 10553
diff changeset
  2648
    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
  2649
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
  2650
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
  2651
lua_pushinteger(luaState, par1);
3acdb4dac6eb 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
lua_pushinteger(luaState, par2);
3acdb4dac6eb 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
lua_pushinteger(luaState, par3);
3acdb4dac6eb 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
lua_pushinteger(luaState, par4);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2655
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
  2656
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
  2657
    begin
10312
eda8d563f677 various tweaks
sheepluva
parents: 10306
diff changeset
  2658
    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
  2659
    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
  2660
    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
  2661
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
  2662
    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
  2663
    ScriptCall:= lua_tointeger(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
  2664
    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
  2665
    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
  2666
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
  2667
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
  2668
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2669
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
  2670
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
  2671
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
  2672
    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
  2673
    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
  2674
    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
  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
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
  2677
ScriptExists:= not lua_isnoneornil(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
  2678
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
  2679
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
  2680
3acdb4dac6eb 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
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
  2682
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
  2683
begin
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2684
ScriptAmmoLoadout:= '';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2685
ScriptAmmoDelay:= '';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2686
ScriptAmmoProbability:= '';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2687
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
  2688
for i:=1 to ord(High(TAmmoType)) do
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2689
    begin
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2690
    ScriptAmmoLoadout:= ScriptAmmoLoadout + '0';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2691
    ScriptAmmoProbability:= ScriptAmmoProbability + '0';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2692
    ScriptAmmoDelay:= ScriptAmmoDelay + '0';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2693
    ScriptAmmoReinforcement:= ScriptAmmoReinforcement + '0';
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2694
    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
  2695
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
  2696
9750
8963312df207 fix misspelled variable name (cosmetic change)
sheepluva
parents: 9748
diff changeset
  2697
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
  2698
begin
9750
8963312df207 fix misspelled variable name (cosmetic change)
sheepluva
parents: 9748
diff changeset
  2699
//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
  2700
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
  2701
    exit;
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2702
ScriptAmmoLoadout[ord(ammo)]:= inttostr(count)[1];
9750
8963312df207 fix misspelled variable name (cosmetic change)
sheepluva
parents: 9748
diff changeset
  2703
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
  2704
ScriptSetAmmoDelay(ammo, delay);
3346
967fd96f7373 Engine/Frontend:
smxx
parents: 3337
diff changeset
  2705
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
  2706
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
  2707
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
  2708
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
  2709
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
  2710
// change loadout string if ammo store hasn't been initialized yet
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
  2711
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
  2712
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
  2713
    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
  2714
        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
  2715
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
  2716
// change "live" delay values
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
  2717
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
  2718
        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
  2719
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
  2720
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
  2721
procedure ScriptApplyAmmoStore;
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  2722
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
  2723
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
  2724
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
  2725
    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
  2726
        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
  2727
        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
  2728
            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
  2729
            ScriptPrepareAmmoStore;
6746
nemo
parents: 6743
diff changeset
  2730
            ScriptCall('onNewAmmoStore',i,-1);
nemo
parents: 6743
diff changeset
  2731
            SetAmmoLoadout(ScriptAmmoLoadout);
nemo
parents: 6743
diff changeset
  2732
            SetAmmoProbability(ScriptAmmoProbability);
nemo
parents: 6743
diff changeset
  2733
            SetAmmoDelay(ScriptAmmoDelay);
nemo
parents: 6743
diff changeset
  2734
            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
  2735
            end;
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  2736
        AddAmmoStore;
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  2737
        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
  2738
            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
  2739
                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
  2740
        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
  2741
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
  2742
    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
  2743
        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
  2744
            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
  2745
            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
  2746
                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
  2747
                ScriptPrepareAmmoStore;
6746
nemo
parents: 6743
diff changeset
  2748
                ScriptCall('onNewAmmoStore',i,j);
nemo
parents: 6743
diff changeset
  2749
                SetAmmoLoadout(ScriptAmmoLoadout);
nemo
parents: 6743
diff changeset
  2750
                SetAmmoProbability(ScriptAmmoProbability);
nemo
parents: 6743
diff changeset
  2751
                SetAmmoDelay(ScriptAmmoDelay);
nemo
parents: 6743
diff changeset
  2752
                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
  2753
                end;
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  2754
            AddAmmoStore;
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  2755
            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
  2756
            end
9752
656c511ab0f3 here have some lua love: make parameter count error messages more helpful to lua devs
sheepluva
parents: 9751
diff changeset
  2757
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
  2758
    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
  2759
        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
  2760
        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
  2761
            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
  2762
            ScriptPrepareAmmoStore;
6746
nemo
parents: 6743
diff changeset
  2763
            ScriptCall('onNewAmmoStore',i,-1);
nemo
parents: 6743
diff changeset
  2764
            SetAmmoLoadout(ScriptAmmoLoadout);
nemo
parents: 6743
diff changeset
  2765
            SetAmmoProbability(ScriptAmmoProbability);
nemo
parents: 6743
diff changeset
  2766
            SetAmmoDelay(ScriptAmmoDelay);
nemo
parents: 6743
diff changeset
  2767
            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
  2768
            end;
6563
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  2769
        AddAmmoStore;
30e042398411 Assign ammo counts as well, in case the game flags were changed by the script
nemo
parents: 6557
diff changeset
  2770
        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
  2771
            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
  2772
        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
  2773
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
  2774
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2775
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
  2776
var at : TGearType;
4453
15a483b2558a add visual gear registration
nemo
parents: 4450
diff changeset
  2777
    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
  2778
    am : TAmmoType;
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9291
diff changeset
  2779
    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
  2780
    st : TSound;
5118
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  2781
    he : THogEffect;
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  2782
    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
  2783
    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
  2784
    mg : TMapGen;
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
  2785
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
  2786
// initialize lua
10239
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  2787
luaState:= lua_open;
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  2788
TryDo(luaState <> nil, 'lua_open failed', 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
  2789
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2790
// open internal libraries
10239
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  2791
luaopen_base(luaState);
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  2792
luaopen_string(luaState);
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  2793
luaopen_math(luaState);
ed8bab6e92ba rolling back the rest
sheepluva
parents: 10230
diff changeset
  2794
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
  2795
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2796
// import some variables
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2797
ScriptSetString(_S'L', cLocale);
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
  2798
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
  2799
// import game flags
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2800
ScriptSetInteger('gfForts', gfForts);
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2801
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
  2802
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
  2803
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
  2804
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
  2805
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
  2806
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
  2807
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
  2808
ScriptSetInteger('gfInvulnerable', gfInvulnerable);
3acdb4dac6eb 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
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
  2810
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
  2811
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
  2812
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
  2813
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
  2814
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
  2815
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
  2816
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
  2817
ScriptSetInteger('gfDisableGirders', gfDisableGirders);
4162
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  2818
ScriptSetInteger('gfDisableLandObjects', gfDisableLandObjects);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  2819
ScriptSetInteger('gfAISurvival', gfAISurvival);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  2820
ScriptSetInteger('gfInfAttack', gfInfAttack);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  2821
ScriptSetInteger('gfResetWeps', gfResetWeps);
923db448ad16 update and fix some lua stuff
Henek
parents: 4003
diff changeset
  2822
ScriptSetInteger('gfPerHogAmmo', gfPerHogAmmo);
4219
4162db7c11bb fix so gfDisableWind can infact be used in lua
Henek
parents: 4162
diff changeset
  2823
ScriptSetInteger('gfDisableWind', gfDisableWind);
4319
81391b54b078 clean up and lua update, very minor
Henek
parents: 4243
diff changeset
  2824
ScriptSetInteger('gfMoreWind', gfMoreWind);
5016
9347d82a26cc added game mode Tag Team, mostly untested, please test :)
Henek
parents: 5013
diff changeset
  2825
ScriptSetInteger('gfTagTeam', gfTagTeam);
9387
6478ed9ead25 gfShoppaBorder
unc0rr
parents: 9291
diff changeset
  2826
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
  2827
3894
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2828
ScriptSetInteger('gmLeft', gmLeft);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2829
ScriptSetInteger('gmRight', gmRight);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2830
ScriptSetInteger('gmUp', gmUp);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2831
ScriptSetInteger('gmDown', gmDown);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2832
ScriptSetInteger('gmSwitch', gmSwitch);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2833
ScriptSetInteger('gmAttack', gmAttack);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2834
ScriptSetInteger('gmLJump', gmLJump);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2835
ScriptSetInteger('gmHJump', gmHJump);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2836
ScriptSetInteger('gmDestroy', gmDestroy);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2837
ScriptSetInteger('gmSlot', gmSlot);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2838
ScriptSetInteger('gmWeapon', gmWeapon);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2839
ScriptSetInteger('gmTimer', gmTimer);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2840
ScriptSetInteger('gmAnimate', gmAnimate);
9abce5468583 Engine:
smaxx
parents: 3892
diff changeset
  2841
ScriptSetInteger('gmPrecise', gmPrecise);
3892
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  2842
ScriptSetInteger('gmAllStoppable', gmAllStoppable);
60d9709f2d8e Engine:
smaxx
parents: 3848
diff changeset
  2843
3761
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2844
// speech bubbles
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2845
ScriptSetInteger('SAY_SAY', 1);
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2846
ScriptSetInteger('SAY_THINK', 2);
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2847
ScriptSetInteger('SAY_SHOUT', 3);
f96b99f944e6 Engine:
smaxx
parents: 3756
diff changeset
  2848
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
  2849
// 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
  2850
for at:= Low(TGearType) to High(TGearType) do
3337
75e7455c69ed Engine:
smxx
parents: 3271
diff changeset
  2851
    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
  2852
4453
15a483b2558a add visual gear registration
nemo
parents: 4450
diff changeset
  2853
for vgt:= Low(TVisualGearType) to High(TVisualGearType) do
15a483b2558a add visual gear registration
nemo
parents: 4450
diff changeset
  2854
    ScriptSetInteger(EnumToStr(vgt), ord(vgt));
15a483b2558a add visual gear registration
nemo
parents: 4450
diff changeset
  2855
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
  2856
// 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
  2857
for st:= Low(TSound) to High(TSound) do
3337
75e7455c69ed Engine:
smxx
parents: 3271
diff changeset
  2858
    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
  2859
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  2860
// 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
  2861
for am:= Low(TAmmoType) to High(TAmmoType) do
3337
75e7455c69ed Engine:
smxx
parents: 3271
diff changeset
  2862
    ScriptSetInteger(EnumToStr(am), ord(am));
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3539
diff changeset
  2863
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9291
diff changeset
  2864
for si:= Low(TStatInfoType) to High(TStatInfoType) do
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9291
diff changeset
  2865
    ScriptSetInteger(EnumToStr(si), ord(si));
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9291
diff changeset
  2866
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  2867
for he:= Low(THogEffect) to High(THogEffect) do
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  2868
    ScriptSetInteger(EnumToStr(he), ord(he));
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3755
diff changeset
  2869
5118
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  2870
for cg:= Low(TCapGroup) to High(TCapGroup) do
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  2871
    ScriptSetInteger(EnumToStr(cg), ord(cg));
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 5075
diff changeset
  2872
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
  2873
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
  2874
    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
  2875
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10589
diff changeset
  2876
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
  2877
    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
  2878
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2879
ScriptSetInteger('gstDrowning'      , gstDrowning);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2880
ScriptSetInteger('gstHHDriven'      , gstHHDriven);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2881
ScriptSetInteger('gstMoving'        , gstMoving);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2882
ScriptSetInteger('gstAttacked'      , gstAttacked);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2883
ScriptSetInteger('gstAttacking'     , gstAttacking);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2884
ScriptSetInteger('gstCollision'     , gstCollision);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2885
ScriptSetInteger('gstHHChooseTarget', gstHHChooseTarget);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2886
ScriptSetInteger('gstHHJumping'     , gstHHJumping);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2887
ScriptSetInteger('gsttmpFlag'       , gsttmpFlag);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2888
ScriptSetInteger('gstHHThinking'    , gstHHThinking);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2889
ScriptSetInteger('gstNoDamage'      , gstNoDamage);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2890
ScriptSetInteger('gstHHHJump'       , gstHHHJump);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2891
ScriptSetInteger('gstAnimation'     , gstAnimation);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2892
ScriptSetInteger('gstHHDeath'       , gstHHDeath);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2893
ScriptSetInteger('gstWinner'        , gstWinner);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2894
ScriptSetInteger('gstWait'          , gstWait);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2895
ScriptSetInteger('gstNotKickable'   , gstNotKickable);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2896
ScriptSetInteger('gstLoser'         , gstLoser);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2897
ScriptSetInteger('gstHHGone'        , gstHHGone);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2898
ScriptSetInteger('gstInvisible'     , gstInvisible);
5527
418741abd209 gear state flag names for scripting
nemo
parents: 5517
diff changeset
  2899
8145
6408c0ba4ba1 Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents: 8077
diff changeset
  2900
// ai hints
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2901
ScriptSetInteger('aihUsualProcessing', aihUsualProcessing);
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  2902
ScriptSetInteger('aihDoesntMatter'   , aihDoesntMatter);
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  2903
10283
f5573ef8cda9 expose lfIndestructable, lfIce and lfBounce
sheepluva
parents: 10282
diff changeset
  2904
// land flags
f5573ef8cda9 expose lfIndestructable, lfIce and lfBounce
sheepluva
parents: 10282
diff changeset
  2905
ScriptSetInteger('lfIndestructible', lfIndestructible);
10421
87e47843018e use constants for mapgen, expose those to lua
sheepluva
parents: 10368
diff changeset
  2906
ScriptSetInteger('lfIce'           , lfIce);
87e47843018e use constants for mapgen, expose those to lua
sheepluva
parents: 10368
diff changeset
  2907
ScriptSetInteger('lfBouncy'        , lfBouncy);
87e47843018e use constants for mapgen, expose those to lua
sheepluva
parents: 10368
diff changeset
  2908
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
  2909
// register functions
7201
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2910
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
  2911
lua_register(luaState, _P'RestoreHog', @lc_restorehog);
dc17ffdf0702 The first campaign commit with a lot of changes...
belphegorr <szabibibi@gmail.com>
parents: 7156
diff changeset
  2912
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
  2913
lua_register(luaState, _P'GetCampaignVar', @lc_getcampaignvar);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2914
lua_register(luaState, _P'band', @lc_band);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2915
lua_register(luaState, _P'bor', @lc_bor);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2916
lua_register(luaState, _P'bnot', @lc_bnot);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2917
lua_register(luaState, _P'div', @lc_div);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2918
lua_register(luaState, _P'GetInputMask', @lc_getinputmask);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2919
lua_register(luaState, _P'SetInputMask', @lc_setinputmask);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2920
lua_register(luaState, _P'AddGear', @lc_addgear);
10290
42efccba0711 lua api: DismissTeam(teamname)
sheepluva
parents: 10289
diff changeset
  2921
lua_register(luaState, _P'DismissTeam', @lc_dismissteam);
8366
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
  2922
lua_register(luaState, _P'EnableGameFlags', @lc_enablegameflags);
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
  2923
lua_register(luaState, _P'DisableGameFlags', @lc_disablegameflags);
67c7ba2b82a3 lua API functions to enable or disable game flags
martin_bede
parents: 8228
diff changeset
  2924
lua_register(luaState, _P'ClearGameFlags', @lc_cleargameflags);
10035
ec523f66d0ff luaAPI:
sheepluva
parents: 10031
diff changeset
  2925
lua_register(luaState, _P'GetGameFlag', @lc_getgameflag);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2926
lua_register(luaState, _P'DeleteGear', @lc_deletegear);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2927
lua_register(luaState, _P'AddVisualGear', @lc_addvisualgear);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2928
lua_register(luaState, _P'DeleteVisualGear', @lc_deletevisualgear);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2929
lua_register(luaState, _P'GetVisualGearValues', @lc_getvisualgearvalues);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2930
lua_register(luaState, _P'SetVisualGearValues', @lc_setvisualgearvalues);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2931
lua_register(luaState, _P'SpawnHealthCrate', @lc_spawnhealthcrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2932
lua_register(luaState, _P'SpawnAmmoCrate', @lc_spawnammocrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2933
lua_register(luaState, _P'SpawnUtilityCrate', @lc_spawnutilitycrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2934
lua_register(luaState, _P'SpawnFakeHealthCrate', @lc_spawnfakehealthcrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2935
lua_register(luaState, _P'SpawnFakeAmmoCrate', @lc_spawnfakeammocrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2936
lua_register(luaState, _P'SpawnFakeUtilityCrate', @lc_spawnfakeutilitycrate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2937
lua_register(luaState, _P'WriteLnToConsole', @lc_writelntoconsole);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2938
lua_register(luaState, _P'GetGearType', @lc_getgeartype);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2939
lua_register(luaState, _P'EndGame', @lc_endgame);
9171
e72f4f37a444 added sendstat and sendstats support for lua scripts
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9080
diff changeset
  2940
lua_register(luaState, _P'SendStat', @lc_sendstat);
9180
d19c09670ec8 changed variable and function name
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9179
diff changeset
  2941
lua_register(luaState, _P'SendHealthStatsOff', @lc_sendhealthstatsoff);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2942
lua_register(luaState, _P'FindPlace', @lc_findplace);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2943
lua_register(luaState, _P'SetGearPosition', @lc_setgearposition);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2944
lua_register(luaState, _P'GetGearPosition', @lc_getgearposition);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2945
lua_register(luaState, _P'SetGearTarget', @lc_setgeartarget);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2946
lua_register(luaState, _P'GetGearTarget', @lc_getgeartarget);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2947
lua_register(luaState, _P'SetGearVelocity', @lc_setgearvelocity);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2948
lua_register(luaState, _P'GetGearVelocity', @lc_getgearvelocity);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2949
lua_register(luaState, _P'ParseCommand', @lc_parsecommand);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2950
lua_register(luaState, _P'ShowMission', @lc_showmission);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2951
lua_register(luaState, _P'HideMission', @lc_hidemission);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2952
lua_register(luaState, _P'AddCaption', @lc_addcaption);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2953
lua_register(luaState, _P'SetAmmo', @lc_setammo);
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
  2954
lua_register(luaState, _P'SetAmmoDelay', @lc_setammodelay);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2955
lua_register(luaState, _P'SetAmmoStore', @lc_setammostore);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2956
lua_register(luaState, _P'PlaySound', @lc_playsound);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2957
lua_register(luaState, _P'AddTeam', @lc_addteam);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2958
lua_register(luaState, _P'AddHog', @lc_addhog);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2959
lua_register(luaState, _P'AddAmmo', @lc_addammo);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2960
lua_register(luaState, _P'GetAmmoCount', @lc_getammocount);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2961
lua_register(luaState, _P'SetHealth', @lc_sethealth);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2962
lua_register(luaState, _P'GetHealth', @lc_gethealth);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2963
lua_register(luaState, _P'SetEffect', @lc_seteffect);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2964
lua_register(luaState, _P'GetEffect', @lc_geteffect);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2965
lua_register(luaState, _P'GetHogClan', @lc_gethogclan);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2966
lua_register(luaState, _P'GetClanColor', @lc_getclancolor);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2967
lua_register(luaState, _P'SetClanColor', @lc_setclancolor);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2968
lua_register(luaState, _P'GetHogTeamName', @lc_gethogteamname);
9788
af04cfdb1684 add SetHogTeamName
cairo
parents: 9764
diff changeset
  2969
lua_register(luaState, _P'SetHogTeamName', @lc_sethogteamname);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2970
lua_register(luaState, _P'GetHogName', @lc_gethogname);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2971
lua_register(luaState, _P'SetHogName', @lc_sethogname);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2972
lua_register(luaState, _P'GetHogLevel', @lc_gethoglevel);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2973
lua_register(luaState, _P'SetHogLevel', @lc_sethoglevel);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2974
lua_register(luaState, _P'GetX', @lc_getx);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2975
lua_register(luaState, _P'GetY', @lc_gety);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2976
lua_register(luaState, _P'CopyPV', @lc_copypv);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2977
lua_register(luaState, _P'FollowGear', @lc_followgear);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2978
lua_register(luaState, _P'GetFollowGear', @lc_getfollowgear);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2979
lua_register(luaState, _P'SetState', @lc_setstate);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2980
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
  2981
lua_register(luaState, _P'GetTag', @lc_gettag);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2982
lua_register(luaState, _P'SetTag', @lc_settag);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2983
lua_register(luaState, _P'SetTimer', @lc_settimer);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2984
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
  2985
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
  2986
lua_register(luaState, _P'GetFlightTime', @lc_getflighttime);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2987
lua_register(luaState, _P'SetZoom', @lc_setzoom);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2988
lua_register(luaState, _P'GetZoom', @lc_getzoom);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2989
lua_register(luaState, _P'HogSay', @lc_hogsay);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2990
lua_register(luaState, _P'SwitchHog', @lc_switchhog);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2991
lua_register(luaState, _P'HogTurnLeft', @lc_hogturnleft);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2992
lua_register(luaState, _P'CampaignLock', @lc_campaignlock);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2993
lua_register(luaState, _P'CampaignUnlock', @lc_campaignunlock);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2994
lua_register(luaState, _P'GetGearElasticity', @lc_getgearelasticity);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2995
lua_register(luaState, _P'GetGearRadius', @lc_getgearradius);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2996
lua_register(luaState, _P'GetGearMessage', @lc_getgearmessage);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2997
lua_register(luaState, _P'SetGearMessage', @lc_setgearmessage);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2998
lua_register(luaState, _P'GetGearPos', @lc_getgearpos);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  2999
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
  3000
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
  3001
lua_register(luaState, _P'SetGearCollisionMask', @lc_setgearcollisionmask);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3002
lua_register(luaState, _P'GetRandom', @lc_getrandom);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3003
lua_register(luaState, _P'SetWind', @lc_setwind);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3004
lua_register(luaState, _P'GetDataPath', @lc_getdatapath);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3005
lua_register(luaState, _P'GetUserDataPath', @lc_getuserdatapath);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3006
lua_register(luaState, _P'MapHasBorder', @lc_maphasborder);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3007
lua_register(luaState, _P'GetHogHat', @lc_gethoghat);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3008
lua_register(luaState, _P'SetHogHat', @lc_sethoghat);
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
  3009
lua_register(luaState, _P'PlaceSprite', @lc_placesprite);
7072
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3010
lua_register(luaState, _P'PlaceGirder', @lc_placegirder);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3011
lua_register(luaState, _P'GetCurAmmoType', @lc_getcurammotype);
159616c24bb8 More magic
unc0rr
parents: 7063
diff changeset
  3012
lua_register(luaState, _P'TestRectForObstacle', @lc_testrectforobstacle);
9815
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3013
lua_register(luaState, _P'GetGravity', @lc_getgravity);
d4621fb76284 - Fix typo in frontend debug output
unc0rr
parents: 9788
diff changeset
  3014
lua_register(luaState, _P'SetGravity', @lc_setgravity);
9914
ba26595503ab hey, if unc0rr can screw with gravity...
nemo
parents: 9902
diff changeset
  3015
lua_register(luaState, _P'SetWaterLine', @lc_setwaterline);
10291
d9893b1b76a0 lua api: SetNextWeapon()
sheepluva
parents: 10290
diff changeset
  3016
lua_register(luaState, _P'SetNextWeapon', @lc_setnextweapon);
10289
c3a77ff02a23 lua api: SetWeapon(ammoType)
sheepluva
parents: 10288
diff changeset
  3017
lua_register(luaState, _P'SetWeapon', @lc_setweapon);
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3018
// drawn map functions
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3019
lua_register(luaState, _P'AddPoint', @lc_addPoint);
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3020
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
  3021
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3022
lua_register(luaState, _P'SetGearAIHints', @lc_setaihintsongear);
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 8034
diff changeset
  3023
lua_register(luaState, _P'HedgewarsScriptLoad', @lc_hedgewarsscriptload);
9397
7b7ee65f82ad Declare achievements in console statistics output
unc0rr
parents: 9387
diff changeset
  3024
lua_register(luaState, _P'DeclareAchievement', @lc_declareachievement);
7996
66e8ac9c2274 Try to beat AI in Mutant!
unc0rr
parents: 7889
diff changeset
  3025
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
  3026
if cTestLua then
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
  3027
    begin
10306
4fca8bcfaff0 clean up halting a little
sheepluva
parents: 10297
diff changeset
  3028
    ScriptSetInteger('TEST_SUCCESSFUL'   , HaltTestSuccess);
4fca8bcfaff0 clean up halting a little
sheepluva
parents: 10297
diff changeset
  3029
    ScriptSetInteger('TEST_FAILED'       , HaltTestFailed);
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
  3030
    lua_register(luaState, _P'EndLuaTest', @lc_endluatest);
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
  3031
    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
  3032
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3033
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
  3034
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
  3035
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
  3036
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3037
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
  3038
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
  3039
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
  3040
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
  3041
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3042
{$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
  3043
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
  3044
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
  3045
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
  3046
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3047
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
  3048
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
  3049
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
  3050
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3051
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
  3052
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3053
    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
  3054
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
  3055
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3056
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
  3057
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
  3058
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
  3059
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3060
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
  3061
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3062
    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
  3063
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
  3064
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3065
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
  3066
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3067
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3068
    fname:= fname;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3069
    par1:= par1;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3070
    par2:= par2;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3071
    par3:= par3;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3072
    par4:= par4;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3073
    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
  3074
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
  3075
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3076
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
  3077
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3078
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3079
    fname:= fname;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3080
    par1:= par1;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3081
    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
  3082
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
  3083
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3084
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
  3085
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3086
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3087
    fname:= fname;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3088
    par1:= par1;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3089
    par2:= par2;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3090
    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
  3091
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
  3092
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3093
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
  3094
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3095
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3096
    fname:= fname;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3097
    par1:= par1;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3098
    par2:= par2;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3099
    par3:= par3;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3100
    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
  3101
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
  3102
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3103
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
  3104
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3105
    fname:= fname; // avoid hint
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3106
    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
  3107
end;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  3108
(*
5410
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
  3109
function ParseCommandOverride(key, value : shortstring) : shortstring;
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
  3110
begin
7030
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3111
    // avoid hints
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3112
    key:= key;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3113
    value:= value;
09984acadece invert LUA symbol meaning and avoid hints when compiling without it
koda
parents: 7010
diff changeset
  3114
    ParseCommandOverride:= ''
5410
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
  3115
end;
7805
2a249a4faf5b Flag script parsecommands to avoid echoing to net
nemo
parents: 7771
diff changeset
  3116
*)
5410
8e7787065e2d small fix to have LUA_DISABLED working again
Xeli
parents: 5366
diff changeset
  3117
6430
93eefff23bcd fix compiling with LUA_DISABLED
koda
parents: 6415
diff changeset
  3118
procedure ScriptOnScreenResize;
93eefff23bcd fix compiling with LUA_DISABLED
koda
parents: 6415
diff changeset
  3119
begin
93eefff23bcd fix compiling with LUA_DISABLED
koda
parents: 6415
diff changeset
  3120
end;
93eefff23bcd fix compiling with LUA_DISABLED
koda
parents: 6415
diff changeset
  3121
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
  3122
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
  3123
begin
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
  3124
mapDims:= false;
10611
58cad46782ff move functionality of Draw.lua into engine
sheepluva
parents: 10603
diff changeset
  3125
PointsBuffer:= '';
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
  3126
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
  3127
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3128
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
  3129
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
  3130
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
  3131
3acdb4dac6eb Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents: 3038
diff changeset
  3132
{$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
  3133
end.