add maps to gui, fix gui for chrome
This commit is contained in:
parent
685f190bf4
commit
9fe5120caa
14
js/Makefile
14
js/Makefile
@ -1,8 +1,18 @@
|
||||
|
||||
MAPS=$(wildcard ../maps/contest*.map ../maps/flood*.map)
|
||||
MAPS=$(wildcard ../maps/flood*.map)
|
||||
MAPS+=$(wildcard ../maps/contest?.map ../maps/contest10.map)
|
||||
MAPS+=$(wildcard ../maps/ems*.map)
|
||||
MAPS+=../maps/pacman.map ../maps/pacman2.map
|
||||
|
||||
all: maps.js
|
||||
|
||||
|
||||
maps.js: mapsToJson.js $(MAPS)
|
||||
./mapsToJson.js $(MAPS) > maps.js
|
||||
|
||||
clean:
|
||||
rm -f maps.js
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
# just build it everytime
|
||||
.PHONY: maps.js
|
||||
|
40
js/gui.js
40
js/gui.js
@ -44,23 +44,31 @@ function mineGui_start() {
|
||||
for (i = 0; i < txt.length; ++i) {
|
||||
if (validMoves[txt[i]]) mineGui_moves += txt[i];
|
||||
}
|
||||
inpMoves.blur();
|
||||
mineGui_updateMine();
|
||||
};
|
||||
var delayInpValidate = function() { window.setTimeout(inpValidate, 0); };
|
||||
var delayInpValidate = function(event) {
|
||||
// console.log("input", event, event.type);
|
||||
window.setTimeout(inpValidate, 0);
|
||||
};
|
||||
inpMoves.onchange = delayInpValidate;
|
||||
inpMoves.onpaste = delayInpValidate;
|
||||
inpMoves.onkeypress = delayInpValidate;
|
||||
document.onkeypress = function (event) {
|
||||
document.body.onkeydown = function (event) {
|
||||
// console.log("body", event, event.type);
|
||||
if (document.activeElement === customMapInput) return;
|
||||
if (event.ctrlKey || event.altKey || event.metaKey) return;
|
||||
var handled = true;
|
||||
if (event.keyCode == 8 || event.charCode == 8) {
|
||||
var cmd = String.fromCharCode(event.charCode || event.keyCode).toUpperCase();
|
||||
if (validMoves[cmd]) {
|
||||
mineGui_move(cmd);
|
||||
} else if (cmd == 'C') { // clear
|
||||
mineGui_moves = "";
|
||||
mineGui_updateMine();
|
||||
} else if (event.keyCode == 8 || event.charCode == 8) {
|
||||
// backspace -> undo
|
||||
mineGui_moves = mineGui_moves.slice(0,-1);
|
||||
mineGui_updateMine();
|
||||
} else if (event.which === 0 && event.keyCode) {
|
||||
switch (event.keyCode) {
|
||||
} else switch (event.keyCode) {
|
||||
case 33: // page up
|
||||
if (selMap.selectedIndex > 0) {
|
||||
selMap.selectedIndex--;
|
||||
@ -89,23 +97,11 @@ function mineGui_start() {
|
||||
handled = false;
|
||||
break;
|
||||
}
|
||||
} else if (event.charCode) {
|
||||
console.log(event.charCode);
|
||||
cmd = String.fromCharCode(event.charCode).toUpperCase();
|
||||
if (validMoves[cmd]) {
|
||||
mineGui_move(cmd);
|
||||
} else if (cmd == 'R') { // redraw
|
||||
mineGui_updateMine();
|
||||
} else if (cmd == 'C') { // clear
|
||||
mineGui_moves = "";
|
||||
mineGui_updateMine();
|
||||
} else {
|
||||
handled = false;
|
||||
if (handled) {
|
||||
// console.log("body handled", event, event.type);
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
} else {
|
||||
handled = false;
|
||||
}
|
||||
if (handled) event.preventDefault();
|
||||
};
|
||||
for (k in mineMaps) {
|
||||
if (mineMaps.hasOwnProperty(k)) {
|
||||
|
@ -33,8 +33,9 @@
|
||||
|
||||
<pre>Help:
|
||||
(<b>L</b>)eft/(<b>U</b>)p/(<b>R</b>)ight/(<b>D</b>)own work as expected (letter and arrow keys), (<b>A</b>)bort and (<b>W</b>)ait too.
|
||||
Special keys: PageUp/PageDown for map select, Backspace for undo, (<b>C</b>)lear and (<b>R</b>)edraw
|
||||
Special keys: PageUp/PageDown for map select, Backspace for undo and (<b>C</b>)lear
|
||||
Be careful: a reload looses all custom maps and saved moves.
|
||||
Listed highscore can be outdated.
|
||||
</pre>
|
||||
|
||||
Build custom map: <button id="mineGui_addData">Add Map</button><br>
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user