misc
This commit is contained in:
parent
a2a9ad7aa3
commit
a92788c788
|
@ -56,8 +56,11 @@ class Bullet extends Item
|
||||||
@mesh.scale.set @size, @size, @size
|
@mesh.scale.set @size, @size, @size
|
||||||
|
|
||||||
hitObjectAtPos: (pos) ->
|
hitObjectAtPos: (pos) ->
|
||||||
if world.isInvalidPos(pos) or world.isOccupiedPos pos
|
|
||||||
hitObject = world.getRealOccupantAtPos pos
|
world.switchAtPos(pos)?.bulletImpact()
|
||||||
|
|
||||||
|
if world.isInvalidPos(pos) or world.isOccupiedPos pos
|
||||||
|
hitObject = world.getRealOccupantAtPos pos
|
||||||
if hitObject != @src_object
|
if hitObject != @src_object
|
||||||
if hitObject?
|
if hitObject?
|
||||||
hitObject.bulletImpact()
|
hitObject.bulletImpact()
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
# 000 000 000 000
|
# 000 000 000 000
|
||||||
# 0000000 00000000 0000000 0000000
|
# 0000000 00000000 0000000 0000000
|
||||||
|
|
||||||
log = require '/Users/kodi/s/ko/js/tools/log'
|
|
||||||
TmpObject = require './tmpobject'
|
TmpObject = require './tmpobject'
|
||||||
_ = require 'lodash'
|
_ = require 'lodash'
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@ class Levels
|
||||||
@dict = {}
|
@dict = {}
|
||||||
@list = [
|
@list = [
|
||||||
# "test",
|
# "test",
|
||||||
"invisimaze",
|
|
||||||
# --- introduction
|
# --- introduction
|
||||||
"steps", # ok
|
"steps", # ok
|
||||||
"start", # ok
|
"start", # ok
|
||||||
|
@ -24,9 +23,9 @@ class Levels
|
||||||
"gold",
|
"gold",
|
||||||
"escape",
|
"escape",
|
||||||
"gears",
|
"gears",
|
||||||
"gamma", # scheme change doesn't work
|
"gamma",
|
||||||
"cube",
|
"cube",
|
||||||
"switch", # exit doesnt open, other scheme
|
"switch"
|
||||||
# # "borg",
|
# # "borg",
|
||||||
"mini",
|
"mini",
|
||||||
"bombs",
|
"bombs",
|
||||||
|
|
|
@ -61,19 +61,20 @@ module.exports =
|
||||||
|
|
||||||
world.switch_counter = 0
|
world.switch_counter = 0
|
||||||
switched = (swtch) ->
|
switched = (swtch) ->
|
||||||
world.switch_counter += swtch.active and 1 or -1
|
world.switch_counter += (swtch.active and 1 or -1)
|
||||||
|
log "world.switch_counter #{swtch} #{world.switch_counter}"
|
||||||
exit = world.getObjectWithName "exit"
|
exit = world.getObjectWithName "exit"
|
||||||
exit.setActive world.switch_counter == 4
|
exit.setActive world.switch_counter == 4
|
||||||
|
|
||||||
Switch = require '../switch'
|
Switch = require '../switch'
|
||||||
switch1 = new Switch
|
switch1 = new Switch
|
||||||
switch1.getEventWithName("switched").addAction world.continuous (s=switch1) -> switched s
|
switch1.getEventWithName("switched").addAction world.continuous -> switched switch1
|
||||||
switch2 = new Switch
|
switch2 = new Switch
|
||||||
switch2.getEventWithName("switched").addAction world.continuous (s=switch2) -> switched s
|
switch2.getEventWithName("switched").addAction world.continuous -> switched switch2
|
||||||
switch3 = new Switch
|
switch3 = new Switch
|
||||||
switch3.getEventWithName("switched").addAction world.continuous (s=switch3) -> switched s
|
switch3.getEventWithName("switched").addAction world.continuous -> switched switch3
|
||||||
switch4 = new Switch
|
switch4 = new Switch
|
||||||
switch4.getEventWithName("switched").addAction world.continuous (s=switch4) -> switched s
|
switch4.getEventWithName("switched").addAction world.continuous -> switched switch4
|
||||||
|
|
||||||
world.addObjectAtPos switch1, 1, 0 ,2
|
world.addObjectAtPos switch1, 1, 0 ,2
|
||||||
world.addObjectAtPos switch2, 7, 1, 0
|
world.addObjectAtPos switch2, 7, 1, 0
|
||||||
|
|
|
@ -5,8 +5,7 @@
|
||||||
# 000 000 000 000 000 0 000 000 0 000 000 000
|
# 000 000 000 000 000 0 000 000 0 000 000 000
|
||||||
# 0000000 000 000 000 000 000 000 000 000
|
# 0000000 000 000 000 000 000 000 000 000
|
||||||
|
|
||||||
# schemes=[test_scheme, tron_scheme,candy_scheme, default_scheme,
|
schemes = ['tron', 'candy', 'default', 'green', 'yellow', 'blue', 'red', 'metal', 'bronze', 'crazy']
|
||||||
# green_scheme, yellow_scheme, blue_scheme, red_scheme, metal_scheme, bronze_scheme]
|
|
||||||
|
|
||||||
module.exports =
|
module.exports =
|
||||||
name: "gamma"
|
name: "gamma"
|
||||||
|
@ -17,7 +16,7 @@ module.exports =
|
||||||
$scale(1.5)mission:
|
$scale(1.5)mission:
|
||||||
activate the exit!
|
activate the exit!
|
||||||
|
|
||||||
shoot at the 3 switches to activate the exit
|
shoot at the 4 switches to activate the exit
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [5,5,4]
|
coordinates: [5,5,4]
|
||||||
|
@ -25,57 +24,47 @@ module.exports =
|
||||||
exits: [
|
exits: [
|
||||||
name: "exit"
|
name: "exit"
|
||||||
active: 0
|
active: 0
|
||||||
coordinates: [2,7,4] #absolute coord
|
coordinates: [2,7,4]
|
||||||
]
|
]
|
||||||
create: ->
|
create: ->
|
||||||
s = world.size
|
s = world.size
|
||||||
world.switch_countera = 0
|
world.scheme_counter = 0
|
||||||
world.switch_counter = 0
|
world.switch_counter = 0
|
||||||
{Switch} = require '../items'
|
{Switch} = require '../items'
|
||||||
aswitched = () ->
|
schemesw = ->
|
||||||
# applyColorScheme(schemes[world.switch_countera])
|
world.scheme_counter = (world.scheme_counter+1) % schemes.length
|
||||||
# if world.switch_countera==schemes.length-1
|
world.applyScheme schemes[world.scheme_counter]
|
||||||
# world.switch_countera=0
|
|
||||||
# else
|
|
||||||
# world.switch_countera+=1
|
|
||||||
switched = (swtch) ->
|
switched = (swtch) ->
|
||||||
world.switch_counter += swtch.active and 1 or -1
|
world.switch_counter += swtch.active and 1 or -1
|
||||||
exit = world.getObjectWithName "exit"
|
exit = world.getObjectWithName "exit"
|
||||||
exit.setActive world.switch_counter == 4
|
exit.setActive world.switch_counter == 4
|
||||||
|
|
||||||
aswitch = new Switch()
|
a = new Switch
|
||||||
bswitch = new Switch()
|
b = new Switch
|
||||||
cswitch = new Switch()
|
c = new Switch
|
||||||
dswitch = new Switch()
|
d = new Switch
|
||||||
eswitch = new Switch()
|
e = new Switch
|
||||||
|
|
||||||
aswitch.getEventWithName("switched").addAction(world.continuous(aswitched))
|
a.getEventWithName("switched").addAction world.continuous schemesw
|
||||||
bswitch.getEventWithName("switched").addAction(world.continuous((s=bswitch) -> switched(s)))
|
b.getEventWithName("switched").addAction world.continuous -> switched(b)
|
||||||
cswitch.getEventWithName("switched").addAction(world.continuous((s=cswitch) -> switched(s)))
|
c.getEventWithName("switched").addAction world.continuous -> switched(c)
|
||||||
dswitch.getEventWithName("switched").addAction(world.continuous((s=dswitch) -> switched(s)))
|
d.getEventWithName("switched").addAction world.continuous -> switched(d)
|
||||||
eswitch.getEventWithName("switched").addAction(world.continuous((s=eswitch) -> switched(s)))
|
e.getEventWithName("switched").addAction world.continuous -> switched(e)
|
||||||
|
|
||||||
world.addObjectAtPos aswitch, s.x-1,0,0
|
world.addObjectAtPos a, s.x-1,0,0
|
||||||
world.addObjectAtPos bswitch, 0,0,0
|
world.addObjectAtPos b, 0,0,0
|
||||||
|
world.addObjectAtPos c , s.x-3,4,4
|
||||||
world.addObjectAtPos 'Mutant', s.x/2,0,0
|
world.addObjectAtPos d , 4,4,s.z-3
|
||||||
world.addObjectLine 'Wall', 0,0,1, s.x,0,1
|
world.addObjectAtPos e , 4,s.y-3,6
|
||||||
world.addObjectLine 'Wall', 0,1,0, s.x,1,0
|
|
||||||
|
world.addObjectAtPos 'Mutant', s.x/2,0,0
|
||||||
|
world.addObjectLine 'Wall', 0,0,1, s.x,0,1
|
||||||
|
world.addObjectLine 'Wall', 0,1,0, s.x,1,0
|
||||||
|
world.addObjectLine 'Wall', 0,2,2, s.x-3,2,2
|
||||||
|
world.addObjectLine 'Wall', 2,2,2, 2,2,s.z-3
|
||||||
|
world.addObjectLine 'Wall', 2,2,4, 2,s.y-3,4
|
||||||
|
world.addObjectLine 'Wall', 2,4,4, s.x-4,4,4
|
||||||
|
world.addObjectLine 'Wall', 4,4,4, 4,4,s.z-4
|
||||||
|
world.addObjectLine 'Wall', 4,4,6, 4,s.y-4,6
|
||||||
|
|
||||||
world.addObjectLine 'Wall', 0,2,2, s.x-3,2,2
|
|
||||||
world.addObjectAtPos 'Switch', s.x-3,2,2
|
|
||||||
world.addObjectLine 'Wall', 2,2,2, 2,2,s.z-3
|
|
||||||
world.addObjectAtPos 'Switch', 2,2,s.z-3
|
|
||||||
world.addObjectLine 'Wall', 2,2,4, 2,s.y-3,4
|
|
||||||
#exit
|
|
||||||
world.addObjectAtPos 'Switch' , 2,s.y-3,4
|
|
||||||
|
|
||||||
world.addObjectLine 'Wall', 2,4,4, s.x-4,4,4
|
|
||||||
world.addObjectAtPos cswitch , s.x-3,4,4
|
|
||||||
|
|
||||||
world.addObjectLine 'Wall', 4,4,4, 4,4,s.z-4
|
|
||||||
world.addObjectAtPos dswitch , 4,4,s.z-3
|
|
||||||
|
|
||||||
world.addObjectLine 'Wall', 4,4,6, 4,s.y-4,6
|
|
||||||
world.addObjectAtPos eswitch , 4,s.y-3,6
|
|
||||||
|
|
|
@ -14,17 +14,7 @@ module.exports =
|
||||||
activate the exit!
|
activate the exit!
|
||||||
|
|
||||||
to activate the exit,
|
to activate the exit,
|
||||||
activate the 4 switches
|
activate the 4 switches.
|
||||||
|
|
||||||
to activate the switches,
|
|
||||||
shoot them
|
|
||||||
|
|
||||||
to be able to shoot the switches,
|
|
||||||
move the center stone
|
|
||||||
to move the center stone,
|
|
||||||
use the bomb.
|
|
||||||
|
|
||||||
the bomb will detonate if you shoot it
|
|
||||||
"""
|
"""
|
||||||
player:
|
player:
|
||||||
coordinates: [3,4,3]
|
coordinates: [3,4,3]
|
||||||
|
@ -38,15 +28,13 @@ module.exports =
|
||||||
|
|
||||||
s = world.size
|
s = world.size
|
||||||
h = 0
|
h = 0
|
||||||
# bomb and stones
|
|
||||||
|
|
||||||
world.addObjectAtPos 'Stone', s.x/2, s.y/2, s.z/2
|
world.addObjectAtPos 'Stone', s.x/2, s.y/2, s.z/2
|
||||||
world.addObjectAtPos 'Stone', s.x/2, s.y-2, s.z/2
|
world.addObjectAtPos 'Stone', s.x/2, s.y-2, s.z/2
|
||||||
|
|
||||||
# world.addObjectAtPos 'Bomb', s.x/2, 1, s.z/2
|
world.addObjectAtPos 'Bomb', s.x/2, 1, s.z/2
|
||||||
|
|
||||||
# stone frames for switches
|
# stone frames for switches
|
||||||
|
|
||||||
world.addObjectAtPos 'Wall', world.decenter 0, h-1, s.z/2
|
world.addObjectAtPos 'Wall', world.decenter 0, h-1, s.z/2
|
||||||
world.addObjectAtPos 'Wall', world.decenter 0, h+1, s.z/2
|
world.addObjectAtPos 'Wall', world.decenter 0, h+1, s.z/2
|
||||||
world.addObjectAtPos 'Wall', world.decenter 1, h, s.z/2
|
world.addObjectAtPos 'Wall', world.decenter 1, h, s.z/2
|
||||||
|
@ -77,17 +65,17 @@ module.exports =
|
||||||
exit.setActive world.switch_counter == 4
|
exit.setActive world.switch_counter == 4
|
||||||
|
|
||||||
Switch = require '../switch'
|
Switch = require '../switch'
|
||||||
switch1 = new Switch()
|
s1 = new Switch()
|
||||||
switch1.getEventWithName("switched").addAction(world.continuous((s=switch1) -> switched(s)))
|
s1.getEventWithName("switched").addAction world.continuous -> switched s1
|
||||||
switch2 = new Switch()
|
s2 = new Switch()
|
||||||
switch2.getEventWithName("switched").addAction(world.continuous((s=switch2) -> switched(s)))
|
s2.getEventWithName("switched").addAction world.continuous -> switched s2
|
||||||
switch3 = new Switch()
|
s3 = new Switch()
|
||||||
switch3.getEventWithName("switched").addAction(world.continuous((s=switch3) -> switched(s)))
|
s3.getEventWithName("switched").addAction world.continuous -> switched s3
|
||||||
switch4 = new Switch()
|
s4 = new Switch()
|
||||||
switch4.getEventWithName("switched").addAction(world.continuous((s=switch4) -> switched(s)))
|
s4.getEventWithName("switched").addAction world.continuous -> switched s4
|
||||||
|
|
||||||
world.addObjectAtPos switch1, world.decenter -s.x/2+1, 0, 0
|
world.addObjectAtPos s1, world.decenter -s.x/2+1, 0, 0
|
||||||
world.addObjectAtPos switch2, world.decenter s.x/2, 0, 0
|
world.addObjectAtPos s2, world.decenter s.x/2, 0, 0
|
||||||
world.addObjectAtPos switch3, world.decenter 0, 0, -s.z/2+1
|
world.addObjectAtPos s3, world.decenter 0, 0, -s.z/2+1
|
||||||
world.addObjectAtPos switch4, world.decenter 0, 0, s.z/2
|
world.addObjectAtPos s4, world.decenter 0, 0, s.z/2
|
||||||
|
|
|
@ -395,9 +395,9 @@ module.exports =
|
||||||
color: rgb 1, 1, 1
|
color: rgb 1, 1, 1
|
||||||
opacity: 0.6
|
opacity: 0.6
|
||||||
switch:
|
switch:
|
||||||
color: rgb 0.9, 1, 0.9
|
color: rgb 1, 1, 1
|
||||||
gate:
|
gate:
|
||||||
color: rgb 1, 1, 1, 0.8
|
color: rgb 1, 1, 1
|
||||||
player:
|
player:
|
||||||
color: rgb 0.6, 0.6, 0.6
|
color: rgb 0.6, 0.6, 0.6
|
||||||
tire:
|
tire:
|
||||||
|
|
|
@ -14,7 +14,7 @@ Material = require './material'
|
||||||
|
|
||||||
class Switch extends Item
|
class Switch extends Item
|
||||||
|
|
||||||
isSpaceEgoistic: -> true
|
isSpaceEgoistic: -> false # true?
|
||||||
|
|
||||||
constructor: (active=false) ->
|
constructor: (active=false) ->
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,7 @@ now = require 'performance-now'
|
||||||
Wire,
|
Wire,
|
||||||
Gear,
|
Gear,
|
||||||
Stone,
|
Stone,
|
||||||
|
Switch,
|
||||||
MotorGear,
|
MotorGear,
|
||||||
MotorCylinder,
|
MotorCylinder,
|
||||||
Face} = require './items'
|
Face} = require './items'
|
||||||
|
@ -456,7 +457,7 @@ class World extends Actor
|
||||||
occupant.object
|
occupant.object
|
||||||
else
|
else
|
||||||
occupant
|
occupant
|
||||||
|
switchAtPos: (pos) -> @getObjectOfTypeAtPos Switch, pos
|
||||||
setObjectAtPos: (object, pos) ->
|
setObjectAtPos: (object, pos) ->
|
||||||
pos = new Pos pos
|
pos = new Pos pos
|
||||||
if @isInvalidPos pos
|
if @isInvalidPos pos
|
||||||
|
|
|
@ -39,10 +39,9 @@
|
||||||
39 size: 11 11 11 'grasp' scheme: 'blue'
|
39 size: 11 11 11 'grasp' scheme: 'blue'
|
||||||
40 size: 13 15 13 'fallen' scheme: 'blue'
|
40 size: 13 15 13 'fallen' scheme: 'blue'
|
||||||
41 size: 11 12 7 'cheese' scheme: 'yellow'
|
41 size: 11 12 7 'cheese' scheme: 'yellow'
|
||||||
42 size: 9 5 5 'invisimaze' scheme: 'yellow'
|
|
||||||
43 size: 5 25 5 'spiral' scheme: 'zen'
|
43 size: 5 25 5 'spiral' scheme: 'zen'
|
||||||
44 size: 9 9 9 'hidden' scheme: 'metal'
|
44 size: 9 9 9 'hidden' scheme: 'metal'
|
||||||
45 size: 5 7 5 'church' scheme: 'yellow'
|
45 size: 5 7 5 'church' scheme: 'bronze'
|
||||||
46 size: 11 11 11 'mesh' scheme: 'default'
|
46 size: 11 11 11 'mesh' scheme: 'default'
|
||||||
47 size: 7 9 7 'columns' scheme: 'green'
|
47 size: 7 9 7 'columns' scheme: 'green'
|
||||||
48 size: 5 5 9 'machine' scheme: 'tron'
|
48 size: 5 5 9 'machine' scheme: 'tron'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user