This commit is contained in:
Jacob Vinding
2025-12-27 00:06:47 +01:00
commit 1c991e905d
1095 changed files with 172738 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
# Configuration file
##########################################################################################################
# general
#--------------------------------------------------------------------------------------------------------#
# General settings
##########################################################################################################
general {
# RF per tick/per block for the console screen module
I:consoleModuleRFPerTick=2
# If true double click is needed in programmer to change connector. If false single click is sufficient
B:doubleClickToChangeConnector=true
# RF per tick/per block for the interaction screen module
I:interactionModuleRFPerTick=2
# Maximum amount of craft requests supported by the crafting station. More requests will be ignored
I:maxCraftRequests=200
# Maximum amount of event queue entries supported by a processor. More events will be ignored
I:maxEventQueueSize=100
# Maximum amount of graphics opcodes that a graphics card supports
I:maxGraphicsOpcodes=30
# Maximum stack size for a program (used by 'call' opcode)
I:maxStackSize=100
# Maximum number of lines to keep in the log
I:processorMaxLogLines=100
# Maximum RF storage that the processor can hold
I:processorMaxRF=100000
# RF per tick that the processor can receive
I:processorRFPerTick=1000
# RF per tick for the CPU Core B500
I:rfB500=4
# RF per tick for the CPU Core EX2000
I:rfEX2000=50
# RF per tick for the CPU Core S1000
I:rfS1000=14
# Amount of instructions per tick for the CPU Core B500
I:speedB500=1
# Amount of instructions per tick for the CPU Core EX2000
I:speedEX2000=16
# Amount of instructions per tick for the CPU Core S1000
I:speedS1000=4
# If 2 tooltips in the programmer gui are verbose and give a lot of info. With 1 the information is decreased. 0 means no tooltips
I:tooltipVerbosityLevel=2
# RF per tick/per block for the variable screen module
I:variableModuleRFPerTick=1
# RF per tick/per block for the vector art screen module
I:vectorArtModuleRFPerTick=2
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,35 @@
# Configuration file
##########################################################################################################
# general
#--------------------------------------------------------------------------------------------------------#
# General settings
##########################################################################################################
general {
# Maximum number of blocks in a single multiblock network [range: 1 ~ 2000000000, default: 729]
I:networkMax=729
# How much extra RF/tick every cell gets per cell in the network. 0 means constant RF/t. 1 means linear with amount of cells [range: 0.0 ~ 100.0, default: 0.25]
S:rfPerTickScale=0.25
# Maximum RF a single tier1 cell can hold [range: 1 ~ 2000000000, default: 500000]
I:tier1MaxRF=500000
# Maximum RF/tick per side for a tier1 cell [range: 1 ~ 2000000000, default: 250]
I:tier1MaxRFPerTick=250
# Maximum RF a single tier2 cell can hold [range: 1 ~ 2000000000, default: 4000000]
I:tier2MaxRF=4000000
# Maximum RF/tick per side for a tier2 cell [range: 1 ~ 2000000000, default: 1000]
I:tier2MaxRFPerTick=1000
# Maximum RF a single tier3 cell can hold [range: 1 ~ 2000000000, default: 20000000]
I:tier3MaxRF=20000000
# Maximum RF/tick per side for a tier3 cell [range: 1 ~ 2000000000, default: 4000]
I:tier3MaxRFPerTick=4000
}