this post was submitted on 13 Dec 2023
16 points (90.0% liked)

Game Development

3189 readers
226 users here now

Welcome to the game development community! This is a place to talk about and post anything related to the field of game development.

Community Wiki

founded 1 year ago
MODERATORS
 

Since I'm having untracable issues with Lua due to its API and lackluster documentation, I've decided to drop it from my game engine (PixelPerfectEngine) in favor of some easier to use alternatives.

What I need is:

  • open source
  • small footprint even if it at the cost of some complexity (I need it as a scripting engine, not as a replacement for compiled application languages)
  • integer support (I don't care if I could just round it on the backend)
  • C or C++ ABI
  • can be embedded into a software (yes, there are people that suggest you to use janky solutions like passing data in files and command line)

Even a better Lua implementation would suffice, and if I had the time, I would port the official one to D (my main language), while getting rid of the godawful stack method of control.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 9 points 8 months ago (2 children)

gdscript is awesome but isn't plug-and-play embed like Lua is. Here is an example of gdscript being pulled into another environment https://github.com/gdscript-online/gdscript-online.github.io This kind of breaks your last bullet point though since it's not as developed as it should be but still possible to actually embed.

angelscript is interesting http://www.angelcode.com/angelscript/ and hits all the points you made.

squirrel also is interesting and is lua inspired. http://squirrel-lang.org/ It's fairly well used.

https://github.com/dbohdan/embedded-scripting-languages is a large list of embedded languages that should be easy enough to embed.