-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📦 add docs for combining, compressing, and crushing factories, fix no…
…n-factory combiner and crusher prefix
- Loading branch information
Showing
7 changed files
with
195 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
telem: | ||
adapter: | ||
id: 'combiningFactory' | ||
name: 'Combining Factory' | ||
categories: '{ "basic", "advanced", "energy", "recipe" }' | ||
--- | ||
|
||
<script setup> | ||
import { data as metrics } from './common/metrics.data.ts' | ||
</script> | ||
|
||
# Mekanism Combining Factory Input <RepoLink path="lib/input/mekanism/CombiningFactoryInputAdapter.lua" /> | ||
|
||
<!--@include: ./common/preamble.md --> | ||
|
||
### Basic | ||
|
||
<MetricTable | ||
prefix="mekcombine:" | ||
:metrics="[ | ||
{ name: 'input_main_count_sum', value: '0 - inf', unit: 'item' }, | ||
{ name: 'input_secondary_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'output_count_sum', value: '0 - inf', unit: 'item' }, | ||
{ name: 'energy_usage', value: '0.0 - inf', unit: 'FE/t' }, | ||
...metrics.genericMachine.basic | ||
]" | ||
/> | ||
|
||
### Advanced | ||
|
||
<MetricTable | ||
prefix="mekcombine:" | ||
:metrics="[ | ||
{ name: 'auto_sort', value: '0 or 1' }, | ||
...metrics.genericMachine.advanced | ||
]" | ||
/> | ||
|
||
|
||
### Energy | ||
|
||
<MetricTable | ||
prefix="mekcombine:" | ||
:metrics="[ | ||
...metrics.genericMachine.energy | ||
]" | ||
/> | ||
|
||
### Recipe | ||
|
||
<MetricTable | ||
prefix="mekcombine:" | ||
:metrics="[ | ||
...metrics.recipeProgress.recipeFactory | ||
]" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
telem: | ||
adapter: | ||
id: 'compressingFactory' | ||
name: 'Compressing Factory' | ||
categories: '{ "basic", "advanced", "input", "energy", "recipe" }' | ||
--- | ||
|
||
<script setup> | ||
import { data as metrics } from './common/metrics.data.ts' | ||
</script> | ||
|
||
# Mekanism Compressing Factory Input <RepoLink path="lib/input/mekanism/CompressingFactoryInputAdapter.lua" /> | ||
|
||
<!--@include: ./common/preamble.md --> | ||
|
||
### Basic | ||
|
||
<MetricTable | ||
prefix="mekcompress:" | ||
:metrics="[ | ||
{ name: 'chemical_item_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'chemical_filled_percentage', value: '0.0 - 1.0' }, | ||
{ name: 'input_count_sum', value: '0 - inf', unit: 'item' }, | ||
{ name: 'output_count_sum', value: '0 - inf', unit: 'item' }, | ||
{ name: 'energy_usage', value: '0.0 - inf', unit: 'FE/t' }, | ||
...metrics.genericMachine.basic | ||
]" | ||
/> | ||
|
||
### Advanced | ||
|
||
<MetricTable | ||
prefix="mekcompress:" | ||
:metrics="[ | ||
{ name: 'auto_sort', value: '0 or 1' }, | ||
...metrics.genericMachine.advanced | ||
]" | ||
/> | ||
|
||
### Input | ||
|
||
<MetricTable | ||
prefix="mekcompress:" | ||
:metrics="[ | ||
{ name: 'chemical', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'chemical_capacity', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'chemical_needed', value: '0.0 - inf', unit: 'B' } | ||
]" | ||
/> | ||
|
||
### Energy | ||
|
||
<MetricTable | ||
prefix="mekcompress:" | ||
:metrics="[ | ||
...metrics.genericMachine.energy | ||
]" | ||
/> | ||
|
||
### Recipe | ||
|
||
<MetricTable | ||
prefix="mekcompress:" | ||
:metrics="[ | ||
...metrics.recipeProgress.recipeFactory, | ||
]" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
telem: | ||
adapter: | ||
id: 'crushingFactory' | ||
name: 'Crushing Factory' | ||
categories: '{ "basic", "advanced", "energy", "recipe" }' | ||
--- | ||
|
||
<script setup> | ||
import { data as metrics } from './common/metrics.data.ts' | ||
</script> | ||
|
||
# Mekanism Crushing Factory Input <RepoLink path="lib/input/mekanism/CrushingFactoryInputAdapter.lua" /> | ||
|
||
<!--@include: ./common/preamble.md --> | ||
|
||
### Basic | ||
|
||
<MetricTable | ||
prefix="mekcrush:" | ||
:metrics="[ | ||
{ name: 'input_count_sum', value: '0 - inf', unit: 'item' }, | ||
{ name: 'output_count_sum', value: '0 - inf', unit: 'item' }, | ||
{ name: 'energy_usage', value: '0.0 - inf', unit: 'FE/t' }, | ||
...metrics.genericMachine.basic | ||
]" | ||
/> | ||
|
||
### Advanced | ||
|
||
<MetricTable | ||
prefix="mekcrush:" | ||
:metrics="[ | ||
{ name: 'auto_sort', value: '0 or 1' }, | ||
...metrics.genericMachine.advanced | ||
]" | ||
/> | ||
|
||
### Energy | ||
|
||
<MetricTable | ||
prefix="mekcrush:" | ||
:metrics="[ | ||
...metrics.genericMachine.energy | ||
]" | ||
/> | ||
|
||
### Recipe | ||
|
||
<MetricTable | ||
prefix="mekcrush:" | ||
:metrics="[ | ||
...metrics.recipeProgress.recipeFactory | ||
]" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters