116 lines
3.4 KiB
TypeScript
116 lines
3.4 KiB
TypeScript
|
import { hasWon } from "@/data/mod";
|
||
|
import modInfo from "@/data/modInfo.json";
|
||
|
import Decimal, { DecimalSource } from "@/util/bignum";
|
||
|
import { createNanoEvents } from "nanoevents";
|
||
|
import { App } from "vue";
|
||
|
import { GenericLayer, layers } from "./layers";
|
||
|
import player from "./player";
|
||
|
import settings, { Settings } from "./settings";
|
||
|
import state from "./state";
|
||
|
|
||
|
export interface GlobalEvents {
|
||
|
addLayer: (layer: GenericLayer, saveData: Record<string, unknown>) => void;
|
||
|
removeLayer: (layer: GenericLayer) => void;
|
||
|
update: (diff: Decimal, trueDiff: number) => void;
|
||
|
loadSettings: (settings: Partial<Settings>) => void;
|
||
|
setupVue: (vue: App) => void;
|
||
|
}
|
||
|
|
||
|
export interface LayerEvents {
|
||
|
// Generation
|
||
|
preUpdate: (diff: Decimal) => void;
|
||
|
// Actions (e.g. automation)
|
||
|
update: (diff: Decimal) => void;
|
||
|
// Effects (e.g. milestones)
|
||
|
postUpdate: (diff: Decimal) => void;
|
||
|
}
|
||
|
|
||
|
export const globalBus = createNanoEvents<GlobalEvents>();
|
||
|
|
||
|
let intervalID: number | null = null;
|
||
|
|
||
|
function update() {
|
||
|
const now = Date.now();
|
||
|
let diff: DecimalSource = (now - player.time) / 1e3;
|
||
|
player.time = now;
|
||
|
const trueDiff = diff;
|
||
|
|
||
|
state.lastTenTicks.push(trueDiff);
|
||
|
if (state.lastTenTicks.length > 10) {
|
||
|
state.lastTenTicks = state.lastTenTicks.slice(1);
|
||
|
}
|
||
|
|
||
|
// Stop here if the game is paused on the win screen
|
||
|
if (hasWon.value && !player.keepGoing) {
|
||
|
return;
|
||
|
}
|
||
|
// Stop here if the player had a NaN value
|
||
|
if (state.hasNaN) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
diff = new Decimal(diff).max(0);
|
||
|
|
||
|
// Add offline time if any
|
||
|
if (player.offlineTime != undefined) {
|
||
|
if (player.offlineTime.gt(modInfo.offlineLimit * 3600)) {
|
||
|
player.offlineTime = new Decimal(modInfo.offlineLimit * 3600);
|
||
|
}
|
||
|
if (player.offlineTime.gt(0) && player.devSpeed !== 0) {
|
||
|
const offlineDiff = Decimal.max(player.offlineTime.div(10), diff);
|
||
|
player.offlineTime = player.offlineTime.sub(offlineDiff);
|
||
|
diff = diff.add(offlineDiff);
|
||
|
} else if (player.devSpeed === 0) {
|
||
|
player.offlineTime = player.offlineTime.add(diff);
|
||
|
}
|
||
|
if (!player.offlineProd || player.offlineTime.lt(0)) {
|
||
|
player.offlineTime = null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Cap at max tick length
|
||
|
diff = Decimal.min(diff, modInfo.maxTickLength);
|
||
|
|
||
|
// Apply dev speed
|
||
|
if (player.devSpeed != undefined) {
|
||
|
diff = diff.times(player.devSpeed);
|
||
|
}
|
||
|
|
||
|
// Update
|
||
|
if (diff.eq(0)) {
|
||
|
return;
|
||
|
}
|
||
|
player.timePlayed = player.timePlayed.add(diff);
|
||
|
globalBus.emit("update", diff, trueDiff);
|
||
|
|
||
|
if (settings.unthrottled) {
|
||
|
requestAnimationFrame(update);
|
||
|
if (intervalID != null) {
|
||
|
clearInterval(intervalID);
|
||
|
intervalID = null;
|
||
|
}
|
||
|
} else if (intervalID == null) {
|
||
|
intervalID = setInterval(update, 50);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function startGameLoop(): void {
|
||
|
if (settings.unthrottled) {
|
||
|
requestAnimationFrame(update);
|
||
|
} else {
|
||
|
intervalID = setInterval(update, 50);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
globalBus.on("update", function updateLayers(diff) {
|
||
|
Object.values(layers).forEach(layer => {
|
||
|
layer.emit("preUpdate", diff);
|
||
|
});
|
||
|
Object.values(layers).forEach(layer => {
|
||
|
layer.emit("update", diff);
|
||
|
});
|
||
|
Object.values(layers).forEach(layer => {
|
||
|
layer.emit("postUpdate", diff);
|
||
|
});
|
||
|
});
|