This commit is contained in:
monsterkodi 2016-08-21 00:49:04 +02:00
parent d3bf896de1
commit d1d837f327
6 changed files with 19 additions and 54 deletions

View File

@ -13,8 +13,9 @@ Geom = require './geom'
class Gear extends Valve
constructor: (@face) ->
@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()
@ -23,16 +24,8 @@ class Gear extends Valve
@mesh.add new THREE.Mesh Geom.valve(), Cage.rasterMat
@mesh.receiveShadow = true
getNeighborDirections: (face) ->
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]]
]
neighbors[face % 3]
getNeighborGears: ->
dirs = @getNeighborDirections @face
dirs = Gear.neighbors[@face % 3]
pos = @getPos()
gears = []
for i in [0...4]
@ -74,16 +67,4 @@ class Gear extends Valve
else
gear.updateActive()
render: ->
# if (@active)
# glRotatef (clockwise ? angle : -angle, 0.0, 0.0, 1.0);
#
# KikiValve::colors[0].glColor();
# render_valve;
#
# glTranslatef (0.0, 0.0, 0.4);
#
# colors[0].glColor();
# render_gear;
module.exports = Gear

View File

@ -16,7 +16,7 @@ class Generator extends Gear
createMesh: ->
@mesh = new THREE.Mesh Geom.generator(), Cage.cageMat
# @mesh.add new THREE.Mesh Geom.gear(), Cage.rasterMat
@mesh.add new THREE.Mesh Geom.gear(), Cage.rasterMat
@mesh.receiveShadow = true
activateWires: ->
@ -31,18 +31,4 @@ class Generator extends Gear
@activateWires()
world.playSound @active and 'GENERATOR_ON' or 'GENERATOR_OFF'
render: ->
# if (active)
# glRotatef (clockwise ? angle : -angle, 0.0, 0.0, 1.0);
#
# colors[0].glColor();
#
# render_generator;
#
# KikiGear::colors[0].glColor();
#
# glTranslatef (0.0, 0.0, 0.4);
#
# render_gear;
module.exports = Generator

View File

@ -444,8 +444,8 @@ class Geom
@valveQuadStrip2 = [
0.042, 0.042, -0.220,
0.042, 0.042, 0.220,
-0.220,
0.220,
0.059, 0, -0.220,
0.059, 0, 0.220,
0.042, -0.042, -0.220,
0.042, -0.042, 0.220,
0, -0.059, -0.220,

View File

@ -19,12 +19,10 @@ module.exports =
s = world.size
{Gear,Generator,MotorCylinder,MotorGear,Face} = require '../items'
world.addObjectAtPos new Generator(Face.NX), 4, 5, 0
world.addObjectAtPos new Generator(Face.X), 6, 5, 0
# world.addObjectAtPos new Gear(Face.NZ), 6, 5, 0
# world.addObjectAtPos new Gear(Face.Z), 4, 5, 0
return
world.addObjectAtPos new Generator(Face.Z), 5, 5, 0
world.addObjectAtPos new Gear(Face.Z), 4, 5, 0
world.addObjectAtPos new Gear(Face.Z), 6, 5, 0
world.addObjectAtPos new Gear(Face.Z), 5, 6, 0
world.addObjectAtPos new Gear(Face.Z), 5, 4, 0

View File

@ -18,7 +18,7 @@ class Valve extends Pushable
@active = false
@clockwise = false
@addAction new Action @, Action.ROTATE, "rotation", 2000, Action.REPEAT
@startTimedAction @getActionWithId Action.ROTATE
# @startTimedAction @getActionWithId Action.ROTATE
updateMesh: ->
# log "Valve.updateMesh #{@angle} #{@face}"
@ -31,7 +31,7 @@ class Valve extends Pushable
dir = @face % 3
sum = ((dir == Face.Y or dir == Face.Z) and p.x or 0) + ((dir == Face.X or dir == Face.Z) and p.y or 0) + ((dir == Face.X or dir == Face.Y) and p.z or 0)
@clockwise = sum % 2
log "Valve.setPosition sum #{sum} @clockwise #{@clockwise}", pos
# log "Valve.setPosition sum #{sum} @clockwise #{@clockwise}", pos
performAction: (action) ->
switch action.id

View File

@ -61,7 +61,7 @@ class World extends Actor
super
@noRotations = true
@noRotations = false
@screenSize = new Size @view.clientWidth, @view.clientHeight
# log "view @screenSize:", @screenSize