mutant
This commit is contained in:
parent
e0677dc82c
commit
7ee7b680c7
|
@ -6,6 +6,7 @@
|
||||||
# 000 000 00000000 000 000 0000000
|
# 000 000 00000000 000 000 0000000
|
||||||
|
|
||||||
module.exports =
|
module.exports =
|
||||||
|
Mutant: require './mutant'
|
||||||
Gear: require './gear'
|
Gear: require './gear'
|
||||||
Stone: require './stone'
|
Stone: require './stone'
|
||||||
Wire: require './wire'
|
Wire: require './wire'
|
||||||
|
|
|
@ -10,12 +10,14 @@ class Levels
|
||||||
@dict = {}
|
@dict = {}
|
||||||
@list = [
|
@list = [
|
||||||
# "test",
|
# "test",
|
||||||
# intro
|
# --- introduction
|
||||||
# "steps",
|
# "steps",
|
||||||
# "start",
|
# "start",
|
||||||
#"move", "electro", "elevate",
|
# "move",
|
||||||
|
# "electro",
|
||||||
|
# "elevate",
|
||||||
# "throw",
|
# "throw",
|
||||||
# easy
|
# --- easy
|
||||||
# "gold",
|
# "gold",
|
||||||
# "jump",
|
# "jump",
|
||||||
# "escape",
|
# "escape",
|
||||||
|
@ -31,15 +33,20 @@ class Levels
|
||||||
# "energy",
|
# "energy",
|
||||||
# "maze",
|
# "maze",
|
||||||
# "love",
|
# "love",
|
||||||
# medium
|
# --- medium
|
||||||
# "towers", "edge", "random", "plate", "nice", "entropy",
|
# "towers",
|
||||||
# owen hay's levels (TODO: sort in)
|
# "edge",
|
||||||
|
# "random",
|
||||||
|
# "plate",
|
||||||
|
# "nice",
|
||||||
|
# "entropy",
|
||||||
|
# --- owen hay's levels (TODO: sort in)
|
||||||
# "grasp",
|
# "grasp",
|
||||||
# "fallen",
|
# "fallen",
|
||||||
# "cheese",
|
# "cheese",
|
||||||
# "invisimaze",
|
# "invisimaze",
|
||||||
# "spiral",
|
# "spiral",
|
||||||
# difficult
|
# --- difficult
|
||||||
# "slick",
|
# "slick",
|
||||||
# "bridge",
|
# "bridge",
|
||||||
# "flower",
|
# "flower",
|
||||||
|
@ -48,21 +55,22 @@ class Levels
|
||||||
# "grid",
|
# "grid",
|
||||||
# "rings",
|
# "rings",
|
||||||
# "core",
|
# "core",
|
||||||
# "browanze",
|
# "bronze",
|
||||||
# "pool",
|
# "pool",
|
||||||
# tough
|
# --- tough
|
||||||
# "hidden",
|
# "hidden",
|
||||||
# "church",
|
# "church",
|
||||||
# "strange",
|
# "strange",
|
||||||
# "mesh",
|
# "mesh",
|
||||||
# "columns",
|
# "columns",
|
||||||
# "machine",
|
# "machine",
|
||||||
# very hard
|
# --- very hard
|
||||||
# "neutron",
|
# "neutron",
|
||||||
# "captured",
|
# "captured",
|
||||||
# "circuit",
|
# "circuit",
|
||||||
# "regal",
|
# "regal",
|
||||||
"conductor", "evil",
|
# "conductor",
|
||||||
|
# "evil",
|
||||||
# outro
|
# outro
|
||||||
"mutants"]
|
"mutants"]
|
||||||
|
|
||||||
|
|
|
@ -39,40 +39,40 @@ module.exports =
|
||||||
|
|
||||||
{Generator, MotorCylinder, MotorGear, Face} = require '../items'
|
{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+2, 0, z
|
||||||
world.addObjectAtPos('Wall', world.decenter( sx/2-1, 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+4, 0, z
|
||||||
world.addObjectAtPos('Wall', world.decenter( sx/2-3, 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+2
|
||||||
world.addObjectAtPos('Wall', world.decenter(x, 0, sz/2-1))
|
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+4
|
||||||
world.addObjectAtPos('Wall', world.decenter(x, 0, sz/2-3))
|
world.addObjectAtPos 'Wall', world.decenter x, 0, sz/2-3
|
||||||
|
|
||||||
|
|
||||||
world.addObjectAtPos( new Generator(Face.Y), world.decenter(0,0,-4))
|
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(-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,-2,-2
|
||||||
world.addObjectAtPos('WireStone', world.decenter(0,-1,-2))
|
world.addObjectAtPos 'WireStone', world.decenter 0,-1,-2
|
||||||
world.addObjectAtPos( new MotorGear(Face.Y), world.decenter(0,0,-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 new MotorCylinder(Face.Y), world.decenter 0,1,-2
|
||||||
|
|
||||||
world.addObjectAtPos('Bomb', world.decenter(0, 2,-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(-1, 0,-2))
|
world.addObjectAtPos 'Bomb', world.decenter -1, 0,-2
|
||||||
|
|
||||||
world.removeObject(world.getOccupantAtPos(world.decenter(0, 0, 3)))
|
# world.removeObject world.getOccupantAtPos world.decenter 0, 0, 3
|
||||||
world.addObjectAtPos('WireStone', world.decenter(0,0,3))
|
world.addObjectAtPos 'WireStone', world.decenter 0,0,3
|
||||||
|
|
57
coffee/mutant.coffee
Normal file
57
coffee/mutant.coffee
Normal file
|
@ -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
|
|
@ -6,7 +6,7 @@
|
||||||
# 00 00 0000000 000 000 0000000 0000000
|
# 00 00 0000000 000 000 0000000 0000000
|
||||||
{
|
{
|
||||||
absMin,
|
absMin,
|
||||||
randrange,
|
randInt,
|
||||||
clamp,
|
clamp,
|
||||||
first,
|
first,
|
||||||
last} = require "/Users/kodi/s/ko/js/tools/tools"
|
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
|
# adds number objects of type at random positions to the world
|
||||||
object_set = 0
|
object_set = 0
|
||||||
while not object_set # hack alert!
|
while not object_set # hack alert!
|
||||||
random_pos = Pos randrange(@size.x),
|
random_pos = new Pos randInt(@size.x), randInt(@size.y), randInt(@size.z)
|
||||||
randrange(@size.y),
|
|
||||||
randrange(@size.z)
|
|
||||||
if not object.isSpaceEgoistic() or @isUnoccupiedPos(random_pos)
|
if not object.isSpaceEgoistic() or @isUnoccupiedPos(random_pos)
|
||||||
@addObjectAtPos object, random_pos
|
@addObjectAtPos object, random_pos
|
||||||
object_set = 1
|
object_set = 1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user