Created
June 25, 2012 19:42
-
-
Save martinwells/2990781 to your computer and use it in GitHub Desktop.
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
// derive from gamecore.Pooled, instead of gamecore.Base | |
var Fighter = gamecore.Pooled.extend('Fighter', | |
{ | |
create: function(hp) | |
{ | |
var n = this._super(); // acquire from the pool | |
n.hp = hp; // (re)setup the object instance | |
return n; | |
} | |
}, | |
{ | |
... | |
}); | |
var gunship = Fighter.create(100); // use .create not new | |
gunship.release(); // hand it back to the pool | |
// get a list of free or used objects (as gamecore.LinkedList's) | |
var inUse = Fighter.getPool().usedList; | |
var free = Fighter.getPool().freeList; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment