wire
This commit is contained in:
parent
bce51b92eb
commit
80f11ac384
|
@ -60,7 +60,7 @@ class Bot extends Pushable
|
||||||
transparent: true
|
transparent: true
|
||||||
opacity: 1
|
opacity: 1
|
||||||
shininess: 4
|
shininess: 4
|
||||||
alphaTest: 0.1
|
# alphaTest: 0.1
|
||||||
|
|
||||||
@leftTire = new THREE.Mesh geom, @tireMat
|
@leftTire = new THREE.Mesh geom, @tireMat
|
||||||
@leftTire.position.set 0.35,0,0
|
@leftTire.position.set 0.35,0,0
|
||||||
|
|
|
@ -51,12 +51,12 @@ class Gear extends Valve
|
||||||
|
|
||||||
updateActive: ->
|
updateActive: ->
|
||||||
# log "gear.updateActive #{@active}"
|
# log "gear.updateActive #{@active}"
|
||||||
|
@setActive false
|
||||||
for gear in @neighborGears()
|
for gear in @neighborGears()
|
||||||
log "gear.updateActive neighbor active #{gear.active}"
|
# log "gear.updateActive neighbor active #{gear.active}"
|
||||||
if gear.active
|
if gear.active
|
||||||
@setActive true
|
@setActive true
|
||||||
return
|
return
|
||||||
@setActive false
|
|
||||||
|
|
||||||
setActive: (active) ->
|
setActive: (active) ->
|
||||||
if @active != active
|
if @active != active
|
||||||
|
@ -67,13 +67,13 @@ class Gear extends Valve
|
||||||
@startTimedAction @getActionWithId Action.ROTATE
|
@startTimedAction @getActionWithId Action.ROTATE
|
||||||
else
|
else
|
||||||
@stopAction @getActionWithId Action.ROTATE
|
@stopAction @getActionWithId Action.ROTATE
|
||||||
log "gear.setActive neighborGears #{@neighborGears().length}"
|
# log "gear.setActive neighborGears #{@neighborGears().length}"
|
||||||
for gear in @neighborGears()
|
for gear in @neighborGears()
|
||||||
if @active
|
if @active
|
||||||
log 'gear.setActive activate neighbor'
|
# log 'gear.setActive activate neighbor'
|
||||||
gear.setActive true
|
gear.setActive true
|
||||||
else
|
else
|
||||||
log 'gear.setActive update neighbor'
|
# log 'gear.setActive update neighbor'
|
||||||
gear.updateActive()
|
gear.updateActive()
|
||||||
|
|
||||||
module.exports = Gear
|
module.exports = Gear
|
||||||
|
|
|
@ -11,7 +11,8 @@ Material = require './material'
|
||||||
|
|
||||||
class Generator extends Gear
|
class Generator extends Gear
|
||||||
|
|
||||||
constructor: (face) -> super face
|
constructor: (face) ->
|
||||||
|
super face
|
||||||
|
|
||||||
createMesh: ->
|
createMesh: ->
|
||||||
@mesh = new THREE.Mesh Geom.generator(), Material.plate
|
@mesh = new THREE.Mesh Geom.generator(), Material.plate
|
||||||
|
@ -21,7 +22,7 @@ class Generator extends Gear
|
||||||
activateWires: ->
|
activateWires: ->
|
||||||
wires = world.getObjectsOfTypeAtPos Wire, @getPos()
|
wires = world.getObjectsOfTypeAtPos Wire, @getPos()
|
||||||
for wire in wires
|
for wire in wires
|
||||||
wire.setActive active
|
wire.setActive @active
|
||||||
|
|
||||||
setActive: (active) ->
|
setActive: (active) ->
|
||||||
if @active != active
|
if @active != active
|
||||||
|
|
|
@ -66,7 +66,7 @@ class Geom
|
||||||
geom
|
geom
|
||||||
|
|
||||||
@motor: ->
|
@motor: ->
|
||||||
quads = 11
|
quads = 12
|
||||||
triangles = quads*2+4
|
triangles = quads*2+4
|
||||||
positions = new Float32Array triangles*9
|
positions = new Float32Array triangles*9
|
||||||
normals = new Float32Array triangles*9
|
normals = new Float32Array triangles*9
|
||||||
|
@ -453,7 +453,8 @@ class Geom
|
||||||
0.167, -0.5, 0.29, -0.167, -0.5, 0.29, -0.5, -0.5, 0.027, 0.5, -0.5, 0.027,
|
0.167, -0.5, 0.29, -0.167, -0.5, 0.29, -0.5, -0.5, 0.027, 0.5, -0.5, 0.027,
|
||||||
-0.167, 0.5, 0.29, 0.167, 0.5, 0.29, 0.5, 0.5, 0.027, -0.5, 0.5, 0.027,
|
-0.167, 0.5, 0.29, 0.167, 0.5, 0.29, 0.5, 0.5, 0.027, -0.5, 0.5, 0.027,
|
||||||
0.167, 0.5, 0.29, -0.167, 0.5, 0.29, -0.5, 0.167, 0.29, 0.5, 0.167, 0.29,
|
0.167, 0.5, 0.29, -0.167, 0.5, 0.29, -0.5, 0.167, 0.29, 0.5, 0.167, 0.29,
|
||||||
0.5, -0.167, 0.29, 0.5, -0.5, 0.027, 0.5, 0.5, 0.027, 0.5, 0.167, 0.290
|
0.5, -0.167, 0.29, 0.5, -0.5, 0.027, 0.5, 0.5, 0.027, 0.5, 0.167, 0.290,
|
||||||
|
-0.5, -0.5, -0.5, 0.5, -0.5, -0.5, 0.5, 0.5, -0.5, -0.5, 0.5, -0.5
|
||||||
]
|
]
|
||||||
|
|
||||||
# 0000000 00000000 000 000 00000000 00000000 0000000 000000000 0000000 00000000
|
# 0000000 00000000 000 000 00000000 00000000 0000000 000000000 0000000 00000000
|
||||||
|
|
|
@ -9,7 +9,7 @@ module.exports =
|
||||||
name: "test"
|
name: "test"
|
||||||
size: [11,11,11]
|
size: [11,11,11]
|
||||||
player:
|
player:
|
||||||
coordinates: [5,5,1]
|
coordinates: [5,7,1]
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
|
@ -20,28 +20,30 @@ module.exports =
|
||||||
s = world.size
|
s = world.size
|
||||||
{Gear,Generator,MotorCylinder,MotorGear,Face,Wall,Wire,WireStone,Stone} = require '../items'
|
{Gear,Generator,MotorCylinder,MotorGear,Face,Wall,Wire,WireStone,Stone} = require '../items'
|
||||||
|
|
||||||
# world.addObjectAtPos new Wire(Face.Z, Wire.ALL), 7, 5, 0
|
world.addObjectAtPos new Wire(Face.Z, Wire.ALL), 5, 7, 0
|
||||||
# world.addObjectAtPos new Wire(Face.NZ, Wire.ALL), 7, 5, 0
|
world.addObjectAtPos new Wire(Face.Z, Wire.ALL), 5, 8, 0
|
||||||
# world.addObjectAtPos new Wire(Face.Y, Wire.ALL), 7, 5, 0
|
world.addObjectAtPos new Wire(Face.Z, Wire.ALL), 6, 7, 0
|
||||||
# world.addObjectAtPos new Wire(Face.NY, Wire.ALL), 7, 5, 0
|
world.addObjectAtPos new Wire(Face.Z, Wire.ALL), 5, 6, 0
|
||||||
# world.addObjectAtPos new Wire(Face.X, Wire.ALL), 7, 5, 0
|
world.addObjectAtPos new Wire(Face.Z, Wire.ALL), 4, 7, 0
|
||||||
# world.addObjectAtPos new Wire(Face.NX, Wire.ALL), 7, 5, 0
|
world.addObjectAtPos new Wire(Face.Z, Wire.ALL), 5, 8, 0
|
||||||
|
world.addObjectAtPos new Wire(Face.Z, Wire.ALL), 5, 5, 0
|
||||||
|
|
||||||
world.addObjectAtPos new Generator(Face.Z), 5, 7, 0
|
world.addObjectAtPos new Generator(Face.Z), 5, 6, 0
|
||||||
world.addObjectAtPos new Stone(), 6, 7, 0
|
# world.addObjectAtPos new MotorGear(Face.NZ), 8, 7, 0
|
||||||
world.addObjectAtPos new Stone(), 6, 7, 2
|
# world.addObjectAtPos new Stone(), 6, 7, 0
|
||||||
world.addObjectAtPos new WireStone(), 6, 7, 1
|
# world.addObjectAtPos new Stone(), 6, 7, 2
|
||||||
world.addObjectAtPos new WireStone(), 3, 7, 1
|
# world.addObjectAtPos new WireStone(), 6, 7, 1
|
||||||
|
# world.addObjectAtPos new WireStone(), 3, 7, 1
|
||||||
|
|
||||||
world.addObjectAtPos new MotorCylinder(Face.Z), 4, 5, 1
|
world.addObjectAtPos new Gear(Face.Z), 6, 5, 0
|
||||||
world.addObjectAtPos new MotorGear(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, 6, 0
|
||||||
# world.addObjectAtPos new Gear(Face.Z), 5, 4, 0
|
# world.addObjectAtPos new Gear(Face.Z), 5, 4, 0
|
||||||
world.addObjectAtPos new Gear(Face.Z), 6, 6, 0
|
# world.addObjectAtPos new Gear(Face.Z), 6, 6, 0
|
||||||
world.addObjectAtPos new Gear(Face.Z), 4, 4, 0
|
world.addObjectAtPos new Gear(Face.Z), 4, 4, 0
|
||||||
world.addObjectAtPos new Gear(Face.Z), 4, 6, 0
|
# world.addObjectAtPos new Gear(Face.Z), 4, 6, 0
|
||||||
world.addObjectAtPos new Gear(Face.Z), 6, 4, 0
|
world.addObjectAtPos new Gear(Face.Z), 6, 4, 0
|
||||||
|
world.addObjectAtPos new MotorCylinder(Face.Z), 4, 5, 1
|
||||||
|
world.addObjectAtPos new MotorGear(Face.Z), 4, 5, 0
|
||||||
return
|
return
|
||||||
|
|
||||||
world.addObjectAtPos new Gear(Face.NZ), 6, 5, 4
|
world.addObjectAtPos new Gear(Face.NZ), 6, 5, 4
|
||||||
|
|
|
@ -18,6 +18,12 @@ module.exports =
|
||||||
side: THREE.DoubleSide
|
side: THREE.DoubleSide
|
||||||
shading: THREE.SmoothShading
|
shading: THREE.SmoothShading
|
||||||
shininess: 40
|
shininess: 40
|
||||||
|
|
||||||
|
wire_plate: new THREE.MeshPhongMaterial
|
||||||
|
color: 0x880000
|
||||||
|
side: THREE.DoubleSide
|
||||||
|
shading: THREE.SmoothShading
|
||||||
|
shininess: 10
|
||||||
|
|
||||||
raster: new THREE.MeshPhongMaterial
|
raster: new THREE.MeshPhongMaterial
|
||||||
color: 0x880000
|
color: 0x880000
|
||||||
|
|
|
@ -4,24 +4,27 @@
|
||||||
# 000 0 000 000 000 000 000 000 000 000 000 000 000 000 000 0000 000 000 000 000 000
|
# 000 0 000 000 000 000 000 000 000 000 000 000 000 000 000 0000 000 000 000 000 000
|
||||||
# 000 000 0000000 000 0000000 000 000 0000000 000 0000000 000 000 000 0000000 00000000 000 000
|
# 000 000 0000000 000 0000000 000 000 0000000 000 0000000 000 000 000 0000000 00000000 000 000
|
||||||
|
|
||||||
log = require '/Users/kodi/s/ko/js/tools/log'
|
Item = require './item'
|
||||||
Item = require './item'
|
Action = require './action'
|
||||||
Action = require './action'
|
Face = require './face'
|
||||||
Face = require './face'
|
Geom = require './geom'
|
||||||
Geom = require './geom'
|
Pushable = require './pushable'
|
||||||
Material = require './material'
|
Material = require './material'
|
||||||
|
|
||||||
class MotorCylinder extends Item
|
class MotorCylinder extends Pushable #Item
|
||||||
|
|
||||||
isSpaceEgoistic: -> true
|
isSpaceEgoistic: -> true
|
||||||
|
|
||||||
constructor: (face) ->
|
constructor: (@face) ->
|
||||||
super
|
super()
|
||||||
@value = 0.0
|
@value = 0.0
|
||||||
@active = false
|
@active = false
|
||||||
@orientation = Face.orientationForFace @face
|
@orientation = Face.orientationForFace @face
|
||||||
@addAction new Action @, Action.TUCKER, "tucker", 500, Action.REPEAT
|
@addAction new Action @, Action.TUCKER, "tucker", 500, Action.REPEAT
|
||||||
@setActive true
|
|
||||||
|
setPosition: (pos) ->
|
||||||
|
super pos
|
||||||
|
@updateActive()
|
||||||
|
|
||||||
createMesh: ->
|
createMesh: ->
|
||||||
|
|
||||||
|
@ -30,8 +33,10 @@ class MotorCylinder extends Item
|
||||||
@mesh.add @kolben
|
@mesh.add @kolben
|
||||||
@mesh.receiveShadow = true
|
@mesh.receiveShadow = true
|
||||||
|
|
||||||
updateMesh: -> @kolben.position.set 0, 0, -0.5 * Math.sin(@value)
|
updateMesh: ->
|
||||||
|
@kolben.position.set 0, 0, -0.5 * Math.sin @value
|
||||||
|
@mesh.quaternion.copy Face.orientation @face
|
||||||
|
|
||||||
setActive: (active) ->
|
setActive: (active) ->
|
||||||
if @active != active
|
if @active != active
|
||||||
@active = active
|
@active = active
|
||||||
|
@ -40,15 +45,41 @@ class MotorCylinder extends Item
|
||||||
else
|
else
|
||||||
@stopAction @getActionWithId Action.TUCKER
|
@stopAction @getActionWithId Action.TUCKER
|
||||||
|
|
||||||
|
initAction: (action) ->
|
||||||
|
if action.id in [Action.PUSH, Action.FALL]
|
||||||
|
@setActive false
|
||||||
|
pos = @position.minus Face.normal @face
|
||||||
|
occupant = world.getOccupantAtPos pos
|
||||||
|
MotorGear = require './motorgear'
|
||||||
|
isGear = occupant instanceof MotorGear and occupant.face == @face
|
||||||
|
log "initAction isGear #{isGear}"
|
||||||
|
occupant.setActive false if isGear
|
||||||
|
super action
|
||||||
|
|
||||||
performAction: (action) ->
|
performAction: (action) ->
|
||||||
if action.id == Action.TUCKER
|
if action.id == Action.TUCKER
|
||||||
relTime = action.getRelativeTime()
|
relTime = action.getRelativeTime()
|
||||||
@value = if relTime > 0.5 then 1.0 - relTime else relTime
|
@value = if relTime > 0.5 then 1.0 - relTime else relTime
|
||||||
@value *= 2
|
@value *= 2
|
||||||
@updateMesh()
|
@updateMesh()
|
||||||
|
return
|
||||||
|
super action
|
||||||
|
|
||||||
finishAction: (action) ->
|
finishAction: (action) ->
|
||||||
if action.id == Action.TUCKER
|
if action.id == Action.TUCKER
|
||||||
world.playSound 'MOTOR', @getPos()
|
world.playSound 'MOTOR', @getPos()
|
||||||
|
return
|
||||||
|
super action
|
||||||
|
if action.id in [Action.PUSH, Action.FALL]
|
||||||
|
@updateActive()
|
||||||
|
|
||||||
|
updateActive: ->
|
||||||
|
pos = @position.minus Face.normal @face
|
||||||
|
occupant = world.getOccupantAtPos pos
|
||||||
|
MotorGear = require './motorgear'
|
||||||
|
isGear = occupant instanceof MotorGear and occupant.face == @face
|
||||||
|
# log "isGear #{isGear}"
|
||||||
|
@setActive isGear
|
||||||
|
occupant.setActive true if isGear
|
||||||
|
|
||||||
module.exports = MotorCylinder
|
module.exports = MotorCylinder
|
||||||
|
|
|
@ -8,15 +8,19 @@ log = require '/Users/kodi/s/ko/js/tools/log'
|
||||||
Gear = require './gear'
|
Gear = require './gear'
|
||||||
Geom = require './geom'
|
Geom = require './geom'
|
||||||
Face = require './face'
|
Face = require './face'
|
||||||
|
Action = require './action'
|
||||||
Material = require './material'
|
Material = require './material'
|
||||||
Quaternion = require './lib/quaternion'
|
Quaternion = require './lib/quaternion'
|
||||||
MotorCylinder = require './motorcylinder'
|
MotorCylinder = require './motorcylinder'
|
||||||
|
|
||||||
class MotorGear extends Gear
|
class MotorGear extends Gear
|
||||||
|
|
||||||
constructor: (face) ->
|
constructor: (@face) ->
|
||||||
super face
|
super @face
|
||||||
@setActive true
|
|
||||||
|
setPosition: (pos) ->
|
||||||
|
super pos
|
||||||
|
@updateActive()
|
||||||
|
|
||||||
createMesh: ->
|
createMesh: ->
|
||||||
@mesh = new THREE.Mesh Geom.motor(), Material.plate
|
@mesh = new THREE.Mesh Geom.motor(), Material.plate
|
||||||
|
@ -24,14 +28,27 @@ class MotorGear extends Gear
|
||||||
@mesh.add @gear
|
@mesh.add @gear
|
||||||
@mesh.receiveShadow = true
|
@mesh.receiveShadow = true
|
||||||
|
|
||||||
|
initAction: (action) ->
|
||||||
|
# log "MotorGear.initAction action #{action.name}"
|
||||||
|
if action.id in [Action.PUSH, Action.FALL]
|
||||||
|
pos = @position.plus Face.normal @face
|
||||||
|
occupant = world.getOccupantAtPos pos
|
||||||
|
isCylinder = occupant instanceof MotorCylinder and occupant.face == @face
|
||||||
|
occupant.setActive false if isCylinder
|
||||||
|
super action
|
||||||
|
|
||||||
updateMesh: ->
|
updateMesh: ->
|
||||||
# log "Valve.updateMesh #{@angle} #{@face}"
|
# log "Valve.updateMesh #{@angle} #{@face}"
|
||||||
rot = Quaternion.rotationAroundVector (@clockwise and 1 or -1) * @angle, 0,0,1
|
rot = Quaternion.rotationAroundVector (@clockwise and 1 or -1) * @angle, 0,0,1
|
||||||
@gear.quaternion.copy Face.orientationForFace(@face).mul rot
|
@gear.quaternion.copy rot #Face.orientationForFace(@face).mul rot
|
||||||
|
@mesh.quaternion.copy Face.orientation @face
|
||||||
|
|
||||||
updateActive: ->
|
updateActive: ->
|
||||||
pos = @position.plus Face.normal @face
|
pos = @position.plus Face.normal @face
|
||||||
# log "MotorGear.updateActive #{@active}", pos, world.getOccupantAtPos(pos) instanceof MotorCylinder
|
# log "MotorGear.updateActive #{@active}", pos, world.getOccupantAtPos(pos) instanceof MotorCylinder
|
||||||
@setActive world.getOccupantAtPos(pos) instanceof MotorCylinder
|
occupant = world.getOccupantAtPos pos
|
||||||
|
isCylinder = occupant instanceof MotorCylinder and occupant.face == @face and not occupant.move_action
|
||||||
|
@setActive isCylinder
|
||||||
|
occupant.setActive true if isCylinder
|
||||||
|
|
||||||
module.exports = MotorGear
|
module.exports = MotorGear
|
||||||
|
|
|
@ -164,9 +164,10 @@ class Player extends Bot
|
||||||
botToCamera = camPos.minus playerPos
|
botToCamera = camPos.minus playerPos
|
||||||
botToCameraNormal = botToCamera.normal()
|
botToCameraNormal = botToCamera.normal()
|
||||||
|
|
||||||
# if camera below bot, rotate up
|
# rotate camera vertically
|
||||||
if botToCameraNormal.dot(playerUp) < 0 # calculate angle between player to camera vector and player up vector
|
verticalAngle = Vector.RAD2DEG Math.acos(clamp(-1.0, 1.0, botToCameraNormal.dot playerUp))
|
||||||
verticalAngle = Vector.RAD2DEG Math.acos(clamp(-1.0, 1.0, botToCameraNormal.dot playerUp))
|
if verticalAngle > 45
|
||||||
|
# log "verticalAngle #{verticalAngle}"
|
||||||
rotQuat = Quaternion.rotationAroundVector(verticalAngle/400.0, botToCameraNormal.cross(playerUp))
|
rotQuat = Quaternion.rotationAroundVector(verticalAngle/400.0, botToCameraNormal.cross(playerUp))
|
||||||
botToCamera = rotQuat.rotate botToCamera
|
botToCamera = rotQuat.rotate botToCamera
|
||||||
botToCameraNormal = botToCamera.normal()
|
botToCameraNormal = botToCamera.normal()
|
||||||
|
|
|
@ -53,13 +53,14 @@ class Sound
|
||||||
src: ["#{__dirname}/../sound/#{v.file}"]
|
src: ["#{__dirname}/../sound/#{v.file}"]
|
||||||
volume: v.volume
|
volume: v.volume
|
||||||
@sounds[k].pannerAttr
|
@sounds[k].pannerAttr
|
||||||
coneInnerAngle: 360
|
coneInnerAngle: 360
|
||||||
coneOuterAngle: 360
|
coneOuterAngle: 360
|
||||||
coneOuterGain: 0
|
coneOuterGain: 0
|
||||||
maxDistance: 10
|
maxDistance: 10
|
||||||
refDistance: 1
|
refDistance: 1
|
||||||
rolloffFactor: 4
|
rolloffFactor: 4
|
||||||
distanceModel: 'exponential'
|
distanceModel: 'exponential'
|
||||||
|
panningModel: 'HRTF'
|
||||||
|
|
||||||
@setMatrix: (m) ->
|
@setMatrix: (m) ->
|
||||||
p = m.getPosition()
|
p = m.getPosition()
|
||||||
|
@ -70,7 +71,7 @@ class Sound
|
||||||
|
|
||||||
@play: (sound, pos, time) ->
|
@play: (sound, pos, time) ->
|
||||||
pos ?= world.player?.current_position
|
pos ?= world.player?.current_position
|
||||||
log "Sound.play #{sound} #{time}", pos
|
# log "Sound.play #{sound} #{time}", pos
|
||||||
id = @sounds[sound].play()
|
id = @sounds[sound].play()
|
||||||
@sounds[sound].pos pos.x, pos.y, pos.z, id if pos?
|
@sounds[sound].pos pos.x, pos.y, pos.z, id if pos?
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
Item = require './item'
|
Item = require './item'
|
||||||
Geom = require './geom'
|
Geom = require './geom'
|
||||||
Face = require './face'
|
Face = require './face'
|
||||||
|
Gate = require './gate'
|
||||||
Vector = require './lib/vector'
|
Vector = require './lib/vector'
|
||||||
Material = require './material'
|
Material = require './material'
|
||||||
|
|
||||||
|
@ -21,9 +22,11 @@ class Wire extends Item
|
||||||
@ALL =15
|
@ALL =15
|
||||||
|
|
||||||
constructor: (@face=Face.Z, @connections=Wire.ALL) ->
|
constructor: (@face=Face.Z, @connections=Wire.ALL) ->
|
||||||
super
|
@glow = null
|
||||||
@active = false
|
@active = false
|
||||||
@value = 1.0
|
@value = 1.0
|
||||||
|
|
||||||
|
super
|
||||||
|
|
||||||
@SWITCH_OFF_EVENT = @addEventWithName "off"
|
@SWITCH_OFF_EVENT = @addEventWithName "off"
|
||||||
@SWITCH_ON_EVENT = @addEventWithName "on"
|
@SWITCH_ON_EVENT = @addEventWithName "on"
|
||||||
|
@ -53,9 +56,9 @@ class Wire extends Item
|
||||||
plane = new THREE.PlaneGeometry h, w
|
plane = new THREE.PlaneGeometry h, w
|
||||||
plane.translate 0, -w/2, -s+o
|
plane.translate 0, -w/2, -s+o
|
||||||
geom.merge plane
|
geom.merge plane
|
||||||
|
|
||||||
@wire = new THREE.Mesh geom, Material.wire
|
@wire = new THREE.Mesh geom, Material.wire
|
||||||
@mesh = new THREE.Mesh Geom.wire(), Material.plate
|
@mesh = new THREE.Mesh Geom.wire(), Material.wire_plate
|
||||||
@mesh.add @wire
|
@mesh.add @wire
|
||||||
@mesh.receiveShadow = true
|
@mesh.receiveShadow = true
|
||||||
@mesh.position.copy Face.normal(@face).mul -(0.5+o)
|
@mesh.position.copy Face.normal(@face).mul -(0.5+o)
|
||||||
|
@ -68,21 +71,63 @@ class Wire extends Item
|
||||||
setActive: (active) ->
|
setActive: (active) ->
|
||||||
if @active != active
|
if @active != active
|
||||||
@active = active
|
@active = active
|
||||||
|
log "wire active #{active}"
|
||||||
neighbors = @neighborWires()
|
neighbors = @neighborWires()
|
||||||
|
|
||||||
|
for wire in neighbors
|
||||||
|
wire.setActive @active
|
||||||
|
|
||||||
|
# active_neighbor = false
|
||||||
|
# if @active
|
||||||
|
# for wire in neighbors
|
||||||
|
# if wire.active
|
||||||
|
# active_neighbor = true
|
||||||
|
# break
|
||||||
|
#
|
||||||
|
# for wire in wires
|
||||||
|
# wire.setActive active
|
||||||
|
|
||||||
active_neighbor = false
|
gate = world.getObjectOfTypeAtPos Gate, @getPos()
|
||||||
|
gate?.setActive @active
|
||||||
|
|
||||||
if @active
|
if @active
|
||||||
for wire in neighbors
|
if not @glow?
|
||||||
if wire.active
|
map = new THREE.TextureLoader().load "#{__dirname}/../img/wire.png"
|
||||||
active_neighbor = true
|
# map.offset.set -0.5, -0.5
|
||||||
break
|
# map.repeat.set 2, 2
|
||||||
|
material = new THREE.SpriteMaterial
|
||||||
for wire in wires
|
map: map
|
||||||
wire.setActive active
|
color: 0xffff00
|
||||||
|
transparent: false
|
||||||
cellSwitch = world.getObjectOfTypeAtPos KikiSwitch, @getPos()
|
# opacity: 0.95
|
||||||
if cellSwitch?
|
blending: THREE.AdditiveBlending
|
||||||
cellSwitch.setActive active
|
fog: true
|
||||||
|
id: 999
|
||||||
|
lights: true
|
||||||
|
# side: THREE.DoubleSide
|
||||||
|
# depthTest: false
|
||||||
|
# depthWrite: true
|
||||||
|
|
||||||
|
@glow = new THREE.Sprite material
|
||||||
|
# @glow.scale.set 0.1, 0.1, 0.1
|
||||||
|
log 'glow position', @position
|
||||||
|
@glow.position.set 0, 0, -0.3
|
||||||
|
@glow.scale.set .5, .5, 1
|
||||||
|
@glow.renderOrder = 999
|
||||||
|
# @glow.position.normalize()
|
||||||
|
# @glow.position.multiplyScalar 2
|
||||||
|
@mesh.add @glow
|
||||||
|
|
||||||
|
# @glow2 = new THREE.Sprite material
|
||||||
|
# @glow2.scale.set 1, 1, 1
|
||||||
|
# @glow2.renderOrder = 999
|
||||||
|
# @glow2.position.set @position.x, @position.y, @position.z-0.3
|
||||||
|
# world.scene.add @glow2
|
||||||
|
else if @glow
|
||||||
|
@mesh.remove @glow
|
||||||
|
log 'remove glow'
|
||||||
|
# @world.scene.remove @glow
|
||||||
|
@glow = null
|
||||||
|
|
||||||
@events[@active and @SWITCH_ON_EVENT or @SWITCH_OFF_EVENT].triggerActions()
|
@events[@active and @SWITCH_ON_EVENT or @SWITCH_OFF_EVENT].triggerActions()
|
||||||
@events[@SWITCHED_EVENT].triggerActions()
|
@events[@SWITCHED_EVENT].triggerActions()
|
||||||
|
|
|
@ -69,14 +69,14 @@ class World extends Actor
|
||||||
|
|
||||||
@renderer = new THREE.WebGLRenderer
|
@renderer = new THREE.WebGLRenderer
|
||||||
antialias: true
|
antialias: true
|
||||||
logarithmicDepthBuffer: true
|
logarithmicDepthBuffer: false
|
||||||
autoClear: true
|
autoClear: true
|
||||||
sortObjects: true
|
sortObjects: true
|
||||||
|
|
||||||
@renderer.setClearColor 0x000000
|
@renderer.setClearColor 0x000000
|
||||||
@renderer.setSize @view.offsetWidth, @view.offsetHeight
|
@renderer.setSize @view.offsetWidth, @view.offsetHeight
|
||||||
@renderer.shadowMap.type = THREE.PCFSoftShadowMap
|
@renderer.shadowMap.type = THREE.PCFSoftShadowMap
|
||||||
|
|
||||||
# 0000000 0000000 00 00 00000000 00000000 0000000
|
# 0000000 0000000 00 00 00000000 00000000 0000000
|
||||||
# 000 000 000 000 000 000 000 000 000 000
|
# 000 000 000 000 000 000 000 000 000 000
|
||||||
# 000 000000000 000000000 0000000 0000000 000000000
|
# 000 000000000 000000000 0000000 0000000 000000000
|
||||||
|
@ -140,7 +140,7 @@ class World extends Actor
|
||||||
return if @levels?
|
return if @levels?
|
||||||
|
|
||||||
Sound.init()
|
Sound.init()
|
||||||
|
global.log = log
|
||||||
global.rot0 = Quaternion.rot_0
|
global.rot0 = Quaternion.rot_0
|
||||||
global.rotx90 = Quaternion.rot_90_X
|
global.rotx90 = Quaternion.rot_90_X
|
||||||
global.roty90 = Quaternion.rot_90_Y
|
global.roty90 = Quaternion.rot_90_Y
|
||||||
|
@ -409,7 +409,7 @@ class World extends Actor
|
||||||
|
|
||||||
getObjectsOfType: (clss) -> @objects.filter (o) -> o instanceof clss
|
getObjectsOfType: (clss) -> @objects.filter (o) -> o instanceof clss
|
||||||
getObjectsOfTypeAtPos: (clss, pos) -> @getCellAtPos(pos)?.getObjectsOfType(clss) ? []
|
getObjectsOfTypeAtPos: (clss, pos) -> @getCellAtPos(pos)?.getObjectsOfType(clss) ? []
|
||||||
getObjectOfTypeAtPos: (clss, pos) -> @getCellAtPos(pos)?.getRealObjectOfType(clss) ? []
|
getObjectOfTypeAtPos: (clss, pos) -> @getCellAtPos(pos)?.getRealObjectOfType(clss)
|
||||||
getOccupantAtPos: (pos) -> @getCellAtPos(pos)?.getOccupant()
|
getOccupantAtPos: (pos) -> @getCellAtPos(pos)?.getOccupant()
|
||||||
getRealOccupantAtPos: (pos) ->
|
getRealOccupantAtPos: (pos) ->
|
||||||
occupant = @getOccupantAtPos pos
|
occupant = @getOccupantAtPos pos
|
||||||
|
|
BIN
img/glow.png
Normal file
BIN
img/glow.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
img/shot03.png
Normal file
BIN
img/shot03.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 642 KiB |
BIN
img/wire.png
Normal file
BIN
img/wire.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 88 KiB |
BIN
img/wire2.png
Normal file
BIN
img/wire2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
Loading…
Reference in New Issue
Block a user