phaser/src/pixi/display/DisplayObjectContainer.js

516 lines
13 KiB
JavaScript
Raw Normal View History

/**
* @author Mat Groves http://matgroves.com/ @Doormat23
*/
/**
* A DisplayObjectContainer represents a collection of display objects.
* It is the base class of all display objects that act as a container for other objects.
*
* @class DisplayObjectContainer
* @extends DisplayObject
* @constructor
*/
PIXI.DisplayObjectContainer = function()
{
PIXI.DisplayObject.call( this );
/**
* [read-only] The array of children of this container.
*
* @property children
2014-11-15 19:53:38 +00:00
* @type Array(DisplayObject)
* @readOnly
*/
this.children = [];
2014-11-11 23:02:57 +00:00
// fast access to update transform..
};
// constructor
PIXI.DisplayObjectContainer.prototype = Object.create( PIXI.DisplayObject.prototype );
PIXI.DisplayObjectContainer.prototype.constructor = PIXI.DisplayObjectContainer;
2014-11-11 23:02:57 +00:00
/**
2014-02-06 00:19:46 +00:00
* The width of the displayObjectContainer, setting this will actually modify the scale to achieve the value set
*
2014-02-06 00:19:46 +00:00
* @property width
* @type Number
*/
2014-02-06 00:19:46 +00:00
Object.defineProperty(PIXI.DisplayObjectContainer.prototype, 'width', {
get: function() {
return this.scale.x * this.getLocalBounds().width;
},
set: function(value) {
2014-07-18 10:22:55 +00:00
var width = this.getLocalBounds().width;
if(width !== 0)
{
2014-11-12 22:38:51 +00:00
this.scale.x = value / width;
2014-07-18 10:22:55 +00:00
}
else
{
this.scale.x = 1;
}
2014-02-06 00:19:46 +00:00
this._width = value;
}
2014-02-06 00:19:46 +00:00
});
2014-02-06 00:19:46 +00:00
/**
* The height of the displayObjectContainer, setting this will actually modify the scale to achieve the value set
*
* @property height
* @type Number
*/
Object.defineProperty(PIXI.DisplayObjectContainer.prototype, 'height', {
get: function() {
return this.scale.y * this.getLocalBounds().height;
},
set: function(value) {
2014-07-18 10:22:55 +00:00
var height = this.getLocalBounds().height;
if(height !== 0)
{
2014-11-12 22:38:51 +00:00
this.scale.y = value / height ;
2014-07-18 10:22:55 +00:00
}
else
{
this.scale.y = 1;
}
2014-02-06 00:19:46 +00:00
this._height = value;
}
2014-02-06 00:19:46 +00:00
});
2014-02-06 00:19:46 +00:00
/**
* Adds a child to the container.
*
* @method addChild
* @param child {DisplayObject} The DisplayObject to add to the container
2014-10-17 15:55:15 +00:00
* @return {DisplayObject} The child that was added.
2014-02-06 00:19:46 +00:00
*/
PIXI.DisplayObjectContainer.prototype.addChild = function(child)
{
2014-07-03 09:49:58 +00:00
return this.addChildAt(child, this.children.length);
};
/**
* Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown
*
* @method addChildAt
* @param child {DisplayObject} The child to add
* @param index {Number} The index to place the child in
2014-10-17 15:55:15 +00:00
* @return {DisplayObject} The child that was added.
*/
PIXI.DisplayObjectContainer.prototype.addChildAt = function(child, index)
{
if(index >= 0 && index <= this.children.length)
{
2014-02-06 00:19:46 +00:00
if(child.parent)
{
child.parent.removeChild(child);
}
child.parent = this;
this.children.splice(index, 0, child);
2014-02-06 00:19:46 +00:00
if(this.stage)child.setStageReference(this.stage);
2014-07-03 09:49:58 +00:00
return child;
}
else
{
2014-10-10 19:36:04 +00:00
throw new Error(child + 'addChildAt: The index '+ index +' supplied is out of bounds ' + this.children.length);
}
};
/**
2014-10-17 15:55:15 +00:00
* Swaps the position of 2 Display Objects within this container.
*
* @method swapChildren
* @param child {DisplayObject}
* @param child2 {DisplayObject}
*/
PIXI.DisplayObjectContainer.prototype.swapChildren = function(child, child2)
{
if(child === child2) {
return;
}
2014-10-10 19:36:04 +00:00
var index1 = this.getChildIndex(child);
var index2 = this.getChildIndex(child2);
if(index1 < 0 || index2 < 0) {
throw new Error('swapChildren: Both the supplied DisplayObjects must be a child of the caller.');
}
2014-02-06 00:19:46 +00:00
this.children[index1] = child2;
this.children[index2] = child;
2014-10-10 19:36:04 +00:00
};
/**
* Returns the index position of a child DisplayObject instance
*
* @method getChildIndex
* @param child {DisplayObject} The DisplayObject instance to identify
* @return {Number} The index position of the child display object to identify
*/
PIXI.DisplayObjectContainer.prototype.getChildIndex = function(child)
{
var index = this.children.indexOf(child);
if (index === -1)
{
throw new Error('The supplied DisplayObject must be a child of the caller');
}
return index;
};
/**
* Changes the position of an existing child in the display object container
*
* @method setChildIndex
* @param child {DisplayObject} The child DisplayObject instance for which you want to change the index number
* @param index {Number} The resulting index number for the child display object
*/
PIXI.DisplayObjectContainer.prototype.setChildIndex = function(child, index)
{
if (index < 0 || index >= this.children.length)
{
throw new Error('The supplied index is out of bounds');
}
var currentIndex = this.getChildIndex(child);
this.children.splice(currentIndex, 1); //remove from old position
this.children.splice(index, 0, child); //add at new position
};
/**
2014-02-06 00:19:46 +00:00
* Returns the child at the specified index
*
* @method getChildAt
* @param index {Number} The index to get the child from
2014-10-17 15:55:15 +00:00
* @return {DisplayObject} The child at the given index, if any.
*/
PIXI.DisplayObjectContainer.prototype.getChildAt = function(index)
{
2014-10-10 19:36:04 +00:00
if (index < 0 || index >= this.children.length)
{
2014-10-10 19:36:04 +00:00
throw new Error('getChildAt: Supplied index '+ index +' does not exist in the child list, or the supplied DisplayObject must be a child of the caller');
}
2014-10-10 19:36:04 +00:00
return this.children[index];
};
/**
* Removes a child from the container.
*
* @method removeChild
* @param child {DisplayObject} The DisplayObject to remove
2014-10-17 15:55:15 +00:00
* @return {DisplayObject} The child that was removed.
*/
PIXI.DisplayObjectContainer.prototype.removeChild = function(child)
{
2014-10-10 19:36:04 +00:00
var index = this.children.indexOf( child );
if(index === -1)return;
return this.removeChildAt( index );
};
2014-03-31 10:04:02 +00:00
/**
2014-10-17 15:55:15 +00:00
* Removes a child from the specified index position.
2014-03-31 10:04:02 +00:00
*
* @method removeChildAt
* @param index {Number} The index to get the child from
2014-10-17 15:55:15 +00:00
* @return {DisplayObject} The child that was removed.
2014-03-31 10:04:02 +00:00
*/
PIXI.DisplayObjectContainer.prototype.removeChildAt = function(index)
{
var child = this.getChildAt( index );
if(this.stage)
child.removeStageReference();
child.parent = undefined;
this.children.splice( index, 1 );
return child;
};
/**
2014-10-17 15:55:15 +00:00
* Removes all children from this container that are within the begin and end indexes.
*
2014-03-31 10:04:02 +00:00
* @method removeChildren
2014-10-17 15:55:15 +00:00
* @param beginIndex {Number} The beginning position. Default value is 0.
* @param endIndex {Number} The ending position. Default value is size of the container.
*/
2014-03-31 10:04:02 +00:00
PIXI.DisplayObjectContainer.prototype.removeChildren = function(beginIndex, endIndex)
{
2014-03-31 10:04:02 +00:00
var begin = beginIndex || 0;
var end = typeof endIndex === 'number' ? endIndex : this.children.length;
var range = end - begin;
2014-03-31 10:04:02 +00:00
if (range > 0 && range <= end)
{
2014-03-31 10:04:02 +00:00
var removed = this.children.splice(begin, range);
for (var i = 0; i < removed.length; i++) {
var child = removed[i];
if(this.stage)
child.removeStageReference();
child.parent = undefined;
}
return removed;
}
2014-08-28 22:11:13 +00:00
else if (range === 0 && this.children.length === 0)
{
return [];
}
2014-03-31 10:04:02 +00:00
else
{
2014-10-10 19:36:04 +00:00
throw new Error( 'removeChildren: Range Error, numeric values are outside the acceptable range' );
}
};
2014-03-31 10:04:02 +00:00
/*
2014-10-17 15:55:15 +00:00
* Updates the transform on all children of this container for rendering
*
* @method updateTransform
* @private
*/
PIXI.DisplayObjectContainer.prototype.updateTransform = function()
{
if(!this.visible)return;
2014-11-11 23:02:57 +00:00
this.displayObjectUpdateTransform();
//PIXI.DisplayObject.prototype.updateTransform.call( this );
if(this._cacheAsBitmap)return;
for(var i=0,j=this.children.length; i<j; i++)
{
this.children[i].updateTransform();
}
};
2014-02-06 00:19:46 +00:00
2014-11-11 23:02:57 +00:00
// performance increase to avoid using call.. (10x faster)
PIXI.DisplayObjectContainer.prototype.displayObjectContainerUpdateTransform = PIXI.DisplayObjectContainer.prototype.updateTransform;
2014-02-06 00:19:46 +00:00
/**
2014-10-17 15:55:15 +00:00
* Retrieves the bounds of the displayObjectContainer as a rectangle. The bounds calculation takes all visible children into consideration.
2014-02-06 00:19:46 +00:00
*
* @method getBounds
2014-10-17 15:55:15 +00:00
* @return {Rectangle} The rectangular bounding area
2014-02-06 00:19:46 +00:00
*/
2014-10-17 15:55:15 +00:00
PIXI.DisplayObjectContainer.prototype.getBounds = function()
2014-02-06 00:19:46 +00:00
{
if(this.children.length === 0)return PIXI.EmptyRectangle;
// TODO the bounds have already been calculated this render session so return what we have
var minX = Infinity;
var minY = Infinity;
var maxX = -Infinity;
var maxY = -Infinity;
var childBounds;
var childMaxX;
var childMaxY;
var childVisible = false;
for(var i=0,j=this.children.length; i<j; i++)
{
var child = this.children[i];
2014-03-31 10:04:02 +00:00
2014-02-06 00:19:46 +00:00
if(!child.visible)continue;
childVisible = true;
2014-10-17 15:55:15 +00:00
childBounds = this.children[i].getBounds();
2014-03-31 10:04:02 +00:00
2014-02-06 00:19:46 +00:00
minX = minX < childBounds.x ? minX : childBounds.x;
minY = minY < childBounds.y ? minY : childBounds.y;
childMaxX = childBounds.width + childBounds.x;
childMaxY = childBounds.height + childBounds.y;
maxX = maxX > childMaxX ? maxX : childMaxX;
maxY = maxY > childMaxY ? maxY : childMaxY;
}
if(!childVisible)
return PIXI.EmptyRectangle;
var bounds = this._bounds;
bounds.x = minX;
bounds.y = minY;
bounds.width = maxX - minX;
bounds.height = maxY - minY;
// TODO: store a reference so that if this function gets called again in the render cycle we do not have to recalculate
//this._currentBounds = bounds;
2014-03-31 10:04:02 +00:00
2014-02-06 00:19:46 +00:00
return bounds;
};
2014-10-17 15:55:15 +00:00
/**
* Retrieves the non-global local bounds of the displayObjectContainer as a rectangle. The calculation takes all visible children into consideration.
*
* @method getLocalBounds
* @return {Rectangle} The rectangular bounding area
*/
PIXI.DisplayObjectContainer.prototype.getLocalBounds = function()
{
var matrixCache = this.worldTransform;
this.worldTransform = PIXI.identityMatrix;
for(var i=0,j=this.children.length; i<j; i++)
{
this.children[i].updateTransform();
}
var bounds = this.getBounds();
this.worldTransform = matrixCache;
return bounds;
};
2014-02-06 00:19:46 +00:00
/**
2014-10-17 15:55:15 +00:00
* Sets the containers Stage reference. This is the Stage that this object, and all of its children, is connected to.
2014-02-06 00:19:46 +00:00
*
* @method setStageReference
* @param stage {Stage} the stage that the container will have as its current stage reference
*/
PIXI.DisplayObjectContainer.prototype.setStageReference = function(stage)
{
this.stage = stage;
if(this._interactive)this.stage.dirty = true;
for(var i=0,j=this.children.length; i<j; i++)
{
var child = this.children[i];
child.setStageReference(stage);
}
};
/**
2014-10-17 15:55:15 +00:00
* Removes the current stage reference from the container and all of its children.
2014-02-06 00:19:46 +00:00
*
* @method removeStageReference
*/
PIXI.DisplayObjectContainer.prototype.removeStageReference = function()
{
for(var i=0,j=this.children.length; i<j; i++)
{
var child = this.children[i];
child.removeStageReference();
}
if(this._interactive)this.stage.dirty = true;
2014-03-31 10:04:02 +00:00
2014-02-06 00:19:46 +00:00
this.stage = null;
};
/**
* Renders the object using the WebGL renderer
*
* @method _renderWebGL
2014-03-31 10:04:02 +00:00
* @param renderSession {RenderSession}
2014-02-06 00:19:46 +00:00
* @private
*/
PIXI.DisplayObjectContainer.prototype._renderWebGL = function(renderSession)
{
if(!this.visible || this.alpha <= 0)return;
2014-03-31 10:04:02 +00:00
if(this._cacheAsBitmap)
{
this._renderCachedSprite(renderSession);
return;
}
2014-03-31 10:04:02 +00:00
2014-02-06 00:19:46 +00:00
var i,j;
if(this._mask || this._filters)
{
// push filter first as we need to ensure the stencil buffer is correct for any masking
if(this._filters)
{
renderSession.spriteBatch.flush();
renderSession.filterManager.pushFilter(this._filterBlock);
}
2014-02-06 00:19:46 +00:00
if(this._mask)
{
renderSession.spriteBatch.stop();
renderSession.maskManager.pushMask(this.mask, renderSession);
renderSession.spriteBatch.start();
}
// simple render children!
for(i=0,j=this.children.length; i<j; i++)
{
this.children[i]._renderWebGL(renderSession);
}
renderSession.spriteBatch.stop();
if(this._mask)renderSession.maskManager.popMask(this._mask, renderSession);
2014-02-06 00:19:46 +00:00
if(this._filters)renderSession.filterManager.popFilter();
2014-03-31 10:04:02 +00:00
2014-02-06 00:19:46 +00:00
renderSession.spriteBatch.start();
}
else
{
// simple render children!
for(i=0,j=this.children.length; i<j; i++)
{
this.children[i]._renderWebGL(renderSession);
}
}
};
/**
* Renders the object using the Canvas renderer
*
* @method _renderCanvas
2014-03-31 10:04:02 +00:00
* @param renderSession {RenderSession}
2014-02-06 00:19:46 +00:00
* @private
*/
PIXI.DisplayObjectContainer.prototype._renderCanvas = function(renderSession)
{
if(this.visible === false || this.alpha === 0)return;
if(this._cacheAsBitmap)
{
this._renderCachedSprite(renderSession);
return;
}
2014-02-06 00:19:46 +00:00
if(this._mask)
{
2014-10-10 19:36:04 +00:00
renderSession.maskManager.pushMask(this._mask, renderSession);
2014-02-06 00:19:46 +00:00
}
for(var i=0,j=this.children.length; i<j; i++)
{
var child = this.children[i];
child._renderCanvas(renderSession);
}
if(this._mask)
{
2014-10-10 19:36:04 +00:00
renderSession.maskManager.popMask(renderSession);
2014-02-06 00:19:46 +00:00
}
};