diff --git a/.gitignore b/.gitignore index 41d654c..8b6614a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ .local/ build/ -node_modules/ diff --git a/Makefile b/Makefile index c2d1217..ab5d4cb 100644 --- a/Makefile +++ b/Makefile @@ -25,17 +25,13 @@ export_png: ${tic_cli} \ 'load ${game_src} & save ${build_dir}/${game_name}.png & exit' +import_cover: + ${tic_cli} \ + 'load ${game_src} & import screen ${cover_src} & exit' + release: @make cleanup @make export_tic @make export_png -export_cover: - ${tic_cli} \ - 'load ${game_src} & export screen ${cover_src} & exit' - -import_cover: - ${tic_cli} \ - 'load ${game_src} & import screen ${cover_src} & exit' - # vim: set ts=4 sw=4 autoindent noexpandtab: diff --git a/cover.png b/cover.png new file mode 100644 index 0000000..24e69b7 Binary files /dev/null and b/cover.png differ diff --git a/game.js b/game.js index 69072a7..904117d 100644 --- a/game.js +++ b/game.js @@ -6,12 +6,11 @@ // input: gamepad // saveid: DotDashPit // script: js -// version: 1.1.0 +// version: 1.0 const DOT_DASH_THRESHOLD = 200 -const DOT_DASH_IDLE_TIMEOUT = 450 +const DOT_DASH_IDLE_TIMEOUT = 500 -const FONT_SIZE = 1 const HINT_DISTANCE = 30 /* Game Screens */ @@ -356,20 +355,12 @@ function spawnEnemies() { const enemyCount = 1 + Math.floor(arena.wave / 2) const getType = (wave) => { + if (wave <= 2) return 'point' + const availableTypes = Object.keys(enemyBlueprints) - - if (wave <= 2) return availableTypes[0] - if (wave <= 6) return availableTypes[wave - 2] - return availableTypes[rnd(0, availableTypes.length - 1)] } - const getSpeed = (type, wave) => { - if (wave <= 6) return 0.3 - - return enemyBlueprints[type].maxSpeed * Math.random() - } - const getSpawnPosition = (type) => { const minDistance = enemyBlueprints[type].spawnDistance const b = 4 * SPRITE_RADIUS @@ -388,7 +379,7 @@ function spawnEnemies() { const type = getType(arena.wave) return { type, - speed: getSpeed(type, arena.wave), + speed: enemyBlueprints[type].maxSpeed * Math.random(), value: enemyBlueprints[type].value, letter: alphabet[rnd(0, alphabet.length - 1)], positions: [getSpawnPosition(type), getSpawnPosition(type)], @@ -446,50 +437,40 @@ function drawEnemies() { } function drawEnemyLetters() { - const backgroundColor = 2 - const borderColor = 5 - const letterWidth = 8 * FONT_SIZE - const letterHeight = 7 * FONT_SIZE - const boxWidth = letterWidth + 2 * FONT_SIZE - const boxHeight = letterHeight + 4 * FONT_SIZE - const offset = 9 + 2 * SPRITE_RADIUS * FONT_SIZE - enemies.forEach((enemy) => { + const bgColor = 2 + const borderColor = 5 const enemyPosition = enemy.positions[0] const d = getDirection(player.position, enemyPosition) - const letterPosition = { - x: enemyPosition.x + d.x * offset, - y: enemyPosition.y + d.y * offset, + const letterPos = { + x: enemyPosition.x + d.x * 15, + y: enemyPosition.y + d.y * 15, } - const screenPosition = worldToScreen(letterPosition) - const boxX = screenPosition.x - boxWidth / 2 + FONT_SIZE - const boxY = screenPosition.y - boxHeight / 2 + FONT_SIZE - const letterX = screenPosition.x - letterWidth / 2 + FONT_SIZE - const letterY = screenPosition.y - letterHeight / 2 + FONT_SIZE + const screenPos = worldToScreen(letterPos) - rect(boxX, boxY, boxWidth, boxHeight, backgroundColor) - rectb(boxX, boxY, boxWidth, boxHeight, borderColor) - font(enemy.letter, letterX, letterY, 0, 8, 8, true, FONT_SIZE) + rect(screenPos.x - 4, screenPos.y - 5, 10, 11, bgColor) + rectb(screenPos.x - 4, screenPos.y - 5, 10, 11, borderColor) + font(enemy.letter, screenPos.x - 3, screenPos.y - 3, 0, 8, 8, true) if (getDistance(player.position, enemy.positions[0]) < HINT_DISTANCE) { const code = letterToMorse[enemy.letter].split('') const hintWidth = MORSE_GAP + morseWidth(code) const hintPosition = { - x: boxX, - y: boxY + boxHeight + 2, + x: screenPos.x - 4, + y: screenPos.y + 8, } rect( hintPosition.x, hintPosition.y - 1, - Math.max(boxWidth, hintWidth), + Math.max(10, hintWidth), MORSE_GAP + 2, borderColor, ) - drawMorse(code, hintPosition.x, hintPosition.y, backgroundColor) + drawMorse(code, hintPosition.x, hintPosition.y, 2) } }) } @@ -501,7 +482,7 @@ let effects = [] const effectRenderers = { flash: ({ frames }) => { - const color = parseInt(frames.shift()) + const color = frames.shift() cls(color) }, laser: ({ from, to, frames }) => { @@ -656,9 +637,9 @@ function gameover() { if (player.score > arena.highscore) { pmem(0, player.score) - sfx(0, 38, 30, 1, 6) + sfx(0, 'C-5', 30, 1, 6) } else { - sfx(0, 17, 30, 1, 5) + sfx(0, 'F-2', 30, 1, 5) } effects = [ @@ -919,32 +900,32 @@ const BTN_Y = 7 // 007:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 008:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 009:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 010:111111118888888888888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888881111188888111118888811111111 -// 011:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111 -// 012:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111 -// 013:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111 -// 014:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111 -// 015:111111111222222222222222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222111112222211111222221111111 +// 010:111111118888888888888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888811111888881111188888111111111 +// 011:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111 +// 012:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111 +// 013:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111 +// 014:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111 +// 015:111111111222222222222222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222222222222221111122222111112222211111111 // 016:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 017:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 018:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 019:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 020:111111118888888888888881111188888888888888811111888888888888888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888111118888888888888881111188888888888888811111111 -// 021:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211118888888888888882111188888888888888821111111 -// 022:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211118888888888888882111188888888888888821111111 -// 023:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211118888888888888882111188888888888888821111111 -// 024:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211118888888888888882111188888888888888821111111 -// 025:111111111222222222222222111112222222222222221111122222222222222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222211111222222222222222111112222222222222221111111 +// 020:111111118888888888888881111188888888888888811111888888888888888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888881111188888888888888811111888888888888888111111111 +// 021:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888888888888821111888888888888888211111111 +// 022:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888888888888821111888888888888888211111111 +// 023:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888888888888821111888888888888888211111111 +// 024:111111118888888888888882111188888888888888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888888888888821111888888888888888211111111 +// 025:111111111222222222222222111112222222222222221111122222222222222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222111112222222222222221111122222222222222211111111 // 026:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 027:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 028:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 029:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 030:111111118888888888888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888811111111 -// 031:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111 -// 032:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111 -// 033:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111 -// 034:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111 -// 035:111111111222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222222222222221111111 +// 030:111111118888888888888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888111111111 +// 031:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111 +// 032:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111 +// 033:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111 +// 034:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111 +// 035:111111111222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222211111111 // 036:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 037:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 038:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 @@ -959,42 +940,42 @@ const BTN_Y = 7 // 047:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 048:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 049:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 050:111111118888888888888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888881111188888111118888811111111 -// 051:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111 -// 052:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111 -// 053:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111 -// 054:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888888888888882111188888211118888821111111 -// 055:111111111222222222222222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222222222222222111112222211111222221111111 +// 050:111111118888888888888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888811111888881111188888111111111 +// 051:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111 +// 052:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111 +// 053:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111 +// 054:111111118888888888888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111888882111188888211111111 +// 055:111111111222222222222222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222222222222221111122222111112222211111111 // 056:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 057:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 058:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 059:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 060:111111118888811111888888888888888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888881111188888888888888811111111 -// 061:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111111 -// 062:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111111 -// 063:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111111 -// 064:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111111 -// 065:111111111222221111122222222222222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222111112222222222222221111111 +// 060:111111118888811111888888888888888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888811111888888888888888111111111 +// 061:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211111111 +// 062:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211111111 +// 063:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211111111 +// 064:111111118888821111888888888888888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211111111 +// 065:111111111222221111122222222222222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222221111122222222222222211111111 // 066:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 067:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 068:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 069:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 070:111111118888811111888881111188888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888881111188888111118888811111111 -// 071:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211118888821111111 -// 072:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211118888821111111 -// 073:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211118888821111111 -// 074:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211118888821111111 -// 075:111111111222221111122222111112222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222111112222211111222221111111 +// 070:111111118888811111888881111188888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888811111888881111188888111111111 +// 071:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211111111 +// 072:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211111111 +// 073:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211111111 +// 074:111111118888821111888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211111111 +// 075:111111111222221111122222111112222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222221111122222111112222211111111 // 076:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 077:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 078:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 079:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 080:111111118888811111888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888811111888881111188888111118888811111111 -// 081:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211118888821111111 -// 082:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211118888821111111 -// 083:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211118888821111111 -// 084:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888882111188888211118888821111111 -// 085:111111111222221111122222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222221111122222111112222211111222221111111 +// 080:111111118888811111888881111188888111118888811111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888111118888811111888881111188888111111111 +// 081:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111888882111188888211111111 +// 082:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111888882111188888211111111 +// 083:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111888882111188888211111111 +// 084:111111118888821111888882111188888211118888821111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111888882111188888211111111 +// 085:111111111222221111122222111112222211111222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222211111222221111122222111112222211111111 // 086:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 087:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 088:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 @@ -1009,32 +990,32 @@ const BTN_Y = 7 // 097:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 098:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 099:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 100:111111118888811111888888888888888111118888888888888881111188888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888881111188888888888888811111888888888888888111118888811111111 -// 101:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111888888888888888211118888821111111 -// 102:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111888888888888888211118888821111111 -// 103:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111888888888888888211118888821111111 -// 104:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888888888888821111888888888888888211118888821111111 -// 105:111111111222221111122222222222222211111222222222222222111112222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222111112222222222222221111122222222222222211111222221111111 +// 100:111111118888811111888888888888888111118888888888888881111188888111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888811111888888888888888111118888888888888881111188888111111111 +// 101:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211118888888888888882111188888211111111 +// 102:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211118888888888888882111188888211111111 +// 103:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211118888888888888882111188888211111111 +// 104:111111118888821111888888888888888211118888888888888882111188888211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111118888821111888888888888888211118888888888888882111188888211111111 +// 105:111111111222221111122222222222222211111222222222222222111112222211111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111222221111122222222222222211111222222222222222111112222211111111 // 106:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 107:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 108:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 109:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 110:111111118888811111888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888111118888811111111 -// 111:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111111 -// 112:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111111 -// 113:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111111 -// 114:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888211118888821111111 -// 115:111111111222221111122222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222211111222221111111 +// 110:111111118888811111888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888881111188888111111111 +// 111:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211111111 +// 112:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211111111 +// 113:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211111111 +// 114:111111118888821111888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888882111188888211111111 +// 115:111111111222221111122222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222111112222211111111 // 116:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 117:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 118:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 119:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 -// 120:111111118888888888888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888811111111 -// 121:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111 -// 122:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111 -// 123:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111 -// 124:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111188888888888888821111111 -// 125:111111111222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111112222222222222221111111 +// 120:111111118888888888888881111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888111111111 +// 121:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111 +// 122:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111 +// 123:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111 +// 124:111111118888888888888882111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111888888888888888211111111 +// 125:111111111222222222222222111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222211111111 // 126:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 127:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 // 128:111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111