2014-05-10 21:24:50 -04:00
# Every Angel has one web worker attached to it. It will call methods inside the worker and kill it if it times out.
# God is the public API; Angels are an implementation detail. Each God can have one or more Angels.
{ now } = require ' lib/world/world_utils '
World = require ' lib/world/world '
CocoClass = require ' lib/CocoClass '
module.exports = class Angel extends CocoClass
@nicks: [ ' Archer ' , ' Lana ' , ' Cyril ' , ' Pam ' , ' Cheryl ' , ' Woodhouse ' , ' Ray ' , ' Krieger ' ]
2014-06-21 13:56:55 -04:00
infiniteLoopIntervalDuration: 10000 # check this often; must be longer than other two combined
infiniteLoopTimeoutDuration: 7500 # wait this long for a response when checking
2014-05-10 21:24:50 -04:00
abortTimeoutDuration: 500 # give in-process or dying workers this long to give up
2014-08-23 00:35:08 -04:00
subscriptions:
2014-08-23 20:26:56 -04:00
' level:flag-updated ' : ' onFlagEvent '
2014-08-26 01:05:24 -04:00
' playback:stop-real-time-playback ' : ' onStopRealTimePlayback '
2014-08-23 00:35:08 -04:00
2014-05-10 21:24:50 -04:00
constructor: (@shared) ->
super ( )
@ say ' Got my wings. '
2014-06-30 22:16:26 -04:00
if window . navigator and ( window . navigator . userAgent . search ( ' MSIE ' ) isnt - 1 or window . navigator . appName is ' Microsoft Internet Explorer ' )
2014-05-10 21:24:50 -04:00
@ infiniteLoopIntervalDuration *= 10 # since it's so slow to serialize without transferable objects, we can't trust it
@ infiniteLoopTimeoutDuration *= 10
@ abortTimeoutDuration *= 10
@initialized = false
@running = false
@ hireWorker ( )
@ shared . angels . push @
destroy: ->
@ fireWorker false
_ . remove @ shared . angels , @
super ( )
workIfIdle: ->
@ doWork ( ) unless @ running
# say: debugging stuff, usually off; log: important performance indicators, keep on
say: (args...) -> #@log args...
2014-07-06 18:01:39 -04:00
log: (args...) -> console . info " | #{ @ shared . godNick } ' s #{ @ nick } | " , args . . .
2014-05-10 21:24:50 -04:00
testWorker: =>
2014-05-24 00:24:50 -04:00
return if @ destroyed
clearTimeout @ condemnTimeout
@condemnTimeout = _ . delay @ infinitelyLooped , @ infiniteLoopTimeoutDuration
2014-06-30 22:16:26 -04:00
@ say ' Let \' s give it ' , @ infiniteLoopTimeoutDuration , ' to not loop. '
2014-05-24 00:24:50 -04:00
@ worker . postMessage func: ' reportIn '
2014-05-10 21:24:50 -04:00
onWorkerMessage: (event) =>
return @ say ' Currently aborting old work. ' if @ aborting and event . data . type isnt ' abort '
switch event . data . type
# First step: worker has to load the scripts.
when ' worker-initialized '
unless @ initialized
@ log " Worker initialized after #{ ( new Date ( ) ) - @ worker . creationTime } ms "
@initialized = true
@ doWork ( )
# We watch over the worker as it loads the world frames to make sure it doesn't infinitely loop.
when ' start-load-frames '
clearTimeout @ condemnTimeout
when ' report-in '
2014-06-30 22:16:26 -04:00
@ say ' Worker reported in. '
2014-05-10 21:24:50 -04:00
clearTimeout @ condemnTimeout
when ' end-load-frames '
clearTimeout @ condemnTimeout
@ beholdGoalStates event . data . goalStates # Work ends here if we're headless.
2014-05-26 21:45:00 -04:00
# We have to abort like an infinite loop if we see one of these; they're not really recoverable
when ' non-user-code-problem '
Backbone . Mediator . publish ' god:non-user-code-problem ' , problem: event . data . problem
if @ shared . firstWorld
@ infinitelyLooped ( ) # For now, this should do roughly the right thing if it happens during load.
else
@ fireWorker ( )
2014-08-22 15:39:29 -04:00
# If it didn't finish simulating successfully, or we abort the worker.
2014-05-10 21:24:50 -04:00
when ' abort '
2014-06-30 22:16:26 -04:00
@ say ' Aborted. ' , event . data
2014-05-10 21:24:50 -04:00
clearTimeout @ abortTimeout
@aborting = false
@running = false
_ . remove @ shared . busyAngels , @
@ doWork ( )
2014-08-22 15:39:29 -04:00
# We pay attention to certain progress indicators as the world loads.
when ' console-log '
@ log event . data . args . . .
when ' user-code-problem '
Backbone . Mediator . publish ' god:user-code-problem ' , problem: event . data . problem
when ' world-load-progress-changed '
2014-08-27 15:24:03 -04:00
Backbone . Mediator . publish ' god:world-load-progress-changed ' , progress: event . data . progress
2014-08-22 15:39:29 -04:00
unless event . data . progress is 1 or @ work . preload or @ work . headless or @ work . synchronous or @ deserializationQueue . length or @ shared . firstWorld
@ worker . postMessage func: ' serializeFramesSoFar ' # Stream it!
# We have some or all of the frames serialized, so let's send the (partially?) simulated world to the Surface.
when ' some-frames-serialized ' , ' new-world '
2014-08-22 17:59:32 -04:00
deserializationArgs = [ event . data . serialized , event . data . goalStates , event . data . startFrame , event . data . endFrame , @ streamingWorld ]
2014-08-22 15:39:29 -04:00
@ deserializationQueue . push deserializationArgs
if @ deserializationQueue . length is 1
@ beholdWorld deserializationArgs . . .
2014-05-10 21:24:50 -04:00
else
2014-06-30 22:16:26 -04:00
@ log ' Received unsupported message: ' , event . data
2014-05-10 21:24:50 -04:00
beholdGoalStates: (goalStates) ->
return if @ aborting
Backbone . Mediator . publish ' god:goals-calculated ' , goalStates: goalStates
@ finishWork ( ) if @ shared . headless
2014-08-21 19:27:52 -04:00
beholdWorld: (serialized, goalStates, startFrame, endFrame, streamingWorld) ->
2014-05-10 21:24:50 -04:00
return if @ aborting
# Toggle BOX2D_ENABLED during deserialization so that if we have box2d in the namespace, the Collides Components still don't try to create bodies for deserialized Thangs upon attachment.
window . BOX2D_ENABLED = false
2014-08-21 19:27:52 -04:00
World . deserialize serialized , @ shared . worldClassMap , @ shared . lastSerializedWorldFrames , @ finishBeholdingWorld ( goalStates ) , startFrame , endFrame , streamingWorld
2014-05-10 21:24:50 -04:00
window . BOX2D_ENABLED = true
@shared.lastSerializedWorldFrames = serialized . frames
finishBeholdingWorld: (goalStates) -> (world) =>
return if @ aborting
2014-08-22 17:59:32 -04:00
@streamingWorld = world
2014-08-21 19:27:52 -04:00
finished = world . frames . length is world . totalFrames
2014-08-22 00:23:45 -04:00
firstChangedFrame = world . findFirstChangedFrame @ shared . world
eventType = if finished then ' god:new-world-created ' else ' god:streaming-world-updated '
2014-08-21 19:27:52 -04:00
if finished
@shared.world = world
2014-08-22 00:23:45 -04:00
Backbone . Mediator . publish eventType , world: world , firstWorld: @ shared . firstWorld , goalStates: goalStates , team: me . team , firstChangedFrame: firstChangedFrame
if finished
2014-08-21 19:27:52 -04:00
for scriptNote in @ shared . world . scriptNotes
Backbone . Mediator . publish scriptNote . channel , scriptNote . event
@ shared . goalManager ? . world = world
@ finishWork ( )
else
2014-08-22 15:39:29 -04:00
@ deserializationQueue . shift ( ) # Finished with this deserialization.
if deserializationArgs = @ deserializationQueue [ 0 ] # Start another?
@ beholdWorld deserializationArgs . . .
2014-05-10 21:24:50 -04:00
finishWork: ->
2014-08-22 17:59:32 -04:00
@streamingWorld = null
2014-05-10 21:24:50 -04:00
@shared.firstWorld = false
2014-08-22 15:39:29 -04:00
@deserializationQueue = [ ]
2014-05-10 21:24:50 -04:00
@running = false
_ . remove @ shared . busyAngels , @
@ doWork ( )
2014-05-11 20:42:32 -04:00
finalizePreload: ->
2014-06-30 22:16:26 -04:00
@ say ' Finalize preload. '
2014-05-11 20:42:32 -04:00
@ worker . postMessage func: ' finalizePreload '
2014-08-21 19:27:52 -04:00
@work.preload = false
2014-05-11 20:42:32 -04:00
2014-05-10 21:24:50 -04:00
infinitelyLooped: =>
2014-06-30 22:16:26 -04:00
@ say ' On infinitely looped! Aborting? ' , @ aborting
2014-05-10 21:24:50 -04:00
return if @ aborting
2014-06-30 22:16:26 -04:00
problem = type: ' runtime ' , level: ' error ' , id: ' runtime_InfiniteLoop ' , message: ' Code never finished. It \' s either really slow or has an infinite loop. '
2014-05-10 21:24:50 -04:00
Backbone . Mediator . publish ' god:user-code-problem ' , problem: problem
Backbone . Mediator . publish ' god:infinite-loop ' , firstWorld: @ shared . firstWorld
@ fireWorker ( )
doWork: ->
return if @ aborting
2014-06-30 22:16:26 -04:00
return @ say ' Not initialized for work yet. ' unless @ initialized
2014-05-10 21:24:50 -04:00
if @ shared . workQueue . length
2014-05-11 20:42:32 -04:00
@work = @ shared . workQueue . shift ( )
return _ . defer @ simulateSync , @ work if @ work . synchronous
2014-06-30 22:16:26 -04:00
@ say ' Running world... '
2014-05-10 21:24:50 -04:00
@running = true
@ shared . busyAngels . push @
2014-08-22 15:39:29 -04:00
@deserializationQueue = [ ]
2014-05-11 20:42:32 -04:00
@ worker . postMessage func: ' runWorld ' , args: @ work
2014-05-10 21:24:50 -04:00
clearTimeout @ purgatoryTimer
2014-06-30 22:16:26 -04:00
@ say ' Infinite loop timer started at interval of ' , @ infiniteLoopIntervalDuration
2014-05-10 21:24:50 -04:00
@purgatoryTimer = setInterval @ testWorker , @ infiniteLoopIntervalDuration
else
2014-06-30 22:16:26 -04:00
@ say ' No work to do. '
2014-05-10 21:24:50 -04:00
@ hireWorker ( )
abort: ->
return unless @ worker and @ running
2014-06-30 22:16:26 -04:00
@ say ' Aborting... '
2014-05-10 21:24:50 -04:00
@running = false
2014-05-11 20:42:32 -04:00
@work = null
2014-08-22 17:59:32 -04:00
@streamingWorld = null
@deserializationQueue = null
2014-05-10 21:24:50 -04:00
_ . remove @ shared . busyAngels , @
@abortTimeout = _ . delay @ fireWorker , @ abortTimeoutDuration
@aborting = true
@ worker . postMessage func: ' abort '
fireWorker: (rehire=true) =>
@aborting = false
@running = false
_ . remove @ shared . busyAngels , @
@ worker ? . removeEventListener ' message ' , @ onWorkerMessage
@ worker ? . terminate ( )
@worker = null
clearTimeout @ condemnTimeout
clearInterval @ purgatoryTimer
2014-06-30 22:16:26 -04:00
@ say ' Fired worker. '
2014-05-10 21:24:50 -04:00
@initialized = false
@work = null
@ hireWorker ( ) if rehire
hireWorker: ->
return if @ worker
2014-06-30 22:16:26 -04:00
@ say ' Hiring worker. '
2014-05-10 21:24:50 -04:00
@worker = new Worker @ shared . workerCode
@ worker . addEventListener ' message ' , @ onWorkerMessage
@worker.creationTime = new Date ( )
2014-08-23 20:26:56 -04:00
onFlagEvent: (e) ->
2014-08-23 00:35:08 -04:00
return unless @ running and @ work . realTime
2014-08-23 20:26:56 -04:00
@ worker . postMessage func: ' addFlagEvent ' , args: e
2014-08-23 00:35:08 -04:00
2014-08-26 01:05:24 -04:00
onStopRealTimePlayback: (e) ->
return unless @ running and @ work . realTime
@work.realTime = false
@ worker . postMessage func: ' stopRealTimePlayback '
2014-05-10 21:24:50 -04:00
#### Synchronous code for running worlds on main thread (profiling / IE9) ####
simulateSync: (work) =>
console ? . profile ? " World Generation #{ ( Math . random ( ) * 1000 ) . toFixed ( 0 ) } " if imitateIE9 ?
work.t0 = now ( )
work.testWorld = testWorld = new World work . userCodeMap
testWorld . loadFromLevel work . level
if @ shared . goalManager
testGM = new @ shared . goalManager . constructor @ testWorld
testGM . setGoals work . goals
testGM . setCode work . userCodeMap
testGM . worldGenerationWillBegin ( )
testWorld . setGoalManager testGM
@ doSimulateWorld work
console ? . profileEnd ? ( ) if imitateIE9 ?
2014-06-30 22:16:26 -04:00
console . log ' Construction: ' , ( work . t1 - work . t0 ) . toFixed ( 0 ) , ' ms. Simulation: ' , ( work . t2 - work . t1 ) . toFixed ( 0 ) , ' ms -- ' , ( ( work . t2 - work . t1 ) / testWorld . frames . length ) . toFixed ( 3 ) , ' ms per frame, profiled. '
2014-05-10 21:24:50 -04:00
# If performance was really a priority in IE9, we would rework things to be able to skip this step.
goalStates = testGM ? . getGoalStates ( )
serialized = testWorld . serialize ( ) . serializedWorld
window . BOX2D_ENABLED = false
2014-05-12 18:03:53 -04:00
World . deserialize serialized , @ angelsShare . worldClassMap , @ shared . lastSerializedWorldFrames , @ finishBeholdingWorld ( goalStates )
2014-05-10 21:24:50 -04:00
window . BOX2D_ENABLED = true
@shared.lastSerializedWorldFrames = serialized . frames
doSimulateWorld: (work) ->
work.t1 = now ( )
Math . random = work . testWorld . rand . randf # so user code is predictable
2014-06-30 22:16:26 -04:00
Aether . replaceBuiltin ( ' Math ' , Math )
2014-07-19 23:26:13 -04:00
replacedLoDash = _ . runInContext ( window )
_ [ key ] = replacedLoDash [ key ] for key , val of replacedLoDash
2014-05-10 21:24:50 -04:00
i = 0
while i < work . testWorld . totalFrames
frame = work . testWorld . getFrame i ++
work.testWorld.ended = true
system . finish work . testWorld . thangs for system in work . testWorld . systems
work.t2 = now ( )