mirror of
https://github.com/He4eT/DotDashPit.git
synced 2026-05-04 17:37:23 +00:00
game: interface
This commit is contained in:
parent
7f5fd8d147
commit
b035aeb90a
1 changed files with 27 additions and 30 deletions
57
game.js
57
game.js
|
|
@ -8,6 +8,10 @@
|
|||
// script: js
|
||||
// version: 0.1
|
||||
|
||||
/* Config */
|
||||
|
||||
const HISTORY_LENGTH = 14
|
||||
|
||||
const morseCode = [
|
||||
['A', ' .- '],
|
||||
['B', ' -... '],
|
||||
|
|
@ -69,7 +73,7 @@ const arena = {
|
|||
bounds: {
|
||||
top: 0,
|
||||
right: 225,
|
||||
bottom: 89,
|
||||
bottom: 105,
|
||||
left: 0,
|
||||
},
|
||||
spriteHalfSize: 3,
|
||||
|
|
@ -83,7 +87,7 @@ const player = {
|
|||
score: 0,
|
||||
key: {
|
||||
history: '',
|
||||
buffer: '',
|
||||
buffer: '.-----',
|
||||
isDown: false,
|
||||
downAt: 0,
|
||||
upAt: 0,
|
||||
|
|
@ -184,10 +188,10 @@ function drawArena() {
|
|||
/* Interface */
|
||||
|
||||
function drawInterface() {
|
||||
drawMorse(player.key.buffer, 102, 123, 15, 36)
|
||||
drawMorse(player.key.buffer, 100, 123, 15, 36)
|
||||
|
||||
print(player.score, 145, 121, 6)
|
||||
print(player.key.history.padStart('13'), 18, 121, 6, true)
|
||||
print(player.key.history.padStart(HISTORY_LENGTH, ' '), 5, 118, 5, true)
|
||||
print(player.score.toString().padStart(14, ' '), 152, 124, 6, true)
|
||||
}
|
||||
|
||||
/* Player */
|
||||
|
|
@ -276,7 +280,7 @@ function handleMorse() {
|
|||
key.history += ' '
|
||||
}
|
||||
key.buffer = ''
|
||||
key.history = key.history.slice(-13)
|
||||
key.history = key.history.slice(-1 * HISTORY_LENGTH)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -716,35 +720,29 @@ const BTN_Y = 7
|
|||
*/
|
||||
|
||||
// <TILES>
|
||||
// 001:5555555055555550555555505555555055555550555555505555555000000000
|
||||
// 002:1111110012222100123321001233210012222100111111000000000000000000
|
||||
// 003:1111111112222221123333211233332112222221111111110000000000000000
|
||||
// 001:0000000000000000000000000000000000000000000000000000044300000433
|
||||
// 002:0000000000000000000000000000000000000000000000003333333333333333
|
||||
// 003:0000000000000000000000000000000000000000000000000000000033333333
|
||||
// 004:0000000000000000000000000000000000000000000000030000003333333333
|
||||
// 005:0000333300033333003333330333333133333311333333333333333333333333
|
||||
// 006:3333333333333333111111111111111111111111333333333333333333333333
|
||||
// 007:3333333333333333111111131111113311111333333333333333333333333333
|
||||
// 008:3333333333333330333333113333311133331111333111133300003330000333
|
||||
// 009:0000333300033330113333001333300033330000333000003300000030000000
|
||||
// 010:3333003300000333333333330000000000000000000000000000000000000000
|
||||
// 011:3333333333333333333333300000000000000000000000000000000000000000
|
||||
// 012:3333333300000000000000000000000000000000000000000000000000000000
|
||||
// 013:3333333333333333000000000000000000000000000000000000000000000000
|
||||
// 014:3340000034400000000000000000000000000000000000000000000000000000
|
||||
// 016:0000000000000000000000000000000000000000000001110000012200000123
|
||||
// 017:0000000000000000000000000000000000000000111111112222222233333333
|
||||
// 018:0000000000000000000000000000000000000000111000002210000032100000
|
||||
// 019:0000000000000000000000000000000000000000000000000000000300000003
|
||||
// 020:0000000000000000000000000000000000000000000000003333333333333333
|
||||
// 021:0000000000000000000000000000000000000000000000003333333300000000
|
||||
// 022:0000000000000000000000000000000000000000000000003000055530000500
|
||||
// 023:0000000000000000000000000000000000000000000000005550000300500003
|
||||
// 024:0000000000000000000000000000000000000000000000003000000030000000
|
||||
// 032:0000012300000123000001230000012300000123000001230000012300000123
|
||||
// 033:2111111211111111111111111111111111111111111111111111111121111112
|
||||
// 034:3210000032100000321000003210000032100000321000003210000032100000
|
||||
// 035:0000000000000000000000000000000000000000000000000000000000000003
|
||||
// 036:0000000000000000000000000000000000000000000000000000000033333333
|
||||
// 038:0000050000000000000000000000000000000000000000000000050030000500
|
||||
// 039:0050000000000000000000000000000000000000000000000050000000500003
|
||||
// 040:0000000000000000000000000000000000000000000000000000000030000000
|
||||
// 048:0000012300000122000001110000000000000000000000000000000000000000
|
||||
// 049:3333333322222222111111110000000000000000000000000000000000000000
|
||||
// 050:3210000022100000111000000000000000000000000000000000000000000000
|
||||
// 051:0000000300000000000000000000000000000000000000000000000000000000
|
||||
// 052:3333333300000000000000000000000000000000000000000000000000000000
|
||||
// 053:3333333300000000000000000000000000000000000000000000000000000000
|
||||
// 054:3000055500000000000000000000000000000000000000000000000000000000
|
||||
// 055:5550000300000000000000000000000000000000000000000000000000000000
|
||||
// 056:3000000000000000000000000000000000000000000000000000000000000000
|
||||
// 064:8800088080000080008880000088800000888000800000808800088000000000
|
||||
// 065:8800088080000080000000000008000000000000800000808800088000000000
|
||||
// 066:0000000008808800080008000008000008000800088088000000000000000000
|
||||
|
|
@ -768,10 +766,9 @@ const BTN_Y = 7
|
|||
// 010:021212121212121212121212121212121212121212121212121212121222000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// 011:021212121212121212121212121212121212121212121212121212121222000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// 012:021212121212121212121212121212121212121212121212121212121222000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// 013:031313131313131313131313131313131313131313131313131313131323000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// 014:314151515151515151515151610000000071515151515151515151514181000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// 015:324200000000000000000000620000000072000000000000000000004282000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// 016:334353535353535353535353630000000073535353535353535353534383000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// 013:021212121212121212121212121212121212121212121212121212121222000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// 014:031313131313131313131313131313131313131313131313131313131323000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// 015:10202020303030303030304050606060708090a0b0c0c0c0c0c0c0c0d0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
// </MAP>
|
||||
|
||||
// <WAVES>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue