2018-03-10 00:44:10 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Ooui Wasm</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css" />
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="ooui-body" class="container-fluid">
|
|
|
|
<p id="loading"><i class="fa fa-refresh fa-spin" style="font-size:14px"></i> Loading...</p>
|
|
|
|
<textarea rows="10" cols="100" id="output" hidden="true"></textarea>
|
|
|
|
</div>
|
2018-03-09 23:58:17 +00:00
|
|
|
|
|
|
|
<script type='text/javascript'>
|
|
|
|
var mainAsmName = "Ooui.Sample";
|
|
|
|
|
|
|
|
var startLoadTime = Date.now();
|
|
|
|
var runtimeLoadTime = null;
|
|
|
|
var bclLoadTime = null;
|
|
|
|
var runtimeLoadTime = null;
|
|
|
|
|
2018-03-10 00:44:10 +00:00
|
|
|
var Module = {
|
2018-03-09 23:58:17 +00:00
|
|
|
onRuntimeInitialized: function () {
|
|
|
|
var assemblies = [
|
|
|
|
"mscorlib.dll",
|
2018-03-10 00:44:10 +00:00
|
|
|
"Microsoft.CSharp.dll",
|
|
|
|
"Newtonsoft.Json.dll",
|
2018-03-09 23:58:17 +00:00
|
|
|
"System.dll",
|
2018-03-10 00:44:10 +00:00
|
|
|
"System.Collections.dll",
|
|
|
|
"System.ComponentModel.TypeConverter.dll",
|
2018-03-09 23:58:17 +00:00
|
|
|
"System.Core.dll",
|
|
|
|
"System.Diagnostics.Debug.dll",
|
|
|
|
"System.Dynamic.Runtime.dll",
|
2018-03-10 00:44:10 +00:00
|
|
|
"System.Globalization.dll",
|
|
|
|
"System.IO.dll",
|
|
|
|
"System.Linq.dll",
|
|
|
|
"System.Linq.Expressions.dll",
|
2018-03-09 23:58:17 +00:00
|
|
|
"System.ObjectModel.dll",
|
|
|
|
"System.Text.RegularExpressions.dll",
|
|
|
|
"System.Text.Encoding.dll",
|
|
|
|
"System.Text.Encoding.Extensions.dll",
|
|
|
|
"System.Threading.dll",
|
2018-03-10 00:44:10 +00:00
|
|
|
"System.Threading.Tasks.dll",
|
2018-03-09 23:58:17 +00:00
|
|
|
"System.Reflection.dll",
|
|
|
|
"System.Reflection.Extensions.dll",
|
2018-03-10 00:44:10 +00:00
|
|
|
"System.Runtime.dll",
|
|
|
|
"System.Runtime.Extensions.dll",
|
|
|
|
"System.Runtime.Serialization.Primitives.dll",
|
|
|
|
"System.Xml.dll",
|
|
|
|
"System.Xml.ReaderWriter.dll",
|
|
|
|
"System.Xml.XDocument.dll",
|
2018-03-09 23:58:17 +00:00
|
|
|
"Ooui.dll",
|
|
|
|
mainAsmName + ".dll"
|
|
|
|
];
|
|
|
|
runtimeLoadTime = Date.now ();
|
|
|
|
console.log ("Done with WASM module instantiation. Took " + (runtimeLoadTime - startLoadTime) + " ms");
|
|
|
|
|
|
|
|
Module.FS_createPath ("/", "managed", true, true);
|
|
|
|
|
|
|
|
var pending = 0;
|
|
|
|
assemblies.forEach (function(asm_name) {
|
|
|
|
console.log ("loading " + asm_name);
|
|
|
|
++pending;
|
|
|
|
fetch ("managed/" + asm_name, { credentials: 'same-origin' }).then (function (response) {
|
|
|
|
if (!response.ok)
|
|
|
|
throw "failed to load Assembly '" + asm_name + "'";
|
|
|
|
return response['arrayBuffer']();
|
|
|
|
}).then (function (blob) {
|
|
|
|
var asm = new Uint8Array (blob);
|
|
|
|
Module.FS_createDataFile ("managed/" + asm_name, null, asm, true, true, true);
|
|
|
|
console.log ("LOADED: " + asm_name);
|
|
|
|
--pending;
|
|
|
|
if (pending == 0)
|
|
|
|
Module.bclLoadingDone ();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
bclLoadingDone: function () {
|
|
|
|
bclLoadTime = Date.now ();
|
|
|
|
console.log ("Done loading the BCL. Took " + (bclLoadTime - runtimeLoadTime) + " ms");
|
|
|
|
|
|
|
|
MonoRuntime.init ();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var MonoRuntime = {
|
|
|
|
init: function () {
|
|
|
|
this.load_runtime = Module.cwrap ('mono_wasm_load_runtime', null, ['string', 'number']);
|
|
|
|
this.assembly_load = Module.cwrap ('mono_wasm_assembly_load', 'number', ['string']);
|
|
|
|
this.find_class = Module.cwrap ('mono_wasm_assembly_find_class', 'number', ['number', 'string', 'string']);
|
|
|
|
this.find_method = Module.cwrap ('mono_wasm_assembly_find_method', 'number', ['number', 'string', 'number']);
|
|
|
|
this.invoke_method = Module.cwrap ('mono_wasm_invoke_method', 'number', ['number', 'number', 'number']);
|
|
|
|
this.mono_string_get_utf8 = Module.cwrap ('mono_wasm_string_get_utf8', 'number', ['number']);
|
2018-03-10 00:44:10 +00:00
|
|
|
this.mono_string = Module.cwrap ('mono_wasm_string_from_js', 'number', ['string']);
|
2018-03-09 23:58:17 +00:00
|
|
|
|
|
|
|
this.load_runtime ("managed", 1);
|
|
|
|
|
|
|
|
runtimeLoadTime = Date.now ();
|
|
|
|
|
|
|
|
console.log ("Done initializing the runtime. Took " + (runtimeLoadTime - bclLoadTime) + " ms");
|
|
|
|
|
|
|
|
App.init ();
|
|
|
|
},
|
|
|
|
|
|
|
|
conv_string: function (mono_obj) {
|
|
|
|
if (mono_obj == 0)
|
|
|
|
return null;
|
|
|
|
var raw = this.mono_string_get_utf8 (mono_obj);
|
|
|
|
var res = Module.UTF8ToString (raw);
|
|
|
|
Module._free (raw);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
},
|
|
|
|
|
|
|
|
call_method: function (method, this_arg, args) {
|
|
|
|
var args_mem = Module._malloc (args.length * 4);
|
|
|
|
var eh_throw = Module._malloc (4);
|
|
|
|
for (var i = 0; i < args.length; ++i)
|
|
|
|
Module.setValue (args_mem + i * 4, args [i], "i32");
|
|
|
|
Module.setValue (eh_throw, 0, "i32");
|
|
|
|
|
|
|
|
var res = this.invoke_method (method, this_arg, args_mem, eh_throw);
|
|
|
|
|
|
|
|
var eh_res = Module.getValue (eh_throw, "i32");
|
|
|
|
|
|
|
|
Module._free (args_mem);
|
|
|
|
Module._free (eh_throw);
|
|
|
|
|
|
|
|
if (eh_res != 0) {
|
|
|
|
var msg = this.conv_string (res);
|
|
|
|
throw new Error (msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
},
|
2018-03-10 00:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
var App = {
|
|
|
|
init: function () {
|
|
|
|
this.loading = document.getElementById ("loading");
|
|
|
|
this.output = document.getElementById ("output");
|
|
|
|
|
|
|
|
this.findMethods ();
|
|
|
|
|
|
|
|
var res = this.runApp ("1", "2");
|
|
|
|
|
|
|
|
this.output.value = res;
|
|
|
|
this.output.hidden = false;
|
|
|
|
this.loading.hidden = true;
|
|
|
|
},
|
2018-03-09 23:58:17 +00:00
|
|
|
|
2018-03-10 00:44:10 +00:00
|
|
|
runApp: function (a, b) {
|
2018-03-09 23:58:17 +00:00
|
|
|
try {
|
2018-03-10 00:44:10 +00:00
|
|
|
MonoRuntime.call_method (this.ooui_method, null, [MonoRuntime.mono_string (a), MonoRuntime.mono_string (b)]);
|
|
|
|
var res = MonoRuntime.call_method (this.add_method, null, [MonoRuntime.mono_string (a), MonoRuntime.mono_string (b)]);
|
|
|
|
return MonoRuntime.conv_string (res);
|
2018-03-09 23:58:17 +00:00
|
|
|
} catch (e) {
|
|
|
|
return e.msg;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-03-10 00:44:10 +00:00
|
|
|
findMethods: function () {
|
|
|
|
this.ooui_module = MonoRuntime.assembly_load ("Ooui")
|
|
|
|
if (!this.ooui_module)
|
|
|
|
throw "Could not find Ooui.dll";
|
2018-03-09 23:58:17 +00:00
|
|
|
|
2018-03-10 00:44:10 +00:00
|
|
|
this.ooui_class = MonoRuntime.find_class (this.ooui_module, "Ooui", "UI")
|
|
|
|
if (!this.ooui_class)
|
|
|
|
throw "Could not find UI class in Ooui module";
|
2018-03-09 23:58:17 +00:00
|
|
|
|
2018-03-10 00:44:10 +00:00
|
|
|
this.ooui_method = MonoRuntime.find_method (this.ooui_class, "StartWebAssemblySession", -1)
|
|
|
|
if (!this.ooui_method)
|
|
|
|
throw "Could not find StartWebAssemblySession method";
|
|
|
|
|
|
|
|
this.main_module = MonoRuntime.assembly_load (mainAsmName)
|
|
|
|
if (!this.main_module)
|
|
|
|
throw "Could not find Main Module " + mainAsmName + ".dll";
|
2018-03-09 23:58:17 +00:00
|
|
|
|
2018-03-10 00:44:10 +00:00
|
|
|
this.math_class = MonoRuntime.find_class (this.main_module, "", "Program")
|
|
|
|
if (!this.math_class)
|
|
|
|
throw "Could not find Program class in main module";
|
|
|
|
|
|
|
|
this.add_method = MonoRuntime.find_method (this.math_class, "Main", -1)
|
|
|
|
if (!this.add_method)
|
|
|
|
throw "Could not find Main method";
|
2018-03-09 23:58:17 +00:00
|
|
|
},
|
|
|
|
};
|
2018-03-10 00:44:10 +00:00
|
|
|
</script>
|
|
|
|
<script async type="text/javascript" src="mono.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|