upgrade alphabeth dict for polish letters -> alphabeth.js

develop
TBS093A 2020-05-27 18:00:01 +02:00
parent f91e1afc79
commit fe4f47547b
2 changed files with 73 additions and 9 deletions

View File

@ -9,6 +9,14 @@ export const alphabet = {
+ "=-= ==-\n" + "=-= ==-\n"
+ "=-- =-=\n", + "=-- =-=\n",
'Ą':
"=-=-=as=-\n"
+ "==- =--\n"
+ "=== ==-\n"
+ "=-==-=-=-\n"
+ "=-= ==-\n"
+ "=-- =\\\\\n",
'B': 'B':
"-=-====- \n" "-=-====- \n"
+ "=-= =-=\n" + "=-= =-=\n"
@ -25,6 +33,14 @@ export const alphabet = {
+ " =-= =-=\n" + " =-= =-=\n"
+ " =-=-= \n", + " =-=-= \n",
'Ć':
" ==//= \n"
+ " =-= =-=\n"
+ "=-- \n"
+ "=-- \n"
+ " =-= =-=\n"
+ " =-=-= \n",
'D': 'D':
"===-=- \n" "===-=- \n"
+ "=--=-=-= \n" + "=--=-=-= \n"
@ -41,6 +57,14 @@ export const alphabet = {
+ "=-______ \n" + "=-______ \n"
+ "=-=-=-=-=\n", + "=-=-=-=-=\n",
'Ę':
"=-=-=--=-\n"
+ "=-****** \n"
+ "-=_______\n"
+ "=-******^\n"
+ "=-______ \n"
+ "=-=-\\\\=-=\n",
'F': 'F':
"=-=-=--=-\n" "=-=-=--=-\n"
+ "=--*^****\n" + "=--*^****\n"
@ -113,6 +137,14 @@ export const alphabet = {
+ "=-= --=-=\n" + "=-= --=-=\n"
+ "=== ==-=\n", + "=== ==-=\n",
'Ń':
"=-= //=-=\n"
+ "=-== =-=\n"
+ "==--- -==\n"
+ "=-==--=-=\n"
+ "=-= --=-=\n"
+ "=== ==-=\n",
'O': 'O':
" =-=-= \n" " =-=-= \n"
+ " =-=-=-= \n" + " =-=-=-= \n"
@ -121,6 +153,14 @@ export const alphabet = {
+ " =-=-=== \n" + " =-=-=== \n"
+ " =-=-- \n", + " =-=-- \n",
'Ó':
" =-//= \n"
+ " =-=-=-= \n"
+ "=-= =-=\n"
+ "=-= =-=\n"
+ " =-=-=== \n"
+ " =-=-- \n",
'P': 'P':
"=-=-=-== \n" "=-=-=-== \n"
+ "=-=***===\n" + "=-=***===\n"
@ -145,6 +185,14 @@ export const alphabet = {
+ "=- =-=\n" + "=- =-=\n"
+ " =-=-=-= \n", + " =-=-=-= \n",
'Ś':
" =-//=- \n"
+ "=== -=\n"
+ " =-=- \n"
+ " ====- \n"
+ "=- =-=\n"
+ " =-=-=-= \n",
'T': 'T':
"=-=-=-=-=\n" "=-=-=-=-=\n"
+ "=-=-=-=-=\n" + "=-=-=-=-=\n"
@ -174,8 +222,8 @@ export const alphabet = {
+ " =-=-=-= \n" + " =-=-=-= \n"
+ "=-= =-=\n" + "=-= =-=\n"
+ "=-= =-=\n" + "=-= =-=\n"
+ " =-=-\\- \n" + " =-=-\\\\- \n"
+ " =-=-\\ \n", + " =-=-\\\\ \n",
'V': 'V':
"=-= =-=\n" "=-= =-=\n"
@ -188,8 +236,8 @@ export const alphabet = {
'X': 'X':
"=-= =-=\n" "=-= =-=\n"
+ " =-= =-= \n" + " =-= =-= \n"
+ " =-== \n" + " =-=== \n"
+ " ==-= \n" + " ==-== \n"
+ " =-= =-= \n" + " =-= =-= \n"
+ "=-= =-=\n", + "=-= =-=\n",
@ -209,6 +257,22 @@ export const alphabet = {
+ " -=-=-=-=\n" + " -=-=-=-=\n"
+ "=-=-=--=-\n", + "=-=-=--=-\n",
'Ź':
"=-=-//=-=\n"
+ "=-=-===- \n"
+ " ==- \n"
+ " =-= \n"
+ " -=-=-=-=\n"
+ "=-=-=--=-\n",
'Ż':
"=-=-()=-=\n"
+ "=-=-===- \n"
+ " ==- \n"
+ " =-= \n"
+ " -=-=-=-=\n"
+ "=-=-=--=-\n",
' ': ' ':
"\n\n\n", "\n\n\n",

View File

@ -191,7 +191,7 @@ const IndexInterface = () => {
} }
const viewTitleAudio = async() => { const viewTitleAudio = async() => {
let title = 'test audio x test audio' let title = 'rzukk x bragga bad'
title = title.toUpperCase() title = title.toUpperCase()
let titleASCII = []; let titleASCII = [];
let i let i
@ -211,12 +211,12 @@ const IndexInterface = () => {
const moveTitleAudio = async() => { const moveTitleAudio = async() => {
let title = document.getElementById('audioTitle') let title = document.getElementById('audioTitle')
let different = window.innerHeight - title.clientHeight let different = window.innerHeight - title.clientHeight
await sleep(2000) await sleep(5000)
while (true) { while (true) {
title.style = 'margin-top: ' + different + 'px;' title.style = 'margin-top: ' + different + 'px;'
await sleep(12000) await sleep(15000)
title.style = 'margin-top: 10px;' title.style = 'margin-top: 10px;'
await sleep(12000) await sleep(15000)
} }
} }