module TS.SpaceTac { // Base class for action definitions export class BaseAction { // Identifier code for the type of action code: string; // Human-readable name name: string; // Boolean at true if the action needs a target needs_target: boolean; // Equipment that triggers this action equipment: Equipment; // Create the action constructor(code: string, name: string, needs_target: boolean, equipment: Equipment = null) { this.code = code; this.name = name; this.needs_target = needs_target; this.equipment = equipment; } /** * Check basic conditions to know if the ship can use this action at all * * Method to extend to set conditions * * Returns an informative message indicating why the action cannot be used, null otherwise */ checkCannotBeApplied(ship: Ship, remaining_ap: number = null): string | null { let battle = ship.getBattle(); if (battle && battle.playing_ship !== ship) { // Ship is not playing return "ship not playing"; } // Check AP usage if (remaining_ap === null) { remaining_ap = ship.values.power.get(); } var ap_usage = this.equipment ? this.equipment.ap_usage : 0; if (remaining_ap >= ap_usage) { return null; } else { return "not enough power"; } } // Get the number of action points the action applied to a target would use getActionPointsUsage(ship: Ship, target: Target): number { if (this.equipment) { return this.equipment.ap_usage; } else { return 0; } } // Get the range of this action getRangeRadius(ship: Ship): number { if (this.equipment) { return this.equipment.distance; } else { return 0; } } // Get the effect area radius of this action getBlastRadius(ship: Ship): number { if (this.equipment) { return this.equipment.blast; } else { return 0; } } // Method to check if a target is applicable for this action // Will call checkLocationTarget or checkShipTarget by default checkTarget(ship: Ship, target: Target): Target { if (this.checkCannotBeApplied(ship)) { return null; } else if (target) { if (target.ship) { return this.checkShipTarget(ship, target); } else { return this.checkLocationTarget(ship, target); } } else { return null; } } // Method to reimplement to check if a space target is applicable // Must return null if the target can't be applied, an altered target, or the original target checkLocationTarget(ship: Ship, target: Target): Target { return null; } // Method to reimplement to check if a ship target is applicable // Must return null if the target can't be applied, an altered target, or the original target checkShipTarget(ship: Ship, target: Target): Target { return null; } // Apply an action, returning true if it was successful apply(ship: Ship, target: Target): boolean { let reject = this.checkCannotBeApplied(ship); if (reject == null) { target = this.checkTarget(ship, target); if (!target && this.needs_target) { console.warn("Action rejected - no target selected", ship, this, target); return false; } let cost = this.getActionPointsUsage(ship, target); if (!ship.useActionPoints(cost)) { console.warn("Action rejected - not enough power", ship, this, target); return false; } this.customApply(ship, target); return true; } else { console.warn(`Action rejected - ${reject}`, ship, this, target); return false; } } // Method to reimplement to apply a action protected customApply(ship: Ship, target: Target) { } } }