#global #piston #singleton #current

deprecated nightly pistoncore-current

DEPRECATED. Use current.

4 releases

Uses old Rust 2015

0.0.3 Nov 25, 2015
0.0.2 Dec 18, 2014
0.0.1 Dec 12, 2014
0.0.0 Dec 11, 2014

#8 in #current

40 downloads per month

MIT license

6KB
91 lines

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:

  • The current window
  • The current device
  • The current sound driver
  • The current player object

There are two ways to use this library:

  • An unsafe version that ease refactoring between current objects and mutable references
  • A safe version that can be used in experimental library design

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):

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

No runtime deps