From a2a9ad7aa3c14a4c7d813286032ab198255b5df0 Mon Sep 17 00:00:00 2001 From: monsterkodi Date: Thu, 25 Aug 2016 02:01:47 +0200 Subject: [PATCH] misc --- coffee/levels.coffee | 3 +- coffee/levels/church.coffee | 2 +- coffee/levels/invisimaze.coffee | 131 -------------------------------- coffee/levels/plate.coffee | 7 +- coffee/scheme.coffee | 17 +++-- 5 files changed, 15 insertions(+), 145 deletions(-) delete mode 100644 coffee/levels/invisimaze.coffee diff --git a/coffee/levels.coffee b/coffee/levels.coffee index f17ccb3..e1b4a95 100644 --- a/coffee/levels.coffee +++ b/coffee/levels.coffee @@ -10,7 +10,7 @@ class Levels @dict = {} @list = [ # "test", - "grid", + "invisimaze", # --- introduction "steps", # ok "start", # ok @@ -58,7 +58,6 @@ class Levels "grasp", "fallen", "cheese", - "invisimaze", "spiral", # --- tough "hidden", diff --git a/coffee/levels/church.coffee b/coffee/levels/church.coffee index 5622d72..c6f2f84 100644 --- a/coffee/levels/church.coffee +++ b/coffee/levels/church.coffee @@ -7,7 +7,7 @@ module.exports = name: "church" - scheme: "yellow" + scheme: "bronze" size: [5,7,5] help: """ $scale(1.5)mission: diff --git a/coffee/levels/invisimaze.coffee b/coffee/levels/invisimaze.coffee deleted file mode 100644 index c676cb8..0000000 --- a/coffee/levels/invisimaze.coffee +++ /dev/null @@ -1,131 +0,0 @@ - -# 000 000 000 000 000 000 0000000 000 00 00 0000000 0000000 00000000 -# 000 0000 000 000 000 000 000 000 000 000 000 000 000 000 -# 000 000 0 000 000 000 000 0000000 000 000000000 000000000 000 0000000 -# 000 000 0000 000 000 000 000 000 0 000 000 000 000 000 -# 000 000 000 0 000 0000000 000 000 000 000 000 0000000 00000000 - -module.exports = - name: "invisimaze" - design: 'Owen Hay' - scheme: "yellow" - size: [9,5,5] - help: """ - blindly fumbling through the maze - - the switches move every time you play - there is only one way out! - """ - player: - coordinates: [3,3,0] - orientation: YupZ - exits: [ - name: "exit1" - active: 0 - position: [-4,0,0] - , - name: "exit2" - active: 0 - position: [4,0,0] - world: () -> outro() - ] - create: -> - - s = world.size - Switch = require '../switch' - - switched = (swtch) -> - world.switch_counter += swtch.active and 1 or -1 - exit = world.getObjectWithName "exit" - exit.setActive world.switch_counter == 5 - - switchBoth = () -> - world.toggle("exit1") - world.toggle("exit2") - - #randomly assign the switches to different locations - tup_array = [[0,0,0], [2,1,-2], [-2,-2,0], [-1,2,1], [-2,-2,-1], [1,-1,2]] - - i0 = tup_array[0] - i1 = tup_array[1] - i2 = tup_array[2] - i3 = tup_array[3] - i4 = tup_array[4] - i5 = tup_array[5] - - exit_switch = new Switch - exit_switch.getEventWithName("switched").addAction world.continuous -> switchBoth() - world.addObjectAtPos exit_switch, world.decenter(i0) - - exit2_switch = new Switch - exit2_switch.getEventWithName("switched").addAction world.continuous -> world.toggle "exit2" - world.addObjectAtPos exit2_switch, world.decenter(i1) - - exit3_switch = new Switch - exit3_switch.getEventWithName("switched").addAction world.continuous -> world.toggle "exit1" - world.addObjectAtPos exit3_switch, world.decenter(i2) - - exit4_switch = new Switch - exit4_switch.getEventWithName("switched").addAction world.continuous -> world.toggle "exit1" - world.addObjectAtPos exit4_switch, world.decenter(i3) - - exit5_switch = new Switch - exit5_switch.getEventWithName("switched").addAction world.continuous -> world.toggle "exit1" - world.addObjectAtPos exit5_switch, world.decenter(i4) - - # Invisimaze - for y in [0, 1] - world.addObjectLine('Stone', 4, y, 2, 4, y, 5) - world.addObjectLine('Stone', 5, y, 2, 7, y, 2) - - world.addObjectPoly 'Stone', [world.decenter(-2, 0, -2), world.decenter(-2, 0, 2), world.decenter(2, 0, 2), world.decenter(2, 0, -2)] - world.addObjectPoly 'Stone', [[2, 4, 2], [2, 4, 4], [4, 4, 4], [4, 4, 2]] - - world.addObjectAtPos 'Stone', 2, 3, 2 - world.addObjectAtPos 'Stone', 6, 3, 1 - world.addObjectAtPos 'Stone', 6, 3, 3 - world.addObjectAtPos 'Stone', 2, 1, 1 - world.addObjectAtPos 'Stone', 3, 0, 1 - world.addObjectAtPos 'Stone', 2, 1, 2 - world.addObjectAtPos 'Stone', 2, 0, 2 - world.addObjectAtPos 'Stone', 4, 2, 3 - world.addObjectAtPos 'Stone', 5, 2, 2 - world.addObjectAtPos 'Stone', 5, 2, 1 - world.addObjectAtPos 'Stone', 4, 2, 1 - world.addObjectAtPos 'Stone', 3, 2, 2 - world.addObjectAtPos 'Stone', 3, 2, 3 - world.addObjectAtPos 'Stone', 5, 3, 0 - - world.addObjectAtPos 'Stone', 6, 4, 0 - - #the bombLock - world.addObjectAtPos 'Stone', 7, 1, 2 - world.addObjectAtPos 'Stone', 7, 1, 3 - world.addObjectAtPos 'Stone', 7, 3, 2 - world.addObjectAtPos 'Stone', 7, 2, 1 - world.addObjectAtPos 'Stone', 7, 2, 2 - world.addObjectAtPos 'Bomb', 7, 2, 2 - - # Exit 1 is blocked!!! - - # Walls - # for y in [-4,] - y = -4 - for x in [1, -1] - world.addObjectPoly 'Wall', [world.decenter(y, -x, -x), world.decenter(y, -x, x), world.decenter(y, x, x), world.decenter(y, x, -x)] - # for y in [-3] - y = -3 - for x in [2, -2] - world.addObjectPoly 'Wall', [world.decenter(y, -x, -x), world.decenter(y, -x, x), world.decenter(y, x, x), world.decenter(y, x, -x)] - - # for y in [4,] - y = 4 - for x in [1, -1] - world.addObjectPoly 'Wall', [world.decenter(y, -x, -x), world.decenter(y, -x, x), world.decenter(y, x, x), world.decenter(y, x, -x)] - - # for y in [3] - y = 3 - for x in [2, -2] - world.addObjectPoly 'Wall', [world.decenter(y, -x, -x), world.decenter(y, -x, x), world.decenter(y, x, x), world.decenter(y, x, -x)] - - \ No newline at end of file diff --git a/coffee/levels/plate.coffee b/coffee/levels/plate.coffee index f4ceef9..cc10fd9 100644 --- a/coffee/levels/plate.coffee +++ b/coffee/levels/plate.coffee @@ -5,7 +5,7 @@ Vector = require '../lib/vector' module.exports = name: "plate" - scheme: "blue" + scheme: "crazy" size: [7,7,9] help: """ $scale(1.5)mission:\nget to the exit! @@ -23,9 +23,8 @@ module.exports = create: -> {Stone} = require '../items' - world.addObjectAtPos new Stone(color:[0.8,0.8,0.3], slippery:true), world.decenter 0,0,0 - world.addObjectPoly 'new Stone({color:[0.6,0.6,0.6], slippery:true})', [world.decenter(1,1,0), world.decenter(1,-1,0), world.decenter(-1,-1,0), world.decenter(-1,1,0)] -# 'new Stone(color:[0.6,0.6,0.6], slippery:true)' + world.addObjectAtPos 'Stone', world.decenter 0,0,0 + world.addObjectPoly 'new Stone({slippery:true})', [world.decenter(1,1,0), world.decenter(1,-1,0), world.decenter(-1,-1,0), world.decenter(-1,1,0)] world.addObjectAtPos 'Bomb', world.decenter 0,1,-4 world.addObjectAtPos 'Bomb', world.decenter 0,-1,-4 world.addObjectAtPos 'Bomb', world.decenter 1,0,-4 diff --git a/coffee/scheme.coffee b/coffee/scheme.coffee index 5ccf9fc..002c6f4 100644 --- a/coffee/scheme.coffee +++ b/coffee/scheme.coffee @@ -431,9 +431,9 @@ module.exports = raster: color: rgb 1,1,1 stone: - color: rgb 1,0,0 - specular: rgb 1,1,1 - shininess: 1000 + color: rgb 1,0,0 + specular: rgb 1,1,1 + shininess: 1000 wall: color: rgb 1,0,0 bulb: @@ -443,16 +443,19 @@ module.exports = gate: color: rgb 1, 0, 0 player: - color: rgb 0.6, 0.6, 0.6 + color: rgb 1,1,1 tire: - color: rgb 0.3, 0.3, 0.3 + color: rgb 1,1,1 + shininess: 100 mutant: color: rgb 0.8, 0.8, 0.8 mutantTire: color: rgb 0.7, 0.7, 0.7 bomb: - color: rgb 0.4, 0.4, 0.5 - opacity: 0.2 + color: rgb 1,1,1 + specular: rgb 1,1,1 + opacity: 0.2 + shininess: 2000 gear: color: rgb 0.2, 0.4, 0.5 wire: