This commit is contained in:
monsterkodi 2016-08-24 02:12:32 +02:00
parent 85ecf428ce
commit 1bca591dcf
21 changed files with 124 additions and 119 deletions

View File

@ -22,7 +22,7 @@ class Camera extends Matrix
@fov = opt?.fov ? 90 @fov = opt?.fov ? 90
@near = opt?.near ? 0.01 @near = opt?.near ? 0.01
@eye_distance = @near @eye_distance = @near
@far = opt?.far ? 20 @far = opt?.far ? 30
@mode = Camera.BEHIND @mode = Camera.BEHIND
@aspect = opt.aspect ? -1 @aspect = opt.aspect ? -1
@dist = 10 @dist = 10

View File

@ -23,14 +23,14 @@ class Cell
removeObject: (object) -> removeObject: (object) ->
# log "cell.removeObject #{object.name}", @objects.length # log "cell.removeObject #{object.name}", @objects.length
for o in @objects for o in @objects
o.cellMateLeft object if o != object o?.cellMateLeft object if o != object
_.remove @objects, (o) -> o == object or o.object == object _.remove @objects, (o) -> o == object or o.object == object
# log "cell.removeObject #{object.name}", @objects.length # log "cell.removeObject #{object.name}", @objects.length
addObject: (object) -> addObject: (object) ->
# log "cell.addObject #{object.name}" # log "cell.addObject #{object.name}"
for o in @objects for o in @objects
o.newCellMate object o?.newCellMate object
@objects.push object @objects.push object
module.exports = Cell module.exports = Cell

View File

@ -46,8 +46,8 @@ class Item extends Actor
getPos: -> new Pos @current_position getPos: -> new Pos @current_position
setPos: (x,y,z) -> setPos: (x,y,z) ->
log "item.setPos #{@name} #{x} #{y} #{z}" # log "item.setPos #{@name} #{x} #{y} #{z}"
@setPosition newPos x,y,z @setPosition new Pos x,y,z
setOrientation: (q) -> setOrientation: (q) ->
@current_orientation = @orientation = new Quaternion q @current_orientation = @orientation = new Quaternion q

View File

