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

111 lines
3.9 KiB
TypeScript
Raw Normal View History

module SpaceTac.View {
// 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;
// Energy display
energy: ValueBar;
// Hull display
hull: ValueBar;
// Shield display
shield: ValueBar;
2014-12-31 00:00:00 +00:00
2015-02-04 00:00:00 +00:00
// Portrait
layer_portrait: Phaser.Image;
2015-02-04 00:00:00 +00:00
// Hover indicator
layer_hover: Phaser.Image;
// Active effects group
active_effects: Phaser.Group;
// Create a ship button for the battle ship list
constructor(list: ShipList, x: number, y: number, ship: Game.Ship, owned: boolean) {
super(list.battleview.game, x, y, owned ? "battle-shiplist-own" : "battle-shiplist-enemy");
2014-12-31 00:00:00 +00:00
2016-10-26 21:15:04 +00:00
this.ship = ship;
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
});
this.layer_portrait = new Phaser.Image(this.game, 76, 76, "ship-" + ship.model + "-portrait", 0);
this.layer_portrait.position.set(8, 8);
this.layer_portrait.scale.set(0.3, 0.3);
2015-02-04 00:00:00 +00:00
this.addChild(this.layer_portrait);
this.layer_hover = new Phaser.Image(this.game, 30, 30, "battle-arena-ship-hover", 0);
2017-01-09 00:37:15 +00:00
this.layer_hover.position.set(5, 5);
2015-02-04 00:00:00 +00:00
this.layer_hover.visible = false;
this.addChild(this.layer_hover);
2017-01-11 00:38:08 +00:00
this.hull = ValueBar.newStyled(this.game, "battle-shiplist-hull", 90, 39, true);
this.addChild(this.hull);
this.shield = ValueBar.newStyled(this.game, "battle-shiplist-shield", 98, 39, true);
this.addChild(this.shield);
2017-01-11 00:38:08 +00:00
this.energy = ValueBar.newStyled(this.game, "battle-shiplist-energy", 106, 39, true);
this.addChild(this.energy);
this.active_effects = new Phaser.Group(this.game);
this.active_effects.position.set(63, 9);
this.addChild(this.active_effects);
this.updateAttributes();
this.updateEffects();
}
// Update attributes from associated ship
updateAttributes() {
this.attributeChanged(this.ship.hull);
this.attributeChanged(this.ship.shield);
this.attributeChanged(this.ship.ap_current);
}
// Update effects applied on the ship
updateEffects() {
this.active_effects.removeAll(true);
this.ship.temporary_effects.forEach((effect: Game.TemporaryEffect) => {
var icon = new EffectDisplay(this.game, effect);
this.active_effects.addChild(icon);
});
}
// 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);
} else if (attribute.code === Game.AttributeCode.AP) {
this.energy.setValue(attribute.current, attribute.maximal);
}
}
2015-02-03 00:00:00 +00:00
// Move to a given location on screen
moveTo(x: number, y: number, animate: boolean) {
if (animate) {
var tween = this.game.tweens.create(this);
tween.to({ x: x, y: y });
tween.start();
} else {
this.x = x;
this.y = y;
}
2015-02-03 00:00:00 +00:00
}
2015-02-04 00:00:00 +00:00
// Set the hovered status
setHovered(hovered: boolean) {
Animation.setVisibility(this.game, this.layer_hover, hovered, 200);
2015-02-04 00:00:00 +00:00
}
}
2015-01-07 00:00:00 +00:00
}