Profectus-Demo/src/data/projEntry.tsx

88 lines
3 KiB
TypeScript
Raw Normal View History

2022-03-04 03:39:48 +00:00
import Spacer from "components/layout/Spacer.vue";
import { jsx } from "features/feature";
import { createResource, trackBest, trackOOMPS, trackTotal } from "features/resources/resource";
import { branchedResetPropagation, createTree, GenericTree } from "features/trees/tree";
import { globalBus } from "game/events";
import { createLayer, GenericLayer } from "game/layers";
import player, { PlayerData } from "game/player";
import Decimal, { DecimalSource, format, formatTime } from "util/bignum";
2022-03-04 03:39:48 +00:00
import { render } from "util/vue";
import { computed, toRaw } from "vue";
2022-02-28 00:31:51 +00:00
import prestige from "./layers/prestige";
2022-01-14 04:25:47 +00:00
/**
* @hidden
*/
export const main = createLayer("main", () => {
const points = createResource<DecimalSource>(10);
2022-01-28 04:47:26 +00:00
const best = trackBest(points);
const total = trackTotal(points);
2022-01-14 04:25:47 +00:00
2022-01-28 04:47:26 +00:00
const pointGain = computed(() => {
// eslint-disable-next-line prefer-const
2022-02-28 00:31:51 +00:00
let gain = new Decimal(1);
2022-01-28 04:47:26 +00:00
return gain;
});
globalBus.on("update", diff => {
points.value = Decimal.add(points.value, Decimal.times(pointGain.value, diff));
});
const oomps = trackOOMPS(points, pointGain);
2022-01-14 04:25:47 +00:00
const tree = createTree(() => ({
2022-02-28 00:31:51 +00:00
nodes: [[prestige.treeNode]],
branches: [],
onReset() {
2022-02-28 00:31:51 +00:00
points.value = toRaw(this.resettingNode.value) === toRaw(prestige.treeNode) ? 0 : 10;
best.value = points.value;
total.value = points.value;
},
resetPropagation: branchedResetPropagation
})) as GenericTree;
2022-01-14 04:25:47 +00:00
2022-01-28 04:47:26 +00:00
return {
name: "Tree",
links: tree.links,
display: jsx(() => (
<>
{player.devSpeed === 0 ? <div>Game Paused</div> : null}
{player.devSpeed && player.devSpeed !== 1 ? (
<div>Dev Speed: {format(player.devSpeed || 0)}x</div>
) : null}
{player.offlineTime != undefined ? (
<div>Offline Time: {formatTime(player.offlineTime || 0)}</div>
) : null}
2022-01-28 04:47:26 +00:00
<div>
{Decimal.lt(points.value, "1e1000") ? <span>You have </span> : null}
2022-01-28 04:47:26 +00:00
<h2>{format(points.value)}</h2>
{Decimal.lt(points.value, "1e1e6") ? <span> points</span> : null}
2022-01-28 04:47:26 +00:00
</div>
{Decimal.gt(pointGain.value, 0) ? <div>({oomps.value})</div> : null}
2022-01-28 04:47:26 +00:00
<Spacer />
{render(tree)}
</>
)),
2022-01-28 04:47:26 +00:00
points,
best,
total,
oomps,
2022-02-28 00:31:51 +00:00
tree
2022-01-28 04:47:26 +00:00
};
2022-01-14 04:25:47 +00:00
});
export const getInitialLayers = (
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
player: Partial<PlayerData>
2022-02-28 00:31:51 +00:00
): Array<GenericLayer> => [main, prestige];
2022-01-14 04:25:47 +00:00
export const hasWon = computed(() => {
2022-02-28 00:31:51 +00:00
return false;
2022-01-14 04:25:47 +00:00
});
/* eslint-disable @typescript-eslint/no-unused-vars */
export function fixOldSave(
oldVersion: string | undefined,
player: Partial<PlayerData>
// eslint-disable-next-line @typescript-eslint/no-empty-function
): void {}
/* eslint-enable @typescript-eslint/no-unused-vars */