asciibird/src/ascii.js

759 lines
28 KiB
JavaScript
Raw Normal View History

2021-08-04 03:21:06 +00:00
import LZString from 'lz-string';
import store from './store';
// 0 => 'white',
// 1 => 'black',
// 2 => 'navy',
// 3 => 'green',
// 4 => 'red',
// 5 => 'brown',
// 6 => 'purple',
// 7 => 'olive',
// 8 => 'yellow', # dark yellow
// 9 => 'lime', # ltgreen
// 10 => 'teal',
// 11 => 'cyan',
// 12 => 'blue', # ltblue,
// 13 => 'fuchsia', # pink
// 14 => 'grey',
// 15 => 'lightgrey',
export const mircColours99 = [
'rgb(255,255,255)',
'rgb(0,0,0)',
'rgb(0,0,127)',
'rgb(0,147,0)',
'rgb(255,0,0)',
'rgb(127,0,0)',
'rgb(156,0,156)',
'rgb(252,127,0)',
'rgb(255,255,0)',
'rgb(0,252,0)',
'rgb(0,147,147)',
'rgb(0,255,255)',
'rgb(0,0,252)',
'rgb(255,0,255)',
'rgb(127,127,127)',
'rgb(210,210,210)',
"#470000",
"#472100",
"#474700",
"#324700",
"#004700",
"#00472c",
"#004747",
"#002747",
"#000047",
"#2e0047",
"#470047",
"#47002a",
"#740000",
"#743a00",
"#747400",
"#517400",
"#007400",
"#007449",
"#007474",
"#004074",
"#000074",
"#4b0074",
"#740074",
"#740045",
"#b50000",
"#b56300",
"#b5b500",
"#7db500",
"#00b500",
"#00b571",
"#00b5b5",
"#0063b5",
"#0000b5",
"#7500b5",
"#b500b5",
"#b5006b",
"#ff0000",
"#ff8c00",
"#ffff00",
"#b2ff00",
"#00ff00",
"#00ffa0",
"#00ffff",
"#008cff",
"#0000ff",
"#a500ff",
"#ff00ff",
"#ff0098",
"#ff5959",
"#ffb459",
"#ffff71",
"#cfff60",
"#6fff6f",
"#65ffc9",
"#6dffff",
"#59b4ff",
"#5959ff",
"#c459ff",
"#ff66ff",
"#ff59bc",
"#ff9c9c",
"#ffd39c",
"#ffff9c",
"#e2ff9c",
"#9cff9c",
"#9cffdb",
"#9cffff",
"#9cd3ff",
"#9c9cff",
"#dc9cff",
"#ff9cff",
"#ff94d3",
"#000000",
"#131313",
"#282828",
"#363636",
"#4d4d4d",
"#656565",
"#818181",
"#9f9f9f",
"#bcbcbc",
"#e2e2e2",
"#ffffff",
2021-08-04 03:21:06 +00:00
];
2021-08-12 01:52:40 +00:00
// How big the brush size can get
// Although you can type in the input a bigger number than this anyway
export const maxBrushSize = 50;
2021-08-12 01:52:40 +00:00
// Chars that end up in the toolbar
export const charCodes = [' ', '!', '"', '#', '$', '%', '&', '\'', '(', ')', '*', '+', ',', '-',
'.', '/',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<', '=', '>', '?', '@', 'A',
'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S',
'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '[', '\\', ']', '^', '_', '`', 'a', 'b', 'c', 'd', 'e',
'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
'x', 'y', 'z', '{', '|', '}', '~', 'Ç', 'ü', 'é', 'â', 'ä', 'à', 'å', 'ç', 'ê', 'ë', 'è',
'ï', 'î', 'ì', 'Ä', 'Å', 'É', 'æ', 'Æ', 'ô', 'ö', 'ò', 'û', 'ù', 'ÿ', 'Ö', 'Ü', 'ø', '£',
'Ø', '×', 'ƒ', 'á', 'í', 'ó', 'ú', 'ñ', 'Ñ', 'ª', 'º', '¿', '®', '¬', '½', '¼', '¡', '«',
'»', 'Á', 'Â', 'À', '©', '¢', '¥', 'ã', 'Ã', '¤', 'ð', 'Ð', 'Ê', 'Ë', 'È', 'ı', 'Í', 'Î',
'Ï', '¦', 'Ì', 'Ó', 'ß', 'Ô', 'Ò', 'õ', 'Õ', 'µ', 'þ', 'Þ', 'Ú', 'Û', 'Ù', 'ý', 'Ý', '¸',
'°', '¨', '·', '¯', '´', '≡', '±', '‗', '¶', '§', '÷',
'⁰', '¹', '³', '²', '⁴', '⁵', '⁶', '⁷', '⁸', '⁹', '⁺', '⁻', '⁼', '⁽', '⁾',
'₀', '₁', '₂', '₃', '₄', '₅', '₆', '₇', '₈', '₉', '₊', '₋', '₌', '₍', '₎',
2021-12-04 03:47:31 +00:00
'¼', '½', '¾', '⅓', '⅔', '⅕', '⅖', '⅗', '⅘', '⅙', '⅚', '⅛', '⅜', '⅝', '⅞', '⅟', '⅒', '⅑', '',
'└', '┐', '┘', '┌', '│', '┤', '├', '┴', '┬', '─', '┼',
'╚', '╗', '╝', '╔', '║', '╣', '╠', '╩', '╦', '═', '╬',
'╰', '╮', '╯', '╭', '', '╲', '',
'▘', '▖', '▝', '▗', '▚',
'▏', '▎', '▍', '▌', '▋', '▊', '▉',
'▁', '▂', '▃', '▄', '▅', '▆', '▇', '▀', '▔', '░', '▒', '▓', '█',
];
// Toolbar icons
export const toolbarIcons = [{
name: 'default',
icon: 'edit_off',
},
{
name: 'select',
icon: 'photo_size_select_small',
},
{
name: 'text',
icon: 'text_rotation_none',
},
{
name: 'fill',
icon: 'format_color_fill',
},
{
name: 'brush',
icon: 'brush',
},
{
name: 'dropper',
icon: 'colorize',
},
{
name: 'eraser',
icon: 'remove_circle_outline',
},
{
name: 'fill-eraser',
icon: 'auto_fix_off',
},
];
2021-08-04 03:21:06 +00:00
export const emptyBlock = {
// bg: null,
// fg: null,
// char: null,
2021-08-04 03:21:06 +00:00
};
export const create2DArray = (rows) => {
const arr = [];
for (let i = 0; i < rows; i++) {
arr[i] = [];
}
return arr;
};
// Width and height of the ASCII blocks
// they seem to be 8x15 in asciiblaster
export const blockWidth = 8;
export const blockHeight = 15;
// Limits for undo and brush histories
2021-11-06 00:59:17 +00:00
export const maxBrushHistory = 200;
2021-12-17 11:03:10 +00:00
export const maxUndoHistory = 500;
2021-11-06 00:59:17 +00:00
export const tabLimit = 20;
2021-12-18 09:33:47 +00:00
export const parseMircAscii = async (contents, filename) => {
// The current state of the Colours
contents = contents
.split('\u0003\u0003')
.join('\u0003')
.split('\u000F').join('')
.split('\u0003\n').join('\n')
.split('\u0002\u0003').join('\u0003')
.split('\u0002').join('') // bold
.split('\u001D').join(''); // bg highlight
let asciiLines = contents.split("\n");
const finalAscii = {
title: filename,
layers: [{
label: filename,
visible: true,
data: create2DArray(contents.split('\n').length),
width: 0, // calculated down bellow
height: contents.split('\n').length,
}],
history: [],
historyIndex: 0,
imageOverlay: {
url: null,
opacity: 95,
asciiOpacity: 100,
left: 0,
top: 0,
position: 'centered',
size: 100,
repeatx: true,
repeaty: true,
visible: false,
stretched: false,
},
x: blockWidth * 35, // the dragable ascii canvas x
y: blockHeight * 2, // the dragable ascii canvas y
selectedLayer: 0,
};
// https://modern.ircdocs.horse/formatting.html#color
// In the following list, <CODE> represents the color formatting character (0x03), <COLOR> represents one or two ASCII digits (either 0-9 or 00-99).
// The use of this code can take on the following forms:
// <CODE> - Reset foreground and background colors.
// <CODE>, - Reset foreground and background colors and display the , character as text.
// <CODE><COLOR> - Set the foreground color.
// <CODE><COLOR>, - Set the foreground color and display the , character as text.
// <CODE><COLOR>,<COLOR> - Set the foreground and background color.
const asciiblasterRegex = /(^[\d]{1,2})?(?:,([\d]{1,2}))?/;
2022-02-19 00:37:14 +00:00
let cleanedWidth = 0;
for (let y in asciiLines) {
let line = asciiLines[y];
let len = line.length - 1;
let char;
let block = {};
let pos = -1;
let actualPos = 0;
while (pos < len) {
pos++;
char = line[pos];
2022-02-19 00:37:14 +00:00
// This code and regex had come from asciiblaster and was changed to
// work with asciibird.
if (char === '\x03') {
var matches = line.substr(pos + 1, 5).match(asciiblasterRegex);
// \x03 without color code is a soft block reset
if (matches[1] === undefined && matches[2] === undefined) {
2022-04-17 02:58:47 +00:00
block.fg = null;
block.bg = null;
continue;
}
if (matches[1] !== undefined)
block.fg = Number(matches[1]);
if (matches[2] !== undefined)
block.bg = Number(matches[2]);
pos += matches[0].length;
continue;
}
block.char = char;
finalAscii.layers[0].data[y][actualPos] = {
...block
};
actualPos++;
2022-02-19 00:37:14 +00:00
if (actualPos > cleanedWidth) {
cleanedWidth = actualPos;
}
}
pos = -1;
actualPos = 0;
block = {};
}
2022-02-19 00:37:14 +00:00
finalAscii.layers[0].width = cleanedWidth;
2021-12-18 09:33:47 +00:00
// First layer data generation
finalAscii.layers = [...fillNullBlocks(finalAscii.layers[0].height, finalAscii.layers[0]
.width, finalAscii.layers)];
2021-12-18 11:18:39 +00:00
2021-12-18 09:33:47 +00:00
// Store the ASCII and ensure we have no null blocks
finalAscii.layers = LZString.compressToUTF16(
JSON.stringify(finalAscii.layers),
);
2021-08-07 06:10:52 +00:00
// Save ASCII to storage
2021-08-04 03:21:06 +00:00
store.commit('newAsciibirdMeta', finalAscii);
2021-08-04 02:47:17 +00:00
return true;
2022-02-19 00:37:14 +00:00
}
// Creates new blank ASCII
2021-08-04 02:47:17 +00:00
export const createNewAscii = (forms) => {
2021-08-04 03:21:06 +00:00
const newAscii = {
2021-08-04 02:47:17 +00:00
title: forms.createAscii.title,
history: [],
historyIndex: 0,
2021-08-04 02:47:17 +00:00
x: 247, // the dragable ascii canvas x
y: 24, // the dragable ascii canvas y
layers: [{
2021-08-14 06:41:42 +00:00
label: forms.createAscii.title,
visible: true,
data: create2DArray(forms.createAscii.height),
width: Number.parseInt(forms.createAscii.width),
height: Number.parseInt(forms.createAscii.height),
2021-08-14 06:41:42 +00:00
}],
2021-10-16 05:16:21 +00:00
imageOverlay: {
url: null,
opacity: 95,
asciiOpacity: 100,
left: 0,
top: 0,
2021-10-16 05:16:21 +00:00
position: 'centered',
size: 100,
repeatx: true,
repeaty: true,
visible: false,
2021-10-23 00:23:02 +00:00
stretched: false,
2021-10-16 05:16:21 +00:00
},
2021-08-14 06:41:42 +00:00
selectedLayer: 0,
2021-08-04 02:47:17 +00:00
};
newAscii.layers = [...fillNullBlocks(newAscii.layers[0].height, newAscii.layers[0]
.width, newAscii.layers)];
newAscii.layers = LZString.compressToUTF16(JSON.stringify(newAscii.layers));
2021-08-04 03:21:06 +00:00
store.commit('newAsciibirdMeta', newAscii);
2021-08-06 01:51:58 +00:00
store.commit('closeModal', 'new-ascii');
2021-08-04 02:47:17 +00:00
return true;
2021-08-04 03:21:06 +00:00
};
// Converts ASCIIBIRD blocks to mIRC colours
export const exportMirc = (blocks = null) => {
2021-12-26 01:41:24 +00:00
if (blocks === null) {
// Export the entire main ascii
2021-12-26 01:41:24 +00:00
var {
currentAscii
} = store.getters;
2021-08-28 03:20:59 +00:00
2021-12-26 01:41:24 +00:00
var {
currentAsciiLayersWidthHeight
} = store.getters;
2021-08-28 03:20:59 +00:00
blocks = mergeLayers();
2021-12-26 01:41:24 +00:00
} else {
// We are exporting a brush
2021-12-26 01:41:24 +00:00
var currentAscii = {};
currentAscii.title = `brush-${cyrb53(JSON.stringify(blocks))}.txt`
2021-12-26 01:41:24 +00:00
var currentAsciiLayersWidthHeight = {
height: blocks.length,
width: blocks[0].length
}
}
const output = [];
2021-08-14 06:41:42 +00:00
let curBlock = false;
2021-09-04 00:21:53 +00:00
let pushString = '';
2021-08-28 03:20:59 +00:00
let prevBlock = {
bg: -1,
fg: -1
};
2022-01-06 05:39:54 +00:00
const zeroPad = (num, places = 2) => String(num).padStart(places, '0');
2022-01-05 06:59:33 +00:00
2021-09-04 05:16:27 +00:00
for (let y = 0; y <= currentAsciiLayersWidthHeight.height - 1; y++) {
2021-08-14 22:51:45 +00:00
2021-09-04 05:16:27 +00:00
for (let x = 0; x <= currentAsciiLayersWidthHeight.width - 1; x++) {
2021-08-28 03:20:59 +00:00
curBlock = {
...blocks[y][x]
};
2021-08-14 22:51:45 +00:00
if (curBlock.bg === null) {
delete curBlock['bg']
}
if (curBlock.fg === null) {
delete curBlock['fg']
}
if (curBlock.char === null) {
delete curBlock['char']
}
let isPadded = ((blocks[y][x + 1] !== undefined) && (blocks[y][x + 1].bg === undefined ||
blocks[
y][x + 1].fg ===
undefined) && blocks[y][x + 1]
.char !== undefined && (Number.parseInt(
blocks[y][x + 1]
2022-01-08 03:56:54 +00:00
.char) >= 0 && Number.parseInt(blocks[y][x + 1].char) <= 9) ||
(blocks[y][x].char !==
undefined && (Number.parseInt(blocks[y][x]
.char) >= 0 && Number.parseInt(blocks[y][x].char) <= 9)))
2022-01-06 05:39:54 +00:00
// If we have a difference between our previous block
// we'll put a colour codes and continue as normal
2022-01-05 06:59:33 +00:00
if ((curBlock.bg !== prevBlock.bg || curBlock.fg !== prevBlock.fg)) {
2021-08-14 22:51:45 +00:00
curBlock = {
2021-08-28 03:20:59 +00:00
...blocks[y][x]
2021-08-14 22:51:45 +00:00
};
2021-08-28 03:20:59 +00:00
if (curBlock.fg === undefined && curBlock.bg === undefined) {
2021-09-04 00:21:53 +00:00
output.push('\u0003');
2021-08-28 03:20:59 +00:00
} else {
2021-09-04 00:21:53 +00:00
if (curBlock.bg === undefined && curBlock.fg !== undefined) {
2022-01-05 06:59:33 +00:00
pushString =
2022-01-06 05:39:54 +00:00
`\u0003${(isPadded) ? zeroPad(curBlock.fg) : curBlock.fg}`;
2021-09-04 00:21:53 +00:00
}
if (curBlock.bg !== undefined && curBlock.fg !== undefined) {
2021-12-29 06:52:32 +00:00
// export will check if the next char is a number and add 0 padding to prevent clients eating characters
2022-01-05 06:59:33 +00:00
pushString =
2022-01-06 05:39:54 +00:00
`\u0003${curBlock.fg},${(isPadded) ? zeroPad(curBlock.bg) : curBlock.bg}`;
2021-09-04 00:21:53 +00:00
}
if (curBlock.bg !== undefined && curBlock.fg === undefined) {
2022-01-05 06:59:33 +00:00
pushString =
2022-01-06 05:39:54 +00:00
`\u0003,${(isPadded) ? zeroPad(curBlock.bg) : curBlock.bg}`;
2021-10-23 00:37:25 +00:00
}
2021-09-04 00:21:53 +00:00
output.push(pushString);
2021-08-28 03:20:59 +00:00
}
}
// null .chars will end up as space
output.push(curBlock.char ?? ' ');
2021-09-04 00:21:53 +00:00
prevBlock = {
...blocks[y][x]
};
}
// We can never have a -1 colour code so we'll always
// write one at the start of each line
prevBlock = {
bg: -1,
fg: -1
};
// New line except for the very last line
2021-12-29 06:52:32 +00:00
// if (blocks[y] && y < blocks[y].length - 1) {
2022-01-05 06:59:33 +00:00
output.push('\n');
2021-12-29 06:52:32 +00:00
// }
}
// Download to a txt file
// Check if txt already exists and append it
var filename = currentAscii.title.slice(currentAscii.title.length - 3) === 'txt' ?
currentAscii.title :
`${currentAscii.title}.txt`;
2021-12-26 01:41:24 +00:00
return {
filename,
output
}
}
// Download a string to a file with a filename
export const downloadFile = (content, filename, contentType) => {
const a = document.createElement('a');
const file = new Blob([content], {
type: contentType
});
a.href = URL.createObjectURL(file);
a.download = filename;
a.click();
URL.revokeObjectURL(a.href);
};
2021-12-26 01:41:24 +00:00
export function canvasToPng(canvas, filename) {
let downloadLink = document.createElement('a');
downloadLink.setAttribute('download', filename);
canvas.toBlob(function (blob) {
let url = URL.createObjectURL(blob);
downloadLink.setAttribute('href', url);
downloadLink.click();
});
}
export const checkForGetRequest = async () => {
const asciiUrlCdn = new URL(location.href).searchParams.get('ascii');
if (asciiUrlCdn) {
const res = await fetch(`https://ascii.jewbird.live/${asciiUrlCdn}`, {
method: 'GET',
headers: {
Accept: 'text/plain',
},
});
const asciiData = await res.text();
parseMircAscii(asciiData, asciiUrlCdn);
return;
}
const asciiUrl = new URL(location.href).searchParams.get('ircwatch');
if (asciiUrl) {
const res = await fetch(`https://irc.watch/ascii/txt/${asciiUrl}`, {
method: 'GET',
headers: {
Accept: 'text/plain',
},
});
const asciiData = await res.text();
parseMircAscii(asciiData, asciiUrl);
return;
}
const haxAscii = new URL(location.href).searchParams.get('haxAscii');
if (haxAscii) {
const res = await fetch(`https://art.h4x.life/${haxAscii}`, {
method: 'GET',
headers: {
Accept: 'text/plain',
},
});
// Considers paths
const asciiName = haxAscii.split('/').pop();
const asciiData = await res.text();
parseMircAscii(asciiData, asciiName);
}
}
2021-08-04 02:47:17 +00:00
// Hashing algo to detect duplicate brushes
2021-08-06 11:00:35 +00:00
// from https://stackoverflow.com/questions/7616461/generate-a-hash-from-string-in-javascript
export const cyrb53 = function (str, seed = 1337) {
let h1 = 0xdeadbeef ^ seed,
h2 = 0x41c6ce57 ^ seed;
for (let i = 0, ch; i < str.length; i++) {
ch = str.charCodeAt(i);
h1 = Math.imul(h1 ^ ch, 2654435761);
h2 = Math.imul(h2 ^ ch, 1597334677);
}
h1 = Math.imul(h1 ^ (h1 >>> 16), 2246822507) ^ Math.imul(h2 ^ (h2 >>> 13), 3266489909);
h2 = Math.imul(h2 ^ (h2 >>> 16), 2246822507) ^ Math.imul(h1 ^ (h1 >>> 13), 3266489909);
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
};
2021-08-07 06:10:52 +00:00
// Mostly plain text asciis wont have all their blocks
// so this will fix that
export const fillNullBlocks = function (height, width, layerData = null) {
2021-08-12 01:52:40 +00:00
// Probably used on irc import to make the blocks proper,
// especially with plain text ascii
2021-08-15 00:15:36 +00:00
if (layerData === null) {
var layers = [...store.getters.currentAsciiLayers]
} else {
var layers = [...layerData]
2021-08-12 01:52:40 +00:00
}
2021-08-15 00:15:36 +00:00
for (let i = 0; i <= layers.length - 1; i++) {
let blocks = layers[i].data;
for (let y = 0; y < height; y++) {
// New row
if (!blocks[y]) {
blocks[y] = [];
for (let x = 0; x < width; x++) {
2021-08-12 01:52:40 +00:00
blocks[y][x] = {
...emptyBlock
};
2021-08-07 02:41:47 +00:00
}
2021-08-15 00:15:36 +00:00
} else {
// no new rows but new cols
for (let x = 0; x < width; x++) {
if (blocks[y] && !blocks[y][x]) {
blocks[y][x] = {
...emptyBlock
};
}
}
2021-08-07 02:41:47 +00:00
}
}
2021-08-15 00:15:36 +00:00
// Update layer with new blocks
layers[i].data = [...blocks]
layers[i].width = width
layers[i].height = height
2021-08-07 02:41:47 +00:00
}
2022-01-05 06:59:33 +00:00
return [...layers]
2021-08-07 02:41:47 +00:00
}
2021-08-07 06:10:52 +00:00
// Sometimes if we copy blocks the initial Y values will be null
// and cause an error when trying to calculate width
2021-08-12 01:52:40 +00:00
// So we get the longest x length
2021-08-07 02:41:47 +00:00
export const getBlocksWidth = function (blocks) {
2021-08-12 01:52:40 +00:00
let maxWidth = 0;
2021-08-07 02:41:47 +00:00
2021-08-12 01:52:40 +00:00
for (let y = 0; y < blocks.length; y++) {
2021-08-07 02:41:47 +00:00
if (!blocks[y]) {
continue
}
2021-08-12 01:52:40 +00:00
if (blocks[y] && blocks[y].length > maxWidth) {
maxWidth = blocks[y].length
2021-08-07 02:41:47 +00:00
}
}
2021-08-12 01:52:40 +00:00
return maxWidth
2021-08-07 02:41:47 +00:00
}
2021-08-07 06:10:52 +00:00
// This removes the null blocks from our copy and paste
// to make sure it's centered better
2021-08-07 02:41:47 +00:00
export const filterNullBlocks = function (blocks) {
let newBlocks = [];
let y;
blocks = blocks.filter(function (item) {
return item !== null
});
for (y = 0; y < blocks.length; y++) {
newBlocks[y] = (blocks[y].filter(function (item) {
return item !== null
}))
2021-08-07 02:41:47 +00:00
}
return newBlocks
}
2021-08-14 06:41:42 +00:00
// Function to check if the left and top values are visible on the screen
export const checkVisible = function (bottom, top) {
var viewHeight = Math.max(
document.documentElement.clientHeight,
window.innerHeight
);
return !(bottom < 0 || top - viewHeight >= 0);
}
export const mergeLayers = function (blocks = null) {
let mergedLayers = [];
// Position of the meta array
let x = 0;
let y = 0;
let z = 0;
// Draws the actual rectangle
let canvasX = 0;
let canvasY = 0;
let curBlock = null;
for (y = 0; y < store.getters.currentAsciiLayers[0].height + 1; y++) {
canvasY = blockHeight * y;
if (!mergedLayers[y]) {
mergedLayers[y] = [];
}
for (x = 0; x < store.getters.currentAsciiLayers[0].width + 1; x++) {
canvasX = blockWidth * x;
curBlock = {
...emptyBlock
};
// Loop layers
for (z = store.getters.currentAsciiLayers.length - 1; z >= 0; z--) {
if (store.getters.currentAsciiLayers[z].visible === false) {
continue;
}
if (
store.getters.currentAsciiLayers[z] &&
store.getters.currentAsciiLayers[z].data &&
store.getters.currentAsciiLayers[z].data[y] &&
store.getters.currentAsciiLayers[z].data[y][x]
) {
2021-12-26 10:04:20 +00:00
if (curBlock.bg === undefined) {
curBlock.bg = store.getters.currentAsciiLayers[z].data[y][x].bg;
2021-08-28 02:41:31 +00:00
}
if (curBlock.fg === undefined) {
2021-08-28 02:41:31 +00:00
curBlock.fg = store.getters.currentAsciiLayers[z].data[y][x].fg;
2022-01-05 06:59:33 +00:00
}
2021-12-26 10:04:20 +00:00
if (curBlock.char === undefined) {
curBlock.char = store.getters.currentAsciiLayers[z].data[y][x].char;
2021-08-28 02:41:31 +00:00
}
2021-08-28 02:41:31 +00:00
continue;
}
2021-12-26 10:04:20 +00:00
// break;
}
2021-08-28 02:41:31 +00:00
mergedLayers[y][x] = {
...curBlock
}
}
}
2021-10-09 00:47:16 +00:00
return mergedLayers;
}
// Splash screen ascii encoded
export const splashAscii = JSON.parse(LZString.decompressFromEncodedURIComponent(
2022-04-02 01:26:43 +00:00
"NrDeCICMHNwLgAwBpwDNZwCzPAYwBYCGATvOAATgC+SEM8O682KBJZlNdGjGLeRUnArVaUDADZMKJlhxshIruPhSZfeYI6juq6Wg2stwzmPpw1B5pvYmdKxOutHbSszydyXi07ov7ZfgVtZXNLQJsfezCAwwFXXwdeZ3io0I8rL1SQ9z1PIOM3P3C44Lt0vMyChOiMiO8c4tiUsqKHEpbCxJj8yMb25qzW7slB6rTc-16G8smOoa7ayvrs2b9khZqKqaq+tYHp1bae3Znj0cPhpZ2Vq+358f6T28X7sb3z5dLXufezkYYlx+6yBW1+oImTQhTwupyOAMccLukw2j32z2+YKhSOBBxxWKS0PRdUxkMJ+LJ5lRHwR1P+1w2AEZ6dsmSyUZ5mfCGZz2SDMlzkfzZILcVTedzWRKhVQALpIMDkl4E8UUmGAtXEr6dFWSImfCz6hESI3XE2ag0PGlmv6Suamt4OjkW422oXtJ3Y5WU2He9U3Un+81+rUBnU+7WbCNhqNBz0el1m+MY8NBt1ivWJ+7JzMhy051QFmNo-NZ8Flr2B0PBquW9O6jV511Fmup6v16NWvl4ps2lstjv+ul24W12lF4fu1W9qUVpVjnlz6cL2cz50i7vL+CihuIjcjuUK0dtg2TjONlfltfFAe3pe5y+Vk-N++Rksv6-z5991+G39dkcE0-MI72A31HyAiCQP-UCoIfb9HX-Qdq1ghCrzgt9rUQsDMM3eDY3bVCCNLHDiyw9cMLIvDCyQoj32uLlSIAqd8Po7DKLPXdOOjbihwnfjf140MhNPATSJE8dBOlYFD0VLdiMk8S6PIm8YLUpjlOoqjAOgpjkINAB2AAOItGIwHdFAAWyTdTKNbBSfz0zSdNYlTILQ1SNNsjyezs-TjWcljcJc4Kgu0sLmPPP8vJiuzAqiyLd0S6MzJ88xUoc7YMrYyZsrclNMvtWjiqckq-PipL-Mc8qpNqpS6o4z1ZOPQqWpyp9WvczrdJq0q+so4yKs7Ib-QyiyyGsrLpNcSbcumqyGPmiabNitLwLW0KEpGwiyo26LeoOvb7ParqTp6o7+127rXK05K00u0i8q0p6QrgF6wveqLPt3b6UoeuKrrO9brvgABWCTqr28HtoNaHAfy4Ggc2rixMahqPOar8QfCrbvOxu6dtIwbf2JomTPh26YYRMazlmvwaaOOmHAZ1omfSpbhDZ8yOfALntx5vn9qOqr2OFqnIfxkXJlJgbyf6sWKdegm63F0XJdVubf1+0bTN1rW9cejWOqRnHKqN3yFfl9XFYiqXjYRi89oh1c0evTH5JN5WP0O62yaLGW9oD-GDJbEObYSu3mYFxaBVpmP91Z+PucZpP+ZTqbY-TyY5YwAAmcnE+2HP4HzuP7jDpiK7squjpr4PQ4b-86895uHbgIOTY7tuu60nuldb56Dco7XQxHg0x+poe9on1PsZn8vG8r82Cs9yOV7br2JdX5eSSd1G9-R1r3d37HnYog+-ZJ4vsb7sLb4Sgf+8X6up7esvNYTwpBZZr-Z-Gzm-7vz8NfUuWdgGeFAYXbOECC6-yLjAoBDgQGwJmtcZBiCwiPwilgh+z9a54Prk3AhLdiFt2viWQW5CPjf1fibeeH9h60LbvQ+mpDbo4KShw6M99dw8J4vvU+AiTZnzam3ERWNhFCLEU1eUckT6SMPgoy+yjZb+yoewthT8iH60zlA1hui4HQMyJAwx4DfzqNehYsK6CwFIIQbY8wNi9F2OMSgha8DXEYIwE40x7QuFBn8dWQJlpgnGlCWacJC9tFL3MfqShcS0EJI8XmeJFpUkpMSWk2edCmEaOiS-fJgcrFRT4XxRR0jylaXER7Cp9U6muwaRjWRoiqlSNaVfNRnSOmFMITEvplEfGoOSXnNxy1hl7WKbuSZ0Zpn+lmaGQZ7ijGyBMUM5ZIyvHwEWWM9ZJdRkAO2AATkiZMTA8yDRnKLJc381zSK3MosczR2CiznPSQMl5HzYlZPGcRN5J4aE6P6fgnpJDukqIvo0wRlTXrVPkbUyFSiEXwqaUeCRyKoX1KKV08FN9zlhKebgkFZD7HOMcSS3xZKvmkTxZk6lny6WeIcd48layzErP2bza49y9rcuxo838-K7k0qOScvwgrKK8pNpKtu0qtKvNpe8qliqGUZJ+RQhV-zsnMIJZwnVnZRUOFKaGI1oloVhVhY7DFSL2mYqtRC+1R9mloptdamF2LVFgo9UC3pBTvUm22Qc3ZcBVlLLZcq8NEz6URuDRyv5MbNlwADZyn5Iadl+Fla9cVe0s18oNeYHNUrhWTALW3EtWkM1hQrVFeVariVKsjd8oN6ra0JprU26hES9UBK7UE91WKzVRQtXuV15q2luoHSjCd-CKzH0tYih187cV9qXZ64FfqN55skJurZLLQ0uPZa23dab90bKZTuxlpLmX1uxkWsNezD0XopXwW9Dgy2Zu3VgF9+aP1vsrV+jAv6opVt3MB6MoG5lRobSq2scbm3tofaq+DZ7E1JLmB+iQ6HMM9sMv++AJrFIjsHWO0dU6ym2sXRR9F7VZ3DoXVR+jLq6O91w+3Fj+HO1Eryeurj0bU2BrvfG5DSbYN1ug1BiVLHAO7ik2Blj4HQzyYNDJ-0ynQyqYuXJzTkGb3af9ahgTcGDMdpbUJ-TJ7NVRO41oqzd82N2eI0R0jwkHOTvIwx8dbnGOOtRTUrzlG-PuZI55jzXrQv9pxZ3FjGHsP4uvXx5NQb4txqSxqnT17C1XK0zcrLpF1MIkU-lnLEnMu6dE9Gwz5nfmpYq5SxDRmE3Rc49Z31YWV0Re7vZpzprgtBcI65vr06euOaG1iGjbIQtMYm3a6b-mpuzds8uyLi2N0xY4zZwlYnBOXvPQe0z6WyviYs0h7bKHG31b23VyremztXeM8dp9O2YPVbu+dk7bbihYaa88r7G3WtLdXW1v7HXlsBdB3NwLw2Btkah85rrBGUVyMtf-brydetpzR2-KbyP4eY4x-NyHk28fA4B-99rPG10tYp4drbD3TuXdq09kz1jSsIcZ-d1lt3WdHde7T97nOLts55xzhn3P+cnca+t3VP2peS+4Z1snr12Mu0JwTmbEP+vo9V9jxcn8Ne461157Xyv9d66N+fE3kIxs8xx2blp4OwdE4dyU+XQPmMg8Vy78LrvmtU7S-Tq9m2asB8F1HQF5WDt+-D3Klnr0WGh8DxH67-vHui5F1VyzlOfW+9BQrhbJP1eDZhyjlXevF226xuX+SleT7V6R4b+vWOG8yidVXpvqv8el+J7n537u8-d94Z7wHXvh9Z9H0nkPafx-U5yWH6fL2xfVpj8z-bg9Z+R9T8HjfKf1876D9vvfFhPv97l73nvcOddF5xx3wvJeb8W+h5r03ben+N9fxj2vtH79rCtwYl-jv7cAF97e5AHZ4rbS76qrYZ6gHk5j5gGkSgy5xFgIFIGIG-jIEWiAAhpM9lzrvtqivpYkvovvgcvgntHmgagfARQZROgZQSgfqFgVAbATAaTsAe3gXg-mrk7p3lwXfh-uNu-s-rwYIRwXwdbhfo-pbi3jXjwRwSwSPjnpngodAT7kwSoUoaod9rLt2uAf6DQdQVQSeAwZMHoVDAYcREYULjMrkrHoQVMrYVYcQUQaQQQY4buCYdjO4SbJ4W3N4WcBYX4pAWhoEX4ErtLCxkOhES5nftfiIcIbDrrkIW-gbkkX-skc3j5tIYAWwW7vnswXAYofkXtLnGYSbMUVEf6GUb+JUVob2jobUTUQaHzpPoni0WQc4R9PYRBq4Q4e0U4VHi4b0XYeQXQZgdcL4UcP4ZgsEQEXUThqftwVkQsf-ssdkSkYkQIWsbEZsfEajmkXsaNlIXXosdEV3qwTLgUXkZca9NUZfuIZwdcSUW3DcUUY8VpM8djO8aUa8Q8UWJ8U8d8WFH8W8QCVFECTYWvjPoMT0f0SQTCX0XPm0RPpvunuznulMbMbFg0ZiWcSfrkR7uUTsbfrIeiqIb-usfseSakVSZSTSY0D-gkcSTIcaoPuoayYUR8SCbuGCSsUsasYCZydGNyaCQKRUSKaGEKVyWKQaBKYKVKQiDK
2021-08-14 06:41:42 +00:00
));
2021-08-04 03:21:06 +00:00
export default createNewAscii;