2016-04-07 22:06:57 -04:00
CocoClass = require ' core/CocoClass '
SuperModel = require ' models/SuperModel '
{ createAetherOptions } = require ' lib/aether_utils '
God = require ' lib/God '
GoalManager = require ' lib/world/GoalManager '
LevelLoader = require ' lib/LevelLoader '
module.exports = class VerifierTest extends CocoClass
constructor: (@levelID, @updateCallback, @supermodel, @language) ->
super ( )
# TODO: turn this into a Subview
# TODO: listen to Backbone.Mediator.publish 'god:non-user-code-problem', problem: event.data.problem, god: @shared.god from Angel to detect when we can't load the thing
# TODO: listen to the progress report from Angel to show a simulation progress bar (maybe even out of the number of frames we actually know it'll take)
@ supermodel ? = new SuperModel ( )
@ language ? = ' python '
@ load ( )
load: ->
@loadStartTime = new Date ( )
@god = new God maxAngels: 1 , headless: true
@levelLoader = new LevelLoader supermodel: @ supermodel , levelID: @ levelID , headless: true , fakeSessionConfig: { codeLanguage: @ language , callback: @ configureSession }
@ listenToOnce @ levelLoader , ' world-necessities-loaded ' , @ onWorldNecessitiesLoaded
onWorldNecessitiesLoaded: ->
# Called when we have enough to build the world, but not everything is loaded
@ grabLevelLoaderData ( )
unless @ solution
@ updateCallback ? state: ' error '
@error = ' No solution present... '
@state = ' error '
return
me.team = @team = ' humans '
@ setupGod ( )
@ initGoalManager ( )
@ register ( )
configureSession: (session, level) =>
# TODO: reach into and find hero and get the config from the solution
try
hero = _ . find level . get ( " thangs " ) , id: " Hero Placeholder "
programmable = _ . find ( hero . components , (x) -> x . config ? . programmableMethods ? . plan ) . config . programmableMethods . plan
session.solution = _ . find ( programmable . solutions ? [ ] ) , language: session . get ( ' codeLanguage ' )
session . set ' heroConfig ' , session . solution . heroConfig
session . set ' code ' , { ' hero-placeholder ' : plan: session . solution . source }
state = session . get ' state '
state.flagHistory = session . solution . flagHistory
state.difficulty = session . solution . difficulty or 0
session.solution.seed = undefined unless _ . isNumber session . solution . seed # TODO: migrate away from submissionCount/sessionID seed objects
catch e
@state = ' error '
@error = " Could not load the session solution for #{ level . get ( ' name ' ) } : " + e . toString ( )
grabLevelLoaderData: ->
@world = @ levelLoader . world
@level = @ levelLoader . level
@session = @ levelLoader . session
@solution = @ levelLoader . session . solution
setupGod: ->
@ god . setLevel @ level . serialize @ supermodel , @ session
@ god . setLevelSessionIDs [ @ session . id ]
@ god . setWorldClassMap @ world . classMap
@god.lastFlagHistory = @ session . get ( ' state ' ) . flagHistory
@god.lastDifficulty = @ session . get ( ' state ' ) . difficulty
@god.lastFixedSeed = @ session . solution . seed
@god.lastSubmissionCount = 0
initGoalManager: ->
@goalManager = new GoalManager ( @ world , @ level . get ( ' goals ' ) , @ team )
@ god . setGoalManager @ goalManager
register: ->
2016-04-25 20:03:08 -04:00
@ listenToOnce @ god , ' infinite-loop ' , @ fail
@ listenToOnce @ god , ' user-code-problem ' , @ onUserCodeProblem
2016-04-07 22:06:57 -04:00
@ listenToOnce @ god , ' goals-calculated ' , @ processSingleGameResults
@ god . createWorld @ generateSpellsObject ( )
@ updateCallback ? state: ' running '
processSingleGameResults: (e) ->
2016-04-12 15:17:05 -04:00
console . log ( e )
2016-04-07 22:06:57 -04:00
@goals = e . goalStates
@frames = e . totalFrames
@lastFrameHash = e . lastFrameHash
@state = ' complete '
@ updateCallback ? state: @ state
2016-04-12 15:17:05 -04:00
isSucessful: () ->
return false unless @ frames == @ solution . frameCount
if @ goals and @ solution . goals
for k of @ goals
continue if not @ solution . goals [ k ]
return false if @ solution . goals [ k ] != @ goals [ k ] . status
return true
2016-04-25 20:03:08 -04:00
onUserCodeProblem: (e) ->
2016-04-25 20:25:30 -04:00
console . warn " Found user code problem: " , e
2016-04-25 20:03:08 -04:00
onNonUserCodeProblem: (e) ->
console . error " Found non-user-code problem: " , e
@error = " Failed due to non-user-code problem: #{ JSON . stringify ( e ) } "
@state = ' error '
@ updateCallback ? state: @ state
2016-04-07 22:06:57 -04:00
fail: (e) ->
@error = ' Failed due to infinate loop. '
@state = ' error '
2016-04-25 20:03:08 -04:00
@ updateCallback ? state: @ state
2016-04-07 22:06:57 -04:00
generateSpellsObject: ->
aetherOptions = createAetherOptions functionName: ' plan ' , codeLanguage: @ session . get ( ' codeLanguage ' )
spellThang = aether: new Aether aetherOptions
spells = " hero-placeholder/plan " : thangs: { ' Hero Placeholder ' : spellThang } , name: ' plan '
source = @ session . get ( ' code ' ) [ ' hero-placeholder ' ] . plan
try
spellThang . aether . transpile source
catch e
console . log " Couldn ' t transpile! \n #{ source } \n " , e
spellThang . aether . transpile ' '
spells