levels
This commit is contained in:
parent
d2bae46701
commit
d4c28ee1d6
|
@ -4,11 +4,10 @@
|
|||
# 000 000 000 000 000 0 000 000 000
|
||||
# 0000000 0000000 000 000 0000000
|
||||
|
||||
log = require '/Users/kodi/s/ko/js/tools/log'
|
||||
|
||||
Pushable = require './pushable'
|
||||
Action = require './action'
|
||||
Vector = require './lib/vector'
|
||||
Material = require './material'
|
||||
|
||||
class Bomb extends Pushable
|
||||
|
||||
|
@ -25,15 +24,7 @@ class Bomb extends Pushable
|
|||
geom2.rotateX Vector.DEG2RAD 90
|
||||
geom.merge geom2
|
||||
|
||||
@mat = new THREE.MeshPhongMaterial
|
||||
color: 0xff0000
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.FlatShading
|
||||
transparent: true
|
||||
opacity: 0.7
|
||||
shininess: 20
|
||||
|
||||
@mesh = new THREE.Mesh geom, @mat
|
||||
@mesh = new THREE.Mesh geom, Material.bomb
|
||||
@updateMesh()
|
||||
super
|
||||
|
||||
|
|
|
@ -78,11 +78,11 @@ class Bot extends Pushable
|
|||
|
||||
Mutant = require './mutant'
|
||||
mutant = @ instanceof Mutant
|
||||
@mesh = new THREE.Mesh geom, mutant and Material.mutant.clone() or Material.bot
|
||||
@mesh = new THREE.Mesh geom, mutant and Material.mutant.clone() or Material.player
|
||||
|
||||
geom = new THREE.TorusGeometry 0.5-tireRadius, tireRadius, 16, 32
|
||||
geom.scale 1,1,2.5
|
||||
tireMat = mutant and Material.mutant_tire.clone() or Material.tire
|
||||
tireMat = mutant and Material.mutantTire.clone() or Material.tire
|
||||
@leftTire = new THREE.Mesh geom, tireMat
|
||||
@leftTire.position.set 0.35,0,0
|
||||
@leftTire.rotation.set 0, Vector.DEG2RAD(90), 0
|
||||
|
|
|
@ -4,10 +4,11 @@
|
|||
# 000 000 000 000 000 000
|
||||
# 0000000 000 000 000 00000000
|
||||
|
||||
Vector = require './lib/vector'
|
||||
Switch = require './switch'
|
||||
Light = require './light'
|
||||
Action = require './action'
|
||||
Vector = require './lib/vector'
|
||||
Switch = require './switch'
|
||||
Light = require './light'
|
||||
Action = require './action'
|
||||
Material = require './material'
|
||||
|
||||
class Gate extends Switch
|
||||
|
||||
|
@ -30,13 +31,8 @@ class Gate extends Switch
|
|||
createMesh: () ->
|
||||
torusRadius = 0.05
|
||||
t1 = new THREE.TorusBufferGeometry 0.5-torusRadius, torusRadius, 16, 32
|
||||
@mat = new THREE.MeshPhongMaterial
|
||||
color: 0xff0000
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.SmoothShading
|
||||
shininess: 5
|
||||
|
||||
@mesh = new THREE.Mesh t1, @mat
|
||||
@mesh = new THREE.Mesh t1, Material.gate
|
||||
@mesh.castShadow = true
|
||||
@mesh.receiveShadow = true
|
||||
|
||||
|
@ -45,7 +41,7 @@ class Gate extends Switch
|
|||
t2.rotateY Vector.DEG2RAD 90
|
||||
t3.rotateX Vector.DEG2RAD 90
|
||||
t2.merge t3
|
||||
@tors = new THREE.Mesh t2, @mat
|
||||
@tors = new THREE.Mesh t2, Material.gate
|
||||
@tors.castShadow = true
|
||||
@tors.receiveShadow = true
|
||||
@mesh.add @tors
|
||||
|
|
|
@ -10,7 +10,6 @@ class Levels
|
|||
@dict = {}
|
||||
@list = [
|
||||
# "test",
|
||||
"mini",
|
||||
# --- introduction
|
||||
"steps",
|
||||
"start",
|
||||
|
|
|
@ -2,9 +2,8 @@
|
|||
module.exports =
|
||||
name: "blocks"
|
||||
design: 'Michael Abel'
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [18,12,5]
|
||||
intro: "blocks"
|
||||
help: """
|
||||
you can grab
|
||||
most stones by pressing forward
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: 'bombs'
|
||||
scheme: "red_scheme"
|
||||
scheme: "red"
|
||||
size: [9,9,9]
|
||||
intro: "bombs"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: 'borg'
|
||||
disgn: 'Michael Abel'
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [9,9,9]
|
||||
intro: "borg"
|
||||
help: """
|
||||
Believe me,
|
||||
they are
|
||||
|
|
|
@ -6,22 +6,21 @@
|
|||
# 0000000 000 000 000 0000000 0000000 00000000
|
||||
|
||||
module.exports =
|
||||
name: 'bridge'
|
||||
scheme: "red_scheme"
|
||||
size: [9,9,5]
|
||||
intro: "bridge"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
to activate the exit,
|
||||
feed it with electricity:
|
||||
name: 'bridge'
|
||||
scheme: "red"
|
||||
size: [9,9,5]
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
to activate the exit,
|
||||
feed it with electricity:
|
||||
|
||||
connect the generator
|
||||
with the motor
|
||||
connect the generator
|
||||
with the motor
|
||||
|
||||
place a wire stone
|
||||
next to the exit
|
||||
"""
|
||||
place a wire stone
|
||||
next to the exit
|
||||
"""
|
||||
player:
|
||||
position: [0,-3,1]
|
||||
exits: [
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: 'bronze'
|
||||
scheme: "bronze_scheme"
|
||||
scheme: "bronze"
|
||||
size: [9,6,9]
|
||||
intro: "bronze"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -9,9 +9,8 @@ module.exports =
|
|||
|
||||
name: "captured"
|
||||
design: 'Niko Boehm'
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [9,9,9]
|
||||
intro: "captured"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "chain"
|
||||
scheme: "candy_scheme"
|
||||
scheme: "candy"
|
||||
size: [9,9,5]
|
||||
intro: "chain"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "cheese"
|
||||
design: "Owen Hay"
|
||||
scheme: "yellow_scheme"
|
||||
scheme: "yellow"
|
||||
size: [11,12,7]
|
||||
intro: "cheese"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit.
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "church"
|
||||
scheme: "yellow_scheme"
|
||||
scheme: "yellow"
|
||||
size: [5,7,5]
|
||||
intro: "church"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -9,9 +9,8 @@ module.exports =
|
|||
|
||||
name: "circuit"
|
||||
design: 'Michael Abel'
|
||||
scheme: "tron_scheme"
|
||||
scheme: "tron"
|
||||
size: [9,9,9]
|
||||
intro: "circuit"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "columns"
|
||||
scheme: "green_scheme"
|
||||
scheme: "green"
|
||||
size: [7,9,7]
|
||||
intro: "columns"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "conductor"
|
||||
deisgn: "Michael Abel"
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [11,9,11]
|
||||
intro: "conductor"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
module.exports =
|
||||
name: "core"
|
||||
design: "Michael Abel"
|
||||
scheme: "yellow_scheme"
|
||||
scheme: "yellow"
|
||||
size: [9,9,9]
|
||||
help: """
|
||||
reach the exit.
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "cube"
|
||||
deisgn: 'Michael Abel'
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [5,5,5]
|
||||
intro: "cube"
|
||||
help: "reach the exit!"
|
||||
player:
|
||||
coordinates: [2,0,0]
|
||||
|
|
|
@ -2,9 +2,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "edge"
|
||||
scheme: "candy_scheme"
|
||||
scheme: "candy"
|
||||
size: [7,7,7]
|
||||
intro: "edge"
|
||||
help: "$scale(1.5)mission:\nget to the exit!"
|
||||
player:
|
||||
coordinates: [3,0,0]
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "electro"
|
||||
scheme: "metal_scheme"
|
||||
scheme: "metal"
|
||||
size: [9,7,9]
|
||||
intro: "electro"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "elevate"
|
||||
scheme: "bronze_scheme"
|
||||
scheme: "bronze"
|
||||
size: [9,5,7]
|
||||
intro: "elevate"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
module.exports =
|
||||
name: "energy"
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [9,17,9]
|
||||
intro: "energy"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -9,9 +9,8 @@ module.exports =
|
|||
|
||||
name: "entropy"
|
||||
design: 'Michael Abel'
|
||||
scheme: "green_scheme"
|
||||
scheme: "green"
|
||||
size: [9,9,9]
|
||||
intro: "entropy"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "escape"
|
||||
scheme: "metal_scheme"
|
||||
scheme: "metal"
|
||||
size: [7,9,7]
|
||||
intro: "escape"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
try to escape!
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "evil"
|
||||
scheme: "red_scheme"
|
||||
scheme: "red"
|
||||
size: [13,5,13]
|
||||
intro: "evil"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "fallen"
|
||||
deisgn: 'Owen Hay'
|
||||
scheme: "blue_scheme"
|
||||
scheme: "blue"
|
||||
size: [13,15,13]
|
||||
intro: "fallen"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -3,9 +3,8 @@
|
|||
module.exports =
|
||||
|
||||
name: "flower"
|
||||
scheme: "metal_scheme"
|
||||
scheme: "metal"
|
||||
size: [7,7,11]
|
||||
intro: "flower"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -11,9 +11,8 @@
|
|||
module.exports =
|
||||
name: "gamma"
|
||||
design: 'Michael Abel'
|
||||
scheme: "tron_scheme"
|
||||
scheme: "tron"
|
||||
size: [10,10,10]
|
||||
intro: "gamma"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
module.exports =
|
||||
name: "gears"
|
||||
scheme: "blue_scheme"
|
||||
scheme: "blue"
|
||||
size: [9,9,9]
|
||||
intro: "gears"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "gold"
|
||||
scheme: "yellow_scheme"
|
||||
scheme: "yellow"
|
||||
size: [3,11,3]
|
||||
intro: "gold"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -8,8 +8,7 @@
|
|||
module.exports =
|
||||
name: "grasp"
|
||||
design: "Owen Hay"
|
||||
scheme: "blue_scheme"
|
||||
intro: "grasp"
|
||||
scheme: "blue"
|
||||
size: [11,11,11]
|
||||
help: """
|
||||
$scale(1.5)mission:activate the exit!
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
module.exports =
|
||||
name: "green"
|
||||
scheme: "green_scheme"
|
||||
scheme: "green"
|
||||
size: [13,5,13]
|
||||
intro: "green"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
module.exports =
|
||||
name: "grid"
|
||||
scheme: "candy_scheme"
|
||||
scheme: "candy"
|
||||
size: [9,9,9]
|
||||
intro: "grid"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "hidden"
|
||||
scheme: "metal_scheme"
|
||||
scheme: "metal"
|
||||
size: [9,9,9]
|
||||
intro: "hidden"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "invisimaze"
|
||||
design: 'Owen Hay'
|
||||
scheme: "yellow_scheme"
|
||||
scheme: "yellow"
|
||||
size: [9,5,5]
|
||||
intro: "invisimaze"
|
||||
help: """
|
||||
blindly fumbling through the maze
|
||||
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "jump"
|
||||
scheme: "red_scheme"
|
||||
scheme: "red"
|
||||
size: [7,7,13]
|
||||
intro: "jump"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
module.exports =
|
||||
name: "love"
|
||||
scheme: "red_scheme"
|
||||
scheme: "red"
|
||||
size: [13,13,13]
|
||||
intro: "love"
|
||||
help: "$scale(1.5)mission:\nget to the exit!"
|
||||
player:
|
||||
position: [0,1,-4]
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "machine"
|
||||
deisgn: 'Michael Abel'
|
||||
scheme: "tron_scheme"
|
||||
scheme: "tron"
|
||||
size: [5,5,9]
|
||||
intro: "machine"
|
||||
help: "$scale(1.5)mission:\nactivate the exit!"
|
||||
player:
|
||||
position: [0,0,0]
|
||||
|
|
|
@ -9,9 +9,8 @@ module.exports =
|
|||
|
||||
name: "maze"
|
||||
deisgn: 'Michael Abel'
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [4,4,4]
|
||||
intro: "maze"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "mesh"
|
||||
design: 'Michael Abel'
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [11,11,11]
|
||||
intro: "mesh"
|
||||
help: "$scale(1.5)mission:\nget to the exit!"
|
||||
player:
|
||||
coordinates: [0,0,5]
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "mini"
|
||||
design: 'Michael Abel'
|
||||
scheme: "tron_scheme"
|
||||
scheme: "tron"
|
||||
size: [5,5,7]
|
||||
intro: "mini"
|
||||
help: "$scale(1.5)mission:\nget to the exit!"
|
||||
player:
|
||||
coordinates: [2,4,4]
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
|
||||
module.exports =
|
||||
name: "move"
|
||||
scheme: "red_scheme"
|
||||
intro: "move"
|
||||
scheme: "red"
|
||||
size: [7,7,7]
|
||||
help: """
|
||||
$scale(1.5)mission: activate the exit!
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
module.exports =
|
||||
name: "mutants"
|
||||
scheme: "blue_scheme"
|
||||
scheme: "blue"
|
||||
size: [9,9,9]
|
||||
intro: "mutants"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
deactivate the mutants!
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
module.exports =
|
||||
name: "neutron"
|
||||
design: 'Michael Abel'
|
||||
scheme: "neutron_scheme"
|
||||
scheme: "neutron"
|
||||
size: [11,11,11]
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
|
|
|
@ -9,7 +9,7 @@ module.exports =
|
|||
|
||||
name: "nice"
|
||||
design: 'Michael Abel'
|
||||
scheme: "tron_scheme"
|
||||
scheme: "tron"
|
||||
size: [11,11,11]
|
||||
help: "$scale(1.5)mission:\nget to the exit!"
|
||||
player: position: [2,-1,0]
|
||||
|
|
|
@ -5,9 +5,8 @@ Vector = require '../lib/vector'
|
|||
|
||||
module.exports =
|
||||
name: "plate"
|
||||
scheme: "blue_scheme"
|
||||
scheme: "blue"
|
||||
size: [7,7,9]
|
||||
intro: "plate"
|
||||
help: """
|
||||
$scale(1.5)mission:\nget to the exit!
|
||||
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "pool"
|
||||
design: 'Michael Abel'
|
||||
scheme: "green_scheme"
|
||||
scheme: "green"
|
||||
size: [11,11,11]
|
||||
intro: "pool"
|
||||
help: "$scale(1.5)mission:\nget to the exit!"
|
||||
player:
|
||||
coordinates: [5,10,5]
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "random"
|
||||
design: 'Michael Abel'
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [21,21,21]
|
||||
intro: "random"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
module.exports =
|
||||
name: "regal"
|
||||
scheme: "bronze_scheme"
|
||||
scheme: "bronze"
|
||||
size: [7,3,9]
|
||||
intro: "regal"
|
||||
help: "$scale(1.5)mission:\nactivate the exit!"
|
||||
player: position: [0,0,0]
|
||||
exits: [
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "rings"
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [9,7,9]
|
||||
intro: "rings"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "sandbox"
|
||||
design: 'Michael Abel'
|
||||
scheme: "bronze_scheme"
|
||||
scheme: "bronze"
|
||||
size: [9,9,6]
|
||||
intro: "sandbox"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -9,9 +9,8 @@ module.exports =
|
|||
|
||||
name: "slick"
|
||||
design: 'Michael Abel'
|
||||
scheme: "tron_scheme"
|
||||
scheme: "tron"
|
||||
size: [9,11,15]
|
||||
intro: "slick"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -8,8 +8,7 @@
|
|||
module.exports =
|
||||
name: "spiral"
|
||||
design: "Owen Hay"
|
||||
scheme: "zen_scheme"
|
||||
intro: "spiral"
|
||||
scheme: "zen"
|
||||
size: [5,25,5]
|
||||
help: "Down the Rabbit Hole"
|
||||
player:
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "start"
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [7,7,11]
|
||||
intro: "start"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "steps"
|
||||
scheme: "blue_scheme"
|
||||
# scheme: "blue"
|
||||
size: [7,7,13]
|
||||
intro: "steps"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
module.exports =
|
||||
name: "stones"
|
||||
scheme: "blue_scheme"
|
||||
scheme: "blue"
|
||||
size: [11,11,12]
|
||||
intro: "stones"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
module.exports =
|
||||
name: "strange"
|
||||
deisgn: 'Michael Abel'
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [9,9,9]
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
|
|
|
@ -7,9 +7,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "switch"
|
||||
scheme: "yellow_scheme"
|
||||
scheme: "yellow"
|
||||
size: [7,7,7]
|
||||
intro: "switch"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
activate the exit!
|
||||
|
|
|
@ -9,9 +9,8 @@ module.exports =
|
|||
|
||||
name: "throw"
|
||||
design: 'Michael Abel'
|
||||
scheme: "tron_scheme"
|
||||
scheme: "tron"
|
||||
size: [5,7,7]
|
||||
intro: "throw"
|
||||
help: """
|
||||
"$scale(1.5)mission:
|
||||
get to the exit!
|
||||
|
|
|
@ -2,9 +2,8 @@
|
|||
|
||||
module.exports =
|
||||
name: "towers"
|
||||
scheme: "metal_scheme"
|
||||
scheme: "metal"
|
||||
size: [9,9,15]
|
||||
intro: "towers"
|
||||
help: "$scale(1.5)mission:\nget to the exit!\n\nto get to the exit,\nmove the stones"
|
||||
player:
|
||||
coordinates: [4,5,0]
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
module.exports =
|
||||
name: "walls"
|
||||
design: 'Michael Abel'
|
||||
scheme: "default_scheme"
|
||||
scheme: "default"
|
||||
size: [7,5,5]
|
||||
intro: "walls"
|
||||
help: """
|
||||
$scale(1.5)mission:
|
||||
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
# 000 000 000 000 000 000 000
|
||||
# 0000000 000 0000000 000 000 000
|
||||
|
||||
Item = require './item'
|
||||
Item = require './item'
|
||||
Material = require './material'
|
||||
|
||||
class Light extends Item
|
||||
|
||||
|
@ -21,21 +22,13 @@ class Light extends Item
|
|||
@point.shadow.mapSize = new THREE.Vector2 2048, 2048
|
||||
@point.shadow.bias = 0.01
|
||||
geom = new THREE.SphereGeometry 0.3, 16, 16
|
||||
mat = new THREE.MeshLambertMaterial
|
||||
color: 0xffffff
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.SmoothShading
|
||||
transparent: true
|
||||
opacity: 0.7
|
||||
emissive: 0xffff00
|
||||
emissiveIntensity: 0.9
|
||||
|
||||
# world.scene.add new THREE.CameraHelper @point.shadow.camera if @shadow
|
||||
|
||||
@point.shadow.camera.near = 0.1
|
||||
@point.shadow.camera.far = @radius*2
|
||||
|
||||
@mesh = new THREE.Mesh geom, mat
|
||||
@mesh = new THREE.Mesh geom, Material.bulb
|
||||
world.scene.add @point
|
||||
world.addLight @
|
||||
@setPosition opt.pos if opt?.pos?
|
||||
|
|
|
@ -7,7 +7,12 @@
|
|||
|
||||
module.exports =
|
||||
|
||||
bot: new THREE.MeshPhongMaterial
|
||||
glow: new THREE.SpriteMaterial
|
||||
map: new THREE.TextureLoader().load "#{__dirname}/../img/glow.png"
|
||||
color: 0xffff00
|
||||
id: 999
|
||||
|
||||
player: new THREE.MeshPhongMaterial
|
||||
color: 0x2222ff
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.SmoothShading
|
||||
|
@ -17,7 +22,7 @@ module.exports =
|
|||
|
||||
tire: new THREE.MeshPhongMaterial
|
||||
color: 0x000066
|
||||
specular: 0x222255
|
||||
# specular: 0x222255
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.FlatShading
|
||||
transparent: true
|
||||
|
@ -32,7 +37,7 @@ module.exports =
|
|||
opacity: 1
|
||||
shininess: 5
|
||||
|
||||
mutant_tire: new THREE.MeshPhongMaterial
|
||||
mutantTire: new THREE.MeshPhongMaterial
|
||||
color: 0x555555
|
||||
specular: 0x222222
|
||||
side: THREE.FrontSide
|
||||
|
@ -49,11 +54,6 @@ module.exports =
|
|||
shininess: 5
|
||||
depthWrite: false
|
||||
|
||||
glow: new THREE.SpriteMaterial
|
||||
map: new THREE.TextureLoader().load "#{__dirname}/../img/glow.png"
|
||||
color: 0xffff00
|
||||
id: 999
|
||||
|
||||
gear: new THREE.MeshPhongMaterial
|
||||
color: 0xff0000
|
||||
side: THREE.FrontSide
|
||||
|
@ -66,12 +66,41 @@ module.exports =
|
|||
shading: THREE.SmoothShading
|
||||
shininess: 40
|
||||
|
||||
wire_plate: new THREE.MeshPhongMaterial
|
||||
wirePlate: new THREE.MeshPhongMaterial
|
||||
color: 0x880000
|
||||
side: THREE.DoubleSide
|
||||
shading: THREE.SmoothShading
|
||||
shininess: 10
|
||||
|
||||
bulb: new THREE.MeshLambertMaterial
|
||||
color: 0xffffff
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.SmoothShading
|
||||
transparent: true
|
||||
opacity: 0.7
|
||||
emissive: 0xffff00
|
||||
emissiveIntensity: 0.9
|
||||
|
||||
bomb: new THREE.MeshPhongMaterial
|
||||
color: 0xff0000
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.FlatShading
|
||||
transparent: true
|
||||
opacity: 0.7
|
||||
shininess: 20
|
||||
|
||||
switch: new THREE.MeshPhongMaterial
|
||||
color: 0x0000ff
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.SmoothShading
|
||||
shininess: 5
|
||||
|
||||
gate: new THREE.MeshPhongMaterial
|
||||
color: 0xff0000
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.SmoothShading
|
||||
shininess: 5
|
||||
|
||||
raster: new THREE.MeshPhongMaterial
|
||||
color: 0x880000
|
||||
side: THREE.FrontSide
|
||||
|
|
|
@ -228,11 +228,16 @@ class Player extends Bot
|
|||
initAction: (action) ->
|
||||
# log "initAction #{action.id} #{action.name}"
|
||||
switch action.id
|
||||
# when Action.CLIMB_DOWN, Action.FORWARD then @addMoves 1
|
||||
when Action.TURN_LEFT, Action.TURN_RIGHT
|
||||
when Action.CLIMB_DOWN
|
||||
# @addMoves 1
|
||||
world.playSound 'BOT_CLIMB'
|
||||
when Action.FORWARD
|
||||
# @addMoves 1
|
||||
world.playSound 'BOT_MOVE'
|
||||
when Action.TURN_LEFT, Action.TURN_RIGHT
|
||||
world.playSound 'BOT_TURN'
|
||||
when Action.JUMP
|
||||
# @status.addMoves actionId == Action.JUMP and 1 or 2
|
||||
# @addMoves actionId == Action.JUMP and 1 or 2
|
||||
world.playSound 'BOT_JUMP'
|
||||
|
||||
super action
|
||||
|
|
570
coffee/scheme.coffee
Normal file
570
coffee/scheme.coffee
Normal file
|
@ -0,0 +1,570 @@
|
|||
|
||||
# 0000000 0000000 000 000 00000000 00 00 00000000
|
||||
# 000 000 000 000 000 000 000 000
|
||||
# 0000000 000 000000000 0000000 000000000 0000000
|
||||
# 000 000 000 000 000 000 0 000 000
|
||||
# 0000000 0000000 000 000 00000000 000 000 00000000
|
||||
|
||||
module.exports =
|
||||
|
||||
# 0000000 00000000 00000000 0000000 000 000 000 000000000
|
||||
# 000 000 000 000 000 000 000 000 000 000
|
||||
# 000 000 0000000 000000 000000000 000 000 000 000
|
||||
# 000 000 000 000 000 000 000 000 000 000
|
||||
# 0000000 00000000 000 000 000 0000000 0000000 000
|
||||
|
||||
default:
|
||||
raster:
|
||||
color: [0.5, 0, 0]
|
||||
plate:
|
||||
color: [0.5, 0, 0]
|
||||
wall:
|
||||
color: [0.4, 0, 0]
|
||||
bulb:
|
||||
color: [1, 1, 0]
|
||||
bomb:
|
||||
color: [0.5, 0, 0]
|
||||
stone:
|
||||
color: [0.5, 0.5, 0.5]
|
||||
switch:
|
||||
color: [0, 0, 0.5]
|
||||
gate:
|
||||
color: [1, 0.5, 0]
|
||||
player:
|
||||
color: [0.8, 0.4, 0]
|
||||
tire:
|
||||
color: [0.4, 0, 0]
|
||||
mutant:
|
||||
color: [0.5, 0, 0]
|
||||
mutantTire:
|
||||
color: [0, 0, 0.2]
|
||||
text:
|
||||
color: [0.8, 0.8, 0]
|
||||
bright: [1, 1, 0]
|
||||
dark: [0.6, 0.4, 0]
|
||||
gear:
|
||||
color: [0.1, 0.1, 0.9]
|
||||
valve:
|
||||
color: [0, 0, 0.5]
|
||||
wire:
|
||||
color: [0.1, 0.1, 0.9]
|
||||
glow:
|
||||
color: [1, 1, 0]
|
||||
|
||||
# 000000000 00000000 0000000 000 000
|
||||
# 000 000 000 000 000 0000 000
|
||||
# 000 0000000 000 000 000 0 000
|
||||
# 000 000 000 000 000 000 0000
|
||||
# 000 000 000 0000000 000 000
|
||||
|
||||
tron:
|
||||
raster:
|
||||
color: [0, 0, 0.3]
|
||||
plate:
|
||||
color: [0.05, 0.05]
|
||||
opacity: 0.2
|
||||
bulb:
|
||||
color: [0, 0, 1]
|
||||
bomb:
|
||||
color: [0.5, 0, 0]
|
||||
stone:
|
||||
color: [0, 0, 1]
|
||||
switch:
|
||||
color: [0, 0, 0.5]
|
||||
gate:
|
||||
color: [1, 1, 0]
|
||||
player:
|
||||
color: [0.5, 0.5, 0.5]
|
||||
tire:
|
||||
color: [0, 0, 0.5]
|
||||
mutant:
|
||||
color: [0.5, 0, 0]
|
||||
mutantTire:
|
||||
color: [0, 0, 0.2]
|
||||
text:
|
||||
color: [0.8, 0.8, 0]
|
||||
bright: [1, 1, 0]
|
||||
dark: [0.6, 0.4, 0]
|
||||
gear:
|
||||
color: [0.1, 0.1, 0.9]
|
||||
valve:
|
||||
color: [0, 0, 0.5]
|
||||
wire:
|
||||
color: [0.1, 0.1, 0.9]
|
||||
glow:
|
||||
color: [1, 1, 0]
|
||||
|
||||
# 000 000 00000000 000 000 000000000 00000000 0000000 000 000
|
||||
# 0000 000 000 000 000 000 000 000 000 000 0000 000
|
||||
# 000 0 000 0000000 000 000 000 0000000 000 000 000 0 000
|
||||
# 000 0000 000 000 000 000 000 000 000 000 000 0000
|
||||
# 000 000 00000000 0000000 000 000 000 0000000 000 000
|
||||
|
||||
neutron:
|
||||
raster:
|
||||
color: [0.13, 0.13, 0.13]
|
||||
plate:
|
||||
color: [0.5, 0.5, 0.5]
|
||||
bulb:
|
||||
color: [0, 0, 0]
|
||||
bomb:
|
||||
color: [0.5, 0, 0]
|
||||
stone:
|
||||
color: [0.5, 0.5, 0.5]
|
||||
opacity: 0.5
|
||||
switch:
|
||||
color: [0, 0, 0.5]
|
||||
gate:
|
||||
color: [1, 1, 0]
|
||||
player:
|
||||
color: [1, 0.5, 0]
|
||||
tire:
|
||||
color: [0.5, 0, 0]
|
||||
mutant:
|
||||
color: [0.5, 0, 0]
|
||||
mutantTire:
|
||||
color: [0, 0, 0.2]
|
||||
text:
|
||||
color: [0.8, 0.8, 0]
|
||||
bright: [1, 1, 0]
|
||||
dark: [0.6, 0.4, 0]
|
||||
gear:
|
||||
color: [1, 0, 0]
|
||||
valve:
|
||||
color: [0.7, 0, 0]
|
||||
wire:
|
||||
color: [0.1, 0.1, 0.9]
|
||||
glow:
|
||||
color: [1, 1, 0]
|
||||
|
||||
# 000000000 00000000 0000000 000000000
|
||||
# 000 000 000 000
|
||||
# 000 0000000 0000000 000
|
||||
# 000 000 000 000
|
||||
# 000 00000000 0000000 000
|
||||
|
||||
test:
|
||||
raster:
|
||||
color: [1, 1, 1]
|
||||
plate:
|
||||
color: [0.08, 0.08, 0.08]
|
||||
bulb:
|
||||
color: [0, 0, 0]
|
||||
bomb:
|
||||
color: [0.5, 0, 0]
|
||||
stone:
|
||||
color: [0.5, 0.5, 0.5]
|
||||
opacity: 0.5
|
||||
switch:
|
||||
color: [0, 0, 0.5, 0.8]
|
||||
gate:
|
||||
color: [1, 1, 0, 0.8]
|
||||
player:
|
||||
color: [1, 0.5, 0]
|
||||
tire:
|
||||
color: [0.5, 0, 0]
|
||||
mutant:
|
||||
color: [1, 0.5, 0]
|
||||
mutantTire:
|
||||
color: [0.5, 0, 0]
|
||||
text:
|
||||
color: [0.8, 0.8, 0]
|
||||
bright: [1, 1, 0]
|
||||
dark: [0.6, 0.4, 0]
|
||||
gear:
|
||||
color: [0.1, 0.1, 0.9]
|
||||
valve:
|
||||
color: [0, 0, 0.5]
|
||||
wire:
|
||||
color: [0.1, 0.1, 0.9]
|
||||
glow:
|
||||
color: [1, 1, 0]
|
||||
|
||||
# 0000000 0000000 000 000 0000000 000 000
|
||||
# 000 000 000 0000 000 000 000 000 000
|
||||
# 000 000000000 000 0 000 000 000 00000
|
||||
# 000 000 000 000 0000 000 000 000
|
||||
# 0000000 000 000 000 000 0000000 000
|
||||
|
||||
candy:
|
||||
raster:
|
||||
color: [0.35, 0, 0.35]
|
||||
plate:
|
||||
color: [0.8, 0, 0.9]
|
||||
bulb:
|
||||
color: [0, 0, 0]
|
||||
text:
|
||||
color: [0.7, 0, 0.7]
|
||||
bright: [1, 0, 1]
|
||||
dark: [0.4, 0, 0.4]
|
||||
bomb:
|
||||
color: [0.73, 0, 0.75]
|
||||
stone:
|
||||
color: [0.85, 0, 0.95]
|
||||
opacity: 0.6
|
||||
switch:
|
||||
color: [0.3, 0, 0.3]
|
||||
gate:
|
||||
color: [1, 0, 1, 0.8]
|
||||
player:
|
||||
color: [0.7, 0, 0.7]
|
||||
tire:
|
||||
color: [0.3, 0, 0.3]
|
||||
mutant:
|
||||
color: [0.3, 0, 0.3]
|
||||
mutantTire:
|
||||
color: [0.7, 0, 0.7]
|
||||
valve:
|
||||
color: [0.5, 0, 0.5]
|
||||
gear:
|
||||
color: [0.7, 0, 0.7]
|
||||
wire:
|
||||
color: [1, 0, 1]
|
||||
glow:
|
||||
color: [1, 1, 0]
|
||||
|
||||
# 0000000 00000000 0000000 000 000 0000000 00000000
|
||||
# 000 000 000 000 000 000 0000 000 000 000
|
||||
# 0000000 0000000 000 000 000 0 000 000 0000000
|
||||
# 000 000 000 000 000 000 000 0000 000 000
|
||||
# 0000000 000 000 0000000 000 000 0000000 00000000
|
||||
|
||||
bronze:
|
||||
raster:
|
||||
color: [0.25, 0.15, 0.05]
|
||||
plate:
|
||||
color: [0.8, 0.6, 0.2]
|
||||
bulb:
|
||||
color: [0.1, 0.1, 0]
|
||||
stone:
|
||||
color: [1, 0.8, 0.4]
|
||||
opacity: 0.8
|
||||
switch:
|
||||
color: [0.9, 0.7, 0.1]
|
||||
gate:
|
||||
color: [0.9, 0.7, 0.1]
|
||||
player:
|
||||
color: [0.8, 0.6, 0.3]
|
||||
tire:
|
||||
color: [0.5, 0.2, 0.1]
|
||||
mutant:
|
||||
color: [0.5, 0.2, 0.1]
|
||||
mutantTire:
|
||||
color: [0.3, 0.1, 0]
|
||||
gear:
|
||||
color: [0.7, 0.4, 0.1]
|
||||
valve:
|
||||
color: [0.5, 0.2, 0.1]
|
||||
wire:
|
||||
color: [0.7, 0.5, 0.3]
|
||||
glow:
|
||||
color: [1, 1, 0]
|
||||
bomb:
|
||||
color: [0.9, 0.7, 0.1]
|
||||
text:
|
||||
color: [0.7, 0.5, 0.1]
|
||||
bright: [0.9, 0.7, 0.15]
|
||||
dark: [0.6, 0.4, 0]
|
||||
|
||||
# 00000000 00000000 0000000
|
||||
# 000 000 000 000 000
|
||||
# 0000000 0000000 000 000
|
||||
# 000 000 000 000 000
|
||||
# 000 000 00000000 0000000
|
||||
|
||||
red:
|
||||
raster:
|
||||
color: [0.2, 0, 0]
|
||||
plate:
|
||||
color: [0.3, 0, 0]
|
||||
bulb:
|
||||
color: [0.1, 0.1, 0.1]
|
||||
bomb:
|
||||
color: [0.5, 0, 0]
|
||||
stone:
|
||||
color: [0.5, 0, 0]
|
||||
opacity: 0.6
|
||||
switch:
|
||||
color: [0.8, 0, 0]
|
||||
gate:
|
||||
color: [1, 0.2, 0]
|
||||
player:
|
||||
color: [0.7, 0, 0]
|
||||
tire:
|
||||
color: [0.3, 0, 0]
|
||||
mutant:
|
||||
color: [0.3, 0, 0]
|
||||
mutantTire:
|
||||
color: [0.7, 0, 0]
|
||||
valve:
|
||||
color: [0.5, 0.2, 0]
|
||||
gear:
|
||||
color: [1, 0.5, 0]
|
||||
wire:
|
||||
color: [0.5, 0, 0]
|
||||
text:
|
||||
color: [1, 0.5, 0]
|
||||
bright: [1, 0.8, 0]
|
||||
dark: [0.4, 0.2, 0]
|
||||
|
||||
# 0000000 000 000 000 00000000
|
||||
# 000 000 000 000 000 000
|
||||
# 0000000 000 000 000 0000000
|
||||
# 000 000 000 000 000 000
|
||||
# 0000000 0000000 0000000 00000000
|
||||
|
||||
blue:
|
||||
raster:
|
||||
color: [0, 0, 0.2]
|
||||
plate:
|
||||
color: [0.1, 0.1, 0.6]
|
||||
bulb:
|
||||
color: [0.1, 0.1, 0.1]
|
||||
stone:
|
||||
color: [0, 0, 0.5]
|
||||
opacity: 0.6
|
||||
switch:
|
||||
color: [0, 0, 0.6, 0.8]
|
||||
bomb:
|
||||
color: [0.2, 0.2, 0.9]
|
||||
opacity: 0.8
|
||||
gate:
|
||||
color: [0, 0.2, 1]
|
||||
player:
|
||||
color: [0, 0, 0.7]
|
||||
tire:
|
||||
color: [0, 0, 0.3]
|
||||
mutant:
|
||||
color: [0, 0, 0.3]
|
||||
mutantTire:
|
||||
color: [0, 0, 0.7]
|
||||
text:
|
||||
color: [0.2, 0.4, 0.8]
|
||||
bright: [0.7, 0.8, 1]
|
||||
dark: [0, 0, 0.6]
|
||||
gear:
|
||||
color: [0.1, 0.1, 0.9]
|
||||
valve:
|
||||
color: [0, 0, 0.5]
|
||||
wire:
|
||||
color: [0.1, 0.1, 0.9]
|
||||
glow:
|
||||
color: [1, 0.5, 0]
|
||||
|
||||
# 000 000 00000000 000 000 0000000 000 000
|
||||
# 000 000 000 000 000 000 000 000 0 000
|
||||
# 00000 0000000 000 000 000 000 000000000
|
||||
# 000 000 000 000 000 000 000 000
|
||||
# 000 00000000 0000000 0000000 0000000 00 00
|
||||
|
||||
yellow:
|
||||
raster:
|
||||
color: [0.34, 0.34, 0]
|
||||
plate:
|
||||
color: [0.9, 0.9, 0]
|
||||
bulb:
|
||||
color: [0, 0, 0]
|
||||
bomb:
|
||||
color: [0.75, 0.75, 0]
|
||||
stone:
|
||||
color: [0.8, 0.85, 0]
|
||||
opacity: 0.6
|
||||
switch:
|
||||
color: [0.8, 0.8, 0]
|
||||
gate:
|
||||
color: [1, 1, 0, 0.8]
|
||||
player:
|
||||
color: [0.7, 0.7, 0]
|
||||
tire:
|
||||
color: [0.3, 0.3, 0]
|
||||
mutant:
|
||||
color: [0.3, 0.3, 0]
|
||||
mutantTire:
|
||||
color: [0.7, 0.7, 0]
|
||||
valve:
|
||||
color: [0.5, 0.5, 0]
|
||||
gear:
|
||||
color: [0.7, 0.5, 0]
|
||||
wire:
|
||||
color: [1, 1, 0]
|
||||
glow:
|
||||
color: [0, 0, 1]
|
||||
text:
|
||||
color: [0.7, 0.7, 0]
|
||||
bright: [1, 1, 0]
|
||||
dark: [0.4, 0.4, 0]
|
||||
|
||||
# 0000000 00000000 00000000 00000000 000 000
|
||||
# 000 000 000 000 000 0000 000
|
||||
# 000 0000 0000000 0000000 0000000 000 0 000
|
||||
# 000 000 000 000 000 000 000 0000
|
||||
# 0000000 000 000 00000000 00000000 000 000
|
||||
|
||||
green:
|
||||
raster:
|
||||
color: [0, 0.2, 0]
|
||||
plate:
|
||||
color: [0.1, 0.6, 0.1]
|
||||
bulb:
|
||||
color: [0, 0, 0]
|
||||
stone:
|
||||
color: [0, 0.5, 0]
|
||||
switch:
|
||||
color: [0, 0.6, 0]
|
||||
bomb:
|
||||
color: [0, 0.2, 0]
|
||||
gate:
|
||||
color: [0, 0.5, 0]
|
||||
player:
|
||||
color: [0, 0.7, 0]
|
||||
tire:
|
||||
color: [0, 0.3, 0]
|
||||
mutant:
|
||||
color: [0, 0.3, 0]
|
||||
mutantTire:
|
||||
color: [0, 0.7, 0]
|
||||
text:
|
||||
color: [0, 0.4, 0]
|
||||
bright: [0, 0.6, 0]
|
||||
dark: [0, 0.2, 0]
|
||||
gear:
|
||||
color: [0, 0.2, 0]
|
||||
valve:
|
||||
color: [0, 0.5, 0]
|
||||
wire:
|
||||
color: [0.1, 0.9, 0]
|
||||
glow:
|
||||
color: [1, 1, 1]
|
||||
|
||||
# 00 00 00000000 000000000 0000000 000
|
||||
# 000 000 000 000 000 000 000
|
||||
# 000000000 0000000 000 000000000 000
|
||||
# 000 0 000 000 000 000 000 000
|
||||
# 000 000 00000000 000 000 000 0000000
|
||||
|
||||
metal:
|
||||
raster:
|
||||
color: [0.2, 0.2, 0.2]
|
||||
plate:
|
||||
color: [1, 1, 1]
|
||||
bulb:
|
||||
color: [0, 0, 0]
|
||||
stone:
|
||||
color: [1, 1, 1, 0.6]
|
||||
switch:
|
||||
color: [0.9, 1, 0.9]
|
||||
gate:
|
||||
color: [1, 1, 1, 0.8]
|
||||
player:
|
||||
color: [0.6, 0.6, 0.6]
|
||||
tire:
|
||||
color: [0.3, 0.3, 0.3]
|
||||
mutant:
|
||||
color: [0.8, 0.8, 0.8]
|
||||
mutantTire:
|
||||
color: [0.7, 0.7, 0.7]
|
||||
bomb:
|
||||
color: [0.4, 0.4, 0.5]
|
||||
opacity: 0.9
|
||||
gear:
|
||||
color: [0.2, 0.4, 0.5]
|
||||
valve:
|
||||
color: [0.4, 0.4, 0.5]
|
||||
wire:
|
||||
color: [1, 1, 1, 0.9]
|
||||
glow:
|
||||
color: [0, 0, 1]
|
||||
text:
|
||||
color: [0.2, 0.4, 0.5]
|
||||
bright: [0.3, 0.9, 1]
|
||||
dark: [0.1, 0.3, 0.4]
|
||||
|
||||
# 0000000 00000000 0000000 0000000 000 000
|
||||
# 000 000 000 000 000 000 000 000
|
||||
# 000 0000000 000000000 000 00000
|
||||
# 000 000 000 000 000 000 000
|
||||
# 0000000 000 000 000 000 0000000 000
|
||||
|
||||
crazy:
|
||||
raster:
|
||||
color: [0.84, 0.22, 0.20]
|
||||
plate:
|
||||
color: [0, 0.51, 0.82]
|
||||
bulb:
|
||||
color: [0, 0, 0]
|
||||
stone:
|
||||
color: [1, 1, 1]
|
||||
stone: 0.2
|
||||
switch:
|
||||
color: [0.9, 1, 0.9]
|
||||
gate:
|
||||
color: [1, 1, 1, 0.8]
|
||||
player:
|
||||
color: [0.6, 0.6, 0.6]
|
||||
tire:
|
||||
color: [0.3, 0.3, 0.3]
|
||||
mutant:
|
||||
color: [0.8, 0.8, 0.8]
|
||||
mutantTire:
|
||||
color: [0.7, 0.7, 0.7]
|
||||
bomb:
|
||||
color: [0.4, 0.4, 0.5]
|
||||
opacity: 0.2
|
||||
gear:
|
||||
color: [0.2, 0.4, 0.5]
|
||||
valve:
|
||||
color: [0.4, 0.4, 0.5]
|
||||
wire:
|
||||
color: [1, 1, 1]
|
||||
glow:
|
||||
color: [0, 0, 1]
|
||||
text:
|
||||
color: [0.2, 0.4, 0.5]
|
||||
bright: [0.3, 0.9, 1]
|
||||
dark: [0.1, 0.3, 0.4]
|
||||
|
||||
# 0000000 00000000 000 000
|
||||
# 000 000 0000 000
|
||||
# 000 0000000 000 0 000
|
||||
# 000 000 000 0000
|
||||
# 0000000 00000000 000 000
|
||||
|
||||
zen:
|
||||
raster:
|
||||
color: [0.75, 0.95, 0.64]
|
||||
plate:
|
||||
color: [0.36, 0.45, 0.30]
|
||||
bulb:
|
||||
color: [0, 0, 0]
|
||||
stone:
|
||||
color: [0.36, 0.45, 0.30]
|
||||
opacity: 0.7
|
||||
switch:
|
||||
color: [0.9, 1, 0.9, 0.8]
|
||||
gate:
|
||||
color: [1, 1, 1, 0.8]
|
||||
player:
|
||||
color: [0.6, 0.6, 0.6]
|
||||
tire:
|
||||
color: [0.3, 0.3, 0.3]
|
||||
mutant:
|
||||
color: [0.8, 0.8, 0.8]
|
||||
mutantTire:
|
||||
color: [0.7, 0.7, 0.7]
|
||||
bomb:
|
||||
color: [0.4, 0.4, 0.5]
|
||||
opacity: 0.9
|
||||
gear:
|
||||
color: [0.2, 0.4, 0.5]
|
||||
valve:
|
||||
color: [0.4, 0.4, 0.5]
|
||||
wire:
|
||||
color: [1, 1, 1, 0.9]
|
||||
glow:
|
||||
color: [0, 0, 1]
|
||||
text:
|
||||
color: [0.2, 0.4, 0.5]
|
||||
bright: [0.3, 0.9, 1]
|
||||
dark: [0.1, 0.3, 0.4]
|
||||
|
||||
|
|
@ -12,13 +12,12 @@ class Sound
|
|||
|
||||
@sounds = Object.create null
|
||||
@files =
|
||||
BOT_MOVE: file: "bot_move.wav", volume: 0.2
|
||||
BOT_MOVE: file: "bot_move.wav", volume: 0.1
|
||||
BOT_TURN: file: "bot_turn.wav", volume: 0.2
|
||||
BOT_CLIMB: file: "bot_climb.wav", volume: 0.2
|
||||
BOT_JUMP: file: "bot_jump.wav", volume: 0.7
|
||||
BOT_LAND: file: "bot_land.wav", volume: 0.7
|
||||
BOT_SPIKED: file: "bot_move.wav", volume: 1.0
|
||||
BOT_HEALTH_ALERT: file: "bot_health_alert.wav", volume: 1.0
|
||||
BOT_LAND: file: "bot_land.wav", volume: 0.5
|
||||
BOT_DEATH: file: "bot_death.wav", volume: 1.0
|
||||
BOT_NO_ENERGY: file: "bot_no_energy.wav", volume: 1.0
|
||||
BULLET_SHOT: file: "bullet_shot.wav", volume: 1.0
|
||||
BULLET_HIT_WALL: file: "bullet_hit_wall.wav", volume: 1.0
|
||||
BULLET_HIT_OBJECT: file: "bullet_hit_object.wav", volume: 1.0
|
||||
|
|
|
@ -10,6 +10,7 @@ Vector = require './lib/vector'
|
|||
Action = require './action'
|
||||
Light = require './light'
|
||||
Item = require './item'
|
||||
Material = require './material'
|
||||
|
||||
class Switch extends Item
|
||||
|
||||
|
@ -41,12 +42,7 @@ class Switch extends Item
|
|||
createMesh: () ->
|
||||
torusRadius = 0.05
|
||||
t1 = new THREE.TorusBufferGeometry 0.5-torusRadius, torusRadius, 16, 32
|
||||
@mat = new THREE.MeshPhongMaterial
|
||||
color: 0x0000ff
|
||||
side: THREE.FrontSide
|
||||
shading: THREE.SmoothShading
|
||||
shininess: 5
|
||||
@mesh = new THREE.Mesh t1, @mat
|
||||
@mesh = new THREE.Mesh t1, Material.switch
|
||||
@mesh.castShadow = true
|
||||
@mesh.receiveShadow = true
|
||||
|
||||
|
@ -55,7 +51,7 @@ class Switch extends Item
|
|||
t2.rotateY Vector.DEG2RAD 90
|
||||
# t3.rotateX Vector.DEG2RAD 90
|
||||
# t2.merge t3
|
||||
@tors = new THREE.Mesh t2, @mat
|
||||
@tors = new THREE.Mesh t2, Material.switch
|
||||
@tors.castShadow = true
|
||||
@tors.receiveShadow = true
|
||||
@mesh.add @tors
|
||||
|
|
|
@ -58,7 +58,7 @@ class Wire extends Item
|
|||
geom.merge plane
|
||||
|
||||
@wire = new THREE.Mesh geom, Material.wire
|
||||
@mesh = new THREE.Mesh Geom.wire(), Material.wire_plate
|
||||
@mesh = new THREE.Mesh Geom.wire(), Material.wirePlate
|
||||
@mesh.add @wire
|
||||
@mesh.receiveShadow = true
|
||||
@mesh.position.copy Face.normal(@face).mul -(0.5+o)
|
||||
|
|
|
@ -27,6 +27,7 @@ Action = require './action'
|
|||
TmpObject = require './tmpobject'
|
||||
Pushable = require './pushable'
|
||||
Material = require './material'
|
||||
Scheme = require './scheme'
|
||||
Quaternion = require './lib/quaternion'
|
||||
Vector = require './lib/vector'
|
||||
Pos = require './lib/pos'
|
||||
|
@ -183,10 +184,7 @@ class World extends Actor
|
|||
|
||||
# log "world size set", @size
|
||||
|
||||
# if "scheme" in @dict
|
||||
# @applyColorScheme eval(@dict["scheme"])
|
||||
# else
|
||||
# @applyColorScheme default_scheme
|
||||
@applyScheme @dict.scheme ? 'default'
|
||||
|
||||
# ............................................................ intro text
|
||||
# if "intro" in @dict
|
||||
|
@ -259,6 +257,22 @@ class World extends Actor
|
|||
# saves the current level status in highscore file
|
||||
# highscore.levelFinished world.level_name, Controller.player.getStatus().getMoves()
|
||||
|
||||
|
||||
# 0000000 0000000 000 000 00000000 00 00 00000000
|
||||
# 000 000 000 000 000 000 000 000
|
||||
# 0000000 000 000000000 0000000 000000000 0000000
|
||||
# 000 000 000 000 000 000 0 000 000
|
||||
# 0000000 0000000 000 000 00000000 000 000 00000000
|
||||
|
||||
applyScheme: (scheme) ->
|
||||
return if not Scheme[scheme]
|
||||
log "Scheme[#{scheme}]", Scheme[scheme]
|
||||
for k,v of Scheme[scheme]
|
||||
if Material[k]?
|
||||
if v.color
|
||||
c = v.color
|
||||
Material[k].color = new THREE.Color c[0], c[1], c[2]
|
||||
|
||||
# 000 000 0000000 000 000 000000000
|
||||
# 000 000 000 000 000 000
|
||||
# 000 000 000 0000 000000000 000
|
||||
|
|
BIN
sound/bot_climb.wav
Normal file
BIN
sound/bot_climb.wav
Normal file
Binary file not shown.
Binary file not shown.
BIN
sound/bot_turn.wav
Normal file
BIN
sound/bot_turn.wav
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user