mirror of
https://github.com/tobspr/shapez.io.git
synced 2026-03-02 03:39:21 +00:00
Add wires tutorial
This commit is contained in:
@@ -8,6 +8,8 @@ import { cachebust } from "../../../core/cachebust";
|
||||
import { T } from "../../../translations";
|
||||
import { enumItemProcessorTypes, ItemProcessorComponent } from "../../components/item_processor";
|
||||
import { ShapeItem } from "../../items/shape_item";
|
||||
import { WireComponent } from "../../components/wire";
|
||||
import { LeverComponent } from "../../components/lever";
|
||||
|
||||
const tutorialsByLevel = [
|
||||
// Level 1
|
||||
@@ -15,16 +17,13 @@ const tutorialsByLevel = [
|
||||
// 1.1. place an extractor
|
||||
{
|
||||
id: "1_1_extractor",
|
||||
condition: /** @param {GameRoot} root */ root => {
|
||||
return root.entityMgr.getAllWithComponent(MinerComponent).length === 0;
|
||||
},
|
||||
condition: /** @param {GameRoot} root */ root =>
|
||||
root.entityMgr.getAllWithComponent(MinerComponent).length === 0,
|
||||
},
|
||||
// 1.2. connect to hub
|
||||
{
|
||||
id: "1_2_conveyor",
|
||||
condition: /** @param {GameRoot} root */ root => {
|
||||
return root.hubGoals.getCurrentGoalDelivered() === 0;
|
||||
},
|
||||
condition: /** @param {GameRoot} root */ root => root.hubGoals.getCurrentGoalDelivered() === 0,
|
||||
},
|
||||
// 1.3 wait for completion
|
||||
{
|
||||
@@ -37,61 +36,101 @@ const tutorialsByLevel = [
|
||||
// 2.1 place a cutter
|
||||
{
|
||||
id: "2_1_place_cutter",
|
||||
condition: /** @param {GameRoot} root */ root => {
|
||||
return (
|
||||
root.entityMgr
|
||||
.getAllWithComponent(ItemProcessorComponent)
|
||||
.filter(e => e.components.ItemProcessor.type === enumItemProcessorTypes.cutter)
|
||||
.length === 0
|
||||
);
|
||||
},
|
||||
condition: /** @param {GameRoot} root */ root =>
|
||||
root.entityMgr
|
||||
.getAllWithComponent(ItemProcessorComponent)
|
||||
.filter(e => e.components.ItemProcessor.type === enumItemProcessorTypes.cutter).length ===
|
||||
0,
|
||||
},
|
||||
// 2.2 place trash
|
||||
{
|
||||
id: "2_2_place_trash",
|
||||
condition: /** @param {GameRoot} root */ root => {
|
||||
return (
|
||||
root.entityMgr
|
||||
.getAllWithComponent(ItemProcessorComponent)
|
||||
.filter(e => e.components.ItemProcessor.type === enumItemProcessorTypes.trash)
|
||||
.length === 0
|
||||
);
|
||||
},
|
||||
condition: /** @param {GameRoot} root */ root =>
|
||||
root.entityMgr
|
||||
.getAllWithComponent(ItemProcessorComponent)
|
||||
.filter(e => e.components.ItemProcessor.type === enumItemProcessorTypes.trash).length ===
|
||||
0,
|
||||
},
|
||||
// 2.3 place more cutters
|
||||
{
|
||||
id: "2_3_more_cutters",
|
||||
condition: /** @param {GameRoot} root */ root => {
|
||||
return (
|
||||
root.entityMgr
|
||||
.getAllWithComponent(ItemProcessorComponent)
|
||||
.filter(e => e.components.ItemProcessor.type === enumItemProcessorTypes.cutter)
|
||||
.length < 3
|
||||
);
|
||||
},
|
||||
condition: /** @param {GameRoot} root */ root =>
|
||||
root.entityMgr
|
||||
.getAllWithComponent(ItemProcessorComponent)
|
||||
.filter(e => e.components.ItemProcessor.type === enumItemProcessorTypes.cutter).length <
|
||||
3,
|
||||
},
|
||||
],
|
||||
|
||||
// Level 2
|
||||
// Level 3
|
||||
[
|
||||
// 3.1. rectangles
|
||||
{
|
||||
id: "3_1_rectangles",
|
||||
condition: /** @param {GameRoot} root */ root => {
|
||||
return (
|
||||
// 4 miners placed above rectangles and 10 delivered
|
||||
root.hubGoals.getCurrentGoalDelivered() < 10 ||
|
||||
root.entityMgr.getAllWithComponent(MinerComponent).filter(entity => {
|
||||
const tile = entity.components.StaticMapEntity.origin;
|
||||
const below = root.map.getLowerLayerContentXY(tile.x, tile.y);
|
||||
if (below && below.getItemType() === "shape") {
|
||||
const shape = /** @type {ShapeItem} */ (below).definition.getHash();
|
||||
return shape === "RuRuRuRu";
|
||||
}
|
||||
return false;
|
||||
}).length < 4
|
||||
);
|
||||
},
|
||||
condition: /** @param {GameRoot} root */ root =>
|
||||
// 4 miners placed above rectangles and 10 delivered
|
||||
root.hubGoals.getCurrentGoalDelivered() < 10 ||
|
||||
root.entityMgr.getAllWithComponent(MinerComponent).filter(entity => {
|
||||
const tile = entity.components.StaticMapEntity.origin;
|
||||
const below = root.map.getLowerLayerContentXY(tile.x, tile.y);
|
||||
if (below && below.getItemType() === "shape") {
|
||||
const shape = /** @type {ShapeItem} */ (below).definition.getHash();
|
||||
return shape === "RuRuRuRu";
|
||||
}
|
||||
return false;
|
||||
}).length < 4,
|
||||
},
|
||||
],
|
||||
|
||||
[], // Level 4
|
||||
[], // Level 5
|
||||
[], // Level 6
|
||||
[], // Level 7
|
||||
[], // Level 8
|
||||
[], // Level 9
|
||||
[], // Level 10
|
||||
[], // Level 11
|
||||
[], // Level 12
|
||||
[], // Level 13
|
||||
[], // Level 14
|
||||
[], // Level 15
|
||||
[], // Level 16
|
||||
[], // Level 17
|
||||
[], // Level 18
|
||||
[], // Level 19
|
||||
[], // Level 20
|
||||
|
||||
// Level 21
|
||||
[
|
||||
// 21.1 place quad painter
|
||||
{
|
||||
id: "21_1_place_quad_painter",
|
||||
condition: /** @param {GameRoot} root */ root =>
|
||||
root.entityMgr
|
||||
.getAllWithComponent(ItemProcessorComponent)
|
||||
.filter(e => e.components.ItemProcessor.type === enumItemProcessorTypes.painterQuad)
|
||||
.length === 0,
|
||||
},
|
||||
|
||||
// 21.2 switch to wires layer
|
||||
{
|
||||
id: "21_2_switch_to_wires",
|
||||
condition: /** @param {GameRoot} root */ root =>
|
||||
root.entityMgr.getAllWithComponent(WireComponent).length < 5,
|
||||
},
|
||||
|
||||
// 21.3 place button
|
||||
{
|
||||
id: "21_3_place_button",
|
||||
condition: /** @param {GameRoot} root */ root =>
|
||||
root.entityMgr.getAllWithComponent(LeverComponent).length === 0,
|
||||
},
|
||||
|
||||
// 21.4 activate button
|
||||
{
|
||||
id: "21_4_press_button",
|
||||
condition: /** @param {GameRoot} root */ root =>
|
||||
root.entityMgr.getAllWithComponent(LeverComponent).some(e => !e.components.Lever.toggled),
|
||||
},
|
||||
],
|
||||
];
|
||||
|
||||
@@ -676,6 +676,10 @@ export class ApplicationSettings extends ReadWriteProxy {
|
||||
|
||||
if (data.version < 30) {
|
||||
data.settings.mapResourcesScale = 0.5;
|
||||
|
||||
// Re-enable hints as well
|
||||
data.settings.offerHints = true;
|
||||
|
||||
data.version = 30;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user