mark_marks/rubine

An ergonomic, runtime agnostic scheduler for jecs

rubine

CI Wally License: MIT

An ergonomic, runtime agnostic scheduler for Jecs

Features

Rubine provides two schedulers - one with a fairly low level interface abstracting over directly adding entities and setting components, and another abstracting over the low level one, with a "higher level" scheduler and utilities for phases.

Both can be used alongside each other, although some abstractions require to be "built" first.

In the case of pipes, they have to be either included within the abstracted scheduler

abstracted_scheduler
    :with_pipe(my_pipe, my_event)

or registered as a phase

scheduler.phase(my_pipe, my_event)

In the case of pipelines, they have to be either included within the abstracted scheduler

abstracted_scheduler
    :with_pipeline(my_pipeline, my_event)

or built

my_pipeline:build(my_event)

The abstracted scheduler starts the low level one by itself, so don't use both start functions together.

Installation

Pesde

  1. pesde add mark_marks/rubine -- In case of release candidates, do pesde add mark_marks/[email protected]_RC
  2. pesde install

Wally

  1. Add it to your wally manifest
[dependencies]
rubine = "mark-marks/rubine@LATEST" # Replace LATEST with the latest version
  1. wally install

Todo

Before the 0.1.0 release, the following need to be done:

  • Unit tests
  • Automatic CI & CD
  • Packaging
    • Pesde luau package
    • Wally roblox package
  • Extensibility
  • Built-in Roblox scheduling extension

Mentions

Abstractions were inspired by the ecs agnostic Planck scheduler