From 85ecf428ce4497dfe939e392740a43babe3d7e5f Mon Sep 17 00:00:00 2001 From: monsterkodi Date: Wed, 24 Aug 2016 00:49:06 +0200 Subject: [PATCH] misc --- coffee/bot.coffee | 10 ++------ coffee/camera.coffee | 9 +++---- coffee/event.coffee | 15 ++++-------- coffee/item.coffee | 5 +++- coffee/levels.coffee | 1 + coffee/levels/move.coffee | 4 ++-- coffee/levels/start.coffee | 6 ++--- coffee/levels/steps.coffee | 2 +- coffee/lib/quaternion.coffee | 11 ++++----- coffee/player.coffee | 2 +- coffee/pushable.coffee | 46 ++++++++++++++++++++---------------- coffee/world.coffee | 25 ++++++++++++++++++++ 12 files changed, 78 insertions(+), 58 deletions(-) diff --git a/coffee/bot.coffee b/coffee/bot.coffee index fff6924..6155ba9 100644 --- a/coffee/bot.coffee +++ b/coffee/bot.coffee @@ -36,7 +36,6 @@ class Bot extends Pushable @jump = false @shoot = false @jump_once = false - @spiked = false @died = false @move_action = null @@ -162,7 +161,6 @@ class Bot extends Pushable @jump = false @shoot = false @jump_once = false - @spiked = false @died = false isFalling: -> @move_action and @move_action.id == Action.FALL @@ -362,12 +360,6 @@ class Bot extends Pushable actionFinished: (action) -> # log "bot.actionFinished #{action.name} #{action.id}" - if @spiked - log 'spiked!' - @move_action = null - @startTimedAction @getActionWithId(Action.NOOP), 0 - return - if action.id == Action.PUSH and not @direction.isZero() log 'super (Pushable) action!' super action @@ -427,6 +419,8 @@ class Bot extends Pushable else @dir_sgn = 1 @jump_once = false if action.id != Action.NOOP + log "bot.actionFinished '#{action.name}' position:", @position if action.id in [Action.FORWARD, Action.JUMP_FORWARD, Action.CLIMB_DOWN] + log "bot.actionFinished '#{action.name}' orientation:", @orientation.rounded().name if action.id in [Action.TURN_LEFT, Action.TURN_RIGHT, Action.CLIMB_UP] # keep action chain flowinwg in order to detect environment changes # @startTimedAction @getActionWithId(Action.NOOP), 0 diff --git a/coffee/camera.coffee b/coffee/camera.coffee index 3e718d0..117aa2e 100644 --- a/coffee/camera.coffee +++ b/coffee/camera.coffee @@ -6,10 +6,11 @@ # 0000000 000 000 000 000 00000000 000 000 000 000 { clamp -} = require '/Users/kodi/s/ko/js/tools/tools' -log = require '/Users/kodi/s/ko/js/tools/log' -Matrix = require './lib/matrix' -Vector = require './lib/vector' +} = require '/Users/kodi/s/ko/js/tools/tools' +log = require '/Users/kodi/s/ko/js/tools/log' +Matrix = require './lib/matrix' +Vector = require './lib/vector' +Quaternion = require './lib/quaternion' class Camera extends Matrix diff --git a/coffee/event.coffee b/coffee/event.coffee index f368091..a4c7bf3 100644 --- a/coffee/event.coffee +++ b/coffee/event.coffee @@ -23,7 +23,6 @@ class Event addAction: (action) -> if action? and not @hasAction action - # log "Event.addAction #{action.name}" return if world.noRotations and action.id == Action.ROTATE @actions.push action action.event = @ @@ -57,21 +56,15 @@ class Event triggerActions: () -> return if not @actions.length @time = world.getTime() - # log "event.triggerActions event name: #{@name} num actions: #{@actions.length}" if @name != 'timer' - save_actions = _.clone @actions - while save_actions.length - action = last save_actions - # log "event.triggerActions action: #{action.name}" if @name != 'timer' and action.name != 'noop' - action.performWithEvent @ - save_actions.pop() + actions = _.clone @actions + while actions.length + actions.pop().performWithEvent @ addFinishedAction: (action) -> - # log "Event.addFinishedAction #{action.name} #{@finished_actions.length}" @finished_actions.push action finishActions: () -> while @finished_actions.length - # log "Event.finishActions pop:#{@finished_actions.length}", last(@finished_actions).name @finished_actions.pop().finished() - + module.exports = Event diff --git a/coffee/item.coffee b/coffee/item.coffee index e7293f6..32538d0 100644 --- a/coffee/item.coffee +++ b/coffee/item.coffee @@ -45,12 +45,15 @@ class Item extends Actor @setCurrentPosition @position getPos: -> new Pos @current_position - setPos: (x,y,z) -> @setPosition new Pos x,y,z + setPos: (x,y,z) -> + log "item.setPos #{@name} #{x} #{y} #{z}" + @setPosition newPos x,y,z setOrientation: (q) -> @current_orientation = @orientation = new Quaternion q setCurrentPosition: (p) -> + # log "item.setCurrentPosition #{@name}", p @current_position = new Vector p @mesh?.position.copy @current_position diff --git a/coffee/levels.coffee b/coffee/levels.coffee index 5b4e05d..a102725 100644 --- a/coffee/levels.coffee +++ b/coffee/levels.coffee @@ -10,6 +10,7 @@ class Levels @dict = {} @list = [ # "test", + "start", # --- introduction "steps", "start", diff --git a/coffee/levels/move.coffee b/coffee/levels/move.coffee index f342420..e1f876c 100644 --- a/coffee/levels/move.coffee +++ b/coffee/levels/move.coffee @@ -18,8 +18,8 @@ module.exports = to shoot, press "$key(shoot)" """ player: - coordinates: [3,5,5] - orientation: roty180 + coordinates: [3,3,5] + orientation: rotx90 nostatus: 0 exits: [ name: "exit" diff --git a/coffee/levels/start.coffee b/coffee/levels/start.coffee index 2f4cda8..0a31463 100644 --- a/coffee/levels/start.coffee +++ b/coffee/levels/start.coffee @@ -8,7 +8,7 @@ module.exports = name: "start" scheme: "default" - size: [7,7,11] + size: [7,5,11] help: """ $scale(1.5)mission: get to the exit! @@ -21,8 +21,8 @@ module.exports = to turn, press "$key(turn left)" or "$key(turn right)" """ player: - position: [2,1,4] - orientation: rotx270 + coordinates: [1,0,4] + orientation: minusXupY exits: [ name: "exit" active: 1 diff --git a/coffee/levels/steps.coffee b/coffee/levels/steps.coffee index a6701e6..13e6671 100644 --- a/coffee/levels/steps.coffee +++ b/coffee/levels/steps.coffee @@ -20,7 +20,7 @@ module.exports = to turn, press "$key(turn left)" or "$key(turn right)" """ player: - position: [0,0,-5] + coordinates: [3,0,1] orientation: rot0 exits: [ name: "exit" diff --git a/coffee/lib/quaternion.coffee b/coffee/lib/quaternion.coffee index da9093e..08d0e3b 100644 --- a/coffee/lib/quaternion.coffee +++ b/coffee/lib/quaternion.coffee @@ -41,9 +41,8 @@ class Quaternion @z = q.z @w = q.w @ - - round: -> - @normalize() + + rounded: -> minDist = 1000 minQuat = null up = @rotate Vector.unitY @@ -76,14 +75,14 @@ class Quaternion upDiff = 1 - up.dot q.rotate Vector.unitY backDiff = 1 - back.dot q.rotate Vector.unitZ l = upDiff + backDiff - # log "length #{upDiff} #{backDiff} #{q.name} #{l}" if l < minDist minDist = l minQuat = q if l < 0.0001 break - log "differ a lot! #{minDist}" if minDist > 0.05 - return @clone minQuat + minQuat + + round: -> @clone @normalize().rounded() euler: -> [ Vector.RAD2DEG Math.atan2 2*(@w*@x+@y*@z), 1-2*(@x*@x+@y*@y) diff --git a/coffee/player.coffee b/coffee/player.coffee index a79afdb..3e11b6a 100644 --- a/coffee/player.coffee +++ b/coffee/player.coffee @@ -154,7 +154,7 @@ class Player extends Bot when @key.left, @key.right @rotate = (key == @key.left) and Action.TURN_LEFT or Action.TURN_RIGHT - if not @rotate_action? and not @spiked # player is not performing a rotation and unspiked + if not @rotate_action? # player is not performing a rotation @rotate_action = @getActionWithId @rotate Timer.addAction @rotate_action return true diff --git a/coffee/pushable.coffee b/coffee/pushable.coffee index 0aa8b75..b48968d 100644 --- a/coffee/pushable.coffee +++ b/coffee/pushable.coffee @@ -4,7 +4,6 @@ # 000 000 000 000 000 000 000 000 000 000 000 000 # 000 0000000 0000000 000 000 000 000 0000000 0000000 00000000 -log = require '/Users/kodi/s/ko/js/tools/log' Vector = require './lib/vector' Item = require './item' Action = require './action' @@ -22,49 +21,51 @@ class Pushable extends Item @pushing_sound = 'STONE_MOVE' @addAction new Action @, Action.NOOP, "noop" - @addAction new Action @, Action.PUSH, "push" + @addAction new Action @, Action.PUSH, "push", 1 # set duration to make it TIMED @addAction new Action @, Action.FALL, "fall", 40 setOrientation: (q) -> super q if not @pusher? @direction = @orientation.rotate Vector.minusZ - # log "Pushable.setOrientation direction:", @direction pushedByObjectInDirection: (object, dir, duration) -> - # log "pushedByObjectInDirection #{object.name} duration:#{duration}" + # log "pushable.pushedByObjectInDirection #{@name} pusher:#{object.name} duration:#{duration}" pushAction = @getActionWithId Action.PUSH - @pusher = object @move_action = pushAction @direction = dir - pushAction.duration = world.unmapMsTime duration Timer.addAction pushAction initAction: (action) -> - switch action.id - when Action.PUSH, Action.FALL - world.playSound @pushing_sound if action.id == Action.PUSH - world.objectWillMoveToPos @, @position.plus(@direction), action.getDuration() + if action.id in [Action.PUSH, Action.FALL] + world.playSound @pushing_sound if action.id == Action.PUSH + world.objectWillMoveToPos @, @position.plus(@direction), action.getDuration() + return + super action performAction: (action) -> - switch action.id - when Action.PUSH, Action.FALL - @setCurrentPosition @position.plus @direction.mul action.getRelativeTime() + if action.id in [Action.PUSH, Action.FALL] + # log "pushable.performAction #{@name} #{action.id}", @position, @direction + @setCurrentPosition @position.plus @direction.mul action.getRelativeTime() + return + super action finishAction: (action) -> - switch action.id - when Action.PUSH, Action.FALL - @move_action = null - targetPos = @current_position.round() - world.objectMoved @, @position, targetPos - @setPosition targetPos + if action.id in [Action.PUSH, Action.FALL] + @move_action = null + targetPos = @current_position.round() + world.objectMoved @, @position, targetPos + # log "pushable.finishAction #{action.id}", targetPos + @setPosition targetPos + return + super action actionFinished: (action) -> - Bot = require './bot' - Bomb = require './bomb' if action.id in [Action.PUSH, Action.FALL] + Bot = require './bot' + Bomb = require './bomb' gravityDir = @direction if action.id == Action.PUSH if @pusher instanceof Bot @@ -89,5 +90,8 @@ class Pushable extends Item else @direction.reset() world.playSound @landing_sound, @position + + return + super action module.exports = Pushable diff --git a/coffee/world.coffee b/coffee/world.coffee index 3ed4857..90a6ce7 100644 --- a/coffee/world.coffee +++ b/coffee/world.coffee @@ -138,6 +138,31 @@ class World extends Actor global.rotx270 = Quaternion.rot_270_X global.roty270 = Quaternion.rot_270_Y global.rotz270 = Quaternion.rot_270_Z + + global.XupY = Quaternion.XupY + global.XupZ = Quaternion.XupZ + global.XdownY = Quaternion.XdownY + global.XdownZ = Quaternion.XdownZ + global.YupX = Quaternion.YupX + global.YupZ = Quaternion.YupZ + global.YdownX = Quaternion.YdownX + global.YdownZ = Quaternion.YdownZ + global.ZupX = Quaternion.ZupX + global.ZupY = Quaternion.ZupY + global.ZdownX = Quaternion.ZdownX + global.ZdownY = Quaternion.ZdownY + global.minusXupY = Quaternion.minusXupY + global.minusXupZ = Quaternion.minusXupZ + global.minusXdownY = Quaternion.minusXdownY + global.minusXdownZ = Quaternion.minusXdownZ + global.minusYupX = Quaternion.minusYupX + global.minusYupZ = Quaternion.minusYupZ + global.minusYdownX = Quaternion.minusYdownX + global.minusYdownZ = Quaternion.minusYdownZ + global.minusZupX = Quaternion.minusZupX + global.minusZupY = Quaternion.minusZupY + global.minusZdownX = Quaternion.minusZdownX + global.minusZdownY = Quaternion.minusZdownY @levels = new Levels