1
1
import "@kitten-science/kitten-analysts/KittenAnalysts.js" ;
2
- import { Game , I18nEngine , Resources } from "@kitten-science/kitten-scientists/types/index.js" ;
2
+ import {
3
+ Buildings ,
4
+ Game ,
5
+ I18nEngine ,
6
+ Resources ,
7
+ Technologies ,
8
+ Upgrades ,
9
+ } from "@kitten-science/kitten-scientists/types/index.js" ;
3
10
import { isNil } from "@oliversalzburg/js-utils/data/nil.js" ;
4
- import { AssignMiner } from "./examples/assign-miner-operator.js" ;
5
- import { AssignWoodcutter } from "./examples/assign-woodcutter-operator.js" ;
6
- import { BuildCatnipField } from "./examples/build-catnip-field-operator.js" ;
7
- import { BuildHut } from "./examples/build-hut-operator.js" ;
8
- import { BuildLogHouse } from "./examples/build-log-house-operator.js" ;
9
- import { ConsumeStockResourceFactory } from "./examples/consume-stock-resource.js" ;
10
- import { GatherCatnip } from "./examples/gather-catnip-operator.js" ;
11
- import { RefineCatnip } from "./examples/refine-catnip-operator.js" ;
12
- import { TradeLizards } from "./examples/trade-lizards-operator.js" ;
13
- import { TradeNagas } from "./examples/trade-nagas-operator.js" ;
14
- import { GraphPrinter } from "./GraphPrinter.js" ;
11
+ import { GraphDotPrinter } from "./GraphDotPrinter.js" ;
15
12
import { GraphSolver , Operator } from "./GraphSolver.js" ;
13
+ import { AssignFarmer } from "./operators/assign-farmer.js" ;
14
+ import { AssignGeologist } from "./operators/assign-geologist.js" ;
15
+ import { AssignHunter } from "./operators/assign-hunter.js" ;
16
+ import { AssignMiner } from "./operators/assign-miner.js" ;
17
+ import { AssignPriest } from "./operators/assign-priest.js" ;
18
+ import { AssignScholar } from "./operators/assign-scholar.js" ;
19
+ import { AssignWoodcutter } from "./operators/assign-woodcutter.js" ;
20
+ import { BuildBonfireFactory } from "./operators/build-bonfire.js" ;
21
+ import { ConsumeStockResourceFactory } from "./operators/consume-stock-resource.js" ;
22
+ import { CraftAlloy } from "./operators/craft-alloy.js" ;
23
+ import { CraftBlueprint } from "./operators/craft-blueprint.js" ;
24
+ import { CraftCompedium } from "./operators/craft-compedium.js" ;
25
+ import { CraftGear } from "./operators/craft-gear.js" ;
26
+ import { CraftManuscript } from "./operators/craft-manuscript.js" ;
27
+ import { CraftParchment } from "./operators/craft-parchment.js" ;
28
+ import { CraftPlate } from "./operators/craft-plate.js" ;
29
+ import { GatherCatnip } from "./operators/gather-catnip.js" ;
30
+ import { Hunt } from "./operators/hunt.js" ;
31
+ import { RefineCatnip } from "./operators/refine-catnip.js" ;
32
+ import { TradeLizards } from "./operators/trade-lizards.js" ;
33
+ import { TradeNagas } from "./operators/trade-nagas.js" ;
34
+ import { UnlockSolarRevolution } from "./operators/unlock-solar-revolution.js" ;
35
+ import { UnlockTechnologyFactory } from "./operators/unlock-technology.js" ;
36
+ import { UnlockUpgradeFactory } from "./operators/unlock-upgrade.js" ;
16
37
import { cinfo } from "./tools/Log.js" ;
17
38
18
39
declare global {
@@ -58,6 +79,48 @@ export class KittenEngineers {
58
79
this . #interval = window . setInterval ( ( ) => {
59
80
this . snapshot ( ) ;
60
81
} , 5000 ) ;
82
+
83
+ // Build the list of available operators.
84
+ const root = new UnlockSolarRevolution ( ) ;
85
+ const operators : Array < Operator > = [
86
+ new AssignFarmer ( ) ,
87
+ new AssignGeologist ( ) ,
88
+ new AssignHunter ( ) ,
89
+ new AssignMiner ( ) ,
90
+ new AssignPriest ( ) ,
91
+ new AssignScholar ( ) ,
92
+ new AssignWoodcutter ( ) ,
93
+ new CraftAlloy ( ) ,
94
+ new CraftBlueprint ( ) ,
95
+ new CraftCompedium ( ) ,
96
+ new CraftGear ( ) ,
97
+ new CraftManuscript ( ) ,
98
+ new CraftParchment ( ) ,
99
+ new CraftPlate ( ) ,
100
+ new GatherCatnip ( ) ,
101
+ new Hunt ( ) ,
102
+ new RefineCatnip ( ) ,
103
+ new TradeLizards ( ) ,
104
+ new TradeNagas ( ) ,
105
+ ] ;
106
+
107
+ for ( const OperatorConstructor of BuildBonfireFactory ( Buildings ) ) {
108
+ operators . push ( new OperatorConstructor ( ) ) ;
109
+ }
110
+ for ( const OperatorConstructor of ConsumeStockResourceFactory ( Resources ) ) {
111
+ operators . push ( new OperatorConstructor ( ) ) ;
112
+ }
113
+ for ( const OperatorConstructor of UnlockTechnologyFactory ( Technologies ) ) {
114
+ operators . push ( new OperatorConstructor ( ) ) ;
115
+ }
116
+ for ( const OperatorConstructor of UnlockUpgradeFactory ( Upgrades ) ) {
117
+ operators . push ( new OperatorConstructor ( ) ) ;
118
+ }
119
+
120
+ const solver = new GraphSolver ( operators ) ;
121
+ const graph = solver . solve ( root ) ;
122
+ const dotGraph = new GraphDotPrinter ( ) . print ( graph ) ;
123
+ console . log ( dotGraph . join ( "\n" ) ) ;
61
124
}
62
125
63
126
stop ( ) {
@@ -76,30 +139,6 @@ export class KittenEngineers {
76
139
if ( isNil ( window . kittenScientists ) || isNil ( window . kittenAnalysts ) ) {
77
140
return ;
78
141
}
79
-
80
- return ;
81
-
82
- // Build the list of available operators.
83
- const root = new BuildHut ( ) ;
84
- const operators : Array < Operator > = [
85
- root ,
86
- new AssignMiner ( ) ,
87
- new AssignWoodcutter ( ) ,
88
- new BuildCatnipField ( ) ,
89
- new BuildLogHouse ( ) ,
90
- new GatherCatnip ( ) ,
91
- new RefineCatnip ( ) ,
92
- new TradeLizards ( ) ,
93
- new TradeNagas ( ) ,
94
- ] ;
95
-
96
- for ( const OperatorConstructor of ConsumeStockResourceFactory ( Resources ) ) {
97
- operators . push ( new OperatorConstructor ( ) ) ;
98
- }
99
-
100
- const solver = new GraphSolver ( operators ) ;
101
- const graph = solver . solve ( root ) ;
102
- new GraphPrinter ( ) . print ( graph ) ;
103
142
} ;
104
143
savegameHandler = ( ) => { } ;
105
144
0 commit comments