Skip to content

Instantly share code, notes, and snippets.

@martinwells
Created June 25, 2012 19:42
Show Gist options
  • Save martinwells/2990781 to your computer and use it in GitHub Desktop.
Save martinwells/2990781 to your computer and use it in GitHub Desktop.
// 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