@ -10,34 +10,33 @@ class Levels
@dict = {} @dict = {}
@list = [ @list = [
# "test", # "test",
"start",
# --- introduction # --- introduction
"steps", # "steps",
"start", # "start",
"blocks", # "blocks",
"move", # "move",
"electro", # "electro",
"elevate", # "elevate",
"throw", # "throw",
# --- easy # # --- easy
"gold", # "gold",
"jump", # "jump",
"escape", # "escape",
"gears", # "gears",
"gamma", # "gamma",
"cube", # "cube",
"switch", # "switch",
"borg", # # "borg",
"mini", # "mini",
"bombs", # "bombs",
"sandbox", # "sandbox",
"energy", # "energy",
"maze", # "maze",
"love", # "love",
# --- medium # --- medium
"towers", # "towers",
"edge", # "edge",
"random", # "random",
"plate", "plate",
"nice", "nice",
"entropy", "entropy",

View File

@ -21,7 +21,8 @@ module.exports =
the color of a stone has no meaning. the color of a stone has no meaning.
""" """
player: player:
coordinates: [1,6,2] coordinates: [4,4,0]
orientation: minusXupZ
exits: [ exits: [
name: "exit" name: "exit"
active: 1 active: 1

View File

@ -16,7 +16,9 @@ module.exports =
to get to the exit, to get to the exit,
use the bombs use the bombs
""" """
player: position: [0,-4,0] player:
coordinates: [4,0,4]
orientation: XupY
exits: [ exits: [
name: "exit" name: "exit"

View File

@ -1,7 +1,13 @@
# level design by Michael Abel
# 00000000 0000000 0000000 00000000
# 000 000 000 000 000
# 0000000 000 000 000 0000 0000000
# 000 000 000 000 000 000
# 00000000 0000000 0000000 00000000
module.exports = module.exports =
name: "edge" name: "edge"
design: "Michael Abel"
scheme: "candy" scheme: "candy"
size: [7,7,7] size: [7,7,7]
help: "$scale(1.5)mission:\nget to the exit!" help: "$scale(1.5)mission:\nget to the exit!"
@ -16,8 +22,7 @@ module.exports =
] ]
create: -> create: ->
s=world.size s=world.size
Stone = require './stone' {Stone} = require '../items'
# for (i,j,l) in [ (m,n,o) for m in range(3) for n in range(3) for o in range(3)]
for i in [0...3] for i in [0...3]
for j in [0...3] for j in [0...3]
for l in [0...3] for l in [0...3]

View File

@ -20,8 +20,8 @@ module.exports =
with the motor with the motor
""" """
player: player:
coordinates: [2,0,4] coordinates: [2,3,5]
orientation: rotz180 orientation: minusXupZ
nostatus: 0 nostatus: 0
exits: [ exits: [
name: "exit" name: "exit"

View File

@ -24,7 +24,9 @@ module.exports =
the bombs will detonate the bombs will detonate
if you shoot them if you shoot them
""" """
player: position: [3,-2,0] player:
coordinates: [8,0,3]
orientation: XupY
exits: [ exits: [
name: "exit" name: "exit"
active: 0 active: 0

View File

@ -32,7 +32,7 @@ module.exports =
# for (i,j,l) in [ (m,n,o) for m in range(s.x) for n in range(s.y) for o in range(s.z)] # for (i,j,l) in [ (m,n,o) for m in range(s.x) for n in range(s.y) for o in range(s.z)]
for i in [0...s.x] for i in [0...s.x]
for j in [0...s.y] for j in [0...s.y]
for o in [0...s.z] for l in [0...s.z]
if Math.pow(-1, i+j+l)==1 and not (d<=i<=s.x-d-1 and d<=j<=s.y-d-1 and d<=l<=s.z-d-1) if Math.pow(-1, i+j+l)==1 and not (d<=i<=s.x-d-1 and d<=j<=s.y-d-1 and d<=l<=s.z-d-1)
world.addObjectAtPos(new Stone(color:[0,0.8,0.2],opacity:0.8, slippery:true), i,j,l) world.addObjectAtPos(new Stone(color:[0,0.8,0.2],opacity:0.8, slippery:true), i,j,l)

View File

@ -24,8 +24,8 @@ module.exports =
move the stones move the stones
""" """
player: player:
position: [0,0,0] coordinates: [3,8,4]
orientation: rotx180 orientation: YupX
exits: [ exits: [
name: "exit" name: "exit"
active: 0 active: 0

View File

@ -16,7 +16,9 @@ module.exports =
move the stones to reach it move the stones to reach it
""" """
player: player:
position: [0,-4,0] coordinates: [1,0,0]
orientation: minusYupZ
exits: [ exits: [
name: "exit" name: "exit"
active: 1 active: 1

View File

@ -19,8 +19,8 @@ module.exports =
if you move into its direction if you move into its direction
""" """
player: player:
position: [0,0,5] coordinates: [3,6,4]
orientation: rotx270 orientation: minusZdownY
exits: [ exits: [
name: "exit" name: "exit"
active: 1 active: 1

View File

@ -4,8 +4,8 @@ module.exports =
size: [13,13,13] size: [13,13,13]
help: "$scale(1.5)mission:\nget to the exit!" help: "$scale(1.5)mission:\nget to the exit!"
player: player:
position: [0,1,-4] coordinates: [6,4,2]
orientation: rot0 orientation: minusZupY
exits: [ exits: [
name: "peace" name: "peace"
active: 1 active: 1

View File

@ -18,7 +18,7 @@ module.exports =
to shoot, press "$key(shoot)" to shoot, press "$key(shoot)"
""" """
player: player:
coordinates: [3,3,5] coordinates: [3,3,2]
orientation: rotx90 orientation: rotx90
nostatus: 0 nostatus: 0
exits: [ exits: [

View File

@ -23,13 +23,12 @@ module.exports =
] ]
create: -> create: ->
world.addObjectAtPos 'new Stone(color:[0.8,0.8,0.3],slippery:true', world.decenter(0,0,0) {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)], 1 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 'Bomb', world.decenter 0,1,-4 world.addObjectAtPos 'Bomb', world.decenter 0,1,-4
world.addObjectAtPos 'Bomb', world.decenter 0,-1,-4 world.addObjectAtPos 'Bomb', world.decenter 0,-1,-4
world.addObjectAtPos 'Bomb', world.decenter 1,0,-4 world.addObjectAtPos 'Bomb', world.decenter 1,0,-4
world.addObjectAtPos 'Bomb', world.decenter -1,0,-4 world.addObjectAtPos 'Bomb', world.decenter -1,0,-4
world.addObjectAtPos 'Bomb', world.decenter 0,0,-2 world.addObjectAtPos 'Bomb', world.decenter 0,0,-2

View File

@ -17,8 +17,8 @@ module.exports =
jump and try jump and try
""" """
player: player:
coordinates: [1,3,2] coordinates: [0,10,1]
nostatus: 0 orientation: minusZupX
exits: [ exits: [
name: "exit" name: "exit"
active: 1 active: 1
@ -34,8 +34,6 @@ module.exports =
world.addObjectAtPos('Wall', 19,18,2) world.addObjectAtPos('Wall', 19,18,2)
world.addObjectAtPos('Wall', 19,2,18) world.addObjectAtPos('Wall', 19,2,18)
world.addObjectAtPos('Wall', 19,18,18) world.addObjectAtPos('Wall', 19,18,18)
world.addObjectAtPos('Light', 0,0,0)
world.addObjectAtPos('Light', 20,20,20)
world.addObjectAtPos('Stone', 3,2,6) world.addObjectAtPos('Stone', 3,2,6)
world.addObjectAtPos('Stone', 5,2,6) world.addObjectAtPos('Stone', 5,2,6)
world.addObjectAtPos('Stone', 12,4,6) world.addObjectAtPos('Stone', 12,4,6)

View File

@ -27,12 +27,12 @@ module.exports =
the bomb will detonate if you shoot it the bomb will detonate if you shoot it
""" """
player: player:
coordinates: [3,0,3] coordinates: [3,4,3]
nostatus: 0 orientation: minusZdownY
exits: [ exits: [
name: "exit" name: "exit"
active: 0 active: 0
position: [0,-1,0] position: [0,-1,0]
] ]
create: -> create: ->

View File

@ -150,11 +150,6 @@ class Quaternion
length: -> Math.sqrt @w*@w + @x*@x + @y*@y + @z*@z length: -> Math.sqrt @w*@w + @x*@x + @y*@y + @z*@z
eql: (q) -> @w==q.w and @x=q.x and @y==q.y and @z==q.z eql: (q) -> @w==q.w and @x=q.x and @y==q.y and @z==q.z
# Quaternion & operator += ( float f ) { w += f; return(*this); }
# Quaternion & operator -= ( float f ) { w -= f; return(*this); }
# Quaternion & operator *= ( float f ) { w *= f; x *= f; y *= f; z *= f; return(*this); }
# Quaternion & operator /= ( float f ) { w /= f; x /= f; y /= f; z /= f; return(*this); }
mul: (quatOrScalar) -> mul: (quatOrScalar) ->
if quatOrScalar instanceof Quaternion if quatOrScalar instanceof Quaternion
quat = quatOrScalar quat = quatOrScalar
@ -263,40 +258,40 @@ class Quaternion
@minusZdownX = @rot_90_Z @minusZdownX = @rot_90_Z
@minusZdownY = @rot_180_Z @minusZdownY = @rot_180_Z
@rot_0.name = '@rot_0' @rot_0.name = 'rot_0'
@rot_90_X.name = '@rot_90_X' @rot_90_X.name = 'rot_90_X'
@rot_90_Y.name = '@rot_90_Y' @rot_90_Y.name = 'rot_90_Y'
@rot_90_Z.name = '@rot_90_Z' @rot_90_Z.name = 'rot_90_Z'
@rot_180_X.name = '@rot_180_X' @rot_180_X.name = 'rot_180_X'
@rot_180_Y.name = '@rot_180_Y' @rot_180_Y.name = 'rot_180_Y'
@rot_180_Z.name = '@rot_180_Z' @rot_180_Z.name = 'rot_180_Z'
@rot_270_X.name = '@rot_270_X' @rot_270_X.name = 'rot_270_X'
@rot_270_Y.name = '@rot_270_Y' @rot_270_Y.name = 'rot_270_Y'
@rot_270_Z.name = '@rot_270_Z' @rot_270_Z.name = 'rot_270_Z'
@XupY.name = '@XupY' @XupY.name = 'XupY'
@XupZ.name = '@XupZ' @XupZ.name = 'XupZ'
@XdownY.name = '@XdownY' @XdownY.name = 'XdownY'
@XdownZ.name = '@XdownZ' @XdownZ.name = 'XdownZ'
@YupX.name = '@YupX' @YupX.name = 'YupX'
@YupZ.name = '@YupZ' @YupZ.name = 'YupZ'
@YdownX.name = '@YdownX' @YdownX.name = 'YdownX'
@YdownZ.name = '@YdownZ' @YdownZ.name = 'YdownZ'
@ZupX.name = '@ZupX' @ZupX.name = 'ZupX'
@ZupY.name = '@ZupY' @ZupY.name = 'ZupY'
@ZdownX.name = '@ZdownX' @ZdownX.name = 'ZdownX'
@ZdownY.name = '@ZdownY' @ZdownY.name = 'ZdownY'
@minusXupY.name = '@minusXupY' @minusXupY.name = 'minusXupY'
@minusXupZ.name = '@minusXupZ' @minusXupZ.name = 'minusXupZ'
@minusXdownY.name = '@minusXdownY' @minusXdownY.name = 'minusXdownY'
@minusXdownZ.name = '@minusXdownZ' @minusXdownZ.name = 'minusXdownZ'
@minusYupX.name = '@minusYupX' @minusYupX.name = 'minusYupX'
@minusYupZ.name = '@minusYupZ' @minusYupZ.name = 'minusYupZ'
@minusYdownX.name = '@minusYdownX' @minusYdownX.name = 'minusYdownX'
@minusYdownZ.name = '@minusYdownZ' @minusYdownZ.name = 'minusYdownZ'
@minusZupX.name = '@minusZupX' @minusZupX.name = 'minusZupX'
@minusZupY.name = '@minusZupY' @minusZupY.name = 'minusZupY'
@minusZdownX.name = '@minusZdownX' @minusZdownX.name = 'minusZdownX'
@minusZdownY.name = '@minusZdownY' @minusZdownY.name = 'minusZdownY'
module.exports = Quaternion module.exports = Quaternion

View File

@ -175,8 +175,8 @@ module.exports =
candy: candy:
plate: plate:
color: rgb 0.8, 0, 0.9 color: rgb 0.8, 0, 0.9
bulb: bulb:
color: rgb 0, 0, 0 color: rgb 1, 1, 1
text: text:
color: rgb 0.7, 0, 0.7 color: rgb 0.7, 0, 0.7
bright: rgb 1, 0, 1 bright: rgb 1, 0, 1
@ -294,7 +294,7 @@ module.exports =
plate: plate:
color: rgb 0.1, 0.1, 0.6 color: rgb 0.1, 0.1, 0.6
bulb: bulb:
color: rgb 0.1, 0.1, 0.1 color: rgb 0.6, 0.6, 1
stone: stone:
color: rgb 0, 0, 0.5 color: rgb 0, 0, 0.5
opacity: 0.6 opacity: 0.6
@ -334,16 +334,18 @@ module.exports =
plate: plate:
color: rgb 0.9, 0.9, 0 color: rgb 0.9, 0.9, 0
bulb: bulb:
color: rgb 0, 0, 0 color: rgb 1, 1, 1
glow:
color: rgb 1, 1, 1
bomb: bomb:
color: rgb 0.75, 0.75, 0 color: rgb 0.75, 0.75, 0
stone: stone:
color: rgb 0.8, 0.85, 0 color: rgb 0.8, 0.85, 0
opacity: 0.6 opacity: 0.6
switch: switch:
color: rgb 0.8, 0.8, 0 color: rgb 0.8, 0.8, 0
gate: gate:
color: rgb 1, 1, 0, 0.8 color: rgb 1, 1, 0
player: player:
color: rgb 0.7, 0.7, 0 color: rgb 0.7, 0.7, 0
tire: tire:
@ -356,8 +358,6 @@ module.exports =
color: rgb 0.7, 0.5, 0 color: rgb 0.7, 0.5, 0
wire: wire:
color: rgb 1, 1, 0 color: rgb 1, 1, 0
glow:
color: rgb 0, 0, 1
text: text:
color: rgb 0.7, 0.7, 0 color: rgb 0.7, 0.7, 0
bright: rgb 1, 1, 0 bright: rgb 1, 1, 0
@ -373,7 +373,7 @@ module.exports =
plate: plate:
color: rgb 0.1, 0.6, 0.1 color: rgb 0.1, 0.6, 0.1
bulb: bulb:
color: rgb 0, 0, 0 color: rgb 0.3, 1, 0.3
stone: stone:
color: rgb 0, 0.5, 0 color: rgb 0, 0.5, 0
switch: switch:
@ -448,12 +448,12 @@ module.exports =
crazy: crazy:
raster: raster:
color: rgb 0.84, 0.22, 0.20 color: rgb 0.84, 0.22, 0.20
bulb: bulb:
color: rgb 0, 0, 0 color: rgb 0, 0, 0
stone: stone:
color: rgb 1, 1, 1 color: rgb 1, 1, 1
stone: 0.2 stone: 0.2
switch: switch:
color: rgb 0.9, 1, 0.9 color: rgb 0.9, 1, 0.9
gate: gate:
@ -490,7 +490,7 @@ module.exports =
plate: plate:
color: rgb 0.36, 0.45, 0.30 color: rgb 0.36, 0.45, 0.30
bulb: bulb:
color: rgb 0, 0, 0 color: rgb 0.8, 0.8, 0.8
stone: stone:
color: rgb 0.36, 0.45, 0.30 color: rgb 0.36, 0.45, 0.30
opacity: 0.7 opacity: 0.7

View File

@ -37,6 +37,7 @@ now = require 'performance-now'
{ {
Wire, Wire,
Gear, Gear,
Stone,
MotorGear, MotorGear,
MotorCylinder, MotorCylinder,
Face} = require './items' Face} = require './items'
@ -173,7 +174,6 @@ class World extends Actor
# 0000000 000 000 00000000 000 000 000 00000000 # 0000000 000 000 00000000 000 000 000 00000000
create: (worldDict={}) -> # creates the world from a level name or a dictionary create: (worldDict={}) -> # creates the world from a level name or a dictionary
# log "world.create", worldDict # log "world.create", worldDict
if worldDict if worldDict
@ -185,10 +185,10 @@ class World extends Actor
@dict = worldDict @dict = worldDict
@level_index = World.levels.list.indexOf @level_name @level_index = World.levels.list.indexOf @level_name
log "World.create #{@level_index} #{@level_name}" log "World.create #{@level_index} ---------------------- #{@level_name}"
@creating = true
# ............................................................ appearance
@setSize @dict["size"] # this removes all objects @setSize @dict["size"] # this removes all objects
@applyScheme @dict.scheme ? 'default' @applyScheme @dict.scheme ? 'default'
@ -250,7 +250,9 @@ class World extends Actor
else if @dict.player.coordinates? else if @dict.player.coordinates?
@addObjectAtPos @player, new Pos @dict.player.coordinates @addObjectAtPos @player, new Pos @dict.player.coordinates
@player.camera.setPosition new Vector 0,0,0 # @player.camera.setPosition new Vector 0,0,0
@player.camera.setPosition @player.currentPos()
@creating = false
restart: () -> @create @dict restart: () -> @create @dict
@ -878,7 +880,7 @@ class World extends Actor
for light in @lights for light in @lights
lignt.display() lignt.display()
playSound: (sound, pos, time) -> Sound.play sound, pos, time playSound: (sound, pos, time) -> Sound.play sound, pos, time if not @creating
# 000 000 00000000 000 000 # 000 000 00000000 000 000
# 000 000 000 000 000 # 000 000 000 000 000