mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 21:04:14 +00:00
742a544a69
Part of [#2661](https://github.com/openfrontio/OpenFrontIO/issues/2661) (split into 3 PRs so they are not too large..) ## Description: Part 3/3 of [#2661](https://github.com/openfrontio/OpenFrontIO/issues/2661). This PR adds the retreat control and override behavior for warships: - Manual override: moving a warship manually cancels retreat and suppresses auto-retreat for 5 seconds - Aggro override: a retreating warship will aggro a nearby enemy transport or warship before continuing retreat - Heal-at-port command for sending a warship to a friendly port manually - Friendly-port validation for HealAtPortExecution - Regression tests for manual override, aggro override, and heal-at-port behavior ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: zixer._ --------- Co-authored-by: iamlewis <lewismmmm@gmail.com> Co-authored-by: evanpelle <evanpelle@gmail.com>
149 lines
4.5 KiB
TypeScript
149 lines
4.5 KiB
TypeScript
import { TradeShipExecution } from "../../../src/core/execution/TradeShipExecution";
|
|
import { Game, Player, Unit } from "../../../src/core/game/Game";
|
|
import { PathStatus } from "../../../src/core/pathfinding/types";
|
|
import { setup } from "../../util/Setup";
|
|
|
|
describe("TradeShipExecution", () => {
|
|
let game: Game;
|
|
let origOwner: Player;
|
|
let dstOwner: Player;
|
|
let pirate: Player;
|
|
let srcPort: Unit;
|
|
let piratePort: Unit;
|
|
let piratePort2: Unit;
|
|
let tradeShip: Unit;
|
|
let dstPort: Unit;
|
|
let tradeShipExecution: TradeShipExecution;
|
|
|
|
beforeEach(async () => {
|
|
// Mock Game, Player, Unit, and required methods
|
|
|
|
game = await setup("ocean_and_land", {
|
|
infiniteGold: true,
|
|
instantBuild: true,
|
|
});
|
|
game.displayMessage = vi.fn();
|
|
origOwner = {
|
|
canBuild: vi.fn(() => true),
|
|
buildUnit: vi.fn((type, spawn, opts) => tradeShip),
|
|
displayName: vi.fn(() => "Origin"),
|
|
addGold: vi.fn(),
|
|
units: vi.fn(() => [dstPort]),
|
|
unitCount: vi.fn(() => 1),
|
|
id: vi.fn(() => 1),
|
|
clientID: vi.fn(() => 1),
|
|
canTrade: vi.fn(() => true),
|
|
} as any;
|
|
|
|
dstOwner = {
|
|
id: vi.fn(() => 2),
|
|
addGold: vi.fn(),
|
|
displayName: vi.fn(() => "Destination"),
|
|
units: vi.fn(() => [dstPort]),
|
|
unitCount: vi.fn(() => 1),
|
|
clientID: vi.fn(() => 2),
|
|
canTrade: vi.fn(() => true),
|
|
} as any;
|
|
|
|
pirate = {
|
|
id: vi.fn(() => 3),
|
|
addGold: vi.fn(),
|
|
displayName: vi.fn(() => "Destination"),
|
|
units: vi.fn(() => [piratePort, piratePort2]),
|
|
unitCount: vi.fn(() => 2),
|
|
canTrade: vi.fn(() => true),
|
|
} as any;
|
|
|
|
piratePort = {
|
|
id: vi.fn(() => 201),
|
|
tile: vi.fn(() => 56),
|
|
owner: vi.fn(() => pirate),
|
|
isActive: vi.fn(() => true),
|
|
isUnderConstruction: vi.fn(() => false),
|
|
isMarkedForDeletion: vi.fn(() => false),
|
|
} as any;
|
|
|
|
piratePort2 = {
|
|
id: vi.fn(() => 202),
|
|
tile: vi.fn(() => 75),
|
|
owner: vi.fn(() => pirate),
|
|
isActive: vi.fn(() => true),
|
|
isUnderConstruction: vi.fn(() => false),
|
|
isMarkedForDeletion: vi.fn(() => false),
|
|
} as any;
|
|
|
|
srcPort = {
|
|
id: vi.fn(() => 101),
|
|
tile: vi.fn(() => 10),
|
|
owner: vi.fn(() => origOwner),
|
|
isActive: vi.fn(() => true),
|
|
isUnderConstruction: vi.fn(() => false),
|
|
isMarkedForDeletion: vi.fn(() => false),
|
|
} as any;
|
|
|
|
dstPort = {
|
|
id: vi.fn(() => 102),
|
|
tile: vi.fn(() => 100),
|
|
owner: vi.fn(() => dstOwner),
|
|
isActive: vi.fn(() => true),
|
|
isUnderConstruction: vi.fn(() => false),
|
|
isMarkedForDeletion: vi.fn(() => false),
|
|
} as any;
|
|
|
|
tradeShip = {
|
|
isActive: vi.fn(() => true),
|
|
owner: vi.fn(() => origOwner),
|
|
id: vi.fn(() => 123),
|
|
move: vi.fn(),
|
|
setTargetUnit: vi.fn(),
|
|
setSafeFromPirates: vi.fn(),
|
|
touch: vi.fn(),
|
|
delete: vi.fn(),
|
|
tile: vi.fn(() => 32),
|
|
} as any;
|
|
|
|
tradeShipExecution = new TradeShipExecution(origOwner, srcPort, dstPort);
|
|
tradeShipExecution.init(game, 0);
|
|
tradeShipExecution["pathFinder"] = {
|
|
next: vi.fn(() => ({ status: PathStatus.NEXT, node: 32 })),
|
|
findPath: vi.fn((from: number) => [from]),
|
|
} as any;
|
|
tradeShipExecution["tradeShip"] = tradeShip;
|
|
});
|
|
|
|
it("should initialize and tick without errors", () => {
|
|
tradeShipExecution.tick(1);
|
|
expect(tradeShipExecution.isActive()).toBe(true);
|
|
});
|
|
|
|
it("should deactivate if tradeShip is not active", () => {
|
|
tradeShip.isActive = vi.fn(() => false);
|
|
tradeShipExecution.tick(1);
|
|
expect(tradeShipExecution.isActive()).toBe(false);
|
|
});
|
|
|
|
it("should delete ship if port owner changes to current owner", () => {
|
|
dstPort.owner = vi.fn(() => origOwner);
|
|
tradeShipExecution.tick(1);
|
|
expect(tradeShip.delete).toHaveBeenCalledWith(false);
|
|
expect(tradeShipExecution.isActive()).toBe(false);
|
|
});
|
|
|
|
it("should pick another port if ship is captured", () => {
|
|
tradeShip.owner = vi.fn(() => pirate);
|
|
tradeShipExecution.tick(1);
|
|
expect(tradeShip.setTargetUnit).toHaveBeenCalledWith(piratePort);
|
|
});
|
|
|
|
it("should complete trade and award gold", () => {
|
|
tradeShipExecution["pathFinder"] = {
|
|
next: vi.fn(() => ({ status: PathStatus.COMPLETE, node: 32 })),
|
|
findPath: vi.fn((from: number) => [from]),
|
|
} as any;
|
|
tradeShipExecution.tick(1);
|
|
expect(tradeShip.delete).toHaveBeenCalledWith(false);
|
|
expect(tradeShipExecution.isActive()).toBe(false);
|
|
expect(game.displayMessage).toHaveBeenCalled();
|
|
});
|
|
});
|