Reusable dependencies for games made with lua (especially with love)
Go to file
Max Cahill ef25d12b1b
Merge pull request #3 from flamendless/patch-1
Fixed typo in table.clear
2020-03-28 16:06:37 +11:00
async.lua [added] stall support, timers and intervals to async 2020-03-16 20:17:48 +11:00
class.lua [removed] class.lua dependency on table.overlay - fixed #1 2020-03-24 14:57:42 +11:00
colour.lua [modified] renamed to batteries, added global export suppression and more documentation 2020-03-15 20:28:50 +11:00
functional.lua [added] functional.find_best accepts (ignores) nil results for easy filtering 2020-03-20 22:31:20 +11:00
init.lua [fixed] color alias added to exported module as well as exported globals 2020-03-15 21:38:19 +11:00
intersect.lua [fixed] non-global compatible 2020-03-15 21:22:22 +11:00
license.txt [added] readme, license 2020-01-29 14:32:57 +11:00
manual_gc.lua [added] manual gc 2020-02-01 19:30:36 +11:00
math.lua [modified] renamed to batteries, added global export suppression and more documentation 2020-03-15 20:28:50 +11:00
readme.md [added] more documentation 2020-03-15 21:36:50 +11:00
sequence.lua [fixed] non-global compatible 2020-03-15 21:22:22 +11:00
stable_sort.lua [modified] renamed to batteries, added global export suppression and more documentation 2020-03-15 20:28:50 +11:00
state_machine.lua [fixed] non-global compatible 2020-03-15 21:22:22 +11:00
table.lua Fixed typo in table.clear 2020-03-28 12:30:25 +08:00
unique_mapping.lua [fixed] non-global compatible 2020-03-15 21:22:22 +11:00
vec2.lua [added] vec2:new supports .x .y table argument 2020-03-18 21:22:11 +11:00
vec3.lua [fixed] non-global compatible 2020-03-15 21:22:22 +11:00

Batteries for Lua

Core dependencies for making games with lua, especially with love.

Does a lot to get projects off the ground faster, filling out lua's sparse standard library a little and providing implementations of common algorithms and data structures useful for games.

It's a bit of a grab bag of functionality, but quite extensively documented, and currently still under a hundred kb uncompressed, including the license and readme, so you get quite a lot per byte! Of course, feel free to trim it down for your use case as required. Many of the modules are "mostly" standalone.

Module Overview

  • class - Single-inheritance oo in a single function.
  • math - Mathematical extensions.
  • table - Table handling extensions.
  • stable_sort - A stable sorting algorithm that is also, as a bonus, faster than table.sort under luajit.
  • functional - Functional programming facilities. map, reduce, any, match, minmax, mean...
  • sequence - An oo wrapper on sequential tables so you can do t:insert(i, v) instead of table.insert(t, i, v). Also supports chaining the functional interface above.
  • vec2 - 2d vectors with method chaining, garbage saving interface. A bit of a mouthful at times.
  • vec3 - 3d vectors as above.
  • intersect - 2d intersection routines, a bit sparse at the moment
  • unique_mapping - Generate a unique mapping from arbitrary lua values to numeric keys - essentially making up a consistent ordering for unordered data. Niche, but useful for optimising draw batches for example, as you can't sort on textures without it.
  • state_machine - Finite state machine implementation with state transitions and all the rest. Useful for game states, ai, cutscenes...
  • async - Async operations as coroutines.
  • manual_gc - Get GC out of your update/draw calls. Really good when trying to get accurate profiling information; no more spikes. Requires you to think a bit about your garbage budgets though.
  • colour - Colour conversion routines. Can also be spelled color if you're into that.

Todo/WIP list

Endless, of course :)

  • string - As for table and math, would be good to have a more filled out string handling API.
  • colour - Bidirectional hsv conversion and friends would fit nicely here.
  • Geometry:
    • vec3 - Needs more fleshing out for serious use.
    • matrix - A geometry focussed matrix module would made 3d work nicer.
    • intersect - More routines, more optimisation :)
  • Network:
    • Various helpers for networked systems, game focus of course.
    • rpc - Remote procedure call system on top of enet or socket.
    • delta - Detect and sync changes to objects.
  • Broadphase:
    • Spatial simplification systems for different needs. Probably AABB insertion of data.
    • bucket_grid - Dumb 2d bucket broadphase.
    • quadtree/octree - Everyone's favourite ;)
  • UI
    • Maybe adopt 1bardesign/partner in here, maybe not?

PRs

Pull requests are welcome for anything!

If you have something "big" to contribute please get in touch before starting work so we can make sure it fits, but I'm quite open minded!

Globals?

By default batteries will modify builtin lua tables (such as table and math) as it sees fit, as this eases consumption later on - you don't have to remember if say, table.remove_value is built in to lua or not. As the intended use case is fairly pervasive, required early, and "fire and forget", this sits with me just fine.

If however, you'd prefer to require things locally, you can (rather ironically) set a few globals at boot time as documented in each module to change this behaviour, or set BATTERIES_NO_GLOBALS = true to make none of them modify anything global. If you really want to you can undefine the behaviour-changing globals after the module is required, as the results are cached.

I'd strongly recommend that if you find yourself defining the above, stop and think why/if you really want to avoid globals for a library intended to be commonly used across your entire codebase!

Some folks will have good reasons, which is why the functionality is present!

Others may wish to reconsider, and save themselves typing batteries a few hundred times :)

Why aren't various types using class?

To avoid a dependency on class.lua for those modules when used in isolation.

Makes them a little bit more of a pain internally and requires more lines of code, but means you can vendor in just the code you need with very little effort.

License

MIT, see here