indigo.shared.subsystems

Type members

Classlikes

final case class RegisteredSubSystem(id: String, subSystem: SubSystem)
trait SubSystem
Companion
object
object SubSystem
Companion
class
final class SubSystemFrameContext(val gameTime: GameTime, val dice: Dice, val inputState: InputState, val boundaryLocator: BoundaryLocator)
Similar to [FrameContext] but without access to start up data.
The SubSystemFrameContext is the context in which the current frame will be processed.
In includes values that are unique to this frame, and also globally available services.
Value Params
boundaryLocator
A service that can be interogated for the calculated dimensions of screen elements.
dice
A psuedorandom number generator, made predicatable/reproducable by being seeded on the current running time.
gameTime
A sampled instance of time that you should use everywhere that you need a time value.
inputState
A snapshot of the state of the various input methods, also allows input mapping of combinations of inputs.
Companion
object
final class SubSystemsRegister()