-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductionLine.dot
134 lines (109 loc) · 4.29 KB
/
ProductionLine.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* -*- coding: utf-8; -*-
Overview over USI Kolonization System Resources
Copyright 2014 By Mhoram
This Work may be distributed under the Creative Commons
Attribution-NonCommercial-ShareAlike 4.0 International License.
*/
# dot -Tpdf -o ProductionLine.pdf ProductionLine.dot
# dot -Tpng -o ProductionLine.png ProductionLine.dot
digraph Resources {
compound=true;
subgraph clusterPRODUCTION {
graph [label="Resource-Overview of USI Kolonization System V0.21 - Creating Goods" fontsize=19];
subgraph clusterCCCP {
label="Colony Control Center (*)";
CommandP [label="Command\nPunchCards"];
}
subgraph clusterProductionLine {
label="Production Line";
subgraph clusterBIOLABP {
label="BioLab (6)";
PBioMass [label="BioMass"];
}
subgraph clusterResources {
label="Drilled Resources";
WaterR [label="Water"];
SubstrateR [label="Substrate"];
Ore;
Minerals;
}
subgraph clusterRefinery {
label="Refinery (9)";
Metals;
Polymers;
Chemicals;
}
subgraph clusterFabrication {
label="Fabrication (10)"
ElectronicParts;
PlasticParts;
MechanicalParts;
}
subgraph clusterFactory {
label="Factory (11)"
ModularParts;
Computers;
Robotics;
}
subgraph clusterAssembly {
label="Assembly (12)";
"MEP-Computing";
"MEP-Environmental";
"MEP-Mining";
"MEP-Laboratory";
"MEP-Manufacturing";
"MEP-Refining";
}
subgraph clusterSpecials {
label="Expensive Materials\nfor Sale";
ExoticMinerals;
RareMetals;
}
}
Recyclables [label="Recyclables\n(from nearly all Processes)"];
subgraph clusterRepair {
label="Repair Shop (4)";
labeljust="r";
PatchKits;
RepairKits;
ReplacementParts;
Recycle [label="Recycle\nChemicals,Polymers,Metal"];
edge [color="#666666"];
{
rank = same;
edge [minlen=1];
PatchKits -> RepairKits [style=invisible,arrowhead=none];
}
{
Recycle -> PatchKits [style=invisible,arrowhead=none];
RepairKits -> ReplacementParts [style=invisible,arrowhead=none];
}
PatchKits -> PatchKits [tailport=nw,headport=sw];
RepairKits -> PatchKits;
RepairKits -> RepairKits [tailport=ne,headport=se];
ReplacementParts -> RepairKits [constraint = false];
ReplacementParts -> ReplacementParts [tailport=nw,headport=sw];
}
/* {
rank = same;
ReplacementParts -> Chemicals;
}
*/
edge [color="#666666"];
edge [minlen=2];
ReplacementParts -> CommandP [constraint = false];
CommandP -> ReplacementParts [lhead=clusterRepair,constraint = false,tailport=sw,headport=se];
CommandP -> Minerals [lhead=clusterProductionLine];
ReplacementParts -> Ore [lhead=clusterProductionLine,ltail=clusterRepair,tailport=se];
PBioMass -> Polymers [];
SubstrateR -> PBioMass [headport=e];
WaterR -> PBioMass [tailport=sw,headport=w];
SubstrateR -> ReplacementParts [ltail=clusterProductionLine,lhead=clusterRepair];
Polymers -> ExoticMinerals [ltail=clusterRefinery,lhead=clusterSpecials];
Ore -> Chemicals [lhead=clusterRefinery; ltail=clusterResources, penwidth=2, color="orange"];
Chemicals -> PlasticParts [lhead=clusterFabrication; ltail=clusterRefinery, penwidth=2, color="orange"];
PlasticParts -> Computers [lhead=clusterFactory; ltail=clusterFabrication, penwidth=2, color="orange"];
Computers -> "MEP-Mining" [lhead=clusterAssembly; ltail=clusterFactory, penwidth=2, color="orange"];
Recyclables -> Recycle [tailport=sw,headport=nw];
}
}