-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
![image](https://github.com/swarm-game/swarm/assets/261693/5952ccb9-02fe-47af-9a22-b45b130316e2) # Demo scripts/play.sh -i data/scenarios/Challenges/wave.yaml --autoplay
- Loading branch information
Showing
4 changed files
with
106 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
def go = | ||
move; | ||
go; | ||
end; | ||
|
||
def start = | ||
turn right; | ||
wait 5; | ||
try { | ||
go; | ||
} {}; | ||
grab; | ||
end; | ||
|
||
start; |
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,89 @@ | ||
version: 1 | ||
name: Wave | ||
author: Karl Ostmo | ||
description: | | ||
Ride the wave | ||
creative: false | ||
objectives: | ||
- goal: | ||
- | | ||
Grab the `bitcoin`{=entity} at the east end of the path. | ||
Don't let the patrolling robots catch you! | ||
prerequisite: | ||
not: got_caught | ||
condition: | | ||
as base {has "bitcoin"}; | ||
- id: got_caught | ||
teaser: Got caught | ||
optional: true | ||
hidden: true | ||
goal: | ||
- | | ||
The robots caught you! | ||
condition: | | ||
as base {x <- meet; return $ case x (\_. false) (\_. true)}; | ||
robots: | ||
- name: base | ||
dir: [0, 1] | ||
devices: | ||
- branch predictor | ||
- comparator | ||
- dictionary | ||
- grabber | ||
- hourglass | ||
- clock | ||
- lambda | ||
- logger | ||
- net | ||
- scanner | ||
- strange loop | ||
- treads | ||
- name: wavebot | ||
system: true | ||
dir: [0, 1] | ||
display: | ||
invisible: false | ||
attr: 'plant' | ||
program: | | ||
def crossPath = | ||
move; move; move; move; move; move; | ||
turn back; | ||
wait 5; | ||
end; | ||
def go = | ||
crossPath; | ||
go; | ||
end; | ||
def start = | ||
pos <- whereami; | ||
wait $ fst pos; | ||
go; | ||
end; | ||
start; | ||
solution: | | ||
run "scenarios/Challenges/_wave/solution.sw" | ||
entities: [] | ||
known: [wavy water, water, bitcoin] | ||
world: | ||
dsl: | | ||
overlay | ||
[ {dirt, water} | ||
, if (x + y / 2) % 5 == 0 then {dirt, wavy water} else {blank} | ||
] | ||
upperleft: [-3, 6] | ||
offset: false | ||
palette: | ||
'B': [grass, erase, base] | ||
'w': [grass, erase, wavebot] | ||
'x': [dirt, water] | ||
'z': [grass, bitcoin] | ||
'.': [grass, erase] | ||
map: | | ||
xxxxxx..................................................................................................................................................................................................................................................xxxxxx | ||
xxx........................................................................................................................................................................................................................................................xxx | ||
x............................................................................................................................................................................................................................................................x | ||
B............................................................................................................................................................................................................................................................z | ||
x............................................................................................................................................................................................................................................................x | ||
xxx........................................................................................................................................................................................................................................................xxx | ||
xxxxxxwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwxxxxxx | ||
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