Support for Function arguments
WilliamRagstad opened this issue · 2 comments
WilliamRagstad commented
There is a poly-fill trick for supporting arguments to functions using the new /data get storage [name] [path]
.
Format example:
mcscriptfunctions
|___ [function name]
|___ [meta data]
|___ [arguments]
|___ [0]
|___ [1]
|___ ...
|___ [N]
This will allow for real-time function calls if you create a macro that generates commands similar to the following code: (simulating using C#)
void callToFunction(string name, object[] args) {
string r = "/data modify storage MCScriptFunctions " + name + ".arguments set value [";
for(int i = 0; i < args.length; i++) r += args[i];
r += "]\n"
r += "/function " + name;
}
This could probably be optimized in many ways regarding to recursion etc (can be solved by storing arguments in temp variables), but this is the overall picture.
Heath123 commented
Sadly mcscript isn't really maintained or updated any more...