kiki/coffee/item.coffee
monsterkodi f0d7bf95ee push
2016-08-19 22:48:19 +02:00

57 lines
1.5 KiB
CoffeeScript

# 000 000000000 00000000 00 00
# 000 000 000 000 000
# 000 000 0000000 000000000
# 000 000 000 000 0 000
# 000 000 00000000 000 000
log = require '/Users/kodi/s/ko/js/tools/log'
Actor = require './actor'
Pos = require './lib/pos'
Vector = require './lib/vector'
Quaternion = require './lib/quaternion'
class Item extends Actor
constructor: ->
super
@name = @constructor.name
@createMesh?()
world.scene.add @mesh if @mesh?
@position = new Vector
@current_position = new Vector
@direction = new Vector
@move_action = null
del: ->
super
# log "item del !!!!!!!!!!!!!!!!!!!!!! #{@name}"
world.scene.remove @mesh if @mesh?
world.removeObject @
@emit 'deleted'
newCellMate: ->
cellMateLeft: ->
bulletImpact: ->
render: ->
isSpaceEgoistic: -> false
isSlippery: -> false
setPosition: (x,y,z) ->
@position = new Vector x,y,z
@setCurrentPosition @position
getPos: -> new Pos @current_position
setPos: (x,y,z) -> @setPosition new Pos x,y,z
setOrientation: (q) ->
@current_orientation = @orientation = new Quaternion q
setCurrentPosition: (p) ->
@current_position = new Vector p
@mesh?.position.copy @current_position
setCurrentOrientation: (q) -> @current_orientation = q
module.exports = Item