levels
This commit is contained in:
parent
9843499d78
commit
f0a7fd7ded
|
@ -78,8 +78,8 @@ class Actor extends Emitter
|
||||||
|
|
||||||
initAction: ->
|
initAction: ->
|
||||||
performAction: ->
|
performAction: ->
|
||||||
finishAction: -> log "actor.finishAction not implemented? #{@name}"
|
finishAction: ->
|
||||||
actionFinished: -> log 'actor.actionFinished not implemented? #{@name}'
|
actionFinished: ->
|
||||||
|
|
||||||
# 000000000 000 00 00 00000000 00000000
|
# 000000000 000 00 00 00000000 00000000
|
||||||
# 000 000 000 000 000 000 000
|
# 000 000 000 000 000 000 000
|
||||||
|
|
|
@ -53,6 +53,13 @@ class Camera extends Matrix
|
||||||
@light.setPosition new Vector pos[X], pos[Y], pos[Z], 1.0 # positional light source
|
@light.setPosition new Vector pos[X], pos[Y], pos[Z], 1.0 # positional light source
|
||||||
|
|
||||||
getLookAtPosition: -> @getZVector().mul(-@eye_distance).plus @getPosition()
|
getLookAtPosition: -> @getZVector().mul(-@eye_distance).plus @getPosition()
|
||||||
|
|
||||||
|
setOrientation: (o) ->
|
||||||
|
@setYVector o.rotate Vector.unitY
|
||||||
|
@setZVector o.rotate Vector.unitZ
|
||||||
|
@setXVector o.rotate Vector.minusX
|
||||||
|
@cam.up.copy @getYVector()
|
||||||
|
@cam.lookAt @getPosition().plus @getZVector()
|
||||||
|
|
||||||
updateViewport: ->
|
updateViewport: ->
|
||||||
ss = world.screenSize
|
ss = world.screenSize
|
||||||
|
|
|
@ -11,36 +11,37 @@ class Levels
|
||||||
@list = [
|
@list = [
|
||||||
# "test",
|
# "test",
|
||||||
# --- introduction
|
# --- introduction
|
||||||
# "steps",
|
"steps",
|
||||||
# "start",
|
"start",
|
||||||
# "blocks",
|
"blocks",
|
||||||
# "move",
|
"move",
|
||||||
# "electro",
|
"electro",
|
||||||
# "elevate",
|
"elevate",
|
||||||
# "throw",
|
"throw",
|
||||||
# # --- easy
|
# # --- easy
|
||||||
# "gold",
|
"gold",
|
||||||
# "jump",
|
"jump",
|
||||||
# "escape",
|
"escape",
|
||||||
# "gears",
|
"gears",
|
||||||
# "gamma",
|
"gamma",
|
||||||
# "cube",
|
"cube",
|
||||||
# "switch",
|
"switch",
|
||||||
# # "borg",
|
# # "borg",
|
||||||
# "mini",
|
"mini",
|
||||||
# "bombs",
|
"bombs",
|
||||||
# "sandbox",
|
"sandbox",
|
||||||
# "energy",
|
"energy",
|
||||||
# "maze",
|
"maze",
|
||||||
# "love",
|
"love",
|
||||||
|
"chain",
|
||||||
# --- medium
|
# --- medium
|
||||||
# "towers",
|
"towers",
|
||||||
# "edge",
|
"edge",
|
||||||
# "random",
|
"random",
|
||||||
# "plate",
|
"plate",
|
||||||
# "nice",
|
"nice",
|
||||||
# "entropy",
|
"entropy",
|
||||||
# "neutron",
|
"neutron",
|
||||||
"strange",
|
"strange",
|
||||||
"core",
|
"core",
|
||||||
# --- difficult
|
# --- difficult
|
||||||
|
|
|
@ -22,7 +22,8 @@ module.exports =
|
||||||
next to the exit
|
next to the exit
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
position: [0,-3,1]
|
coordinates: [4,1,0]
|
||||||
|
orientation: minusYupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -21,7 +21,9 @@ module.exports =
|
||||||
and close the circuit
|
and close the circuit
|
||||||
with the wire stones"
|
with the wire stones"
|
||||||
"""
|
"""
|
||||||
player: position: [0,1,0]
|
player:
|
||||||
|
coordinates: [4,0,5]
|
||||||
|
orientation: minusYupZ
|
||||||
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
|
|
|
@ -18,7 +18,9 @@ module.exports =
|
||||||
to get to the exit,
|
to get to the exit,
|
||||||
move the stones
|
move the stones
|
||||||
"""
|
"""
|
||||||
player: position: [0,-3,0]
|
player:
|
||||||
|
coordinates: [2,3,2]
|
||||||
|
orientation: minusZdownX
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -22,7 +22,9 @@ module.exports =
|
||||||
place a wire stone
|
place a wire stone
|
||||||
next to the exit
|
next to the exit
|
||||||
"""
|
"""
|
||||||
player: position: [1,2,0]
|
player:
|
||||||
|
coordinates: [0,4,3]
|
||||||
|
orientation: ZupX
|
||||||
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
|
|
|
@ -18,8 +18,8 @@ module.exports =
|
||||||
activate all switches.
|
activate all switches.
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [3, 4,3]
|
coordinates: [4,10,0]
|
||||||
nostatus: 0
|
orientation: YupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -22,7 +22,9 @@ module.exports =
|
||||||
place a wire stone
|
place a wire stone
|
||||||
next to the exit
|
next to the exit
|
||||||
"""
|
"""
|
||||||
player: position: [1,0,0]
|
player:
|
||||||
|
coordinates: [2,1,1]
|
||||||
|
orientation: minusYupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -19,9 +19,8 @@ module.exports =
|
||||||
feed it with electricity
|
feed it with electricity
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [4,6,4]
|
coordinates: [4,5,3]
|
||||||
nostatus: 0
|
orientation: YdownZ
|
||||||
orientation: rot0
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -17,7 +17,8 @@ module.exports =
|
||||||
use the stones
|
use the stones
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
position: [0,-1,0]
|
coordinates: [3,7,0]
|
||||||
|
orientation: YupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
@ -27,7 +28,7 @@ module.exports =
|
||||||
|
|
||||||
s = world.size
|
s = world.size
|
||||||
|
|
||||||
for y in [-4...6]
|
for y in [-4...5]
|
||||||
for x in [-3, -1, 1, 3]
|
for x in [-3, -1, 1, 3]
|
||||||
for z in [-3, -1, 1, 3 ]
|
for z in [-3, -1, 1, 3 ]
|
||||||
world.addObjectAtPos 'Stone', world.decenter x, y, z
|
world.addObjectAtPos 'Stone', world.decenter x, y, z
|
||||||
|
|
|
@ -24,8 +24,8 @@ module.exports =
|
||||||
next to the exit
|
next to the exit
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [3,0,3]
|
coordinates: [6,2,0]
|
||||||
nostatus: 0
|
orientation: XupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -12,9 +12,8 @@ module.exports =
|
||||||
size: [7,7,7]
|
size: [7,7,7]
|
||||||
help: "$scale(1.5)mission:\nget to the exit!"
|
help: "$scale(1.5)mission:\nget to the exit!"
|
||||||
player:
|
player:
|
||||||
coordinates: [3,0,0]
|
coordinates: [3,0,5]
|
||||||
nostatus: 0
|
orientation: ZupY
|
||||||
orientation: rot0
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
|
||||||
|
# 00000000 000 000 00000000 00000000 0000000 000 000
|
||||||
|
# 000 0000 000 000 000 000 000 000 000
|
||||||
|
# 0000000 000 0 000 0000000 0000000 000 0000 00000
|
||||||
|
# 000 000 0000 000 000 000 000 000 000
|
||||||
|
# 00000000 000 000 00000000 000 000 0000000 000
|
||||||
|
|
||||||
module.exports =
|
module.exports =
|
||||||
name: "energy"
|
name: "energy"
|
||||||
scheme: "default"
|
scheme: "default"
|
||||||
|
@ -10,8 +17,8 @@ module.exports =
|
||||||
shoot the 4 switches
|
shoot the 4 switches
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
position: [0,1,0]
|
coordinates: [4,4,5]
|
||||||
orientation: roty90
|
orientation: XupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -18,8 +18,8 @@ module.exports =
|
||||||
use the stones to reach it
|
use the stones to reach it
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [4,3,4]
|
coordinates: [4,3,2]
|
||||||
nostatus: 0
|
orientation: minusXupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -24,8 +24,8 @@ module.exports =
|
||||||
move the stones
|
move the stones
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [3,8,4]
|
coordinates: [3,0,4]
|
||||||
orientation: YupX
|
orientation: minusXupY
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
module.exports =
|
module.exports =
|
||||||
name: "evil"
|
name: "evil"
|
||||||
|
design: "Michael Abel?"
|
||||||
scheme: "red"
|
scheme: "red"
|
||||||
size: [13,5,13]
|
size: [13,5,13]
|
||||||
help: """
|
help: """
|
||||||
|
@ -26,7 +27,9 @@ module.exports =
|
||||||
|
|
||||||
good luck!
|
good luck!
|
||||||
"""
|
"""
|
||||||
player: position: [1,1,1]
|
player:
|
||||||
|
coordinates: [6,0,7]
|
||||||
|
orientation: ZupY
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -23,8 +23,8 @@ module.exports =
|
||||||
you have to fall of this stone, as well
|
you have to fall of this stone, as well
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [6,11,6]
|
coordinates: [0,6,2]
|
||||||
nostatus: 0
|
orientation: minusZupX
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -13,9 +13,8 @@ module.exports =
|
||||||
you can't grab it while falling
|
you can't grab it while falling
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [3,0,1]
|
coordinates: [3,0,7]
|
||||||
nostatus: 0
|
orientation: ZupY
|
||||||
orientation: rot0
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
@ -29,8 +28,8 @@ module.exports =
|
||||||
for l in [-1*m[0],1*m[0]]
|
for l in [-1*m[0],1*m[0]]
|
||||||
world.addObjectLine m[1], s.x/2+k, s.y/2+l ,0, s.x/2+k, s.y/2+l ,3
|
world.addObjectLine m[1], s.x/2+k, s.y/2+l ,0, s.x/2+k, s.y/2+l ,3
|
||||||
world.addObjectLine m[1], s.x/2+k, s.y/2+l ,8, s.x/2+k, s.y/2+l ,s.z
|
world.addObjectLine m[1], s.x/2+k, s.y/2+l ,8, s.x/2+k, s.y/2+l ,s.z
|
||||||
world.addObjectAtPos new Stone(color:[0,1,0,0.5], slippery:true), world.decenter 1,0,0
|
world.addObjectAtPos new Stone(color:[0.5,0.5,1], opacity: 0.5, slippery:true), world.decenter 1,0,0
|
||||||
world.addObjectAtPos new Stone(color:[0,1,0,0.5], slippery:true), world.decenter -1,0,0
|
world.addObjectAtPos new Stone(color:[0.5,0.5,1], opacity: 0.5, slippery:true), world.decenter -1,0,0
|
||||||
world.addObjectAtPos new Stone(color:[0,1,0,0.5], slippery:true), world.decenter 0,1,0
|
world.addObjectAtPos new Stone(color:[0.5,0.5,1], opacity: 0.5, slippery:true), world.decenter 0,1,0
|
||||||
world.addObjectAtPos new Stone(color:[0,1,0,0.5], slippery:true), world.decenter 0,-1,0
|
world.addObjectAtPos new Stone(color:[0.5,0.5,1], opacity: 0.5, slippery:true), world.decenter 0,-1,0
|
||||||
|
|
|
@ -20,8 +20,8 @@ module.exports =
|
||||||
shoot at the 3 switches to activate the exit
|
shoot at the 3 switches to activate the exit
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [0,5,0]
|
coordinates: [5,5,4]
|
||||||
nostatus: 0
|
orientation: XupY
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -14,7 +14,9 @@ module.exports =
|
||||||
and close the circuit
|
and close the circuit
|
||||||
with the wire stones
|
with the wire stones
|
||||||
"""
|
"""
|
||||||
player: position: [0,0,0]
|
player:
|
||||||
|
position: [0,0,0]
|
||||||
|
orientation: minusXupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -16,8 +16,8 @@ module.exports =
|
||||||
to shoot, press $key(shoot)
|
to shoot, press $key(shoot)
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [3,0,3]
|
coordinates: [5,4,1]
|
||||||
nostatus: 0
|
orientation: minusYupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -8,7 +8,9 @@ module.exports =
|
||||||
to get to the exit,
|
to get to the exit,
|
||||||
use the stones
|
use the stones
|
||||||
"""
|
"""
|
||||||
player: position: [1,0,1]
|
player:
|
||||||
|
coordinates: [3,4,8]
|
||||||
|
orientation: minusXdownZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -19,7 +19,9 @@ module.exports =
|
||||||
use the stones to
|
use the stones to
|
||||||
reach the exit
|
reach the exit
|
||||||
"""
|
"""
|
||||||
player: position: [0,-3,1]
|
player:
|
||||||
|
coordinates: [4,8,2]
|
||||||
|
orientation: YdownZ
|
||||||
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
|
|
|
@ -16,7 +16,9 @@ module.exports =
|
||||||
the switches move every time you play
|
the switches move every time you play
|
||||||
there is only one way out!
|
there is only one way out!
|
||||||
"""
|
"""
|
||||||
player: position: [0,1,0]
|
player:
|
||||||
|
coordinates: [3,3,0]
|
||||||
|
orientation: YupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit1"
|
name: "exit1"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -12,9 +12,9 @@ module.exports =
|
||||||
size: [5,5,9]
|
size: [5,5,9]
|
||||||
help: "$scale(1.5)mission:\nactivate the exit!"
|
help: "$scale(1.5)mission:\nactivate the exit!"
|
||||||
player:
|
player:
|
||||||
position: [0,0,0]
|
coordinates: [1,2,2]
|
||||||
orientation: roty270
|
orientation: minusZupX
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
coordinates: [1,2,8]
|
coordinates: [1,2,8]
|
||||||
|
|
|
@ -17,9 +17,8 @@ module.exports =
|
||||||
but don't get confused :)
|
but don't get confused :)
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [3,0,0]
|
coordinates: [3,0,1]
|
||||||
nostatus: 0
|
orientation: minusZdownX
|
||||||
orientation: rotz90
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -12,8 +12,8 @@ module.exports =
|
||||||
size: [11,11,11]
|
size: [11,11,11]
|
||||||
help: "$scale(1.5)mission:\nget to the exit!"
|
help: "$scale(1.5)mission:\nget to the exit!"
|
||||||
player:
|
player:
|
||||||
coordinates: [0,0,5]
|
coordinates: [6,10,5]
|
||||||
nostatus: 0
|
orientation: YdownZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -12,9 +12,8 @@ module.exports =
|
||||||
size: [5,5,7]
|
size: [5,5,7]
|
||||||
help: "$scale(1.5)mission:\nget to the exit!"
|
help: "$scale(1.5)mission:\nget to the exit!"
|
||||||
player:
|
player:
|
||||||
coordinates: [2,4,4]
|
coordinates: [2,1,0]
|
||||||
nostatus: 0,
|
orientation: minusYupZ
|
||||||
orientation: rotx90
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -13,7 +13,9 @@ module.exports =
|
||||||
when all mutant bots
|
when all mutant bots
|
||||||
are deactivated
|
are deactivated
|
||||||
"""
|
"""
|
||||||
player: position: [0,-1,0]
|
player:
|
||||||
|
coordinates: [7,1,8]
|
||||||
|
orientation: minusYdownZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
@ -21,7 +23,7 @@ module.exports =
|
||||||
world: ()-> outro()
|
world: ()-> outro()
|
||||||
]
|
]
|
||||||
create: ->
|
create: ->
|
||||||
#
|
|
||||||
s = world.size
|
s = world.size
|
||||||
{Mutant} = require '../items'
|
{Mutant} = require '../items'
|
||||||
|
|
||||||
|
|
|
@ -17,17 +17,15 @@ module.exports =
|
||||||
it looks simpler than it is.
|
it looks simpler than it is.
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
"position": [0,-1,0]
|
coordinates: [5,4,0]
|
||||||
"nostatus": 0
|
orientation: minusZdownY
|
||||||
exits: [
|
exits: [
|
||||||
"name": "exit"
|
name: "exit"
|
||||||
"active": 1
|
active: 1
|
||||||
"position": [0,0,0]
|
position: [0,0,0]
|
||||||
]
|
]
|
||||||
"create": ->
|
create: ->
|
||||||
|
|
||||||
# neutron_scheme["KikiStone"] = "base": [0.0, 0.5, 0.5, 0.5]
|
|
||||||
|
|
||||||
world.addObjectAtPos 'Stone', world.decenter 0,0,-5
|
world.addObjectAtPos 'Stone', world.decenter 0,0,-5
|
||||||
world.addObjectAtPos 'Stone', world.decenter 0,0,+5
|
world.addObjectAtPos 'Stone', world.decenter 0,0,+5
|
||||||
world.addObjectAtPos 'Stone', world.decenter +5,0,0
|
world.addObjectAtPos 'Stone', world.decenter +5,0,0
|
||||||
|
|
|
@ -12,7 +12,9 @@ module.exports =
|
||||||
scheme: "tron"
|
scheme: "tron"
|
||||||
size: [11,11,11]
|
size: [11,11,11]
|
||||||
help: "$scale(1.5)mission:\nget to the exit!"
|
help: "$scale(1.5)mission:\nget to the exit!"
|
||||||
player: position: [2,-1,0]
|
player:
|
||||||
|
coordinates: [7,4,0]
|
||||||
|
orientation: minusZdownY
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -13,9 +13,8 @@ module.exports =
|
||||||
use the bombs :)
|
use the bombs :)
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [3,2,1]
|
coordinates: [2,3,3]
|
||||||
nostatus: 0
|
orientation: minusXdownZ
|
||||||
orientation: Quaternion.rotationAroundVector(270, new Vector(1,0,0))
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -12,9 +12,8 @@ module.exports =
|
||||||
size: [11,11,11]
|
size: [11,11,11]
|
||||||
help: "$scale(1.5)mission:\nget to the exit!"
|
help: "$scale(1.5)mission:\nget to the exit!"
|
||||||
player:
|
player:
|
||||||
coordinates: [5,10,5]
|
coordinates: [5,9,6]
|
||||||
nostatus: 0
|
orientation: ZdownY
|
||||||
orientation: rotx90
|
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -1,9 +1,18 @@
|
||||||
|
|
||||||
|
# 00000000 00000000 0000000 0000000 000
|
||||||
|
# 000 000 000 000 000 000 000
|
||||||
|
# 0000000 0000000 000 0000 000000000 000
|
||||||
|
# 000 000 000 000 000 000 000 000
|
||||||
|
# 000 000 00000000 0000000 000 000 0000000
|
||||||
|
|
||||||
module.exports =
|
module.exports =
|
||||||
name: "regal"
|
name: "regal"
|
||||||
scheme: "bronze"
|
scheme: "bronze"
|
||||||
size: [7,3,9]
|
size: [7,3,9]
|
||||||
help: "$scale(1.5)mission:\nactivate the exit!"
|
help: "$scale(1.5)mission:\nactivate the exit!"
|
||||||
player: position: [0,0,0]
|
player:
|
||||||
|
coordinates: [3,2,4]
|
||||||
|
orientation: XdownY
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -15,7 +15,9 @@ module.exports =
|
||||||
to get to the exit,
|
to get to the exit,
|
||||||
use the stones
|
use the stones
|
||||||
"""
|
"""
|
||||||
player: position: [0,-1,0]
|
player:
|
||||||
|
coordinates: [4,4,2]
|
||||||
|
orientation: minusXupZ
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -12,8 +12,8 @@ module.exports =
|
||||||
size: [5,25,5]
|
size: [5,25,5]
|
||||||
help: "Down the Rabbit Hole"
|
help: "Down the Rabbit Hole"
|
||||||
player:
|
player:
|
||||||
coordinates: [3,1,3]
|
coordinates: [0,20,2]
|
||||||
nostatus: 0
|
orientation: minusYupX
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
|
|
@ -12,8 +12,8 @@ module.exports =
|
||||||
while moving
|
while moving
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
position: [0,-1,-1]
|
coordinates: [4,5,3]
|
||||||
orientation: rotx90.mul roty180
|
orientation: ZupX
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -1,13 +1,19 @@
|
||||||
# level design by Ben "mrthoughtful" Griffin
|
|
||||||
|
# 000000000 0000000 000 000 00000000 00000000 0000000
|
||||||
|
# 000 000 000 000 0 000 000 000 000 000
|
||||||
|
# 000 000 000 000000000 0000000 0000000 0000000
|
||||||
|
# 000 000 000 000 000 000 000 000 000
|
||||||
|
# 000 0000000 00 00 00000000 000 000 0000000
|
||||||
|
|
||||||
module.exports =
|
module.exports =
|
||||||
name: "towers"
|
name: "towers"
|
||||||
|
design: 'Ben "mrthoughtful" Griffin'
|
||||||
scheme: "metal"
|
scheme: "metal"
|
||||||
size: [9,9,15]
|
size: [9,9,15]
|
||||||
help: "$scale(1.5)mission:\nget to the exit!\n\nto get to the exit,\nmove the stones"
|
help: "$scale(1.5)mission:\nget to the exit!\n\nto get to the exit,\nmove the stones"
|
||||||
player:
|
player:
|
||||||
coordinates: [4,5,0]
|
coordinates: [4,5,3]
|
||||||
orientation: rotx90
|
orientation: ZdownX
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -20,7 +20,8 @@ module.exports =
|
||||||
the central wall
|
the central wall
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [0,0,2]
|
coordinates: [0,4,2]
|
||||||
|
orientation: minusXdownY
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 1
|
active: 1
|
||||||
|
|
|
@ -292,19 +292,19 @@ module.exports =
|
||||||
|
|
||||||
blue:
|
blue:
|
||||||
plate:
|
plate:
|
||||||
color: rgb 0.1, 0.1, 0.6
|
color: rgb 0.3, 0.3, 1
|
||||||
bulb:
|
bulb:
|
||||||
color: rgb 0.6, 0.6, 1
|
color: rgb 0.6, 0.6, 1
|
||||||
stone:
|
stone:
|
||||||
color: rgb 0, 0, 0.5
|
color: rgb 0, 0, 0.7
|
||||||
opacity: 0.6
|
opacity: 0.6
|
||||||
switch:
|
switch:
|
||||||
color: rgb 0, 0, 0.6, 0.8
|
color: rgb 0, 0, 0.6
|
||||||
bomb:
|
bomb:
|
||||||
color: rgb 0.2, 0.2, 0.9
|
color: rgb 0, 0, 1
|
||||||
opacity: 0.8
|
opacity: 0.8
|
||||||
gate:
|
gate:
|
||||||
color: rgb 0, 0.2, 1
|
color: rgb 0, 0, 1
|
||||||
player:
|
player:
|
||||||
color: rgb 0, 0, 0.7
|
color: rgb 0, 0, 0.7
|
||||||
tire:
|
tire:
|
||||||
|
@ -318,11 +318,11 @@ module.exports =
|
||||||
bright: rgb 0.7, 0.8, 1
|
bright: rgb 0.7, 0.8, 1
|
||||||
dark: rgb 0, 0, 0.6
|
dark: rgb 0, 0, 0.6
|
||||||
gear:
|
gear:
|
||||||
color: rgb 0.1, 0.1, 0.9
|
color: rgb 0, 0, 0.9
|
||||||
wire:
|
wire:
|
||||||
color: rgb 0.1, 0.1, 0.9
|
color: rgb 0, 0, 0.9
|
||||||
glow:
|
glow:
|
||||||
color: rgb 1, 0.5, 0
|
color: rgb 1, 1, 1
|
||||||
|
|
||||||
# 000 000 00000000 000 000 0000000 000 000
|
# 000 000 00000000 000 000 0000000 000 000
|
||||||
# 000 000 000 000 000 000 000 000 0 000
|
# 000 000 000 000 000 000 000 000 0 000
|
||||||
|
|
|
@ -244,6 +244,7 @@ class World extends Actor
|
||||||
@player = new Player
|
@player = new Player
|
||||||
# log "player_dict", player_dict
|
# log "player_dict", player_dict
|
||||||
@player.setOrientation @dict.player.orientation ? rotx90
|
@player.setOrientation @dict.player.orientation ? rotx90
|
||||||
|
@player.camera.setOrientation @player.orientation
|
||||||
|
|
||||||
if @dict.player.position?
|
if @dict.player.position?
|
||||||
@addObjectAtPos @player, @decenter @dict.player.position
|
@addObjectAtPos @player, @decenter @dict.player.position
|
||||||
|
|
Loading…
Reference in New Issue
Block a user