mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2025-12-09 00:53:39 +08:00
update README
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
# CheatEnabler
|
||||
|
||||
#### Add various cheat functions while disabling abnormal determinants
|
||||
#### 添加一些作弊功能,同时屏蔽异常检测
|
||||
|
||||
## Usage
|
||||
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
# CompressSave
|
||||
|
||||
#### Compress game saves to reduce space use and boost save speed
|
||||
#### Original by [@bluedoom](https://github.com/bluedoom/DSP_Mod)(till 1.1.11) and [@starfi5h](https://github.com/starfi5h/DSP_CompressSave)(1.1.12), I just update it to supported latest game version.
|
||||
#### 压缩游戏存档以降低空间使用并提升保存速度
|
||||
#### 原作者 [@bluedoom](https://github.com/bluedoom/DSP_Mod)(直到1.1.11) 和 [@starfi5h](https://github.com/starfi5h/DSP_CompressSave)(1.1.12),本人继续更新以支持最新游戏版本。
|
||||
|
||||
## Updates
|
||||
|
||||
### 1.1.13
|
||||
@@ -8,13 +13,13 @@
|
||||
* Move "Sandbox Mode" checkbox on Save Panel to avoid overlap.
|
||||
* Avoid warning message on "Continue" button of main menu.
|
||||
|
||||
### 1.1.12 (by [@starfi5h](https://github.com/starfi5h/DSP_CompressSave))
|
||||
### 1.1.12
|
||||
|
||||
* Match game version 0.9.25.12007.
|
||||
|
||||
### 1.1.11 (by [@bluedoom](https://github.com/bluedoom/DSP_Mod) till this version)
|
||||
### 1.1.11
|
||||
|
||||
* fix 1.1.10 package issue.
|
||||
* Fix 1.1.10 package issue.
|
||||
|
||||
### 1.1.10
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
# Dustbin
|
||||
|
||||
#### Storages can destroy incoming items while capacity limited to zero
|
||||
#### 空间限制为0的储物仓可以销毁送进来的物品
|
||||
|
||||
## Updates
|
||||
|
||||
@@ -17,18 +18,16 @@
|
||||
* Known bugs
|
||||
* Stack 1 more storage up on a zero limited one and remove it will cause dustbin stop working. Just put somethings
|
||||
in and take them out to make the dustbin working again.
|
||||
|
||||
This is caused by a logic bug in original code where faulty set `lastFullItem` field of `StorageComponent` for
|
||||
empty storages.
|
||||
|
||||
## 使用说明
|
||||
|
||||
* 垃圾桶条件:空间限制为0第一格为空并且放在堆叠顶部(或者只有一层)的储存箱。
|
||||
* 垃圾桶条件:空间限制为0第一格为空并且放在堆叠顶部(或者只有一层)的储物仓。
|
||||
* 送进垃圾桶的物品会立即被移除。
|
||||
* 可以从移除的物品中获得沙子(可配置,下为默认值):
|
||||
* 从硅石和分形硅石中获得10/100个沙子。
|
||||
* 从普通物品中获得1个沙子,但液体不会给沙子。
|
||||
* 已知Bug
|
||||
* 在空间限制为0的箱子上面再叠一个箱子后再移除,会导致垃圾箱功能失效,放一个物品进去再拿出来即可恢复正常。
|
||||
|
||||
* 在空间限制为0的储物仓上面再叠一个储物仓后再移除,会导致垃圾箱功能失效,放一个物品进去再拿出来即可恢复正常。
|
||||
这是原游戏的逻辑Bug错误设置了`StorageComponent`的`lastFullItem`字段导致。
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
# HideTips
|
||||
|
||||
#### Hide/Disable various tutorial tips/messages
|
||||
#### 隐藏/屏蔽各种引导提示/消息
|
||||
|
||||
## Updates
|
||||
|
||||
|
||||
@@ -1,42 +1,37 @@
|
||||
# LogisticMiner
|
||||
|
||||
#### Logistic Storages can mine all ores/water on current planet
|
||||
#### 物流塔可以采集当前星球的全部矿产(以及水)
|
||||
|
||||
## Usage
|
||||
|
||||
* Inspired
|
||||
by [PlanetMiner](https://dsp.thunderstore.io/package/blacksnipebiu/PlanetMiner)([github](https://github.com/blacksnipebiu/PlanetMiner))
|
||||
.
|
||||
|
||||
But it is heavily optimized to resolve performance, accuracy and other issues in PlanetMiner.
|
||||
* Only recalculate count of veins when vein chunks are changed (added/removed by foundations/Sandbox-Mode, or
|
||||
* (Optimization to PlanetMiner) Only recalculate count of veins when vein chunks are changed (added/removed by foundations/Sandbox-Mode, or
|
||||
exhausted), so this removes Dictionary allocation on each planet for every frame.
|
||||
* More accurate frame counting by use float number.
|
||||
* Does not increase power consumptions on `Veins Utilization` upgrades.
|
||||
* Separate power consumptions for veins, oil seeps and water.
|
||||
* Power consumptions are counted by groups of veins and count of oil seeps, which is more sensible.
|
||||
* (Optimization to PlanetMiner) More accurate frame counting by use float number.
|
||||
* (Optimization to PlanetMiner) Does not increase power consumptions on `Veins Utilization` upgrades.
|
||||
* (Optimization to PlanetMiner) Separate power consumptions for veins, oil seeps and water.
|
||||
* (Optimization to PlanetMiner) Power consumptions are counted by groups of veins and count of oil seeps, which is more sensible.
|
||||
* Can burn fuels in certain slot when energy below half of max.
|
||||
* Sprayed fuels generates extra energy as normal.
|
||||
* All used parameters are configurable:
|
||||
* (Optimization to PlanetMiner) Sprayed fuels generates extra energy as normal.
|
||||
* (Optimization to PlanetMiner) All used parameters are configurable:
|
||||
* Logistic Miner has the same speed as normal Mining Machine for normal ores by default.
|
||||
|
||||
But you can set mining scale in configuration, which makes Logistic Miner working like Advance Mining Machines: power
|
||||
But you can set mining scale in configuration, which makes Logistic Miner working like Advance Mining Machines:
|
||||
power
|
||||
consumption increases by the square of the scale, and gradually decrease mining speed over half of the maximum
|
||||
count.
|
||||
|
||||
This applies to all of veins, oils and water.
|
||||
|
||||
Mining scale can be set to 0(by default), which means it is automatically set by tech unlocks, set to 300 when you
|
||||
reaches Advanced Mining Machine, otherwise 100.
|
||||
* 100/s for water by default.
|
||||
* Energy costs: 1MW/vein-group & 10MW/water-slot & 1.8MW/oil-seep(configurable), `Veins Utilization` upgrades
|
||||
does not increase power consumption(unlike PlanetMiner).
|
||||
* Energy costs: 1MW/vein-group & 10MW/water-slot & 1.8MW/oil-seep(configurable)
|
||||
* Fuels burning slot. Default: 4th for ILS, 3rd for PLS. Set to 0 to disable it.
|
||||
|
||||
## 使用说明
|
||||
|
||||
* 创意来自 [PlanetMiner](https://dsp.thunderstore.io/package/blacksnipebiu/PlanetMiner)([github](https://github.com/blacksnipebiu/PlanetMiner))
|
||||
|
||||
对性能重度优化,并解决了PlanetMiner的精度等问题。
|
||||
* (对PlanetMiner的优化) 仅当矿堆发生变化(填埋/恢复/采完)时重新计算矿堆数据,解决每行星每计算帧要重建字典的性能问题。
|
||||
* (对PlanetMiner的优化) 用浮点数保证更精确的帧计算。
|
||||
@@ -45,14 +40,11 @@
|
||||
* (对PlanetMiner的优化) 采集能耗以矿物组,油井为单位,相对更加合理。
|
||||
* 剩余电量少于一半时可以燃烧指定格子的燃料补充。
|
||||
* (对PlanetMiner的优化) 喷涂了增产剂的燃料按照正常的计算方式提供更多的能量(除了原本就不增加能量输出的反物质燃料棒)。
|
||||
* 所有参数都可以在设置文件内配置:
|
||||
* (对PlanetMiner的优化) 所有参数都可以在设置文件内配置:
|
||||
* 物流塔矿机和普通矿机采矿速度一样(等同于同时采集所有对应矿物)。
|
||||
|
||||
你可以设置采矿倍率改变物流塔矿机采矿速度,和高级采矿机相同地,能耗和倍率的平方成正比,并且在存储矿物量多于一半时逐渐降低采矿倍率。
|
||||
|
||||
此倍率对各种矿物,油井和水的采集都生效。
|
||||
|
||||
倍率可以设置为0(默认),此时倍率会随科技解锁而变化,默认是100%,解锁高级采矿机后变为300%。
|
||||
* 水的采集速度默认为100/s。
|
||||
* 能耗:每矿物组 1MW,单格水 10MW,每油井 1.8MW。
|
||||
* 燃料格位置。默认:星际物流塔第4格,行星内物流塔第3格。
|
||||
* 燃料格位置。默认:星际物流塔第4格,行星内物流塔第3格。设为0则关闭燃料补充能量功能。
|
||||
|
||||
@@ -3,19 +3,24 @@
|
||||
# [CheatEnabler](CheatEnabler)
|
||||
|
||||
Add various cheat functions while disabling abnormal determinants
|
||||
添加一些作弊功能,同时屏蔽异常检测
|
||||
|
||||
# [CompressSave](CompressSave)
|
||||
|
||||
Compress game saves to reduce space use and boost save time
|
||||
Compress game saves to reduce space use and boost save speed
|
||||
压缩游戏存档以降低空间使用并提升保存速度
|
||||
|
||||
# [LogisticMiner](LogisticMiner)
|
||||
|
||||
Logistic Storages can mine all ores/water on current planet
|
||||
物流塔可以采集当前星球的全部矿产(以及水)
|
||||
|
||||
# [HideTips](HideTips)
|
||||
|
||||
Hide/Disable various tutorial tips/messages
|
||||
隐藏/屏蔽各种引导提示/消息
|
||||
|
||||
# [Dustbin](Dustbin)
|
||||
|
||||
Storages can destroy incoming items while capacity limited to zero
|
||||
空间限制为0的储物仓可以销毁送进来的物品
|
||||
Reference in New Issue
Block a user