mutant
This commit is contained in:
parent
e0677dc82c
commit
7ee7b680c7
|
@ -6,6 +6,7 @@
|
|||
# 000 000 00000000 000 000 0000000
|
||||
|
||||
module.exports =
|
||||
Mutant: require './mutant'
|
||||
Gear: require './gear'
|
||||
Stone: require './stone'
|
||||
Wire: require './wire'
|
||||
|
|
|
@ -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"]
|
||||
|
||||
|
|
|
@ -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
|
||||
|
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
|
||||
{
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue
Block a user