mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Merge branch 'simulator-teardown' of https://github.com/adi2412/codecombat into adi2412-simulator-teardown
This commit is contained in:
commit
dc32add6cb
1 changed files with 4 additions and 1 deletions
|
@ -1,9 +1,10 @@
|
|||
SuperModel = require 'models/SuperModel'
|
||||
CocoClass = require 'lib/CocoClass'
|
||||
LevelLoader = require 'lib/LevelLoader'
|
||||
GoalManager = require 'lib/world/GoalManager'
|
||||
God = require 'lib/God'
|
||||
|
||||
module.exports = class Simulator
|
||||
module.exports = class Simulator extends CocoClass
|
||||
|
||||
constructor: ->
|
||||
_.extend @, Backbone.Events
|
||||
|
@ -14,6 +15,7 @@ module.exports = class Simulator
|
|||
destroy: ->
|
||||
@off()
|
||||
@cleanupSimulation()
|
||||
super()
|
||||
# TODO: More teardown?
|
||||
|
||||
fetchAndSimulateTask: =>
|
||||
|
@ -49,6 +51,7 @@ module.exports = class Simulator
|
|||
@levelLoader.once 'loaded-all', @simulateGame
|
||||
|
||||
simulateGame: =>
|
||||
return if @destroyed
|
||||
@trigger 'statusUpdate', 'All resources loaded, simulating!', @task.getSessions()
|
||||
@assignWorldAndLevelFromLevelLoaderAndDestroyIt()
|
||||
@setupGod()
|
||||
|
|
Loading…
Add table
Reference in a new issue