-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy path3x3.yaml
743 lines (743 loc) · 14.3 KB
/
3x3.yaml
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
version: 1
name: 3x3 Sliding Puzzle
author: Karl Ostmo
description: |
Place the 8 tiles in order
creative: false
seed: 0
attrs:
- name: oddtile
fg: "#D2B48C"
bg: "#400000"
- name: eventile
fg: "#000000"
bg: "#B0B0B0"
objectives:
- teaser: Solve puzzle
goal:
- |
Arrange the tiles in increasing (row-major) order.
- |
To slide a tile into the empty space, position yourself
behind it and `push`.
- |
Or, if you prefer, `drill` a tile to cause it to slide
into the adjacent empty space. However, you must not drill a tile that
has nowhere to slide. Also, drilling consumes `ink`{=entity}, which will be replenished
after the sliding operation is complete, so avoid drilling too fast in
succession.
condition: |
j <- robotnamed "setup";
as j {run "scenarios/Challenges/Sliding Puzzles/_sliding-puzzle/validate-board.sw"};
robots:
- name: base
dir: east
devices:
- ADT calculator
- branch predictor
- comparator
- compass
- counter
- decoder ring
- dictionary
- dozer blade
- drill
- gradiator
- GPS receiver
- hearing aid
- hourglass
- keyboard
- lambda
- locator
- logger
- mirror
- scanner
- string
- strange loop
- treads
inventory:
- [1, ink]
- [1, a-tile-ordinal]
- [2, b-tile-ordinal]
- [3, c-tile-ordinal]
- [4, d-tile-ordinal]
- [5, e-tile-ordinal]
- [6, f-tile-ordinal]
- [7, g-tile-ordinal]
- [8, h-tile-ordinal]
- [9, i-tile-ordinal]
- [10, j-tile-ordinal]
- [11, k-tile-ordinal]
- [12, l-tile-ordinal]
- [13, m-tile-ordinal]
- [14, n-tile-ordinal]
- [15, o-tile-ordinal]
- [16, p-tile-ordinal]
- [17, q-tile-ordinal]
- [18, r-tile-ordinal]
- [19, s-tile-ordinal]
- [20, t-tile-ordinal]
- [21, u-tile-ordinal]
- [22, v-tile-ordinal]
- [23, w-tile-ordinal]
- [24, x-tile-ordinal]
- [25, y-tile-ordinal]
- name: maintainer
system: true
dir: east
display:
invisible: true
attr: 'gold'
inventory:
- [1, a-tile-ordinal]
- [2, b-tile-ordinal]
- [3, c-tile-ordinal]
- [4, d-tile-ordinal]
- [5, e-tile-ordinal]
- [6, f-tile-ordinal]
- [7, g-tile-ordinal]
- [8, h-tile-ordinal]
- [9, i-tile-ordinal]
- [10, j-tile-ordinal]
- [11, k-tile-ordinal]
- [12, l-tile-ordinal]
- [13, m-tile-ordinal]
- [14, n-tile-ordinal]
- [15, o-tile-ordinal]
- [16, p-tile-ordinal]
- [17, q-tile-ordinal]
- [18, r-tile-ordinal]
- [19, s-tile-ordinal]
- [20, t-tile-ordinal]
- [21, u-tile-ordinal]
- [22, v-tile-ordinal]
- [23, w-tile-ordinal]
- [24, x-tile-ordinal]
- [25, y-tile-ordinal]
program: |
run "scenarios/Challenges/Sliding Puzzles/_sliding-puzzle/maintainer.sw";
- name: setup
system: true
dir: east
display:
invisible: true
attr: 'iron'
inventory:
- [1, a-tile-ordinal]
- [2, b-tile-ordinal]
- [3, c-tile-ordinal]
- [4, d-tile-ordinal]
- [5, e-tile-ordinal]
- [6, f-tile-ordinal]
- [7, g-tile-ordinal]
- [8, h-tile-ordinal]
- [9, i-tile-ordinal]
- [10, j-tile-ordinal]
- [11, k-tile-ordinal]
- [12, l-tile-ordinal]
- [13, m-tile-ordinal]
- [14, n-tile-ordinal]
- [15, o-tile-ordinal]
- [16, p-tile-ordinal]
- [17, q-tile-ordinal]
- [18, r-tile-ordinal]
- [19, s-tile-ordinal]
- [20, t-tile-ordinal]
- [21, u-tile-ordinal]
- [22, v-tile-ordinal]
- [23, w-tile-ordinal]
- [24, x-tile-ordinal]
- [25, y-tile-ordinal]
program: |
run "scenarios/Challenges/Sliding Puzzles/_sliding-puzzle/setup.sw";
solution: |
run "scenarios/Challenges/Sliding Puzzles/_sliding-puzzle/solution.sw"
entities:
- name: gradiator
display:
char: 'G'
description:
- Generates a magnetic field gradient that allows the use of `resonate` and `density`.
properties: [known]
capabilities: [resonate, density]
- name: locator
display:
char: '{'
description:
- Enables the `detect` command.
properties: [known]
capabilities: [detect]
- name: border
display:
char: '▒'
description:
- Immovable playfield border
properties: [known]
- name: ink
display:
char: 'i'
description:
- Marking fluid to designate the tile to slide
properties: [known]
- name: dozer blade
display:
attr: silver
char: '/'
description:
- Facilitates pushing
properties: [known, pickable]
capabilities: [push]
- name: sliding-tile
display:
char: '*'
description:
- Tile that is being moved
properties: [known]
- name: a-tile
display:
char: 'a'
attr: oddtile
description:
- One
properties: [known, pickable]
- name: b-tile
display:
char: 'b'
attr: eventile
description:
- Two
properties: [known, pickable]
- name: c-tile
display:
char: 'c'
attr: oddtile
description:
- Three
properties: [known, pickable]
- name: d-tile
display:
char: 'd'
attr: eventile
description:
- Four
properties: [known, pickable]
- name: e-tile
display:
char: 'e'
attr: oddtile
description:
- Five
properties: [known, pickable]
- name: f-tile
display:
char: 'f'
attr: eventile
description:
- Six
properties: [known, pickable]
- name: g-tile
display:
char: 'g'
attr: oddtile
description:
- Seven
properties: [known, pickable]
- name: h-tile
display:
char: 'h'
attr: eventile
description:
- Eight
properties: [known, pickable]
- name: i-tile
display:
char: 'i'
attr: oddtile
description:
- Nine
properties: [known, pickable]
- name: j-tile
display:
char: 'j'
attr: eventile
description:
- Ten
properties: [known, pickable]
- name: k-tile
display:
char: 'k'
attr: oddtile
description:
- Eleven
properties: [known, pickable]
- name: l-tile
display:
char: 'l'
attr: eventile
description:
- Twelve
properties: [known, pickable]
- name: m-tile
display:
char: 'm'
attr: oddtile
description:
- Thirteen
properties: [known, pickable]
- name: n-tile
display:
char: 'n'
attr: eventile
description:
- Fourteen
properties: [known, pickable]
- name: o-tile
display:
char: 'o'
attr: oddtile
description:
- Fifteen
properties: [known, pickable]
- name: p-tile
display:
char: 'p'
attr: eventile
description:
- Sixteen
properties: [known, pickable]
- name: q-tile
display:
char: 'q'
attr: oddtile
description:
- Seventeen
properties: [known, pickable]
- name: r-tile
display:
char: 'r'
attr: eventile
description:
- Eighteen
properties: [known, pickable]
- name: s-tile
display:
char: 's'
attr: oddtile
description:
- Nineteen
properties: [known, pickable]
- name: t-tile
display:
char: 't'
attr: eventile
description:
- Twenty
properties: [known, pickable]
- name: u-tile
display:
char: 'u'
attr: oddtile
description:
- Twenty-one
properties: [known, pickable]
- name: v-tile
display:
char: 'v'
attr: eventile
description:
- Twenty-two
properties: [known, pickable]
- name: w-tile
display:
char: 'w'
attr: oddtile
description:
- Twenty-three
properties: [known, pickable]
- name: x-tile
display:
char: 'x'
attr: eventile
description:
- Twenty-four
properties: [known, pickable]
- name: y-tile
display:
char: 'y'
attr: oddtile
description:
- Twenty-five
properties: [known, pickable]
- name: a-tile-ordinal
display:
char: 'a'
description:
- One
properties: [known]
- name: b-tile-ordinal
display:
char: 'b'
description:
- Two
properties: [known]
- name: c-tile-ordinal
display:
char: 'c'
description:
- Three
properties: [known]
- name: d-tile-ordinal
display:
char: 'd'
description:
- Four
properties: [known]
- name: e-tile-ordinal
display:
char: 'e'
description:
- Five
properties: [known]
- name: f-tile-ordinal
display:
char: 'f'
description:
- Six
properties: [known]
- name: g-tile-ordinal
display:
char: 'g'
description:
- Seven
properties: [known]
- name: h-tile-ordinal
display:
char: 'h'
description:
- Eight
properties: [known]
- name: i-tile-ordinal
display:
char: 'i'
description:
- Nine
properties: [known]
- name: j-tile-ordinal
display:
char: 'j'
description:
- Ten
properties: [known]
- name: k-tile-ordinal
display:
char: 'k'
description:
- Eleven
properties: [known]
- name: l-tile-ordinal
display:
char: 'l'
description:
- Twelve
properties: [known]
- name: m-tile-ordinal
display:
char: 'm'
description:
- Thirteen
properties: [known]
- name: n-tile-ordinal
display:
char: 'n'
description:
- Fourteen
properties: [known]
- name: o-tile-ordinal
display:
char: 'o'
description:
- Fifteen
properties: [known]
- name: p-tile-ordinal
display:
char: 'p'
description:
- Sixteen
properties: [known]
- name: q-tile-ordinal
display:
char: 'q'
description:
- Seventeen
properties: [known]
- name: r-tile-ordinal
display:
char: 'r'
description:
- Eighteen
properties: [known]
- name: s-tile-ordinal
display:
char: 's'
description:
- Nineteen
properties: [known]
- name: t-tile-ordinal
display:
char: 't'
description:
- Twenty
properties: [known]
- name: u-tile-ordinal
display:
char: 'u'
description:
- Twenty-one
properties: [known]
- name: v-tile-ordinal
display:
char: 'v'
description:
- Twenty-two
properties: [known]
- name: w-tile-ordinal
display:
char: 'w'
description:
- Twenty-three
properties: [known]
- name: x-tile-ordinal
display:
char: 'x'
description:
- Twenty-four
properties: [known]
- name: y-tile-ordinal
display:
char: 'y'
description:
- Twenty-five
properties: [known]
recipes:
- in:
- [1, ink]
- [1, a-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, b-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, c-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, d-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, e-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, f-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, g-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, h-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, i-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, j-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, k-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, l-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, m-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, n-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, o-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, p-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, q-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, r-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, s-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, t-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, u-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, v-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, w-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, x-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
- in:
- [1, ink]
- [1, y-tile]
out:
- [1, sliding-tile]
required:
- [1, drill]
time: 0
known: []
world:
dsl: |
{grass}
upperleft: [-3, 2]
offset: false
palette:
B: [grass, null, base]
y: [grass, null, setup]
z: [grass, null, maintainer]
'.': [grass]
'x': [grass]
map: |
..................
..xxxxxx..........
B.x....x..........
..x....x..........
..x....x..........
..x....x..........
..xxxxxx..........
..................
zy................