1
0
Fork 0
spacetac/src/scripts/view/battle/ShipListItem.ts

91 lines
3.1 KiB
TypeScript
Raw Normal View History

module SpaceTac.View {
2015-01-07 00:00:00 +00:00
"use strict";
// One item in a ship list (used in BattleView)
export class ShipListItem extends Phaser.Button {
2014-12-31 00:00:00 +00:00
// Reference to the ship game object
ship: Game.Ship;
// Hull display
hull: ValueBar;
// Shield display
shield: ValueBar;
2014-12-31 00:00:00 +00:00
2015-02-04 00:00:00 +00:00
// Hover indicator
layer_hover: Phaser.Image;
2015-02-03 00:00:00 +00:00
// Playing indicator
layer_playing: Phaser.Image;
// Non-playing indicator
layer_normal: Phaser.Image;
// Enemy indicator
layer_enemy: Phaser.Image;
// Create a ship button for the battle ship list
constructor(list: ShipList, x: number, y: number, ship: Game.Ship, owned: boolean) {
2014-12-31 00:00:00 +00:00
this.ship = ship;
2015-02-03 00:00:00 +00:00
super(list.battleview.game, x, y, "battle-shiplist-base");
2014-12-31 00:00:00 +00:00
this.input.useHandCursor = true;
2014-12-31 00:00:00 +00:00
this.onInputOver.add(() => {
list.battleview.cursorOnShip(ship);
2014-12-31 00:00:00 +00:00
});
this.onInputOut.add(() => {
list.battleview.cursorOffShip(ship);
2014-12-31 00:00:00 +00:00
});
2015-02-03 00:00:00 +00:00
this.layer_playing = new Phaser.Image(this.game, 0, 0, "battle-shiplist-playing", 0);
this.layer_playing.alpha = 0;
this.addChild(this.layer_playing);
this.layer_normal = new Phaser.Image(this.game, 0, 0, "battle-shiplist-normal", 0);
this.addChild(this.layer_normal);
this.layer_enemy = new Phaser.Image(this.game, 0, 0, owned ? "battle-shiplist-own" : "battle-shiplist-enemy", 0);
this.addChild(this.layer_enemy);
2015-02-04 00:00:00 +00:00
this.layer_hover = new Phaser.Image(this.game, 0, 0, "battle-arena-shipspritehover", 0);
this.layer_hover.visible = false;
this.layer_hover.scale.set(0.5, 0.5);
this.layer_hover.position.set(8, 5);
this.addChild(this.layer_hover);
2015-02-03 00:00:00 +00:00
this.hull = ValueBar.newStandard(list.battleview.game, 85, 28);
this.hull.scale.set(0.1, 0.1);
this.addChild(this.hull);
2015-02-03 00:00:00 +00:00
this.shield = ValueBar.newStandard(list.battleview.game, 85, 46);
this.shield.scale.set(0.1, 0.1);
this.addChild(this.shield);
}
// Called when an attribute for this ship changed through the battle log
attributeChanged(attribute: Game.Attribute): void {
if (attribute.code === Game.AttributeCode.Hull) {
this.hull.setValue(attribute.current, attribute.maximal);
} else if (attribute.code === Game.AttributeCode.Shield) {
this.shield.setValue(attribute.current, attribute.maximal);
}
}
2015-02-03 00:00:00 +00:00
// Set the playing status
setPlaying(playing: boolean) {
var tween1 = this.game.tweens.create(this.layer_playing);
tween1.to({alpha: playing ? 1 : 0});
tween1.start();
var tween2 = this.game.tweens.create(this.layer_normal);
tween2.to({alpha: playing ? 0 : 1});
tween2.start();
}
2015-02-04 00:00:00 +00:00
// Set the hovered status
setHovered(hovered: boolean) {
this.layer_hover.visible = hovered;
}
}
2015-01-07 00:00:00 +00:00
}