A Lua implementation in C#
License
efrederickson/SharpLua
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.
Latest commit
Git stats
Files
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
SharpLua 2.0 is a combination of a port of Lua 5.1.5, various interfaces, but will be eventually replaced by new, better, code.
Why did I start with a Lua 5.1.5 C port? because... You Can't Get More Accurate Than The Original (TM), and the C api allows easier porting of C libs.
SharpLua is an implementation of Lua for .NET
It can run lua files including bytecode (compatible with native Lua), create .NET objects and call methods on them (including static methods), and
supports all standard lua functions. It does not support C Libraries.
To use in your projects, just add a reference to the SharpLua.dll file and use the
SharpLua.LuaInterface class or the SharpLua.LuaRuntime, SharpLua.Lua is the raw Lua API.
NOTE: If you simplify the AST, you CAN NOT use a reconstructor that operates on the tokens unless you patch the tokens, as the Simplification process does not do that
Features Lua 5.1.5 doesn't have:
- table.unpack (similar to _G.unpack)
- a large extension library
- clr library (allows .NET object access)
- Syntax extensions
- ! (not)
- >> (right shift)
- << (left shift)
- & (bitwise and)
- | (bitwise or)
- ^^ (Xor)
- ~(bitwise not)
- using/do statements
- named functions in tables (e.g. { function x() end })
Current projects:
SharpLua The SharpLua core, along with a LASM library
SharpLua.Interactive SharpLua REPL
SharpLua.InterfacingTests SharpLua interfacing tests. As apposed to using the raw Lua API.
SharpLua.Compiler SharpLua bytecode compiler
Future projects:
SharpLua.Decompiler SharpLua bytecode decompiler
SharpLua.Web Web handler for #Lua
SharpLua SharpDevelop AddIn Support SharpLua/Lua files and projects, GUI
designer, and msbuild project builder
SharpLua Wpf supportAbout
A Lua implementation in C#
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published