LUA Implementation Limitations & Notes: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Our LUA VM is based on [https://www.moonsharp.org/ MoonSharp], which implements (more or less) the [https://www.lua.org/manual/5.2/manual.html LUA 5.2] specification. | |||
== Features == | |||
The following interpreter features are enabled: | |||
* Global Consts ("_G", "_VERSION" and "_MOONSHARP") | |||
*[[Global LUA Functions|Table Iterators]] ("next", "ipairs" and "pairs") | |||
* Strings | |||
* [[Table|Tables]] | |||
* Basic ("assert", "collectgarbage", "error", "print", "select", "type", "tonumber" and "tostring") | |||
* Math | |||
* Bit32 | |||
== Caveats == | |||
Some caveats to be aware of when writing LUA code for it: | |||
* This page describing known [https://www.moonsharp.org/moonluadifferences.html differences in MoonSharp] may be helpful, in particular [https://www.moonsharp.org/MoonSharpStdLib.pdf differences in std lib]. | |||
* A LUA global is registered under the name 'this' to point to the LUA object that is executing the code. | *A LUA global is registered under the name 'this' to point to the LUA object that is executing the code. | ||
** See [[Sample: GPS|GPS]] for a sample. | ** See [[Sample: GPS|GPS]] for a sample. | ||
** However, as this is just a global variable and not an actual language keyword, if your code creates classes, 'this' will still point to the entity. | ** However, as this is just a global variable and not an actual language keyword, if your code creates classes, 'this' will still point to the entity. | ||
* Equality operator on entities, maps, locations, and other Underworld classes should be generally avoided currently | *Equality operator on entities, maps, locations, and other Underworld classes should be generally avoided currently | ||
** This is because AS3 will return a new LUA table for each requested class. In future, these will be cached which ''should'' allow for accurate equality comparison. In the meanwhile, you can check locations equality by comparing if they both have the same RoomID and map.getName. Entity equality is trickier since many entities may share the same name. | ** This is because AS3 will return a new LUA table for each requested class. In future, these will be cached which ''should'' allow for accurate equality comparison. In the meanwhile, you can check locations equality by comparing if they both have the same RoomID and map.getName. Entity equality is trickier since many entities may share the same name. | ||
*If you encounter unexpected bugs, post on discord with a link to some sample code to reproduce the bug. | |||
*If you run into a wall due to functions not being exposed to LUA, please leave feedback on what you would like to build with the mod API but can't due to current limitations! This helps inform future revisions of the mod API. | |||
== Old LUFA (AS3 LUA) version notes (no longer relevant) == | |||
Old notes (largely outdated? Based on the old AS3 version) | |||
{| class="wikitable mw-collapsible mw-collapsed" | |||
|+Outdated information hidden for now | |||
| | |||
Underworld's LUA VM is a modified version of the 2009 [https://code.google.com/archive/p/lufacode/ lufacode] project. It implements a small subset of the LUA 5.1 specification. | |||
There's a lot of caveats to be aware of when writing LUA code for it: | |||
* Most LUA library functions are not implemented | * Most LUA library functions are not implemented | ||
** This includes the pairs function. Foreach is available, however. I've also implemented a simple table.keys function as a workaround (see the clone [[LUA Utility Functions|utility function]] that uses it) | ** This includes the pairs function. Foreach is available, however. I've also implemented a simple table.keys function as a workaround (see the clone [[LUA Utility Functions|utility function]] that uses it) | ||
Line 40: | Line 67: | ||
***Ability to call functions on objects from AS3 so as to support an OOP design (see above rant) (less of an issue as of r35, but would still be nice) | ***Ability to call functions on objects from AS3 so as to support an OOP design (see above rant) (less of an issue as of r35, but would still be nice) | ||
***<nowiki>**In-game LUA compiler & editor so as to simplify the luac -> base64 -> edit json -> execute loop</nowiki> | ***<nowiki>**In-game LUA compiler & editor so as to simplify the luac -> base64 -> edit json -> execute loop</nowiki> | ||
* | * | ||
|} |
Latest revision as of 05:49, 13 July 2023
Our LUA VM is based on MoonSharp, which implements (more or less) the LUA 5.2 specification.
Features
The following interpreter features are enabled:
- Global Consts ("_G", "_VERSION" and "_MOONSHARP")
- Table Iterators ("next", "ipairs" and "pairs")
- Strings
- Tables
- Basic ("assert", "collectgarbage", "error", "print", "select", "type", "tonumber" and "tostring")
- Math
- Bit32
Caveats
Some caveats to be aware of when writing LUA code for it:
- This page describing known differences in MoonSharp may be helpful, in particular differences in std lib.
- A LUA global is registered under the name 'this' to point to the LUA object that is executing the code.
- See GPS for a sample.
- However, as this is just a global variable and not an actual language keyword, if your code creates classes, 'this' will still point to the entity.
- Equality operator on entities, maps, locations, and other Underworld classes should be generally avoided currently
- This is because AS3 will return a new LUA table for each requested class. In future, these will be cached which should allow for accurate equality comparison. In the meanwhile, you can check locations equality by comparing if they both have the same RoomID and map.getName. Entity equality is trickier since many entities may share the same name.
- If you encounter unexpected bugs, post on discord with a link to some sample code to reproduce the bug.
- If you run into a wall due to functions not being exposed to LUA, please leave feedback on what you would like to build with the mod API but can't due to current limitations! This helps inform future revisions of the mod API.
Old LUFA (AS3 LUA) version notes (no longer relevant)
Old notes (largely outdated? Based on the old AS3 version)
Underworld's LUA VM is a modified version of the 2009 lufacode project. It implements a small subset of the LUA 5.1 specification. There's a lot of caveats to be aware of when writing LUA code for it:
|