diff --git a/coffee/action.coffee b/coffee/action.coffee index 752e758..e1006f7 100644 --- a/coffee/action.coffee +++ b/coffee/action.coffee @@ -45,7 +45,7 @@ class Action i ?= -1 m ?= Action.ONCE d ?= 0 - log "newAction #{i} #{n} #{d} #{m}" + # log "Action.constructor #{i} #{n} #{d} #{m}" @object = o @name = n @id = i @@ -62,7 +62,7 @@ class Action @deleted = true perform: () -> - # log "action.perform #{@name} action? #{@object.performAction?} #{@object.name}" + # log "Action.perform #{@name} action? #{@object.performAction?} #{@object.name}" if @name == 'push' if @object.performAction? @object.performAction @ else if _.isFunction @object diff --git a/coffee/bomb.coffee b/coffee/bomb.coffee index edc5e93..70f7a4b 100644 --- a/coffee/bomb.coffee +++ b/coffee/bomb.coffee @@ -20,8 +20,8 @@ class Bomb extends Pushable @size = 0.55 @splitted = false - geom = new THREE.DodecahedronGeometry @size - geom2 = new THREE.DodecahedronGeometry @size + geom = new THREE.DodecahedronGeometry 1 + geom2 = new THREE.DodecahedronGeometry 1 geom2.rotateX Vector.DEG2RAD 90 geom.merge geom2 @@ -34,6 +34,7 @@ class Bomb extends Pushable shininess: 20 @mesh = new THREE.Mesh geom, @mat + @updateMesh() super @addEventWithName 'explode' diff --git a/coffee/item.coffee b/coffee/item.coffee index 6777969..a09e5ac 100644 --- a/coffee/item.coffee +++ b/coffee/item.coffee @@ -40,19 +40,18 @@ class Item extends Actor setPosition: (x,y,z) -> @position = new Vector x,y,z - @current_position = new Vector x,y,z - @mesh?.position.copy @position + @setCurrentPosition @position getPos: -> new Pos @current_position - setPos: (x,y,z) -> - p = new Pos x,y,z - @position = @current_position = new Vector p + setPos: (x,y,z) -> @setPosition new Pos x,y,z setOrientation: (q) -> @current_orientation = @orientation = new Quaternion q - # log "item.setOrientation:", @orientation - setCurrentPosition: (p) -> @current_position = p + setCurrentPosition: (p) -> + @current_position = new Vector p + @mesh?.position.copy @current_position + setCurrentOrientation: (q) -> @current_orientation = q module.exports = Item \ No newline at end of file diff --git a/coffee/levels.coffee b/coffee/levels.coffee index 65de015..eaab60e 100644 --- a/coffee/levels.coffee +++ b/coffee/levels.coffee @@ -23,9 +23,9 @@ class Levels # "cube", # "switch", # "borg", - # "mini", + "mini", # "blocks", - "bombs", + # "bombs", # "sandbox", # "energy", # "maze", diff --git a/coffee/levels/grasp.coffee b/coffee/levels/grasp.coffee index 552a1f6..f7d044f 100644 --- a/coffee/levels/grasp.coffee +++ b/coffee/levels/grasp.coffee @@ -1,7 +1,13 @@ -# level design by Owen Hay + +# 0000000 00000000 0000000 0000000 00000000 +# 000 000 000 000 000 000 000 000 +# 000 0000 0000000 000000000 0000000 00000000 +# 000 000 000 000 000 000 000 000 +# 0000000 000 000 000 000 0000000 000 module.exports = name: "grasp" + design: "Owen Hay" scheme: "blue_scheme" intro: "grasp" size: [11,11,11] @@ -39,7 +45,8 @@ module.exports = world.addObjectAtPos('KikiStone', s.x/2+2, s.y/2, 4) world.addObjectAtPos('KikiStone', s.x/2-2, s.y/2, 4) - exit_switch = KikiSwitch() - exit_switch.getEventWithName("switched").addAction(continuous(() -> world.toggle("exit"))) - world.addObjectAtPos(exit_switch, s.x/2, s.y/2, 0) + Switch = require '../switch' + exit_switch = new Switch + exit_switch.getEventWithName("switched").addAction continuous -> world.toggle "exit" + world.addObjectAtPos exit_switch, s.x/2, s.y/2, 0 \ No newline at end of file diff --git a/coffee/pushable.coffee b/coffee/pushable.coffee index b0c6e54..d8fc138 100644 --- a/coffee/pushable.coffee +++ b/coffee/pushable.coffee @@ -43,23 +43,19 @@ class Pushable extends Item initAction: (action) -> switch action.id when Action.PUSH, Action.FALL - # log 'Pushable.initAction FALL direction:', @direction world.objectWillMoveToPos @, @position.plus(@direction), action.getDuration() performAction: (action) -> - # log "Pushable.performAction action #{action.name}" switch action.id when Action.PUSH, Action.FALL @setCurrentPosition @position.plus @direction.mul action.getRelativeTime() finishAction: (action) -> - # log "Pushable.finishAction #{action.name}" switch action.id when Action.PUSH, Action.FALL @move_action = null targetPos = @current_position.round() world.objectMoved @, @position, targetPos - log "Pushable.finishAction setPosition:", targetPos @setPosition targetPos actionFinished: (action) -> diff --git a/coffee/timer.coffee b/coffee/timer.coffee index e982af5..02317c0 100644 --- a/coffee/timer.coffee +++ b/coffee/timer.coffee @@ -21,8 +21,8 @@ class Timer # log "Timer.removeActionsOfObject" @event.removeActionsOfObject o - @addAction: (a) -> - log "Timer.addAction #{a.name}" + @addAction: (a) -> + # log "Timer.addAction #{a.name} duration: #{a.duration}" @event.addAction a @removeAction: (a) -> diff --git a/coffee/world.coffee b/coffee/world.coffee index 08cd75a..6c5f8e5 100644 --- a/coffee/world.coffee +++ b/coffee/world.coffee @@ -61,7 +61,7 @@ class World extends Actor super - @noRotations = false + @noRotations = true @screenSize = new Size @view.clientWidth, @view.clientHeight # log "view @screenSize:", @screenSize @@ -365,7 +365,7 @@ class World extends Actor pos = new Pos x, y, z object = @newObject object @setObjectAtPos object, pos - log "addObjectAtPos #{object.name}", pos + # log "addObjectAtPos #{object.name}", pos @addObject object addObjectLine: (object, sx,sy,sz, ex,ey,ez) ->