kiki/coffee/gear.coffee
monsterkodi bce51b92eb gears
2016-08-21 16:40:37 +02:00

80 lines
2.6 KiB
CoffeeScript

# 0000000 00000000 0000000 00000000
# 000 000 000 000 000 000
# 000 0000 0000000 000000000 0000000
# 000 000 000 000 000 000 000
# 0000000 00000000 000 000 000 000
log = require '/Users/kodi/s/ko/js/tools/log'
Valve = require './valve'
Action = require './action'
Pos = require './lib/pos'
Geom = require './geom'
Material = require './material'
class Gear extends Valve
@neighbors = [ [[0,1,0], [0,-1,0], [0,0,1], [0,0,-1]], [[1,0,0], [-1,0,0], [0,0,1], [0,0,-1]], [[1,0,0], [-1,0,0], [0,1,0], [0,-1,0]] ]
constructor: (@face) ->
super @face
@updateMesh()
createMesh: ->
@mesh = new THREE.Mesh Geom.gear(), Material.gear
@mesh.add new THREE.Mesh Geom.valve(), Material.plate
@mesh.receiveShadow = true
neighborGears: ->
dirs = Gear.neighbors[@face % 3]
pos = @getPos()
gears = []
for i in [0...4]
neighbor = world.getOccupantAtPos pos.plus new Pos dirs[i]
# log "gear.neighborGears #{neighbor?} #{neighbor instanceof Gear} #{neighbor?.face}", pos.plus new Pos dirs[i]
if neighbor? and neighbor instanceof Gear
if neighbor.face == @face
gears.push neighbor
gears
initAction: (action) ->
super action
if action.id == Action.PUSH
@setActive false
actionFinished: (action) ->
super action
if action.id == Action.PUSH or actionId == Action.FALL
if not @move_action?
@updateActive()
updateActive: ->
# log "gear.updateActive #{@active}"
for gear in @neighborGears()
log "gear.updateActive neighbor active #{gear.active}"
if gear.active
@setActive true
return
@setActive false
setActive: (active) ->
if @active != active
@active = active
world.playSound @active and 'GEAR_ON' or 'GEAR_OFF'
if @active
@startTimedAction @getActionWithId Action.ROTATE
else
@stopAction @getActionWithId Action.ROTATE
log "gear.setActive neighborGears #{@neighborGears().length}"
for gear in @neighborGears()
if @active
log 'gear.setActive activate neighbor'
gear.setActive true
else
log 'gear.setActive update neighbor'
gear.updateActive()
module.exports = Gear