Created
October 26, 2012 03:14
-
-
Save JosephLenton/3956662 to your computer and use it in GitHub Desktop.
object-event system with JS-like syntax
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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