2017-11-10 02:50:25 +00:00
|
|
|
var Class = require('../../utils/Class');
|
2017-11-14 21:34:33 +00:00
|
|
|
var Components = require('../components');
|
2017-11-10 02:50:25 +00:00
|
|
|
|
|
|
|
var Tile = new Class({
|
|
|
|
|
2017-11-14 21:34:33 +00:00
|
|
|
// TODO: Add in bounds mixin, or custom replacement
|
|
|
|
Mixins: [
|
|
|
|
Components.Alpha,
|
|
|
|
Components.Flip,
|
|
|
|
Components.Visible
|
|
|
|
],
|
|
|
|
|
2017-11-10 02:50:25 +00:00
|
|
|
initialize:
|
|
|
|
|
|
|
|
function Tile (layer, index, x, y, width, height)
|
|
|
|
{
|
|
|
|
this.layer = layer;
|
|
|
|
this.index = index;
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
2017-11-14 21:34:33 +00:00
|
|
|
this.worldX = x * width;
|
|
|
|
this.worldY = y * height;
|
2017-11-10 02:50:25 +00:00
|
|
|
this.width = width;
|
|
|
|
this.height = height;
|
|
|
|
|
2017-11-14 21:34:33 +00:00
|
|
|
// TODO: update renders to allow for using Components.Tint
|
|
|
|
this.tint = 0xFFFFFF;
|
|
|
|
}
|
2017-11-10 02:50:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = Tile;
|