mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-24 01:11:49 +00:00
Fix typing cycle
This commit is contained in:
parent
5cae3ea040
commit
c4abf0cd5a
2 changed files with 139 additions and 129 deletions
|
@ -18,17 +18,18 @@ import { createResource, Resource } from "features/resources/resource";
|
||||||
import { createTab } from "features/tabs/tab";
|
import { createTab } from "features/tabs/tab";
|
||||||
import { createTabFamily } from "features/tabs/tabFamily";
|
import { createTabFamily } from "features/tabs/tabFamily";
|
||||||
import Tooltip from "features/tooltips/Tooltip.vue";
|
import Tooltip from "features/tooltips/Tooltip.vue";
|
||||||
|
import { createUpgrade } from "features/upgrades/upgrade";
|
||||||
import { globalBus } from "game/events";
|
import { globalBus } from "game/events";
|
||||||
import { createLayer } from "game/layers";
|
import { createLayer } from "game/layers";
|
||||||
import { createUpgrade, GenericUpgrade } from "features/upgrades/upgrade";
|
|
||||||
import {
|
import {
|
||||||
createAdditiveModifier,
|
createAdditiveModifier,
|
||||||
createMultiplicativeModifier,
|
createMultiplicativeModifier,
|
||||||
createSequentialModifier
|
createSequentialModifier,
|
||||||
|
Modifier
|
||||||
} from "game/modifiers";
|
} from "game/modifiers";
|
||||||
import { noPersist, Persistent, persistent, State } from "game/persistence";
|
import { noPersist, Persistent, persistent, State } from "game/persistence";
|
||||||
import Decimal, { DecimalSource, format, formatWhole } from "util/bignum";
|
import Decimal, { DecimalSource, format, formatWhole } from "util/bignum";
|
||||||
import { Direction } from "util/common";
|
import { Direction, WithRequired } from "util/common";
|
||||||
import { ProcessedComputable } from "util/computed";
|
import { ProcessedComputable } from "util/computed";
|
||||||
import { render, renderGrid, renderRow, VueFeature } from "util/vue";
|
import { render, renderGrid, renderRow, VueFeature } from "util/vue";
|
||||||
import { computed, ComputedRef, reactive, ref, unref, watchEffect } from "vue";
|
import { computed, ComputedRef, reactive, ref, unref, watchEffect } from "vue";
|
||||||
|
@ -38,22 +39,23 @@ import _metal from "../symbols/metal.png";
|
||||||
import _plastic from "../symbols/plastic.png";
|
import _plastic from "../symbols/plastic.png";
|
||||||
import boxes from "./boxes";
|
import boxes from "./boxes";
|
||||||
import coal from "./coal";
|
import coal from "./coal";
|
||||||
|
import dyes from "./dyes";
|
||||||
import _bear from "./factory-components/bear.svg";
|
import _bear from "./factory-components/bear.svg";
|
||||||
import _bearMaker from "./factory-components/bearmaker.svg";
|
import _bearMaker from "./factory-components/bearmaker.svg";
|
||||||
import _stuffing from "./factory-components/stuffing.svg";
|
|
||||||
import _console from "./factory-components/console.svg";
|
|
||||||
import _circuitBoard from "./factory-components/circuit.svg";
|
|
||||||
import _stuffingMaker from "./factory-components/stuffingmaker.svg";
|
|
||||||
import _consoleMaker from "./factory-components/consolemaker.svg";
|
|
||||||
import _circuitBoardMaker from "./factory-components/circuitmaker.svg";
|
|
||||||
import _block from "./factory-components/block.svg";
|
import _block from "./factory-components/block.svg";
|
||||||
import _blockMaker from "./factory-components/blockmaker.svg";
|
import _blockMaker from "./factory-components/blockmaker.svg";
|
||||||
import _bucket from "./factory-components/bucket.svg";
|
import _bucket from "./factory-components/bucket.svg";
|
||||||
import _bucketMaker from "./factory-components/bucketmaker.svg";
|
import _bucketMaker from "./factory-components/bucketmaker.svg";
|
||||||
import _bucketShovel from "./factory-components/bucketshovel.svg";
|
import _bucketShovel from "./factory-components/bucketshovel.svg";
|
||||||
import _bucketShovelMaker from "./factory-components/bucketshovelmaker.svg";
|
import _bucketShovelMaker from "./factory-components/bucketshovelmaker.svg";
|
||||||
|
import _button from "./factory-components/button.svg";
|
||||||
|
import _buttonMaker from "./factory-components/buttonmaker.svg";
|
||||||
|
import _circuitBoard from "./factory-components/circuit.svg";
|
||||||
|
import _circuitBoardMaker from "./factory-components/circuitmaker.svg";
|
||||||
import _clothes from "./factory-components/clothes.svg";
|
import _clothes from "./factory-components/clothes.svg";
|
||||||
import _clothesMaker from "./factory-components/clothesmaker.svg";
|
import _clothesMaker from "./factory-components/clothesmaker.svg";
|
||||||
|
import _console from "./factory-components/console.svg";
|
||||||
|
import _consoleMaker from "./factory-components/consolemaker.svg";
|
||||||
import _conveyor from "./factory-components/conveyor.png";
|
import _conveyor from "./factory-components/conveyor.png";
|
||||||
import _cursor from "./factory-components/cursor.svg";
|
import _cursor from "./factory-components/cursor.svg";
|
||||||
import _delete from "./factory-components/delete.svg";
|
import _delete from "./factory-components/delete.svg";
|
||||||
|
@ -63,10 +65,10 @@ import _rotateLeft from "./factory-components/rotateLeft.svg";
|
||||||
import _rotateRight from "./factory-components/rotateRight.svg";
|
import _rotateRight from "./factory-components/rotateRight.svg";
|
||||||
import _plankMaker from "./factory-components/sawmill.svg";
|
import _plankMaker from "./factory-components/sawmill.svg";
|
||||||
import _shed from "./factory-components/shed.svg";
|
import _shed from "./factory-components/shed.svg";
|
||||||
import _button from "./factory-components/button.svg";
|
|
||||||
import _shovel from "./factory-components/shovel.svg";
|
import _shovel from "./factory-components/shovel.svg";
|
||||||
import _shovelMaker from "./factory-components/shovelmaker.svg";
|
import _shovelMaker from "./factory-components/shovelmaker.svg";
|
||||||
import _buttonMaker from "./factory-components/buttonmaker.svg";
|
import _stuffing from "./factory-components/stuffing.svg";
|
||||||
|
import _stuffingMaker from "./factory-components/stuffingmaker.svg";
|
||||||
import _thread from "./factory-components/thread.svg";
|
import _thread from "./factory-components/thread.svg";
|
||||||
import _threadMaker from "./factory-components/threadmaker.svg";
|
import _threadMaker from "./factory-components/threadmaker.svg";
|
||||||
import _truck from "./factory-components/truck.svg";
|
import _truck from "./factory-components/truck.svg";
|
||||||
|
@ -74,16 +76,15 @@ import _truckMaker from "./factory-components/truckmaker.svg";
|
||||||
import _wheel from "./factory-components/wheel.svg";
|
import _wheel from "./factory-components/wheel.svg";
|
||||||
import _wheelMaker from "./factory-components/wheelmaker.svg";
|
import _wheelMaker from "./factory-components/wheelmaker.svg";
|
||||||
import Factory from "./Factory.vue";
|
import Factory from "./Factory.vue";
|
||||||
|
import metal from "./metal";
|
||||||
import oil from "./oil";
|
import oil from "./oil";
|
||||||
|
import paper from "./paper";
|
||||||
|
import plastic from "./plastic";
|
||||||
import "./styles/factory.css";
|
import "./styles/factory.css";
|
||||||
import Toy from "./Toy.vue";
|
import Toy from "./Toy.vue";
|
||||||
import toys from "./toys";
|
import toys from "./toys";
|
||||||
import trees from "./trees";
|
import trees from "./trees";
|
||||||
import workshop from "./workshop";
|
import workshop from "./workshop";
|
||||||
import paper from "./paper";
|
|
||||||
import metal from "./metal";
|
|
||||||
import dyes from "./dyes";
|
|
||||||
import plastic from "./plastic";
|
|
||||||
|
|
||||||
const id = "factory";
|
const id = "factory";
|
||||||
|
|
||||||
|
@ -172,7 +173,7 @@ const factory = createLayer(id, () => {
|
||||||
description: "6000 toys",
|
description: "6000 toys",
|
||||||
enabled: toys.milestones.milestone6.earned
|
enabled: toys.milestones.milestone6.earned
|
||||||
}))
|
}))
|
||||||
]);
|
]) as WithRequired<Modifier, "revert" | "description">;
|
||||||
const computedEnergy = computed(() => energy.apply(0));
|
const computedEnergy = computed(() => energy.apply(0));
|
||||||
const energyConsumption = computed(() =>
|
const energyConsumption = computed(() =>
|
||||||
Object.values(components.value)
|
Object.values(components.value)
|
||||||
|
@ -1057,12 +1058,15 @@ const factory = createLayer(id, () => {
|
||||||
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
||||||
})) as GenericBuyable;
|
})) as GenericBuyable;
|
||||||
const factoryBuyables = { expandFactory, oilFuel, carryToys };
|
const factoryBuyables = { expandFactory, oilFuel, carryToys };
|
||||||
const upgrades = [[createUpgrade(() => ({
|
const upgrades = [
|
||||||
|
[
|
||||||
|
createUpgrade(() => ({
|
||||||
resource: trees.logs,
|
resource: trees.logs,
|
||||||
cost: () => Decimal.pow(5, upgradeAmount.value).mul(1e75),
|
cost: () => Decimal.pow(5, upgradeAmount.value).mul(1e75),
|
||||||
display: {
|
display: {
|
||||||
title: "Sawmill Efficiency",
|
title: "Sawmill Efficiency",
|
||||||
description: "Double sawmill consumption and production and metal supplier efficiency"
|
description:
|
||||||
|
"Double sawmill consumption and production and metal supplier efficiency"
|
||||||
},
|
},
|
||||||
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
||||||
})),
|
})),
|
||||||
|
@ -1092,8 +1096,10 @@ const factory = createLayer(id, () => {
|
||||||
description: "Drill power ^1.2"
|
description: "Drill power ^1.2"
|
||||||
},
|
},
|
||||||
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
||||||
}))],
|
}))
|
||||||
[createUpgrade(() => ({
|
],
|
||||||
|
[
|
||||||
|
createUpgrade(() => ({
|
||||||
resource: toys.woodenBlocks,
|
resource: toys.woodenBlocks,
|
||||||
cost: () => Decimal.pow(1.2, upgradeAmount.value).mul(2000),
|
cost: () => Decimal.pow(1.2, upgradeAmount.value).mul(2000),
|
||||||
display: {
|
display: {
|
||||||
|
@ -1128,8 +1134,10 @@ const factory = createLayer(id, () => {
|
||||||
description: "Console production is tripled"
|
description: "Console production is tripled"
|
||||||
},
|
},
|
||||||
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
||||||
}))],
|
}))
|
||||||
[createUpgrade(() => ({
|
],
|
||||||
|
[
|
||||||
|
createUpgrade(() => ({
|
||||||
resource: coal.coal,
|
resource: coal.coal,
|
||||||
cost: () => Decimal.pow(5, upgradeAmount.value).mul(1e130),
|
cost: () => Decimal.pow(5, upgradeAmount.value).mul(1e130),
|
||||||
display: {
|
display: {
|
||||||
|
@ -1164,8 +1172,9 @@ const factory = createLayer(id, () => {
|
||||||
description: "Tick speed x1.5"
|
description: "Tick speed x1.5"
|
||||||
},
|
},
|
||||||
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
visible: () => showIf(main.days[advancedDay - 1].opened.value)
|
||||||
}))],
|
}))
|
||||||
]
|
]
|
||||||
|
];
|
||||||
|
|
||||||
// pixi
|
// pixi
|
||||||
const upgradeAmount = computed(
|
const upgradeAmount = computed(
|
||||||
|
|
|
@ -24,11 +24,12 @@ import {
|
||||||
createAdditiveModifier,
|
createAdditiveModifier,
|
||||||
createExponentialModifier,
|
createExponentialModifier,
|
||||||
createMultiplicativeModifier,
|
createMultiplicativeModifier,
|
||||||
createSequentialModifier
|
createSequentialModifier,
|
||||||
|
Modifier
|
||||||
} from "game/modifiers";
|
} from "game/modifiers";
|
||||||
import { noPersist, persistent } from "game/persistence";
|
import { noPersist, persistent } from "game/persistence";
|
||||||
import Decimal, { DecimalSource, formatWhole } from "util/bignum";
|
import Decimal, { DecimalSource, formatWhole } from "util/bignum";
|
||||||
import { Direction } from "util/common";
|
import { Direction, WithRequired } from "util/common";
|
||||||
import { render } from "util/vue";
|
import { render } from "util/vue";
|
||||||
import { computed, ref, unref, watchEffect } from "vue";
|
import { computed, ref, unref, watchEffect } from "vue";
|
||||||
import elves from "./elves";
|
import elves from "./elves";
|
||||||
|
@ -63,7 +64,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
description: "Expand Factory",
|
description: "Expand Factory",
|
||||||
enabled: () => Decimal.gt(factory.factoryBuyables.expandFactory.amount.value, 0)
|
enabled: () => Decimal.gt(factory.factoryBuyables.expandFactory.amount.value, 0)
|
||||||
}))
|
}))
|
||||||
]);
|
]) as WithRequired<Modifier, "revert" | "description">;
|
||||||
const computedMaxFoundation = computed(() => maxFoundation.apply(100));
|
const computedMaxFoundation = computed(() => maxFoundation.apply(100));
|
||||||
|
|
||||||
const foundationConversion = createIndependentConversion(() => ({
|
const foundationConversion = createIndependentConversion(() => ({
|
||||||
|
|
Loading…
Reference in a new issue