Skip to content

Instantly share code, notes, and snippets.

@JosephLenton
Created October 26, 2012 03:14
Show Gist options
  • Save JosephLenton/3956662 to your computer and use it in GitHub Desktop.
Save JosephLenton/3956662 to your computer and use it in GitHub Desktop.
object-event system with JS-like syntax
class Player {
constructor( hp ) {
this.hp = hp;
this.isAlive = true;
}
damage( att ) {
this.hp = Math.min( 0, this.hp - att );
this.isAlive = false;
}
}
var player = new Player( 10 );
var ui = new PlayerUI();
var screen = new Screen();
// hang events off existing methods
player.damage := () {
ui.show( this.getHealth() );
}
player.damage := () {
screen.flash( 'red' );
}
screen.draw := ( gfx ) {
ui.draw( gfx );
}
// a regular method call
player.damage( 5 )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment