2019-12-07 14:10:39 -05:00
|
|
|
const log = function(context, obj){
|
2020-04-01 14:44:17 -04:00
|
|
|
Vars.mods.getScripts().log(context, String(obj))
|
2019-12-03 17:16:23 -05:00
|
|
|
}
|
|
|
|
|
2020-02-11 17:50:16 -05:00
|
|
|
var scriptName = "base.js"
|
|
|
|
var modName = "none"
|
|
|
|
|
2020-03-05 15:58:10 -05:00
|
|
|
const print = text => log(modName + "/" + scriptName, text);
|
2020-02-11 17:50:16 -05:00
|
|
|
|
2019-12-06 22:24:32 -05:00
|
|
|
const extendContent = function(classType, name, params){
|
2019-12-07 15:41:52 -05:00
|
|
|
return new JavaAdapter(classType, params, name)
|
2019-12-06 21:57:47 -05:00
|
|
|
}
|
2019-12-06 22:24:32 -05:00
|
|
|
|
|
|
|
const extend = function(classType, params){
|
|
|
|
return new JavaAdapter(classType, params)
|
2019-12-08 18:34:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const run = method => new java.lang.Runnable(){run: method}
|
2019-12-08 22:50:54 -05:00
|
|
|
const boolf = method => new Boolf(){get: method}
|
|
|
|
const boolp = method => new Boolp(){get: method}
|
|
|
|
const cons = method => new Cons(){get: method}
|
|
|
|
const prov = method => new Prov(){get: method}
|
2019-12-08 18:34:23 -05:00
|
|
|
const newEffect = (lifetime, renderer) => new Effects.Effect(lifetime, new Effects.EffectRenderer({render: renderer}))
|
2019-12-29 17:56:10 -05:00
|
|
|
Call = Packages.mindustry.gen.Call
|
2020-02-06 00:36:56 +01:00
|
|
|
const Calls = Call //backwards compat
|