Dennis1000/verysimplelua
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
============================================== VerySimple.Lua - Lua 5.3.0 for Delphi XE5-10.1 ============================================== (c) 2009-2016 Dennis D. Spreen http://blog.spreendigital.de/2015/02/18/verysimple-lua-2-0-a-cross-platform-lua-5-3-0-wrapper-for-delphi-xe5-xe7/ History 2.1 DS Added [hidden] attribute Added OnError property Fixed MULTIRET lua call Fixed function luaL_testudata 2.0.3 DS Fix XE5 - Added Pointer cast for RegisterFunc 2.0.2 DS Fix: added missing lua_isinteger function 2.0.1 DS Fix: fixed Register function Added Example 6 - Call a Lua function 2.0 DS Updated Lua Lib to 5.3.0 Rewrite of Delphi register functions Removed Class only functions Removed a lot of convenience overloaded functions Support for mobile compiler 1.4 DS Rewrite of Lua function calls, they use now published static methods, no need for a Callbacklist required anymore Added Package functions Added Class registering functions 1.3 DS Improved Callback, now uses pointer instead of object index Modified RegisterFunctions to allow methods from other class to be registered, moved object table into TLua class 1.2 DS Added example on how to extend lua with a delphi dll 1.1 DS Improved global object table, this optimizes the delphi function calls 1.0 DS Initial Release This is a Lua Wrapper for Delphi XE5-D10.1 which automatically creates OOP callback functions for Delphi <-> Lua: uses VerySimple.Lua, VerySimple.Lua.Lib; type TMyLua = class(TVerySimpleLua) published function HelloWorld(LuaState: TLuaState): Integer; end; function TMyLua.HelloWorld(LuaState: TLuaState): Integer; var ArgCount: Integer; I: integer; begin ArgCount := Lua_GetTop(LuaState); writeln('Delphi: Hello World'); writeln('Arguments: ', ArgCount); for I := 1 to ArgCount do writeln('Arg1', I, ': ', Lua_ToInteger(LuaState, I)); // Clear stack Lua_Pop(LuaState, Lua_GetTop(LuaState)); // Push return values Lua_PushInteger(LuaState, 101); Lua_PushInteger(LuaState, 102); Result := 2; end; var MyLua: TVerySimpleLua; begin MyLua := TMyLua.Create; MyLua.DoFile('Helloworld.lua'); MyLua.Free; end; helloworld.lua print("LuaDelphi Test"); p1,p2 = HelloWorld(1,2,3) print "Results:"; print (p1); print (p2); ************************************************************************** Copyright 2016 Dennis D. Spreen (http://blog.spreendigital.de/) VerySimple.Lua is distributed under the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with your software, You can obtain one at http://mozilla.org/MPL/2.0/. **************************************************************************
About
VerySimple.Lua - Lua 5.3 for Delphi
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published