From 7ee7b680c77abc29e46122c6f1dae409247ac1d1 Mon Sep 17 00:00:00 2001 From: monsterkodi Date: Mon, 22 Aug 2016 19:47:18 +0200 Subject: [PATCH] mutant --- coffee/items.coffee | 1 + coffee/levels.coffee | 30 +++++++++++++-------- coffee/levels/evil.coffee | 48 ++++++++++++++++----------------- coffee/mutant.coffee | 57 +++++++++++++++++++++++++++++++++++++++ coffee/world.coffee | 6 ++--- 5 files changed, 103 insertions(+), 39 deletions(-) create mode 100644 coffee/mutant.coffee diff --git a/coffee/items.coffee b/coffee/items.coffee index 38af313..b76bed2 100644 --- a/coffee/items.coffee +++ b/coffee/items.coffee @@ -6,6 +6,7 @@ # 000 000 00000000 000 000 0000000 module.exports = + Mutant: require './mutant' Gear: require './gear' Stone: require './stone' Wire: require './wire' diff --git a/coffee/levels.coffee b/coffee/levels.coffee index ec65c99..166b675 100644 --- a/coffee/levels.coffee +++ b/coffee/levels.coffee @@ -10,12 +10,14 @@ class Levels @dict = {} @list = [ # "test", - # intro + # --- introduction # "steps", # "start", - #"move", "electro", "elevate", + # "move", + # "electro", + # "elevate", # "throw", - # easy + # --- easy # "gold", # "jump", # "escape", @@ -31,15 +33,20 @@ class Levels # "energy", # "maze", # "love", - # medium - # "towers", "edge", "random", "plate", "nice", "entropy", - # owen hay's levels (TODO: sort in) + # --- medium + # "towers", + # "edge", + # "random", + # "plate", + # "nice", + # "entropy", + # --- owen hay's levels (TODO: sort in) # "grasp", # "fallen", # "cheese", # "invisimaze", # "spiral", - # difficult + # --- difficult # "slick", # "bridge", # "flower", @@ -48,21 +55,22 @@ class Levels # "grid", # "rings", # "core", - # "browanze", + # "bronze", # "pool", - # tough + # --- tough # "hidden", # "church", # "strange", # "mesh", # "columns", # "machine", - # very hard + # --- very hard # "neutron", # "captured", # "circuit", # "regal", - "conductor", "evil", + # "conductor", + # "evil", # outro "mutants"] diff --git a/coffee/levels/evil.coffee b/coffee/levels/evil.coffee index 30f74b8..8fa9c11 100644 --- a/coffee/levels/evil.coffee +++ b/coffee/levels/evil.coffee @@ -39,40 +39,40 @@ module.exports = {Generator, MotorCylinder, MotorGear, Face} = require '../items' - for z in range(-sz/2+2, sz/2) + for z in [-sz/2+2...sz/2] - world.addObjectAtPos('Wall', world.decenter(-sx/2+2, 0, z)) - world.addObjectAtPos('Wall', world.decenter( sx/2-1, 0, z)) + world.addObjectAtPos 'Wall', world.decenter -sx/2+2, 0, z + world.addObjectAtPos 'Wall', world.decenter sx/2-1, 0, z - for z in range(-sz/2+4, sz/2-2) + for z in [-sz/2+4...sz/2-2] - world.addObjectAtPos('Wall', world.decenter(-sx/2+4, 0, z)) - world.addObjectAtPos('Wall', world.decenter( sx/2-3, 0, z)) + world.addObjectAtPos 'Wall', world.decenter -sx/2+4, 0, z + world.addObjectAtPos 'Wall', world.decenter sx/2-3, 0, z - for x in range(-sx/2+3, sx/2-1) + for x in [-sx/2+3...sx/2-1] - world.addObjectAtPos('Wall', world.decenter(x, 0, -sz/2+2)) - world.addObjectAtPos('Wall', world.decenter(x, 0, sz/2-1)) + world.addObjectAtPos 'Wall', world.decenter x, 0, -sz/2+2 + world.addObjectAtPos 'Wall', world.decenter x, 0, sz/2-1 - for x in range(-sx/2+4, sx/2-2) + for x in [-sx/2+4...sx/2-2] - world.addObjectAtPos('Wall', world.decenter(x, 0, -sz/2+4)) - world.addObjectAtPos('Wall', world.decenter(x, 0, sz/2-3)) + world.addObjectAtPos 'Wall', world.decenter x, 0, -sz/2+4 + world.addObjectAtPos 'Wall', world.decenter x, 0, sz/2-3 - world.addObjectAtPos( new Generator(Face.Y), world.decenter(0,0,-4)) - world.addObjectAtPos('WireStone', world.decenter(4,0,0)) - world.addObjectAtPos('WireStone', world.decenter(-4,0,0)) + world.addObjectAtPos new Generator(Face.Y), world.decenter 0,0,-4 + world.addObjectAtPos 'WireStone', world.decenter 4,0,0 + world.addObjectAtPos 'WireStone', world.decenter -4,0,0 - world.addObjectAtPos('WireStone', world.decenter(0,-2,-2)) - world.addObjectAtPos('WireStone', world.decenter(0,-1,-2)) - world.addObjectAtPos( new MotorGear(Face.Y), world.decenter(0,0,-2)) - world.addObjectAtPos( new MotorCylinder(Face.Y), world.decenter(0,1,-2)) + world.addObjectAtPos 'WireStone', world.decenter 0,-2,-2 + world.addObjectAtPos 'WireStone', world.decenter 0,-1,-2 + world.addObjectAtPos new MotorGear(Face.Y), world.decenter 0,0,-2 + world.addObjectAtPos new MotorCylinder(Face.Y), world.decenter 0,1,-2 - world.addObjectAtPos('Bomb', world.decenter(0, 2,-2)) - world.addObjectAtPos('Bomb', world.decenter( 1, 0,-2)) - world.addObjectAtPos('Bomb', world.decenter(-1, 0,-2)) + world.addObjectAtPos 'Bomb', world.decenter 0, 2,-2 + world.addObjectAtPos 'Bomb', world.decenter 1, 0,-2 + world.addObjectAtPos 'Bomb', world.decenter -1, 0,-2 - world.removeObject(world.getOccupantAtPos(world.decenter(0, 0, 3))) - world.addObjectAtPos('WireStone', world.decenter(0,0,3)) + # world.removeObject world.getOccupantAtPos world.decenter 0, 0, 3 + world.addObjectAtPos 'WireStone', world.decenter 0,0,3 \ No newline at end of file diff --git a/coffee/mutant.coffee b/coffee/mutant.coffee new file mode 100644 index 0000000..720113a --- /dev/null +++ b/coffee/mutant.coffee @@ -0,0 +1,57 @@ +# 00 00 000 000 000000000 0000000 000 000 000000000 +# 000 000 000 000 000 000 000 0000 000 000 +# 000000000 000 000 000 000000000 000 0 000 000 +# 000 0 000 000 000 000 000 000 000 0000 000 +# 000 000 0000000 000 000 000 000 000 000 + +Bot = require './bot' +Bullet = require './bullet' +Timer = require './timer' +Action = require './action' + +class Mutant extends Bot + + constructor: () -> + super + @move = true + + die: -> + world.playSound 'BOT_DEATH' + super() + @getActionWithId(Action.FALL).duration = 40 + + moveBot: -> + changeOrientation = Math.random() < 0.3 + changeJumpMode = Math.random() < 0.3 + changeDirection = Math.random() < 0.3 + @push = Math.random() < 0.1 + fire = Math.random() < 0.5 + noop = Math.random() < 0.05 + + if changeDirection + @dir_sgn = Math.random() < 0.3 and -1 or 1 + + if changeJumpMode + if @jump or @dir_sgn > 0 # prevent jumping backwards + @jump = not @jump + + forwardPos = @position.plus @getDir() + + if fire && world.isValidPos forwardPos + Bullet.shootFromBot @ + + if changeOrientation + if Math.random() < 0.5 + @rotate_action = @getActionWithId Action.TURN_LEFT + else + @rotate_action = @getActionWithId Action.TURN_RIGHT + Timer.addAction @rotate_action + return + + if noop + @startTimedAction @getActionWithId(Action.NOOP), 666 + return + + super() + +module.exports = Mutant diff --git a/coffee/world.coffee b/coffee/world.coffee index 9fbba0c..9ba2d15 100644 --- a/coffee/world.coffee +++ b/coffee/world.coffee @@ -6,7 +6,7 @@ # 00 00 0000000 000 000 0000000 0000000 { absMin, -randrange, +randInt, clamp, first, last} = require "/Users/kodi/s/ko/js/tools/tools" @@ -396,9 +396,7 @@ class World extends Actor # adds number objects of type at random positions to the world object_set = 0 while not object_set # hack alert! - random_pos = Pos randrange(@size.x), - randrange(@size.y), - randrange(@size.z) + random_pos = new Pos randInt(@size.x), randInt(@size.y), randInt(@size.z) if not object.isSpaceEgoistic() or @isUnoccupiedPos(random_pos) @addObjectAtPos object, random_pos object_set = 1