Noah Petherbridge
8965a7d86a
Add new doodads: * Start Flag: place this in a level to set the spawn point of the player character. If no flag is found, the player spawns at 0,0 in the top corner of the map. Only use one Start Flag per level, otherwise the player will randomly spawn at one of them. * Crumbly Floor: a solid floor that begins to shake and then fall apart after a moment when a mobile character steps on it. The floor respawns after 5 seconds. * State Blocks: blue and orange blocks that toggle between solid and pass-thru whenever a State Button is activated. * State Button: a solid "ON/OFF" block that toggles State Blocks back and forth when touched. Only activates if touched on the side or bottom; acts as a solid floor when walked on from the top. New features for doodad scripts: * Actor scripts: call SetMobile(true) to mark an actor as a mobile mob (i.e. player character or enemy). Other doodads can check if the actor colliding with them IsMobile so they don't activate if placed too close to other (non-mobile) doodads in a level. The Blue and Red Azulians are the only mobile characters so far. * Message.Broadcast allows sending a pub/sub message out to ALL doodads in the level, instead of only to linked doodads as Message.Publish does. This is used for the State Blocks to globally communicate on/off status without needing to link them all together manually.
159 lines
4.6 KiB
Bash
Executable File
159 lines
4.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build all the doodads from their source files.
|
|
if [[ ! -d "./azulian" ]]; then
|
|
echo Run this script from the dev-assets/doodads/ working directory.
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p ../../assets/doodads
|
|
|
|
buttons() {
|
|
cd buttons/
|
|
|
|
doodad convert -t "Sticky Button" sticky1.png sticky2.png button-sticky.doodad
|
|
doodad install-script sticky.js button-sticky.doodad
|
|
|
|
doodad convert -t "Button" button1.png button2.png button.doodad
|
|
doodad install-script button.js button.doodad
|
|
|
|
doodad convert -t "Button Type B" typeB1.png typeB2.png button-typeB.doodad
|
|
doodad install-script button.js button-typeB.doodad
|
|
|
|
cp button*.doodad ../../../assets/doodads/
|
|
cd ..
|
|
}
|
|
|
|
switches() {
|
|
cd switches/
|
|
|
|
doodad convert -t "Switch" switch-off.png switch-on.png switch.doodad
|
|
doodad convert -t "Floor Switch" down-off.png down-on.png switch-down.doodad
|
|
doodad convert -t "Left Switch" left-off.png left-on.png switch-left.doodad
|
|
doodad convert -t "Right Switch" right-off.png right-on.png switch-right.doodad
|
|
|
|
doodad install-script switch.js switch.doodad
|
|
doodad install-script switch.js switch-down.doodad
|
|
doodad install-script switch.js switch-left.doodad
|
|
doodad install-script switch.js switch-right.doodad
|
|
|
|
cp *.doodad ../../../assets/doodads/
|
|
cd ..
|
|
}
|
|
|
|
doors() {
|
|
cd doors/
|
|
|
|
doodad convert -t "Red Door" red1.png red2.png door-red.doodad
|
|
doodad install-script locked-door.js door-red.doodad
|
|
|
|
doodad convert -t "Blue Door" blue1.png blue2.png door-blue.doodad
|
|
doodad install-script locked-door.js door-blue.doodad
|
|
|
|
doodad convert -t "Green Door" green1.png green2.png door-green.doodad
|
|
doodad install-script locked-door.js door-green.doodad
|
|
|
|
doodad convert -t "Yellow Door" yellow1.png yellow2.png door-yellow.doodad
|
|
doodad install-script locked-door.js door-yellow.doodad
|
|
|
|
doodad convert -t "Red Key" red-key.png key-red.doodad
|
|
doodad install-script keys.js key-red.doodad
|
|
|
|
doodad convert -t "Blue Key" blue-key.png key-blue.doodad
|
|
doodad install-script keys.js key-blue.doodad
|
|
|
|
doodad convert -t "Green Key" green-key.png key-green.doodad
|
|
doodad install-script keys.js key-green.doodad
|
|
|
|
doodad convert -t "Yellow Key" yellow-key.png key-yellow.doodad
|
|
doodad install-script keys.js key-yellow.doodad
|
|
|
|
doodad convert -t "Electric Door" electric{1,2,3,4}.png door-electric.doodad
|
|
doodad install-script electric-door.js door-electric.doodad
|
|
|
|
cp door-*.doodad key-*.doodad ../../../assets/doodads/
|
|
|
|
cd ..
|
|
}
|
|
|
|
trapdoors() {
|
|
cd trapdoors/
|
|
|
|
doodad convert -t "Trapdoor" down{1,2,3,4}.png trapdoor-down.doodad
|
|
doodad convert -t "Trapdoor Left" left{1,2,3,4}.png trapdoor-left.doodad
|
|
doodad convert -t "Trapdoor Right" right{1,2,3,4}.png trapdoor-right.doodad
|
|
doodad convert -t "Trapdoor Up" up{1,2,3,4}.png trapdoor-up.doodad
|
|
doodad install-script trapdoor.js trapdoor-down.doodad
|
|
doodad install-script trapdoor.js trapdoor-left.doodad
|
|
doodad install-script trapdoor.js trapdoor-right.doodad
|
|
doodad install-script trapdoor.js trapdoor-up.doodad
|
|
|
|
cp trapdoor-*.doodad ../../../assets/doodads/
|
|
|
|
cd ..
|
|
}
|
|
|
|
azulians() {
|
|
cd azulian/
|
|
|
|
doodad convert -t "Blue Azulian" blu-front.png blu-back.png \
|
|
blu-wr{1,2,3,4}.png blu-wl{1,2,3,4}.png azu-blu.doodad
|
|
doodad install-script azulian.js azu-blu.doodad
|
|
|
|
doodad convert -t "Red Azulian" red-front.png red-back.png \
|
|
red-wr{1,2,3,4}.png red-wl{1,2,3,4}.png azu-red.doodad
|
|
doodad install-script azulian-red.js azu-red.doodad
|
|
|
|
cp azu-*.doodad ../../../assets/doodads/
|
|
|
|
cd ..
|
|
}
|
|
|
|
objects() {
|
|
cd objects/
|
|
|
|
doodad convert -t "Exit Flag" exit-flag.png exit-flag.doodad
|
|
doodad install-script exit-flag.js exit-flag.doodad
|
|
|
|
doodad convert -t "Start Flag" start-flag.png start-flag.doodad
|
|
|
|
cp *.doodad ../../../assets/doodads/
|
|
|
|
cd ../crumbly-floor
|
|
|
|
doodad convert -t "Crumbly Floor" floor.png shake1.png shake2.png \
|
|
fall1.png fall2.png fall3.png fall4.png fallen.png \
|
|
crumbly-floor.doodad
|
|
doodad install-script crumbly-floor.js crumbly-floor.doodad
|
|
cp *.doodad ../../../assets/doodads/
|
|
|
|
cd ..
|
|
}
|
|
|
|
onoff() {
|
|
cd on-off/
|
|
|
|
doodad convert -t "State Button" blue-button.png orange-button.png state-button.doodad
|
|
doodad install-script state-button.js state-button.doodad
|
|
|
|
doodad convert -t "State Block (Blue)" blue-on.png blue-off.png state-block-blue.doodad
|
|
doodad install-script state-block-blue.js state-block-blue.doodad
|
|
|
|
doodad convert -t "State Block (Orange)" orange-off.png orange-on.png state-block-orange.doodad
|
|
doodad install-script state-block-orange.js state-block-orange.doodad
|
|
|
|
cp *.doodad ../../../assets/doodads/
|
|
|
|
cd ..
|
|
}
|
|
|
|
buttons
|
|
switches
|
|
doors
|
|
trapdoors
|
|
azulians
|
|
objects
|
|
onoff
|
|
doodad edit-doodad -quiet -lock -author "Noah" ../../assets/doodads/*.doodad
|
|
doodad edit-doodad -hide ../../assets/doodads/azu-blu.doodad
|