81 lines
3.1 KiB
CoffeeScript
81 lines
3.1 KiB
CoffeeScript
|
|
# 0000000 0000000 00 00 00 00 0000000
|
|
# 000 000 000 000 000 000 000 000 000
|
|
# 000 0000 000000000 000000000 000000000 000000000
|
|
# 000 000 000 000 000 0 000 000 0 000 000 000
|
|
# 0000000 000 000 000 000 000 000 000 000
|
|
|
|
# schemes=[test_scheme, tron_scheme,candy_scheme, default_scheme,
|
|
# green_scheme, yellow_scheme, blue_scheme, red_scheme, metal_scheme, bronze_scheme]
|
|
|
|
module.exports =
|
|
name: "gamma"
|
|
design: 'Michael Abel'
|
|
scheme: "tron"
|
|
size: [10,10,10]
|
|
help: """
|
|
$scale(1.5)mission:
|
|
activate the exit!
|
|
|
|
shoot at the 3 switches to activate the exit
|
|
"""
|
|
player:
|
|
coordinates: [0,5,0]
|
|
nostatus: 0
|
|
exits: [
|
|
name: "exit"
|
|
active: 0
|
|
coordinates: [2,7,4] #absolute coord
|
|
]
|
|
create: ->
|
|
s = world.size
|
|
world.switch_countera = 0
|
|
world.switch_counter = 0
|
|
{Switch} = require '../items'
|
|
aswitched = () ->
|
|
# applyColorScheme(schemes[world.switch_countera])
|
|
# if world.switch_countera==schemes.length-1
|
|
# world.switch_countera=0
|
|
# else
|
|
# world.switch_countera+=1
|
|
switched = (swtch) ->
|
|
world.switch_counter += swtch.active and 1 or -1
|
|
exit = world.getObjectWithName "exit"
|
|
exit.setActive world.switch_counter == 4
|
|
|
|
aswitch = new Switch()
|
|
bswitch = new Switch()
|
|
cswitch = new Switch()
|
|
dswitch = new Switch()
|
|
eswitch = new Switch()
|
|
|
|
aswitch.getEventWithName("switched").addAction(world.continuous(aswitched))
|
|
bswitch.getEventWithName("switched").addAction(world.continuous((s=bswitch) -> switched(s)))
|
|
cswitch.getEventWithName("switched").addAction(world.continuous((s=cswitch) -> switched(s)))
|
|
dswitch.getEventWithName("switched").addAction(world.continuous((s=dswitch) -> switched(s)))
|
|
eswitch.getEventWithName("switched").addAction(world.continuous((s=eswitch) -> switched(s)))
|
|
|
|
world.addObjectAtPos aswitch, s.x-1,0,0
|
|
world.addObjectAtPos bswitch, 0,0,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.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
|
|
|