From f0a7fd7ded7b2689a00f198ab67f72f170a27c97 Mon Sep 17 00:00:00 2001 From: monsterkodi Date: Wed, 24 Aug 2016 22:19:43 +0200 Subject: [PATCH] levels --- coffee/actor.coffee | 4 +-- coffee/camera.coffee | 7 +++++ coffee/levels.coffee | 55 +++++++++++++++++---------------- coffee/levels/bridge.coffee | 3 +- coffee/levels/bronze.coffee | 4 ++- coffee/levels/captured.coffee | 4 ++- coffee/levels/chain.coffee | 4 ++- coffee/levels/cheese.coffee | 4 +-- coffee/levels/church.coffee | 4 ++- coffee/levels/circuit.coffee | 5 ++- coffee/levels/columns.coffee | 5 +-- coffee/levels/conductor.coffee | 4 +-- coffee/levels/edge.coffee | 5 ++- coffee/levels/energy.coffee | 11 +++++-- coffee/levels/entropy.coffee | 4 +-- coffee/levels/escape.coffee | 4 +-- coffee/levels/evil.coffee | 5 ++- coffee/levels/fallen.coffee | 4 +-- coffee/levels/flower.coffee | 13 ++++---- coffee/levels/gamma.coffee | 4 +-- coffee/levels/gears.coffee | 4 ++- coffee/levels/grasp.coffee | 4 +-- coffee/levels/grid.coffee | 4 ++- coffee/levels/hidden.coffee | 4 ++- coffee/levels/invisimaze.coffee | 4 ++- coffee/levels/machine.coffee | 6 ++-- coffee/levels/maze.coffee | 5 ++- coffee/levels/mesh.coffee | 4 +-- coffee/levels/mini.coffee | 5 ++- coffee/levels/mutants.coffee | 6 ++-- coffee/levels/neutron.coffee | 14 ++++----- coffee/levels/nice.coffee | 4 ++- coffee/levels/plate.coffee | 5 ++- coffee/levels/pool.coffee | 5 ++- coffee/levels/regal.coffee | 11 ++++++- coffee/levels/rings.coffee | 4 ++- coffee/levels/spiral.coffee | 4 +-- coffee/levels/stones.coffee | 4 +-- coffee/levels/towers.coffee | 12 +++++-- coffee/levels/walls.coffee | 3 +- coffee/scheme.coffee | 20 ++++++------ coffee/world.coffee | 1 + 42 files changed, 168 insertions(+), 118 deletions(-) diff --git a/coffee/actor.coffee b/coffee/actor.coffee index bc9d852..3bcb668 100644 --- a/coffee/actor.coffee +++ b/coffee/actor.coffee @@ -78,8 +78,8 @@ class Actor extends Emitter initAction: -> performAction: -> - finishAction: -> log "actor.finishAction not implemented? #{@name}" - actionFinished: -> log 'actor.actionFinished not implemented? #{@name}' + finishAction: -> + actionFinished: -> # 000000000 000 00 00 00000000 00000000 # 000 000 000 000 000 000 000 diff --git a/coffee/camera.coffee b/coffee/camera.coffee index 149e74c..fabadbe 100644 --- a/coffee/camera.coffee +++ b/coffee/camera.coffee @@ -53,6 +53,13 @@ class Camera extends Matrix @light.setPosition new Vector pos[X], pos[Y], pos[Z], 1.0 # positional light source 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: -> ss = world.screenSize diff --git a/coffee/levels.coffee b/coffee/levels.coffee index d66021c..9f8ca3b 100644 --- a/coffee/levels.coffee +++ b/coffee/levels.coffee @@ -11,36 +11,37 @@ class Levels @list = [ # "test", # --- introduction - # "steps", - # "start", - # "blocks", - # "move", - # "electro", - # "elevate", - # "throw", + "steps", + "start", + "blocks", + "move", + "electro", + "elevate", + "throw", # # --- easy - # "gold", - # "jump", - # "escape", - # "gears", - # "gamma", - # "cube", - # "switch", + "gold", + "jump", + "escape", + "gears", + "gamma", + "cube", + "switch", # # "borg", - # "mini", - # "bombs", - # "sandbox", - # "energy", - # "maze", - # "love", + "mini", + "bombs", + "sandbox", + "energy", + "maze", + "love", + "chain", # --- medium - # "towers", - # "edge", - # "random", - # "plate", - # "nice", - # "entropy", - # "neutron", + "towers", + "edge", + "random", + "plate", + "nice", + "entropy", + "neutron", "strange", "core", # --- difficult diff --git a/coffee/levels/bridge.coffee b/coffee/levels/bridge.coffee index 3e40f2d..8702c63 100644 --- a/coffee/levels/bridge.coffee +++ b/coffee/levels/bridge.coffee @@ -22,7 +22,8 @@ module.exports = next to the exit """ player: - position: [0,-3,1] + coordinates: [4,1,0] + orientation: minusYupZ exits: [ name: "exit" active: 0 diff --git a/coffee/levels/bronze.coffee b/coffee/levels/bronze.coffee index 73a6bb7..b869d41 100644 --- a/coffee/levels/bronze.coffee +++ b/coffee/levels/bronze.coffee @@ -21,7 +21,9 @@ module.exports = and close the circuit with the wire stones" """ - player: position: [0,1,0] + player: + coordinates: [4,0,5] + orientation: minusYupZ exits: [ name: "exit" diff --git a/coffee/levels/captured.coffee b/coffee/levels/captured.coffee index f4bc02f..c63de7b 100644 --- a/coffee/levels/captured.coffee +++ b/coffee/levels/captured.coffee @@ -18,7 +18,9 @@ module.exports = to get to the exit, move the stones """ - player: position: [0,-3,0] + player: + coordinates: [2,3,2] + orientation: minusZdownX exits: [ name: "exit" active: 1 diff --git a/coffee/levels/chain.coffee b/coffee/levels/chain.coffee index 990586b..8a04dcb 100644 --- a/coffee/levels/chain.coffee +++ b/coffee/levels/chain.coffee @@ -22,7 +22,9 @@ module.exports = place a wire stone next to the exit """ - player: position: [1,2,0] + player: + coordinates: [0,4,3] + orientation: ZupX exits: [ name: "exit" diff --git a/coffee/levels/cheese.coffee b/coffee/levels/cheese.coffee index 1368790..32dad3d 100644 --- a/coffee/levels/cheese.coffee +++ b/coffee/levels/cheese.coffee @@ -18,8 +18,8 @@ module.exports = activate all switches. """ player: - coordinates: [3, 4,3] - nostatus: 0 + coordinates: [4,10,0] + orientation: YupZ exits: [ name: "exit" active: 0 diff --git a/coffee/levels/church.coffee b/coffee/levels/church.coffee index 4a84889..5622d72 100644 --- a/coffee/levels/church.coffee +++ b/coffee/levels/church.coffee @@ -22,7 +22,9 @@ module.exports = place a wire stone next to the exit """ - player: position: [1,0,0] + player: + coordinates: [2,1,1] + orientation: minusYupZ exits: [ name: "exit" active: 0 diff --git a/coffee/levels/circuit.coffee b/coffee/levels/circuit.coffee index b59e911..0fefeb4 100644 --- a/coffee/levels/circuit.coffee +++ b/coffee/levels/circuit.coffee @@ -19,9 +19,8 @@ module.exports = feed it with electricity """ player: - coordinates: [4,6,4] - nostatus: 0 - orientation: rot0 + coordinates: [4,5,3] + orientation: YdownZ exits: [ name: "exit" active: 0 diff --git a/coffee/levels/columns.coffee b/coffee/levels/columns.coffee index d60a2e9..db58362 100644 --- a/coffee/levels/columns.coffee +++ b/coffee/levels/columns.coffee @@ -17,7 +17,8 @@ module.exports = use the stones """ player: - position: [0,-1,0] + coordinates: [3,7,0] + orientation: YupZ exits: [ name: "exit" active: 1 @@ -27,7 +28,7 @@ module.exports = s = world.size - for y in [-4...6] + for y in [-4...5] for x in [-3, -1, 1, 3] for z in [-3, -1, 1, 3 ] world.addObjectAtPos 'Stone', world.decenter x, y, z diff --git a/coffee/levels/conductor.coffee b/coffee/levels/conductor.coffee index 9135251..9173acf 100644 --- a/coffee/levels/conductor.coffee +++ b/coffee/levels/conductor.coffee @@ -24,8 +24,8 @@ module.exports = next to the exit """ player: - coordinates: [3,0,3] - nostatus: 0 + coordinates: [6,2,0] + orientation: XupZ exits: [ name: "exit" active: 0 diff --git a/coffee/levels/edge.coffee b/coffee/levels/edge.coffee index 2e35978..3b0d115 100644 --- a/coffee/levels/edge.coffee +++ b/coffee/levels/edge.coffee @@ -12,9 +12,8 @@ module.exports = size: [7,7,7] help: "$scale(1.5)mission:\nget to the exit!" player: - coordinates: [3,0,0] - nostatus: 0 - orientation: rot0 + coordinates: [3,0,5] + orientation: ZupY exits: [ name: "exit" active: 1 diff --git a/coffee/levels/energy.coffee b/coffee/levels/energy.coffee index b7b598b..c9ea736 100644 --- a/coffee/levels/energy.coffee +++ b/coffee/levels/energy.coffee @@ -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 = name: "energy" scheme: "default" @@ -10,8 +17,8 @@ module.exports = shoot the 4 switches """ player: - position: [0,1,0] - orientation: roty90 + coordinates: [4,4,5] + orientation: XupZ exits: [ name: "exit" active: 0 diff --git a/coffee/levels/entropy.coffee b/coffee/levels/entropy.coffee index f2b4f4b..6d2beb3 100644 --- a/coffee/levels/entropy.coffee +++ b/coffee/levels/entropy.coffee @@ -18,8 +18,8 @@ module.exports = use the stones to reach it """ player: - coordinates: [4,3,4] - nostatus: 0 + coordinates: [4,3,2] + orientation: minusXupZ exits: [ name: "exit" active: 1 diff --git a/coffee/levels/escape.coffee b/coffee/levels/escape.coffee index 4e57164..e24ca8c 100644 --- a/coffee/levels/escape.coffee +++ b/coffee/levels/escape.coffee @@ -24,8 +24,8 @@ module.exports = move the stones """ player: - coordinates: [3,8,4] - orientation: YupX + coordinates: [3,0,4] + orientation: minusXupY exits: [ name: "exit" active: 0 diff --git a/coffee/levels/evil.coffee b/coffee/levels/evil.coffee index 19f5d79..a6f0129 100644 --- a/coffee/levels/evil.coffee +++ b/coffee/levels/evil.coffee @@ -7,6 +7,7 @@ module.exports = name: "evil" + design: "Michael Abel?" scheme: "red" size: [13,5,13] help: """ @@ -26,7 +27,9 @@ module.exports = good luck! """ - player: position: [1,1,1] + player: + coordinates: [6,0,7] + orientation: ZupY exits: [ name: "exit" active: 0 diff --git a/coffee/levels/fallen.coffee b/coffee/levels/fallen.coffee index f86dff1..0e5d7ea 100644 --- a/coffee/levels/fallen.coffee +++ b/coffee/levels/fallen.coffee @@ -23,8 +23,8 @@ module.exports = you have to fall of this stone, as well """ player: - coordinates: [6,11,6] - nostatus: 0 + coordinates: [0,6,2] + orientation: minusZupX exits: [ name: "exit" active: 1 diff --git a/coffee/levels/flower.coffee b/coffee/levels/flower.coffee index e118c02..2e17061 100644 --- a/coffee/levels/flower.coffee +++ b/coffee/levels/flower.coffee @@ -13,9 +13,8 @@ module.exports = you can't grab it while falling """ player: - coordinates: [3,0,1] - nostatus: 0 - orientation: rot0 + coordinates: [3,0,7] + orientation: ZupY exits: [ name: "exit" active: 1 @@ -29,8 +28,8 @@ module.exports = 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 ,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,1,0,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,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 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.5,0.5,1], opacity: 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 \ No newline at end of file diff --git a/coffee/levels/gamma.coffee b/coffee/levels/gamma.coffee index 6db8402..24f3163 100644 --- a/coffee/levels/gamma.coffee +++ b/coffee/levels/gamma.coffee @@ -20,8 +20,8 @@ module.exports = shoot at the 3 switches to activate the exit """ player: - coordinates: [0,5,0] - nostatus: 0 + coordinates: [5,5,4] + orientation: XupY exits: [ name: "exit" active: 0 diff --git a/coffee/levels/gears.coffee b/coffee/levels/gears.coffee index f0ac9d8..9e8bdb3 100644 --- a/coffee/levels/gears.coffee +++ b/coffee/levels/gears.coffee @@ -14,7 +14,9 @@ module.exports = and close the circuit with the wire stones """ - player: position: [0,0,0] + player: + position: [0,0,0] + orientation: minusXupZ exits: [ name: "exit" active: 0 diff --git a/coffee/levels/grasp.coffee b/coffee/levels/grasp.coffee index 8052e4a..8c855f4 100644 --- a/coffee/levels/grasp.coffee +++ b/coffee/levels/grasp.coffee @@ -16,8 +16,8 @@ module.exports = to shoot, press $key(shoot) """ player: - coordinates: [3,0,3] - nostatus: 0 + coordinates: [5,4,1] + orientation: minusYupZ exits: [ name: "exit" active: 0 diff --git a/coffee/levels/grid.coffee b/coffee/levels/grid.coffee index ca73aae..28a7c12 100644 --- a/coffee/levels/grid.coffee +++ b/coffee/levels/grid.coffee @@ -8,7 +8,9 @@ module.exports = to get to the exit, use the stones """ - player: position: [1,0,1] + player: + coordinates: [3,4,8] + orientation: minusXdownZ exits: [ name: "exit" active: 1 diff --git a/coffee/levels/hidden.coffee b/coffee/levels/hidden.coffee index 1155258..2a7025d 100644 --- a/coffee/levels/hidden.coffee +++ b/coffee/levels/hidden.coffee @@ -19,7 +19,9 @@ module.exports = use the stones to reach the exit """ - player: position: [0,-3,1] + player: + coordinates: [4,8,2] + orientation: YdownZ exits: [ name: "exit" diff --git a/coffee/levels/invisimaze.coffee b/coffee/levels/invisimaze.coffee index 0570026..c676cb8 100644 --- a/coffee/levels/invisimaze.coffee +++ b/coffee/levels/invisimaze.coffee @@ -16,7 +16,9 @@ module.exports = the switches move every time you play there is only one way out! """ - player: position: [0,1,0] + player: + coordinates: [3,3,0] + orientation: YupZ exits: [ name: "exit1" active: 0 diff --git a/coffee/levels/machine.coffee b/coffee/levels/machine.coffee index d02d87d..5184366 100644 --- a/coffee/levels/machine.coffee +++ b/coffee/levels/machine.coffee @@ -12,9 +12,9 @@ module.exports = size: [5,5,9] help: "$scale(1.5)mission:\nactivate the exit!" player: - position: [0,0,0] - orientation: roty270 - exits: [ + coordinates: [1,2,2] + orientation: minusZupX + exits: [ name: "exit" active: 0 coordinates: [1,2,8] diff --git a/coffee/levels/maze.coffee b/coffee/levels/maze.coffee index 46991c9..84c5a65 100644 --- a/coffee/levels/maze.coffee +++ b/coffee/levels/maze.coffee @@ -17,9 +17,8 @@ module.exports = but don't get confused :) """ player: - coordinates: [3,0,0] - nostatus: 0 - orientation: rotz90 + coordinates: [3,0,1] + orientation: minusZdownX exits: [ name: "exit" active: 1 diff --git a/coffee/levels/mesh.coffee b/coffee/levels/mesh.coffee index 3873b1b..1d1bee8 100644 --- a/coffee/levels/mesh.coffee +++ b/coffee/levels/mesh.coffee @@ -12,8 +12,8 @@ module.exports = size: [11,11,11] help: "$scale(1.5)mission:\nget to the exit!" player: - coordinates: [0,0,5] - nostatus: 0 + coordinates: [6,10,5] + orientation: YdownZ exits: [ name: "exit" active: 1 diff --git a/coffee/levels/mini.coffee b/coffee/levels/mini.coffee index bcf82ee..ef1a9ed 100644 --- a/coffee/levels/mini.coffee +++ b/coffee/levels/mini.coffee @@ -12,9 +12,8 @@ module.exports = size: [5,5,7] help: "$scale(1.5)mission:\nget to the exit!" player: - coordinates: [2,4,4] - nostatus: 0, - orientation: rotx90 + coordinates: [2,1,0] + orientation: minusYupZ exits: [ name: "exit" active: 1 diff --git a/coffee/levels/mutants.coffee b/coffee/levels/mutants.coffee index 6ad9a63..cf991ef 100644 --- a/coffee/levels/mutants.coffee +++ b/coffee/levels/mutants.coffee @@ -13,7 +13,9 @@ module.exports = when all mutant bots are deactivated """ - player: position: [0,-1,0] + player: + coordinates: [7,1,8] + orientation: minusYdownZ exits: [ name: "exit" active: 0 @@ -21,7 +23,7 @@ module.exports = world: ()-> outro() ] create: -> -# + s = world.size {Mutant} = require '../items' diff --git a/coffee/levels/neutron.coffee b/coffee/levels/neutron.coffee index e4b6085..5e7bc37 100644 --- a/coffee/levels/neutron.coffee +++ b/coffee/levels/neutron.coffee @@ -17,17 +17,15 @@ module.exports = it looks simpler than it is. """ player: - "position": [0,-1,0] - "nostatus": 0 + coordinates: [5,4,0] + orientation: minusZdownY exits: [ - "name": "exit" - "active": 1 - "position": [0,0,0] + name: "exit" + active: 1 + 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 +5,0,0 diff --git a/coffee/levels/nice.coffee b/coffee/levels/nice.coffee index a987d46..bf1a9d9 100644 --- a/coffee/levels/nice.coffee +++ b/coffee/levels/nice.coffee @@ -12,7 +12,9 @@ module.exports = scheme: "tron" size: [11,11,11] help: "$scale(1.5)mission:\nget to the exit!" - player: position: [2,-1,0] + player: + coordinates: [7,4,0] + orientation: minusZdownY exits: [ name: "exit" active: 1 diff --git a/coffee/levels/plate.coffee b/coffee/levels/plate.coffee index 3fda556..f4ceef9 100644 --- a/coffee/levels/plate.coffee +++ b/coffee/levels/plate.coffee @@ -13,9 +13,8 @@ module.exports = use the bombs :) """ player: - coordinates: [3,2,1] - nostatus: 0 - orientation: Quaternion.rotationAroundVector(270, new Vector(1,0,0)) + coordinates: [2,3,3] + orientation: minusXdownZ exits: [ name: "exit" active: 1 diff --git a/coffee/levels/pool.coffee b/coffee/levels/pool.coffee index 7c01081..836d8d8 100644 --- a/coffee/levels/pool.coffee +++ b/coffee/levels/pool.coffee @@ -12,9 +12,8 @@ module.exports = size: [11,11,11] help: "$scale(1.5)mission:\nget to the exit!" player: - coordinates: [5,10,5] - nostatus: 0 - orientation: rotx90 + coordinates: [5,9,6] + orientation: ZdownY exits: [ name: "exit" active: 1 diff --git a/coffee/levels/regal.coffee b/coffee/levels/regal.coffee index c1de20d..0da3362 100644 --- a/coffee/levels/regal.coffee +++ b/coffee/levels/regal.coffee @@ -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 = name: "regal" scheme: "bronze" size: [7,3,9] help: "$scale(1.5)mission:\nactivate the exit!" - player: position: [0,0,0] + player: + coordinates: [3,2,4] + orientation: XdownY exits: [ name: "exit" active: 0 diff --git a/coffee/levels/rings.coffee b/coffee/levels/rings.coffee index a3f1f76..6f675d1 100644 --- a/coffee/levels/rings.coffee +++ b/coffee/levels/rings.coffee @@ -15,7 +15,9 @@ module.exports = to get to the exit, use the stones """ - player: position: [0,-1,0] + player: + coordinates: [4,4,2] + orientation: minusXupZ exits: [ name: "exit" active: 1 diff --git a/coffee/levels/spiral.coffee b/coffee/levels/spiral.coffee index f0290d7..6c5e277 100644 --- a/coffee/levels/spiral.coffee +++ b/coffee/levels/spiral.coffee @@ -12,8 +12,8 @@ module.exports = size: [5,25,5] help: "Down the Rabbit Hole" player: - coordinates: [3,1,3] - nostatus: 0 + coordinates: [0,20,2] + orientation: minusYupX exits: [ name: "exit" active: 0 diff --git a/coffee/levels/stones.coffee b/coffee/levels/stones.coffee index 6967091..2d2e18e 100644 --- a/coffee/levels/stones.coffee +++ b/coffee/levels/stones.coffee @@ -12,8 +12,8 @@ module.exports = while moving """ player: - position: [0,-1,-1] - orientation: rotx90.mul roty180 + coordinates: [4,5,3] + orientation: ZupX exits: [ name: "exit" active: 1 diff --git a/coffee/levels/towers.coffee b/coffee/levels/towers.coffee index 2becd39..9f76c19 100644 --- a/coffee/levels/towers.coffee +++ b/coffee/levels/towers.coffee @@ -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 = name: "towers" + design: 'Ben "mrthoughtful" Griffin' scheme: "metal" size: [9,9,15] help: "$scale(1.5)mission:\nget to the exit!\n\nto get to the exit,\nmove the stones" player: - coordinates: [4,5,0] - orientation: rotx90 + coordinates: [4,5,3] + orientation: ZdownX exits: [ name: "exit" active: 1 diff --git a/coffee/levels/walls.coffee b/coffee/levels/walls.coffee index c956125..529adf0 100644 --- a/coffee/levels/walls.coffee +++ b/coffee/levels/walls.coffee @@ -20,7 +20,8 @@ module.exports = the central wall """ player: - coordinates: [0,0,2] + coordinates: [0,4,2] + orientation: minusXdownY exits: [ name: "exit" active: 1 diff --git a/coffee/scheme.coffee b/coffee/scheme.coffee index 3b94423..816455f 100644 --- a/coffee/scheme.coffee +++ b/coffee/scheme.coffee @@ -292,19 +292,19 @@ module.exports = blue: plate: - color: rgb 0.1, 0.1, 0.6 + color: rgb 0.3, 0.3, 1 bulb: color: rgb 0.6, 0.6, 1 stone: - color: rgb 0, 0, 0.5 - opacity: 0.6 + color: rgb 0, 0, 0.7 + opacity: 0.6 switch: - color: rgb 0, 0, 0.6, 0.8 + color: rgb 0, 0, 0.6 bomb: - color: rgb 0.2, 0.2, 0.9 - opacity: 0.8 + color: rgb 0, 0, 1 + opacity: 0.8 gate: - color: rgb 0, 0.2, 1 + color: rgb 0, 0, 1 player: color: rgb 0, 0, 0.7 tire: @@ -318,11 +318,11 @@ module.exports = bright: rgb 0.7, 0.8, 1 dark: rgb 0, 0, 0.6 gear: - color: rgb 0.1, 0.1, 0.9 + color: rgb 0, 0, 0.9 wire: - color: rgb 0.1, 0.1, 0.9 + color: rgb 0, 0, 0.9 glow: - color: rgb 1, 0.5, 0 + color: rgb 1, 1, 1 # 000 000 00000000 000 000 0000000 000 000 # 000 000 000 000 000 000 000 000 0 000 diff --git a/coffee/world.coffee b/coffee/world.coffee index 41ab89d..d3326be 100644 --- a/coffee/world.coffee +++ b/coffee/world.coffee @@ -244,6 +244,7 @@ class World extends Actor @player = new Player # log "player_dict", player_dict @player.setOrientation @dict.player.orientation ? rotx90 + @player.camera.setOrientation @player.orientation if @dict.player.position? @addObjectAtPos @player, @decenter @dict.player.position