2013-08-28 06:02:55 +00:00
|
|
|
/**
|
|
|
|
* @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.
|
|
|
|
*
|
2013-12-23 04:19:52 +00:00
|
|
|
* @class DisplayObjectContainer
|
2013-08-28 06:02:55 +00:00
|
|
|
* @extends DisplayObject
|
|
|
|
* @constructor
|
|
|
|
*/
|
|
|
|
PIXI.DisplayObjectContainer = function()
|
|
|
|
{
|
2013-12-23 04:19:52 +00:00
|
|
|
PIXI.DisplayObject.call( this );
|
|
|
|
|
|
|
|
/**
|
2014-02-12 01:25:36 +00:00
|
|
|
* [read-only] The array of children of this container.
|
2013-12-23 04:19:52 +00:00
|
|
|
*
|
|
|
|
* @property children
|
|
|
|
* @type Array<DisplayObject>
|
|
|
|
* @readOnly
|
|
|
|
*/
|
|
|
|
this.children = [];
|
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
// constructor
|
|
|
|
PIXI.DisplayObjectContainer.prototype = Object.create( PIXI.DisplayObject.prototype );
|
|
|
|
PIXI.DisplayObjectContainer.prototype.constructor = PIXI.DisplayObjectContainer;
|
|
|
|
|
|
|
|
/**
|
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
|
2013-08-28 06:02:55 +00:00
|
|
|
*
|
2014-02-06 00:19:46 +00:00
|
|
|
* @property width
|
|
|
|
* @type Number
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-12-23 04:19:52 +00:00
|
|
|
|
2014-02-12 01:25:36 +00:00
|
|
|
/*
|
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) {
|
|
|
|
this.scale.x = value / (this.getLocalBounds().width/this.scale.x);
|
|
|
|
this._width = value;
|
2013-12-23 04:19:52 +00:00
|
|
|
}
|
2014-02-06 00:19:46 +00:00
|
|
|
});
|
|
|
|
*/
|
2013-12-23 04:19:52 +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
|
|
|
|
*/
|
2013-12-23 04:19:52 +00:00
|
|
|
|
2014-02-12 01:25:36 +00:00
|
|
|
/*
|
2014-02-06 00:19:46 +00:00
|
|
|
Object.defineProperty(PIXI.DisplayObjectContainer.prototype, 'height', {
|
|
|
|
get: function() {
|
|
|
|
return this.scale.y * this.getLocalBounds().height;
|
|
|
|
},
|
|
|
|
set: function(value) {
|
|
|
|
this.scale.y = value / (this.getLocalBounds().height/this.scale.y);
|
|
|
|
this._height = value;
|
2013-12-23 04:19:52 +00:00
|
|
|
}
|
2014-02-06 00:19:46 +00:00
|
|
|
});
|
|
|
|
*/
|
2013-12-23 04:19:52 +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
|
|
|
|
*/
|
|
|
|
PIXI.DisplayObjectContainer.prototype.addChild = function(child)
|
|
|
|
{
|
|
|
|
this.addChildAt(child, this.children.length);
|
2013-12-23 04:19:52 +00:00
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2013-11-06 04:51:23 +00:00
|
|
|
* @param index {Number} The index to place the child in
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
|
|
|
PIXI.DisplayObjectContainer.prototype.addChildAt = function(child, index)
|
|
|
|
{
|
2013-12-23 04:19:52 +00:00
|
|
|
if(index >= 0 && index <= this.children.length)
|
|
|
|
{
|
2014-02-06 00:19:46 +00:00
|
|
|
if(child.parent)
|
2013-12-23 04:19:52 +00:00
|
|
|
{
|
|
|
|
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);
|
2013-12-23 04:19:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Error(child + ' The index '+ index +' supplied is out of bounds ' + this.children.length);
|
|
|
|
}
|
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [NYI] Swaps the depth of 2 displayObjects
|
|
|
|
*
|
|
|
|
* @method swapChildren
|
|
|
|
* @param child {DisplayObject}
|
|
|
|
* @param child2 {DisplayObject}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
PIXI.DisplayObjectContainer.prototype.swapChildren = function(child, child2)
|
|
|
|
{
|
2013-12-23 04:19:52 +00:00
|
|
|
if(child === child2) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var index1 = this.children.indexOf(child);
|
|
|
|
var index2 = this.children.indexOf(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;
|
|
|
|
|
2013-12-23 04:19:52 +00:00
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
2014-02-06 00:19:46 +00:00
|
|
|
* Returns the child at the specified index
|
2013-08-28 06:02:55 +00:00
|
|
|
*
|
|
|
|
* @method getChildAt
|
2013-11-06 04:51:23 +00:00
|
|
|
* @param index {Number} The index to get the child from
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
|
|
|
PIXI.DisplayObjectContainer.prototype.getChildAt = function(index)
|
|
|
|
{
|
2013-12-23 04:19:52 +00:00
|
|
|
if(index >= 0 && index < this.children.length)
|
|
|
|
{
|
|
|
|
return this.children[index];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-02-06 00:19:46 +00:00
|
|
|
throw new Error('The supplied DisplayObjects must be a child of the caller ' + this);
|
2013-12-23 04:19:52 +00:00
|
|
|
}
|
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes a child from the container.
|
|
|
|
*
|
|
|
|
* @method removeChild
|
|
|
|
* @param child {DisplayObject} The DisplayObject to remove
|
|
|
|
*/
|
|
|
|
PIXI.DisplayObjectContainer.prototype.removeChild = function(child)
|
|
|
|
{
|
2013-12-23 04:19:52 +00:00
|
|
|
var index = this.children.indexOf( child );
|
|
|
|
if ( index !== -1 )
|
|
|
|
{
|
|
|
|
// update the stage reference..
|
2014-02-06 00:19:46 +00:00
|
|
|
if(this.stage)child.removeStageReference();
|
2013-12-23 04:19:52 +00:00
|
|
|
|
|
|
|
child.parent = undefined;
|
|
|
|
this.children.splice( index, 1 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Error(child + ' The supplied DisplayObject must be a child of the caller ' + this);
|
|
|
|
}
|
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2014-02-12 01:25:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes all the children
|
|
|
|
*
|
|
|
|
* @method removeAll
|
|
|
|
* NOT tested yet
|
|
|
|
*/
|
|
|
|
/* PIXI.DisplayObjectContainer.prototype.removeAll = function()
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
for(var i = 0 , j = this.children.length; i < j; i++)
|
|
|
|
{
|
|
|
|
this.removeChild(this.children[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
*/
|
2013-08-28 06:02:55 +00:00
|
|
|
/*
|
2014-02-06 00:19:46 +00:00
|
|
|
* Updates the container's childrens transform for rendering
|
2013-08-28 06:02:55 +00:00
|
|
|
*
|
|
|
|
* @method updateTransform
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
PIXI.DisplayObjectContainer.prototype.updateTransform = function()
|
|
|
|
{
|
2014-02-06 00:19:46 +00:00
|
|
|
//this._currentBounds = null;
|
|
|
|
|
2013-12-23 04:19:52 +00:00
|
|
|
if(!this.visible)return;
|
|
|
|
|
|
|
|
PIXI.DisplayObject.prototype.updateTransform.call( this );
|
|
|
|
|
|
|
|
for(var i=0,j=this.children.length; i<j; i++)
|
|
|
|
{
|
|
|
|
this.children[i].updateTransform();
|
|
|
|
}
|
|
|
|
};
|
2014-02-06 00:19:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the bounds of the displayObjectContainer as a rectangle object
|
|
|
|
*
|
|
|
|
* @method getBounds
|
|
|
|
* @return {Rectangle} the rectangular bounding area
|
|
|
|
*/
|
2014-02-12 01:25:36 +00:00
|
|
|
PIXI.DisplayObjectContainer.prototype.getBounds = function(matrix)
|
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
|
2014-02-12 01:25:36 +00:00
|
|
|
if(matrix)
|
|
|
|
{
|
|
|
|
var matrixCache = this.worldTransform;
|
|
|
|
this.worldTransform = matrix;
|
|
|
|
this.updateTransform();
|
|
|
|
this.worldTransform = matrixCache;
|
|
|
|
}
|
2014-02-06 00:19:46 +00:00
|
|
|
|
|
|
|
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];
|
|
|
|
|
|
|
|
if(!child.visible)continue;
|
|
|
|
|
|
|
|
childVisible = true;
|
|
|
|
|
2014-02-12 01:25:36 +00:00
|
|
|
childBounds = this.children[i].getBounds( matrix );
|
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;
|
|
|
|
|
|
|
|
return bounds;
|
|
|
|
};
|
|
|
|
|
2014-02-12 01:25:36 +00:00
|
|
|
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
|
|
|
/**
|
|
|
|
* Sets the container's stage reference, the stage this object is connected to
|
|
|
|
*
|
|
|
|
* @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);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* removes the current stage reference of the container
|
|
|
|
*
|
|
|
|
* @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;
|
|
|
|
|
|
|
|
this.stage = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the object using the WebGL renderer
|
|
|
|
*
|
|
|
|
* @method _renderWebGL
|
|
|
|
* @param renderSession {RenderSession}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
PIXI.DisplayObjectContainer.prototype._renderWebGL = function(renderSession)
|
|
|
|
{
|
|
|
|
if(!this.visible || this.alpha <= 0)return;
|
|
|
|
|
|
|
|
var i,j;
|
|
|
|
|
|
|
|
if(this._mask || this._filters)
|
|
|
|
{
|
|
|
|
if(this._mask)
|
|
|
|
{
|
|
|
|
renderSession.spriteBatch.stop();
|
|
|
|
renderSession.maskManager.pushMask(this.mask, renderSession);
|
|
|
|
renderSession.spriteBatch.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(this._filters)
|
|
|
|
{
|
|
|
|
renderSession.spriteBatch.flush();
|
|
|
|
renderSession.filterManager.pushFilter(this._filterBlock);
|
|
|
|
}
|
|
|
|
|
|
|
|
// simple render children!
|
|
|
|
for(i=0,j=this.children.length; i<j; i++)
|
|
|
|
{
|
|
|
|
this.children[i]._renderWebGL(renderSession);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderSession.spriteBatch.stop();
|
|
|
|
|
|
|
|
if(this._filters)renderSession.filterManager.popFilter();
|
|
|
|
if(this._mask)renderSession.maskManager.popMask(renderSession);
|
|
|
|
|
|
|
|
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
|
|
|
|
* @param renderSession {RenderSession}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
PIXI.DisplayObjectContainer.prototype._renderCanvas = function(renderSession)
|
|
|
|
{
|
|
|
|
if(this.visible === false || this.alpha === 0)return;
|
|
|
|
|
|
|
|
if(this._mask)
|
|
|
|
{
|
|
|
|
renderSession.maskManager.pushMask(this._mask, renderSession.context);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(var i=0,j=this.children.length; i<j; i++)
|
|
|
|
{
|
|
|
|
var child = this.children[i];
|
|
|
|
child._renderCanvas(renderSession);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(this._mask)
|
|
|
|
{
|
|
|
|
renderSession.maskManager.popMask(renderSession.context);
|
|
|
|
}
|
2014-02-12 01:25:36 +00:00
|
|
|
};
|