mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-30 18:31:26 +00:00
Convert stats to bigints (#909)
Fixes #880 ## Description: Convert numeric stat types to bigint, and serialize those values as strings. ## Please complete the following: - [x] I have added screenshots for all UI updates - [ ] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced - [x] I understand that submitting code with bugs that could have been caught through manual testing blocks releases and new features for all contributors --------- Co-authored-by: Scott Anderson <662325+scottanderson@users.noreply.github.com>
This commit is contained in:
co-authored by
Scott Anderson
parent
0b79d0be16
commit
8cf2d86a70
@@ -0,0 +1,232 @@
|
||||
import {
|
||||
Game,
|
||||
Player,
|
||||
PlayerInfo,
|
||||
PlayerType,
|
||||
UnitType,
|
||||
} from "../src/core/game/Game";
|
||||
import { Stats } from "../src/core/game/Stats";
|
||||
import { StatsImpl } from "../src/core/game/StatsImpl";
|
||||
import { replacer } from "../src/server/Archive";
|
||||
import { setup } from "./util/Setup";
|
||||
|
||||
let stats: Stats;
|
||||
let game: Game;
|
||||
let player1: Player;
|
||||
let player2: Player;
|
||||
|
||||
describe("Stats", () => {
|
||||
beforeEach(async () => {
|
||||
stats = new StatsImpl();
|
||||
game = await setup("half_land_half_ocean", {}, [
|
||||
new PlayerInfo(
|
||||
"us",
|
||||
"boat dude",
|
||||
PlayerType.Human,
|
||||
"client1",
|
||||
"player_1_id",
|
||||
),
|
||||
new PlayerInfo(
|
||||
"us",
|
||||
"boat dude",
|
||||
PlayerType.Human,
|
||||
"client2",
|
||||
"player_2_id",
|
||||
),
|
||||
]);
|
||||
|
||||
while (game.inSpawnPhase()) {
|
||||
game.executeNextTick();
|
||||
}
|
||||
|
||||
player1 = game.player("player_1_id");
|
||||
player2 = game.player("player_2_id");
|
||||
});
|
||||
|
||||
test("attack", () => {
|
||||
stats.attack(player1, player2, 1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
attacks: [1n],
|
||||
},
|
||||
client2: {
|
||||
attacks: [0n, 1n],
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("attackCancel", () => {
|
||||
stats.attackCancel(player1, player2, 1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
attacks: [-1n, 0n, 1n],
|
||||
},
|
||||
client2: {
|
||||
attacks: [0n, -1n],
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("betray", () => {
|
||||
stats.betray(player1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
betrayals: 1n,
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("boatSendTrade", () => {
|
||||
stats.boatSendTrade(player1, player2);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
boats: {
|
||||
trade: [1n],
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("boatArriveTrade", () => {
|
||||
stats.boatArriveTrade(player1, player2, 1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
boats: { trade: [0n, 1n] },
|
||||
gold: [0n, 0n, 1n],
|
||||
},
|
||||
client2: {
|
||||
gold: [0n, 0n, 1n],
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("boatCapturedTrade", () => {
|
||||
stats.boatCapturedTrade(player1, player2, 1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
boats: { trade: [0n, 0n, 1n] },
|
||||
gold: [0n, 0n, 0n, 1n],
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("boatDestroyTrade", () => {
|
||||
stats.boatDestroyTrade(player1, player2);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
boats: { trade: [0n, 0n, 0n, 1n] },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("boatSendTroops", () => {
|
||||
stats.boatSendTroops(player1, player2, 1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
boats: {
|
||||
trans: [1n],
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("boatArriveTroops", () => {
|
||||
stats.boatArriveTroops(player1, player2, 1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
boats: { trans: [0n, 1n] },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("boatDestroyTroops", () => {
|
||||
stats.boatDestroyTroops(player1, player2, 1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
boats: { trans: [0n, 0n, 0n, 1n] },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("bombLaunch", () => {
|
||||
stats.bombLaunch(player1, player2, UnitType.AtomBomb);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: { bombs: { abomb: [1n] } },
|
||||
});
|
||||
});
|
||||
|
||||
test("bombLand", () => {
|
||||
stats.bombLand(player1, player2, UnitType.HydrogenBomb);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: { bombs: { hbomb: [0n, 1n] } },
|
||||
});
|
||||
});
|
||||
|
||||
test("bombIntercept", () => {
|
||||
stats.bombIntercept(player1, player2, UnitType.MIRVWarhead);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: { bombs: { mirvw: [0n, 0n, 1n] } },
|
||||
});
|
||||
});
|
||||
|
||||
test("goldWar", () => {
|
||||
stats.goldWar(player1, player2, 1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: { gold: [0n, 1n] },
|
||||
});
|
||||
});
|
||||
|
||||
test("goldWork", () => {
|
||||
stats.goldWork(player1, 1);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: { gold: [1n] },
|
||||
});
|
||||
});
|
||||
|
||||
test("unitBuild", () => {
|
||||
stats.unitBuild(player1, UnitType.City);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: { units: { city: [1n] } },
|
||||
});
|
||||
});
|
||||
|
||||
test("unitCapture", () => {
|
||||
stats.unitCapture(player1, UnitType.DefensePost);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
units: {
|
||||
defp: [0n, 0n, 1n],
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("unitDestroy", () => {
|
||||
stats.unitDestroy(player1, UnitType.MissileSilo);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
units: {
|
||||
silo: [0n, 1n],
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("unitLose", () => {
|
||||
stats.unitLose(player1, UnitType.Port);
|
||||
expect(stats.stats()).toStrictEqual({
|
||||
client1: {
|
||||
units: {
|
||||
port: [0n, 0n, 0n, 1n],
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
test("stringify", () => {
|
||||
stats.unitLose(player1, UnitType.Port);
|
||||
expect(JSON.stringify(stats.stats(), replacer)).toBe(
|
||||
'{"client1":{"units":{"port":["0","0","0","1"]}}}',
|
||||
);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user