mirror of
https://github.com/1bardesign/batteries.git
synced 2024-11-10 02:31:48 +00:00
[modified] readme; notes about stringx
and a bit of other cleanup
This commit is contained in:
parent
9048ee116f
commit
7be89d799c
27
readme.md
27
readme.md
@ -13,27 +13,30 @@ Examples [in another repo](https://github.com/1bardesign/batteries-examples) to
|
|||||||
- `class` - Single-inheritance oo in a single function.
|
- `class` - Single-inheritance oo in a single function.
|
||||||
- `mathx` - Mathematical extensions. Alias `math`.
|
- `mathx` - Mathematical extensions. Alias `math`.
|
||||||
- `tablex` - Table handling extensions. Alias `table`.
|
- `tablex` - Table handling extensions. Alias `table`.
|
||||||
|
- `stringx` - String handling extensions. Alias `string`.
|
||||||
- `stable_sort` - A stable sorting algorithm that is also, as a bonus, often faster than table.sort under luajit.
|
- `stable_sort` - A stable sorting algorithm that is also, as a bonus, often faster than table.sort under luajit.
|
||||||
- `functional` - Functional programming facilities. `map`, `reduce`, `any`, `match`, `minmax`, `mean`...
|
- `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 method chaining for the `functional` interface above, which can save a lot of typing!
|
- `sequence` - An oo wrapper on sequential tables, so you can do `t:insert(i, v)` instead of `table.insert(t, i, v)`. Also supports method chaining for the `functional` interface above, which can save a lot of typing!
|
||||||
|
- `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. Useful when trying to get accurate profiling information; moves "randomness" of GC. Requires you to think a bit about your garbage budgets though.
|
||||||
|
- `colour` - Colour conversion routines. Alias `color`.
|
||||||
|
- `unique_mapping` - Generate a unique mapping from arbitrary lua values to numeric keys - essentially making up a consistent ordering for unordered data. Niche, but can be used to optimise draw batches for example, as you can't sort on textures without it.
|
||||||
- `vec2` - 2d vectors with method chaining, garbage saving interface. A bit of a mouthful at times, but you get used to it.
|
- `vec2` - 2d vectors with method chaining, garbage saving interface. A bit of a mouthful at times, but you get used to it.
|
||||||
- `vec3` - 3d vectors as above.
|
- `vec3` - 3d vectors as above.
|
||||||
- `intersect` - 2d intersection routines, a bit sparse at the moment
|
- `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...
|
Aliases are provided at both the `batteries` level and globally when exported.
|
||||||
- `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. Alias `color`.
|
|
||||||
|
|
||||||
# Todo/WIP list
|
# Todo/WIP list
|
||||||
|
|
||||||
Endless, of course :)
|
Endless, of course :)
|
||||||
|
|
||||||
- `stringx` - As for `tablex` and `mathx`, would be good to have a more filled out string handling API.
|
- `stringx` - Needs extension, very minimal currently.
|
||||||
- `colour` - Bidirectional hsv conversion and friends would fit nicely here.
|
- `colour` - Bidirectional hsv/hsl/etc conversion would fit nicely here.
|
||||||
- Geometry:
|
- Geometry:
|
||||||
- `vec3` - Needs more fleshing out for serious use.
|
- `vec3` - Needs more fleshing out for serious use.
|
||||||
- `matrix` - A geometry focussed matrix module would made 3d work nicer. Possibly just `mat4`.
|
- `matrix` - A geometry focussed matrix module would made 3d work a lot nicer. Possibly just `mat4`.
|
||||||
- `intersect` - More routines, more optimisation :)
|
- `intersect` - More routines, more optimisation :)
|
||||||
- Network:
|
- Network:
|
||||||
- Various helpers for networked systems, game focus of course.
|
- Various helpers for networked systems, game focus of course.
|
||||||
@ -58,19 +61,19 @@ You are strongly encouraged to use the library in a "fire and forget" manner thr
|
|||||||
|
|
||||||
This eases consumption later on - you don't have to remember if say, `table.remove_value` is built in to lua or not, or get used to accessing the builtin table functions through `batteries.table` or `tablex`.
|
This eases consumption later on - you don't have to remember if say, `table.remove_value` is built in to lua or not, or get used to accessing the builtin table functions through `batteries.table` or `tablex`.
|
||||||
|
|
||||||
While this will likely sit badly with anyone who's had "no globals!" hammered into them, I believe for `batteries` (and many foundational libraries) it makes sense to just import once at boot. You're going to be pulling it in almost everywhere anyway; why bother making yourself jump through more hoops.
|
While this will likely sit badly with anyone who's had "no globals!" hammered into them, I believe for `batteries` (and many foundational libraries) it makes sense to just import once at boot. You're going to be pulling it in almost everywhere anyway; why bother making yourself jump through more hoops?
|
||||||
|
|
||||||
You can of course use the separate modules on their own, either with a single require for all of `batteries`, and use through something like `batteries.functional.map`, or requiring individual modules explicitly. This more careful approach _will_ let you be more clear about your dependencies, at the cost of more setup work needing to re-require batteries everywhere, or expose it as a global in the first place.
|
You can of course use the separate modules on their own, either with a single require for all of `batteries`, with use through something like `batteries.functional.map`; or requiring individual modules explicitly. This more careful approach _will_ let you be more clear about your dependencies, at the cost of more setup work needing to re-require batteries everywhere, or expose it as a global in the first place.
|
||||||
|
|
||||||
I'd strongly recommend that if you find yourself frustrated with 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! You may wish to reconsider, and save yourself typing `batteries` a few hundred times :)
|
I'd strongly recommend that if you find yourself frustrated with 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! You may wish to reconsider, and save yourself typing `batteries` a few hundred times :)
|
||||||
|
|
||||||
# Stripping down `batteries`
|
# Stripping down `batteries`
|
||||||
|
|
||||||
Many of the modules "just work" on their own if you just want to vendor in something specific.
|
Many of the modules "just work" on their own if you just want to grab something specific.
|
||||||
|
|
||||||
There are some inter-dependencies in the more complex modules, which should be straightforward to detect and figure out the best course of action (include or strip out) if you want to make a stripped-down version for distribution.
|
There are some inter-dependencies in the more complex modules, which should be straightforward to detect and figure out the best course of action (include or strip out) if you want to make a stripped-down version for distribution.
|
||||||
|
|
||||||
Currently the lib is 30kb or so compressed, including the readme, so think carefully whether you really need to worry!
|
Currently the lib is 30kb or so compressed, including the readme, so do think carefully whether you really need to worry!
|
||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user