You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
HTML
52 lines
1.2 KiB
HTML
4 years ago
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Vorple</title>
|
||
|
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<link rel="stylesheet" type="text/css" href="interpreter/main.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<main id="haven">
|
||
|
<div id="output">
|
||
|
<div id="window0" aria-live="polite" aria-atomic="false" aria-relevant="additions"></div>
|
||
|
</div>
|
||
|
|
||
|
<form id="lineinput">
|
||
|
<label id="lineinput-prefix" for="lineinput-field">> </label>
|
||
|
<input name="lineinput" placeholder="Enter a command" id="lineinput-field" type="text" autocomplete="off" autocapitalize="none">
|
||
|
</form>
|
||
|
|
||
|
<div id="loader">
|
||
|
<h2 id="loader-message">Loading scripts</h2>
|
||
|
<div id="spinner">V</div>
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
<script src="interpreter/vorple.min.js"></script>
|
||
|
|
||
|
<script>
|
||
|
vorple.options = {
|
||
|
autosave: false,
|
||
|
engineColors: false,
|
||
|
resource_paths: {
|
||
|
images: "resources/images",
|
||
|
audio: "resources/audio"
|
||
|
},
|
||
|
|
||
|
// URL to the game file
|
||
|
story: "Wand.ulx"
|
||
|
};
|
||
|
|
||
|
Module.locateFile = function( name ) {
|
||
|
return "interpreter/" + name;
|
||
|
};
|
||
|
|
||
|
vorple.debug.off();
|
||
|
vorple.init();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|