current Build Status

A library for setting current values for stack scope, such as application structure

Example project: Sea Birds' Breakfast

How to use it

See Best coding practices with current objects

This also posts safety guidelines for the library.

Motivation

In game programming, there are many kinds of "current" values:

There are two ways to use this library:

By setting these up as "current" values, you don't have to pass them around to each method. For example, you can write code like this (demonstrating the unsafe version):

Rust e.press(|button| { let gun = unsafe { &mut *current_gun() }; let player = unsafe { &mut *current_player() }; if button == SHOOT { gun.shoot(player.aim); } });

How to contribute