codecombat/app/lib/aether_utils.coffee

69 lines
3.3 KiB
CoffeeScript
Raw Normal View History

2016-03-04 16:04:52 -05:00
utils = require 'core/utils'
Aether.addGlobal 'Vector', require './world/vector'
2014-08-30 16:43:56 -04:00
Aether.addGlobal '_', _
module.exports.createAetherOptions = (options) ->
throw new Error 'Specify a function name to create an Aether instance' unless options.functionName
throw new Error 'Specify a code language to create an Aether instance' unless options.codeLanguage
useInterpreter = options.useInterpreter
defaultToEsper = switch options.codeLanguage
when 'python' then me.level() < 15 # Esper currently works well until using range()
when 'javascript' then me.level() < 22 # Esper currently works well until using hero.myFn = function() pattern
when 'lua' then me.level() < 10 # Functions don't work in Esper yet, can't play forest function levels
when 'coffeescript' then false # CoffeeScript has a toNative error if it ever finishes plan(), and also @fn = -> pattern doesn't work
when 'clojure' then false # No Clojure support
useInterpreter ?= !!utils.getQueryVariable 'esper', defaultToEsper
2014-08-30 16:43:56 -04:00
aetherOptions =
functionName: options.functionName
protectAPI: not options.skipProtectAPI
2014-10-10 21:23:51 -04:00
includeFlow: Boolean options.includeFlow
noVariablesInFlow: true
skipDuplicateUserInfoInFlow: true # Optimization that won't work if we are stepping with frames
2014-08-30 16:43:56 -04:00
yieldConditionally: options.functionName is 'plan'
simpleLoops: true
whileTrueAutoYield: true
2014-08-30 16:43:56 -04:00
globals: ['Vector', '_']
problems:
jshint_W040: {level: 'ignore'}
jshint_W030: {level: 'ignore'} # aether_NoEffect instead
jshint_W038: {level: 'ignore'} # eliminates hoisting problems
jshint_W091: {level: 'ignore'} # eliminates more hoisting problems
jshint_E043: {level: 'ignore'} # https://github.com/codecombat/codecombat/issues/813 -- since we can't actually tell JSHint to really ignore things
jshint_Unknown: {level: 'ignore'} # E043 also triggers Unknown, so ignore that, too
aether_MissingThis: {level: 'error'}
problemContext: options.problemContext
2014-08-30 16:43:56 -04:00
#functionParameters: # TODOOOOO
executionLimit: 3 * 1000 * 1000
2014-08-30 16:43:56 -04:00
language: options.codeLanguage
useInterpreter: useInterpreter
2014-08-30 16:43:56 -04:00
parameters = functionParameters[options.functionName]
unless parameters
console.warn "Unknown method #{options.functionName}: please add function parameters to lib/aether_utils.coffee."
parameters = []
if options.functionParameters and not _.isEqual options.functionParameters, parameters
console.error "Update lib/aether_utils.coffee with the right function parameters for #{options.functionName} (had: #{parameters} but this gave #{options.functionParameters}."
parameters = options.functionParameters
aetherOptions.functionParameters = parameters.slice()
#console.log 'creating aether with options', aetherOptions
return aetherOptions
# TODO: figure out some way of saving this info dynamically so that we don't have to hard-code it: #1329
functionParameters =
hear: ['speaker', 'message', 'data']
makeBid: ['tileGroupLetter']
findCentroids: ['centroids']
isFriend: ['name']
evaluateBoard: ['board', 'player']
getPossibleMoves: ['board']
minimax_alphaBeta: ['board', 'player', 'depth', 'alpha', 'beta']
distanceTo: ['target']
2014-08-30 16:43:56 -04:00
chooseAction: []
plan: []
initializeCentroids: []
update: []
getNearestEnemy: []
die: []