import { ASObject } from '@awayfl/avm2';
import { Bounds } from '@awayfl/swf-loader';
import { Point } from './Point';
import { IExternalizable } from '../utils/IExternalizable';
import { Rectangle as AwayRectangle } from '@awayjs/core';
import { IDataInput } from '../utils/IDataInput';
import { IDataOutput } from '../utils/IDataOutput';
import { SecurityDomain } from '../SecurityDomain';
export class Rectangle extends ASObject implements IExternalizable {
private _adaptee: AwayRectangle;
static axClass: typeof Rectangle;
// Called whenever the class is initialized.
static classInitializer: any = null;
// List of static symbols to link.
static classSymbols: string[] = null; // [];
// List of instance symbols to link.
static instanceSymbols: string[] = null;
public get adaptee(): AwayRectangle {
return this._adaptee;
}
/**
* The height of the rectangle, in pixels. Changing the height
* value of a Rectangle object has no effect on the x,
* y, and width properties.
*/
public get height(): number {
return this._adaptee._rawData[3];
}
public set height(value: number) {
this._adaptee._rawData[3] = +value;
}
/**
* The width of the rectangle, in pixels. Changing the width
* value of a Rectangle object has no effect on the x,
* y, and height properties.
*/
public get width(): number {
return this._adaptee._rawData[2];
}
public set width(value: number) {
this._adaptee._rawData[2] = +value;
}
/**
* The x coordinate of the top-left corner of the rectangle. Changing
* the value of the x property of a Rectangle object has no
* effect on the y, width, and height
* properties.
*
*
The value of the x property is equal to the value of the
* left property.
y property of a Rectangle object has no
* effect on the x, width, and height
* properties.
*
* The value of the y property is equal to the value of the
* top property.
y and height properties.
*/
public get bottom(): number {
return this._adaptee.bottom;
}
public set bottom(value: number) {
this._adaptee.bottom = +value;
}
/**
* The location of the Rectangle object's bottom-right corner, determined by
* the values of the right and bottom properties.
*/
public get bottomRight(): Point {
return new (left property of a Rectangle object has no effect on the
* y and height properties. However it does affect
* the width property, whereas changing the x value
* does not affect the width property.
*
* The value of the left property is equal to the value of
* the x property.
x and width properties.
*/
public get right(): number {
return this._adaptee.right;
}
public set right(value: number) {
this._adaptee.right = +value;
}
/**
* The size of the Rectangle object, expressed as a Point object with the
* values of the width and height properties.
*/
public get size(): Point {
return new (top property of a Rectangle object has no effect on the
* x and width properties. However it does affect
* the height property, whereas changing the y
* value does not affect the height property.
*
* The value of the top property is equal to the value of the
* y property.
x and y parameters and with the specified
* width and height parameters. If you call this
* public without parameters, a rectangle with x,
* y, width, and height properties set
* to 0 is created.
*
* @param x The x coordinate of the top-left corner of the
* rectangle.
* @param y The y coordinate of the top-left corner of the
* rectangle.
* @param width The width of the rectangle, in pixels.
* @param height The height of the rectangle, in pixels.
*/
constructor(xAdaptee: number | AwayRectangle = 0, y: number = 0, width: number = 0, height: number = 0) {
super();
this._adaptee = (xAdaptee instanceof AwayRectangle) ? xAdaptee : new AwayRectangle(+xAdaptee, +y, +width, +height);
}
public static FromBounds(bounds: Bounds): Rectangle {
const xMin = bounds.xMin;
const yMin = bounds.yMin;
return new (x, y, width, and
* height properties as the original Rectangle object.
*
* @return A new Rectangle object with the same values for the
* x, y, width, and
* height properties as the original Rectangle object.
*/
public clone(): Rectangle {
return new (true if the Rectangle object's width or
* height is less than or equal to 0; otherwise false.
*/
public isEmpty(): boolean {
return this._adaptee.isEmpty();
}
/**
* Sets all of the Rectangle object's properties to 0. A Rectangle object is
* empty if its width or height is less than or equal to 0.
*
* This method sets the values of the x, y,
* width, and height properties to 0.
dx value, and to
* the top and the bottom by the dy value.
*
* @param dx The value to be added to the left and the right of the Rectangle
* object. The following equation is used to calculate the new
* width and position of the rectangle:
* @param dy The value to be added to the top and the bottom of the
* Rectangle. The following equation is used to calculate the new
* height and position of the rectangle:
*/
public inflate(dx: number, dy: number): void {
this._adaptee.inflate(+dx, +dy);
}
/**
* Increases the size of the Rectangle object. This method is similar to the
* Rectangle.inflate() method except it takes a Point object as
* a parameter.
*
* The following two code examples give the same result:
* * @param point Thex property of this Point object is used to
* increase the horizontal dimension of the Rectangle object.
* The y property is used to increase the vertical
* dimension of the Rectangle object.
*/
public inflatePoint(point: Point): void {
this._adaptee.inflatePoint(point.adaptee);
}
/**
* Adjusts the location of the Rectangle object, as determined by its
* top-left corner, by the specified amounts.
*
* @param dx Moves the x value of the Rectangle object by this amount.
* @param dy Moves the y value of the Rectangle object by this amount.
*/
public offset(dx: number, dy: number): void {
this._adaptee.offset(+dx, +dy);
}
/**
* Adjusts the location of the Rectangle object using a Point object as a
* parameter. This method is similar to the Rectangle.offset()
* method, except that it takes a Point object as a parameter.
*
* @param point A Point object to use to offset this Rectangle object.
*/
public offsetPoint(point: Point): void {
this._adaptee.offsetPoint(point.adaptee);
}
/**
* Determines whether the specified point is contained within the rectangular
* region defined by this Rectangle object.
*
* @param x The x coordinate(horizontal position) of the point.
* @param y The y coordinate(vertical position) of the point.
* @return A value of true if the Rectangle object contains the
* specified point; otherwise false.
*/
public contains(x: number, y: number): boolean {
return this._adaptee.contains(+x, +y);
}
/**
* Determines whether the specified point is contained within the rectangular
* region defined by this Rectangle object. This method is similar to the
* Rectangle.contains() method, except that it takes a Point
* object as a parameter.
*
* @param point The point, as represented by its x and y
* coordinates.
* @return A value of true if the Rectangle object contains the
* specified point; otherwise false.
*/
public containsPoint(point: Point): boolean {
return this._adaptee.containsPoint(point.adaptee);
}
/**
* Determines whether the Rectangle object specified by the rect
* parameter is contained within this Rectangle object. A Rectangle object is
* said to contain another if the second Rectangle object falls entirely
* within the boundaries of the first.
*
* @param rect The Rectangle object being checked.
* @return A value of true if the Rectangle object that you
* specify is contained by this Rectangle object; otherwise
* false.
*/
public containsRect(rect: Rectangle): boolean {
return this._adaptee.containsRect(rect.adaptee);
}
/**
* If the Rectangle object specified in the toIntersect
* parameter intersects with this Rectangle object, returns the area of
* intersection as a Rectangle object. If the rectangles do not intersect,
* this method returns an empty Rectangle object with its properties set to
* 0.
*
* @param toIntersect The Rectangle object to compare against to see if it
* intersects with this Rectangle object.
* @return A Rectangle object that equals the area of intersection. If the
* rectangles do not intersect, this method returns an empty
* Rectangle object; that is, a rectangle with its x,
* y, width, and height
* properties set to 0.
*/
public intersection(toIntersect: Rectangle): Rectangle {
return new (toIntersect
* parameter intersects with this Rectangle object. This method checks the
* x, y, width, and
* height properties of the specified Rectangle object to see if
* it intersects with this Rectangle object.
*
* @param toIntersect The Rectangle object to compare against this Rectangle
* object.
* @return A value of true if the specified object intersects
* with this Rectangle object; otherwise false.
*/
public intersects(toIntersect: Rectangle): boolean {
return this._adaptee.intersects(toIntersect.adaptee);
}
/**
* Adds two rectangles together to create a new Rectangle object, by filling
* in the horizontal and vertical space between the two rectangles.
*
* Note: The union() method ignores rectangles with
* 0 as the height or width value, such as: var
* rect2:Rectangle = new Rectangle(300,300,50,0);
toCompare
* parameter is equal to this Rectangle object. This method compares the
* x, y, width, and
* height properties of an object against the same properties of
* this Rectangle object.
*
* @param toCompare The rectangle to compare to this Rectangle object.
* @return A value of true if the object has exactly the same
* values for the x, y, width,
* and height properties as this Rectangle object;
* otherwise false.
*/
public equals(toCompare: Rectangle): boolean {
return this._adaptee.equals(toCompare.adaptee);
}
/**
* Copies all of rectangle data from the source Rectangle object into the
* calling Rectangle object.
*
* @param sourceRect The Rectangle object from which to copy the data.
*/
public copyFrom(sourceRect: Rectangle): void {
this._adaptee.copyFrom(sourceRect.adaptee);
}
/**
* Sets the members of Rectangle to the specified values
*
* @param xa The x coordinate of the top-left corner of the
* rectangle.
* @param ya The y coordinate of the top-left corner of the
* rectangle.
* @param widtha The width of the rectangle, in pixels.
* @param heighta The height of the rectangle, in pixels.
*/
public setTo(x: number, y: number, width: number, height: number): void {
this._adaptee.setTo(+x, +y, +width, +height);
}
/**
* Builds and returns a string that lists the horizontal and vertical
* positions and the width and height of the Rectangle object.
*
* @return A string listing the value of each of the following properties of
* the Rectangle object: x, y,
* width, and height.
*/
public toString(): string {
return '(x=' + this.x + ', y=' + this.y + ', w=' + this.width + ', h=' + this.height + ')';
}
public hashCode(): number {
let hash = 0;
hash += this.x * 20 | 0; hash *= 37;
hash += this.y * 20 | 0; hash *= 37;
hash += this.width * 20 | 0; hash *= 37;
hash += this.height * 20 | 0;
return hash;
}
public writeExternal(output: IDataOutput) {
output.writeFloat(this.x);
output.writeFloat(this.y);
output.writeFloat(this.width);
output.writeFloat(this.height);
}
public readExternal(input: IDataInput) {
this.x = input.readFloat();
this.y = input.readFloat();
this.width = input.readFloat();
this.height = input.readFloat();
}
}