fixed off by 1 bug, better width, better ascii

This commit is contained in:
Hugh Bord 2021-03-06 12:03:22 +10:00
parent 019b15e3e3
commit 609cc01391
9 changed files with 302 additions and 71 deletions

View File

@ -163,12 +163,15 @@ export default {
// The proper X and Y value of the block inside the ASCII
let asciiX = 0;
let asciiY = 0;
let firstColor = true;
let firstColor = false;
let secondColor = false;
let colorChar1 = null
let colorChar2 = null
var parsedColor = null
var theWidth = 0;
for (
let charPos = 0;
charPos <= this.asciiImport.length - 1;
@ -190,7 +193,7 @@ export default {
// We can determine the width at the end of the first line
if (!this.finalAscii.width) {
this.finalAscii.width = asciiX - 1; // minus \n for the proper width
this.finalAscii.width = charPos - theWidth; // minus \n for the proper width
}
asciiX = 0;
@ -202,7 +205,10 @@ export default {
bg: null,
char: null,
};
firstColor = true;
firstColor = false;
secondColor = false;
// Skip the color code "\u0003"
charPos++;
for (let k = charPos; k <= k + 3; k++) {
@ -212,72 +218,62 @@ export default {
// C6,XXXX - blank fg
// Can also exist
// if (firstColor && asciiStringArray[k] === ",") {
// // No fg set
// firstColor = false;
// } else
if (firstColor && asciiStringArray[k] !== ",") {
colorChar1 = asciiStringArray[k]
colorChar2 = asciiStringArray[k + 1]
parsedColor = `${colorChar1}${colorChar2}`
if (!isNaN(`${parsedColor}`) && parseInt(`${parsedColor}`) <= MIRC_MAX_COLORS && parseInt(`${parsedColor}`) >= 0) {
curBlock.fg = parseInt(`${parsedColor}`);
firstColor = false;
} else {
curBlock.fg = parseInt(`${colorChar1}`);
firstColor = false;
}
charPos++;
}
// These can be refactored into a function
if (!firstColor && asciiStringArray[k] !== ",") {
colorChar1 = asciiStringArray[k]
colorChar2 = asciiStringArray[k + 1]
colorChar1 = `${asciiStringArray[k]}`
colorChar2 = `${asciiStringArray[k + 1]}`
parsedColor = `${colorChar1}${colorChar2}`
if (!isNaN(`${parsedColor}`) && parseInt(`${parsedColor}`) <= MIRC_MAX_COLORS && parseInt(`${parsedColor}`) >= 0) {
curBlock.bg = parseInt(`${parsedColor}`);
} else {
curBlock.bg = parseInt(`${colorChar1}`);
}
if (!isNaN(parsedColor) && parseInt(parsedColor) <= MIRC_MAX_COLORS && parseInt(parsedColor) >= 0 ) {
curBlock.fg = parseInt(parsedColor);
k++;k++;charPos++;charPos++;
firstColor = true;
theWidth+=1;
charPos++;
break;
} else if (!isNaN(colorChar1) && parseInt(colorChar1) <= MIRC_MAX_COLORS && parseInt(colorChar1) >= 0) {
curBlock.fg = parseInt(colorChar1);
k++;charPos++;
firstColor = true;
theWidth+=2;
}
}
colorChar1 = null
colorChar2 = null
parsedColor = null
if (!secondColor && asciiStringArray[k] !== ",") {
colorChar1 = `${asciiStringArray[k]}`
colorChar2 = `${asciiStringArray[k + 1]}`
parsedColor = `${colorChar1}${colorChar2}`
if (!isNaN(parsedColor) && parseInt(parsedColor) <= MIRC_MAX_COLORS && parseInt(parsedColor) >= 0 ) {
curBlock.bg = parseInt(parsedColor);
charPos++;charPos++;
theWidth+=1;
break;
} else if (!isNaN(colorChar1) && parseInt(colorChar1) <= MIRC_MAX_COLORS && parseInt(colorChar1) >= 0) {
curBlock.bg = parseInt(colorChar1);
charPos++;
theWidth+=2;
break;
}
}
}
// Check colours
// Given how we have the code above we may not need this
if (
!isNaN(curBlock.fg) &&
curBlock.fg >= 0 &&
curBlock.fg <= MIRC_MAX_COLORS &&
!isNaN(curBlock.bg) &&
curBlock.bg >= 0 &&
curBlock.bg <= MIRC_MAX_COLORS
) {
// Block is good
// console.log(`curBlock GOOD`, curBlock);
}
// Minus X value if all good
asciiX--;
} else {
console.log(`curBlock BAD`, JSON.stringify(curBlock));
}
// charPos++;
break;
default:
curBlock.char = curChar
asciiX++;
// Fk this js shit, serialising the curBlock works much better. Lost hours on this bs, fk.
this.finalAscii.blocks[asciiY][asciiX] = JSON.parse(JSON.stringify(curBlock));
this.finalAscii.blocks[asciiY][asciiX-1] = JSON.parse(JSON.stringify(curBlock));
break;
} // End Switch

15
src/assets/360.txt Normal file
View File

@ -0,0 +1,15 @@
0,1 0,4 0,1
0,1 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1
0,1 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1
0,1 0,4 4 0,1 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1
0,1 0,4 4,1 0 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1
0,1 0,4 4,1 0 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1 0,4 0,1
0,1 0,4 4,1 0 0,4 0,1 0,4 0,1 0,4 0,1 0,8 0,4 0,1 0,4 0,1 0,8 0,1 0,8 0,4 0,1
0,1 4 0 0,4 0,1 0,4 0,1 0,4 0,1 0,8 0,1 0,8 0,1 0,4 0,8 0,1 0,8 0,1 0,8 0,1 0,8 0,1
0,1 0,4 0,1 0,4 0,1 0,4 0,1 0,8 0,1 0,4 0,1 0,4 0,8 0,1 0,8 0,4 0,8 0,1 0,8 0,1
0,1 0,4 0,1 0,4 0,1 0,8 0,1 0,8 0,4 0,8 0,4 0,1 0,8 0,1 0,8 0,1
0,1 0,4 0,1 0,4 0,8 0,1 0,8 0,1 0,8 0,1 0,8 0,1
0,1 0,4 0,1 0,8 0,1 0,8 0,1 0,8 0,1 0,8 0,1
0,1 0,4 0,1 0,8 0,1 0,8 0,1 0,8 0,1 0,8 0,1 0,8 0,1 0,8 0,1
0,1 0,4 0,1 0,8 0,1 0,8 0,1 0,8 0,1 0,8 0,1
0,1 0,4 0,1 0,8 0,1

View File

@ -1 +1,2 @@
3,3XXX1,3ALBINOS3,3XXXXX3,3X
1,3XXX1,3ALBINOS3,4XXXXX2,8XX
1,3XXX1,3ALBINOS3,4XXXXX2,8XX

36
src/assets/gnaabird.txt Normal file
View File

@ -0,0 +1,36 @@
|
| .---------.
| /:::::::::::\
| |:::::::::::::|
| |:::::::::::::|
| |::::::::::::/
| |:___________\
| //c \___/ /__)
| /' . .,_ | | -- SLICK P-B-D
| |': ; / \ /_/ THE GHETTO V-I-P
| oo ; `"`" } WILL LEAVE YOU R-I-P
| ; 'oo, { Shizzle my nizzle.
| / oo }
| ; '::. oo\/\ /\|
| |. ':. oo`"`oo\
| / '::'::' / o o ;
| |':::' '::' / ($) |
| \ '::' _.-`; ;
| /`-..--;` ; | |
| ; ; ; ; ; | |
| ; ; ; ; ; ; / ,--........,,
| |; ; ; ; ;/ ; .' -='.
| | ; ; ; ; / / .\ :
| | ; ; /` .\ _,==" \ .'
| \; ; ; .'. _ ,_'\.\~" //`. \ .'
| | ; .___~' \ \- |-| /,\ ` \ _.'
| ~ ; ; ;/ _,.-~'|-| |$| _,-''\..--'
| ~ /; ;/="" |$| |-| _="`
| ~..==` \\ |-| /_/_="`
| ~` ~ /,\ / /_,)")
| ~ ~~ _,.-)")
| ~ ~ _,=~"|
| ~ =~"|; ;| GNAAbird
| ~ ~ | ; | ========
| ~ ~ |;|\ |
| |/ \|

12
src/assets/knife.txt Normal file
View File

@ -0,0 +1,12 @@
15,1  15,1  15,1 ▄15,15 15,1  15,1  15,1  15,1  
15,1 ▄▄▄ 15,1 ▄▄  15,1 ▄█15,15 0,15░15,1  15,1  15,1  15,1  
15,1 0,1▄▄15,1 0,1▄0,15▓▓▓▓▓ 15,1▐0,15█▓░15,1▄  15,1 ██15,15 0,15░▒15,1  15,1 14,1▄14,2▓15,1 0,15█0,1▄15,1  15,1 0,1▄▄▄▄▄15,1  0,1▄0,15▄▄▀▄15,1 0,1▄0,15█▓▓0,1▄15,1  
0,1▄0,15▓▓▓▓▒15,1 0,15▓▓▒▒▒▒0,1▀ 15,1 0,15▓█▓░░▒▓▓▓▓0,1▄▄15,1  15,1▐█15,15 0,15░▒░15,1  14,1▄14,2█▓▒15,1 0,1▐0,15▓▒0,1▄15,1  15,1 ▄0,15▒▒▓▓0,1▀▀██▄15,1  0,1▐0,15██▓15,1▌ 0,1▐0,15▒▒▒▓0,1▌15,1  
0,15▓▒▒▒▒15,1 0,15▓▒▒░15,1▀  15,1▐0,15▓▓▓▒0,1▀▀▀15,1▀0,15▒▒▒▓▓15,1  0,15 ░▒░ 15,1  14,2█▓▒2,1▌15,1 0,15▒░░15,1▌ 15,1 0,15░░▒0,1▀15,1 0,1▀▀15,1  15,1 0,15▒▒▒15,1▌10,1▄14,1▄15,1 0,15░░░▒▒0,1▌15,1  
0,1▐0,15░░░15,1▌ ▄0,15░▒░░15,1▀  0,15▒▒▒▓15,1▌ ▀0,15░▒▒12,15░15,1  15,1▐0,15░▒░ 15,1  14,1▐14,2▒░2,1▌15,1 ▐0,15░ 15,1▌ 15,1▐█15,15 15,1▌ 14,1▄10,1▄14,1▄▄15,1  15,1 10,1▐0,15░░░15,1▀14,1▄10,1▄15,1▄▄▄0,15░ ░░▒15,1  
15,1 0,15░░12,15░▒░0,15░▒░░5,15 15,1▄  0,15░░░▒15,1▌ 14,1▐0,15 ░░▒12,1▌ 15,1 0,15▒░ 15,1  15,1 14,2░ 2,1▌15,1 14,15▓15,15 12,15░15,1  12,15░░░15,1█14,15░▒10,1▀▀15,1  15,1 10,1▀▀▀▀15,1▀▀10,1▀▀14,1▀▀5,15 0,15░15,1  
15,1 ▐12,15░▒░15,1▀ ▀12,15 ░░▒15,1  15,1▐0,15 ░15,1█ ▐5,15 0,15░12,1▌ 15,1 5,15 14,15░15,1  15,1 14,2 12,2░░14,1▌15,1 2,1▐14,15▒12,15░12,1▌15,1  15,1▐12,15░▒15,1█ 12,1▀█▄15,1  15,1 10,1▄12,15░▒10,1▄15,1 12,15░░▒░15,1▌ 
15,1 12,15▒▒12,1▌15,1 12,1▀12,15▓▒▓12,1▄15,1  15,1 █12,15░░▒15,1▌ 12,15▒░░▒12,1█15,1  15,1 12,15 15,1█14,15▒15,1  15,1 12,1▐12,2█▒2,1▌15,1 12,2▒12,15▒▓15,1  15,1 12,15░▒▒12,1▄15,1 12,1▄██▀ 15,1 12,15▒▒▒12,1█15,1 12,1▄██12,15▒░12,1▀ 
15,1 12,1▐12,15▓▓15,1 12,1▀▀12,15▓12,1█ 15,1 ▐12,15▒▒▒12,1▌15,1 12,1▐12,15▓12,1██▌15,1  15,1 14,15░▓15,1  15,1 12,1▀█12,2▓12,1▄12,2▓12,15▓12,1▀15,1  15,1 ▀12,15▒▓▓12,1▄▄███▀15,1  15,1 ▐12,15▓█12,1███████▀▀▀15,1  
15,1 12,1███15,1  15,1 12,1▀▀▀15,1 12,1▀▀▀15,1  15,1 ▄▄▄▄ 15,1 12,1▀▀15,1  15,1 12,1▀▀▀▀15,1  15,1 12,1▀▀▀15,1  
1,1  1,1  15,1 7,1▄▄15,1  1,1  1,1  1,1  

View File

@ -0,0 +1,43 @@
12,1#####################################################################################0,1S12,1########
12,1#######2,2 12,1#0,1P12,1######
12,1#######2,2 1,12################8,8 1,12########################################8,8 1,12#################2,2 12,1###0,1O12,1####
12,1#######2,2 1,12#2,2 1,12###2,2 8,8 4,4 8,8 10,10 8,8 4,4 8,8 2,2 1,12###2,2 1,12#2,2 12,1#####0,1K12,1##
12,1#######2,2 1,12#2,2 1,12###2,2 8,8 4,4 8,8 10,10 0,0 10,10 8,8 4,4 8,8 2,2 1,12###2,2 1,12#2,2 12,1#######0,1E
12,1#######2,2 1,12#2,2 1,12###2,2 4,4 8,8 10,10 0,0 3,3 0,0 10,10 8,8 4,4 2,2 1,12###2,2 1,12#2,2 12,1########
12,1#######2,2 1,12#2,2 1,12###2,2 8,8 10,10 0,0 10,10 0,0 3,3 0,0 10,10 0,0 10,10 8,8 2,2 1,12###2,2 1,12#2,2 12,1########
12,1#######2,2 1,12#2,2 1,12###2,2 10,10 0,0 10,10 9,9 3,3 9,9 3,3 9,9 10,10 0,0 10,10 2,2 1,12###2,2 1,12#2,2 12,1########
12,1#######2,2 1,12#2,2 1,12###2,2 10,10 9,9 3,3 10,10 1,1 10,10 0,0 10,10 9,9 12,12 9,9 10,10 0,0 10,10 1,1 10,10 3,3 9,9 10,10 2,2 1,12###2,2 1,12#2,2 12,1########
12,1#######2,2 1,12#2,2 1,12###2,2 1,12#10,10 3,3 9,9 3,3 10,10 1,1 9,9 10,10 9,9 12,12 0,0 12,12 9,9 10,10 9,9 1,1 10,10 3,3 9,9 3,3 10,10 1,12#2,2 1,12###2,2 1,12#2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12#2,2 1,12#10,10 3,3 9,9 3,3 10,10 1,1 9,9 0,0 10,10 9,9 10,10 12,12 0,0 10,10 0,0 12,12 10,10 9,9 10,10 0,0 9,9 1,1 10,10 3,3 9,9 3,3 10,10 1,12#2,2 1,12#2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12###10,10 3,3 10,10 1,1 9,9 0,0 10,10 12,12 0,0 10,10 8,8 3,3 9,9 3,3 8,8 10,10 0,0 12,12 10,10 0,0 9,9 1,1 10,10 3,3 10,10 1,12###2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12###2,2 10,10 0,0 9,9 12,12 9,9 12,12 0,0 8,8 9,9 3,3 9,9 8,8 0,0 12,12 9,9 12,12 9,9 0,0 10,10 2,2 1,12###2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12###################9,9 10,10 0,0 9,9 12,12 8,8 9,9 0,0 9,9 8,8 12,12 9,9 0,0 10,10 9,9 1,12####################2,2 12,1########
12,1#######2,2 1,12##2,2 1,12######2,2 1,12###2,2 1,12#####9,9 8,8 0,0 9,9 12,12 3,3 0,0 8,8 0,0 3,3 12,12 9,9 0,0 8,8 9,9 1,12######2,2 1,12###2,2 1,12######2,2 1,12##2,2 12,1########
12,1#######2,2 1,12#######2,2 1,12#2,2 1,12###2,2 1,12######10,10 8,8 0,0 12,12 3,3 0,0 8,8 0,0 3,3 12,12 0,0 8,8 10,10 1,12#######2,2 1,12###2,2 1,12#2,2 1,12#######2,2 12,1########
12,1#######2,2 1,12#######2,2 1,12###2,2 1,12#2,2 1,12######10,10 0,0 12,12 3,3 0,0 8,8 0,0 3,3 12,12 0,0 10,10 1,12#######2,2 1,12#2,2 1,12###2,2 1,12#######2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12#2,2 1,12###2,2 1,12#2,2 1,12###########10,10 8,8 10,10 4,4 14,14 0,0 8,8 0,0 14,14 4,4 10,10 8,8 10,10 1,12###########2,2 1,12#2,2 1,12###2,2 1,12#2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12#2,2 1,12#2,2 1,12########2,2 1,12######10,10 4,4 5,5 14,14 10,10 0,0 8,8 0,0 10,10 14,14 5,5 4,4 10,10 1,12#######2,2 1,12#######2,2 1,12#2,2 1,12#2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12#2,2 1,12#2,2 1,12#2,2 12,12 1,12############4,4 8,8 4,4 14,14 5,5 10,10 0,0 10,10 5,5 14,14 4,4 8,8 4,4 1,12#############2,2 1,12#2,2 1,12#2,2 1,12#2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12###2,2 1,12####4,4 8,8 0,0 14,14 5,5 14,14 0,0 8,8 4,4 1,12####2,2 1,12###2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#######2,2 1,12############4,4 8,8 4,4 8,8 0,0 5,5 0,0 5,5 0,0 8,8 4,4 8,8 4,4 1,12############2,2 1,12#######2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12###2,2 1,12####4,4 8,8 0,0 14,14 5,5 14,14 0,0 8,8 4,4 1,12####2,2 1,12###2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12#2,2 1,12#2,2 1,12#2,2 1,12#############4,4 8,8 4,4 14,14 5,5 10,10 0,0 10,10 5,5 14,14 4,4 8,8 4,4 1,12#############2,2 1,12#2,2 1,12#2,2 1,12#2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12#2,2 1,12#2,2 1,12########2,2 1,12######10,10 4,4 5,5 14,14 10,10 0,0 8,8 0,0 10,10 14,14 5,5 4,4 10,10 1,12#######2,2 1,12#######2,2 1,12#2,2 1,12#2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12#2,2 1,12###2,2 1,12#2,2 1,12##########12,12 10,10 8,8 10,10 4,4 14,14 0,0 8,8 0,0 14,14 4,4 10,10 8,8 10,10 1,12##########12,12 2,2 1,12#2,2 1,12###2,2 1,12#2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#######2,2 1,12###2,2 1,12#2,2 1,12######10,10 0,0 12,12 3,3 0,0 8,8 0,0 3,3 12,12 0,0 10,10 1,12######2,2 1,12#2,2 1,12###2,2 1,12#######2,2 12,1########
12,1#######2,2 1,12#######2,2 1,12#2,2 1,12###2,2 1,12######10,10 8,8 0,0 12,12 3,3 0,0 8,8 0,0 3,3 12,12 0,0 8,8 10,10 1,12######2,2 1,12###2,2 1,12#2,2 1,12####2,2 1,12##2,2 12,1########
12,1#######2,2 1,12##2,2 1,12######2,2 1,12###2,2 1,12#####9,9 8,8 0,0 9,9 12,12 3,3 0,0 8,8 0,0 3,3 12,12 9,9 0,0 8,8 9,9 1,12#####2,2 1,12###2,2 1,12#########2,2 12,1########
12,1#######2,2 1,12###################9,9 10,10 0,0 9,9 12,12 8,8 9,9 0,0 9,9 8,8 12,12 9,9 0,0 10,10 9,9 1,12###################2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12###2,2 10,10 0,0 9,9 12,12 9,9 12,12 0,0 8,8 9,9 3,3 9,9 8,8 0,0 12,12 9,9 12,12 9,9 0,0 10,10 2,2 1,12###2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12###10,10 3,3 10,10 1,1 9,9 0,0 10,10 12,12 0,0 10,10 8,8 3,3 9,9 3,3 8,8 10,10 0,0 12,12 10,10 0,0 9,9 1,1 10,10 3,3 10,10 1,12###2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12###10,10 3,3 9,9 3,3 10,10 1,1 9,9 0,0 10,10 9,9 10,10 12,12 0,0 10,10 0,0 12,12 10,10 9,9 10,10 0,0 9,9 1,1 10,10 3,3 9,9 3,3 10,10 1,12###2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12#####2,2 1,12#2,2 1,12#10,10 3,3 9,9 3,3 10,10 1,1 9,9 10,10 9,9 12,12 0,0 12,12 9,9 10,10 9,9 1,1 10,10 3,3 9,9 3,3 10,10 1,12#2,2 1,12#2,2 1,12#####2,2 12,1########
12,1#######2,2 1,12##2,2 1,12##2,2 1,12#10,10 9,9 3,3 10,10 1,1 10,10 0,0 10,10 9,9 12,12 3,3 9,9 3,3 12,12 9,9 10,10 0,0 10,10 1,1 10,10 3,3 9,9 10,10 1,12#2,2 1,12###2,2 1,12#2,2 12,1########
12,1#######2,2 1,12##2,2 1,12##2,2 10,10 0,0 10,10 9,9 3,3 9,9 10,10 0,0 10,10 2,2 1,12###2,2 1,12#2,2 12,1########
12,1#######2,2 1,12##2,2 1,12##2,2 8,8 10,10 0,0 10,10 0,0 3,3 0,0 10,10 0,0 10,10 8,8 2,2 1,12###2,2 1,12#2,2 12,1########
12,1#######2,2 1,12##2,2 1,12##2,2 4,4 8,8 10,10 0,0 10,10 8,8 4,4 2,2 1,12###2,2 1,12#2,2 12,1########
12,1#######2,2 1,12##2,2 1,12##2,2 8,8 4,4 8,8 10,10 0,0 10,10 8,8 4,4 8,8 2,2 1,12###2,2 1,12#2,2 12,1#####0,1C12,1##
12,1#######2,2 1,12##2,2 1,12##2,2 8,8 4,4 8,8 10,10 8,8 4,4 8,8 2,2 1,12###2,2 1,12#2,2 12,1##0,1#12,1#0,1R12,1##0,1T
12,1#######2,2 1,12#################8,8 1,12#######################################8,8 1,12#################2,2 12,1###0,1I12,1##0,1R12,1#
12,1#######2,2 12,1##0,1M12,1##0,1A12,1##
12,1###########################0,1'THE LIGHT AT THE END OF THE QUETIAPINE'12,1###########################

View File

@ -0,0 +1,80 @@
3,4 4,4
4,4 3,4░░░░░4,4 3,4░░4,4 3,4░4,4 3,4░░░░4,4 3,4░░░░░4,4 3,4░░░░░░░4,4 3,4░░░░░4,4 3,4░░4,4 3,4░4,4 3,4░░░░4,4
3,3 4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░░░4,4 3,4░4,4 3,4░4,4 1,1
3,3 4,4 3,4░░░░░4,4 3,4░░░░░░4,4 3,4░4,4 3,4░░░4,4 3,4░░░░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░░4,4 3,4░4,4 3,4░░░4,4 1,1
3,3 3,1▀1,1 4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░4,4 1,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░░░4,4 3,4░4,4 1,1 4,1▄
3,3 3,1▘1,1 4,4 3,4░4,4 3,4░4,4 3,4░4,4 3,4░░░░4,4 3,4░░░░4,4 3,4░░░░░4,4 1,4 4,4 3,4░4,4 3,4░░░░░4,4 3,4░4,4 3,4░░4,4 3,4░░░░4,4 1,1 4,1▟4,4
3,3 3,1▋1,1 3,1▄1,3 4,4 1,1 1,4▋4,4
1,3╦╦3,1▖1,1 3,1▄1,3 3,3 4,4 1,4▀4,1╦╦╦╦╦╦╦╦╦▜4,4
1,3▔▔3,3 1,3 3,3 4,4 4,1▔▔▔▔▔▔▔▔
3,3 1,33,3 3,1▀1,1 4,4 1,1 4,1
3,3 1,33,3 0,3 3,3 3,1▘1,1 4,4 4,1▀1,1 4,1
3,3 1,30,3 3,3 3,1▋1,1 3,1▄3,3 4,4 1,4▋4,4 4,1▀1,1 4,1
3,1▀▀▀1,3╦╦╦╦╦╦╦╦3,1▖1,1 3,1▄3,3 4,4 4,1╦╦╦▜4,4 4,1▀1,1 4,1▄▄▄▎
1,1 1,3▔▔▔▔▔▔▔3,3 3,1▀4,4 1,1 4,11,1 4,1▄4,4
1,1 0,3 3,3 1,33,3 3,1▀1,1 4,4 1,1 4,11,1 0,1 4,1▄4,4
1,1 3,1▄3,3 1,33,3 3,1▘1,1 3,3 4,4 0,0 1,1 4,10,1 1,1 0,1 4,1▟4,4 4,1▀
1,1 3,1▄0,3 3,3 1,33,3 0,3 3,3 3,1▋1,1 3,1▄0,0 1,0 4,4 0,0 1,1 4,11,1 1,4▋ 4,4 4,1▀1,1
3,3 3,1▀▀▀1,3╦╦╦╦╦╦╦╦╦1,1 3,1▄3,3 1,0 0,0 4,4 0,0 1,1 4,1▄▄▄╦╦╦╦╦╦╦╦╦▜4,4 4,1▀1,1
3,3 3,1▀1,1 1,3▔▔▔▔▔▔▔3,3 1,0 0,0 3,0▄3,3 4,4 3,4b4,4 0,0 1,1 4,1▄4,4 4,1▔▔▔▔▔▔▔▔▎▔1,1
3,3 3,1▀1,1 3,3 1,33,3 0,0 3,0▄3,3 4,4 3,4y4,4 3,00,0 1,1 4,1▄4,4 1,1 4,11,1
3,3 1,3▟1,1 3,3 1,33,3 0,0 3,0▟3,3 0,3▄3,4spoke1,0 3,00,0 1,1 4,1▟4,4 4,1▀1,1 4,11,1
3,3 3,1▌1,1 3,1▄3,3 1,33,3 0,0 0,3▍3,3 0,3▄0,0 1,0 4,4 1,0 3,00,0 1,4▌4,4 4,1▀1,1 4,11,1
1,3╦╦╦╦▜1,1 3,1▄3,3 3,1▀▀▀1,3╦╦╦╦╦╦3,0╤╤▜3,3 0,3▄0,0 1,0 0,0 3,0▄▄▄╦╦╦╦╦╦╦╦4,1╦▜4,4 4,1▀1,1 4,1▄▄▄╦╦╦╦╦╦╦╦
1,3▔▔▔▔▔▔3,3 3,1▀1,1 1,3▔▔▔▔▔3,0▔▔0,0 1,0 0,0 3,0▄3,3 3,0▔▔▔▔▔▔▔4,1▔▎▔1,1 4,1▄4,4 4,1▔▔▔▔▔▔▔
3,3 1,33,3 3,1▀1,1 3,3 0,0 3,00,0 3,0▄3,3 0,0 1,1 4,11,1 4,1▄4,4 1,1
3,3 1,33,3 1,3▟1,1 3,3 0,0 3,00,0 3,0▟3,3 0,0 1,0 1,1 4,11,1 4,1▟4,4 4,1▀1,1
3,3 1,33,3 3,1▌1,1 3,1▄3,3 0,0 3,00,0 0,3▍3,3 0,3▄0,0 1,0 0,0 1,0 1,1 4,11,1 1,4▌4,4 4,1▀1,1
3,3 1,3▄▄▄╦╦╦╦╦╦╦╦▜1,1 3,1▄3,3 3,0▄▄▄╦╦╦╦╦╦╦╦▜3,3 0,3▄0,0 1,0 0,0 3,0▄4,1▄▄╦╦╦╦╦╦╦╦╦▜4,4 4,1▀1,1 4,1▄
3,1▀1,1 1,3▔▔▔▔▔▔▔▔▔3,3 3,1▀1,1 3,3 3,0▔▔▔▔▔▔▔0,0 1,0 0,0 1,0 0,0 3,0▄3,3 4,4 4,1▔▔▔▔▔▔▔▔▎▔1,1 4,1▄4,4
1,1 3,3 1,33,3 3,1▀1,1 3,3 0,0 3,01,0 0,0 1,0 0,0 3,0▄3,3 4,4 1,1 4,11,1 4,1▄4,4
1,1 3,3 1,33,3 3,1▘1,1 3,3 3,0▀0,0 3,00,0 3,0▟3,3 4,4 1,1 4,11,1 4,1▟4,4
1,1 3,1▄3,3 1,33,3 3,1▌1,1 3,3 3,0▀0,0 1,0 3,01,0 0,0 0,3▍3,3 4,1▀1,1 4,11,1 1,4▌4,4
1,1 3,1▄3,3 1,3▄▄▄╦╦╦╦╦╦╦╦3,1▖1,1 3,1▄0,0 1,0 0,0 3,0▄▄▄╦╦╦╦╦╦╦╦╦▜3,3 0,3▄0,0 1,1 4,1▄▄▄╦╦╦╦╦╦╦╦╦▜4,4 4,1▀1,1
3,3 3,1▀1,1 1,3▔▔▔▔▔▔▔▔▔3,3 1,0 0,0 0,3▀3,3 3,0▔▔▔▔▔▔▔▔0,0 ▏1,1 4,1▄4,4 4,1▔▔▔▔▔▔▔▔▎▔1,1
3,3 3,1▀1,1 3,3 1,33,3 0,0 0,3▀3,3 0,0 3,00,0 ▏1,1 4,1▄4,4 1,1 4,11,1
3,3 3,1▘1,1 3,3 1,33,3 0,0 3,0▟3,3 0,0 3,00,0 ▜ 1,1 4,1▟4,4 1,1 4,11,1
3,3 3,1▋1,1 3,1▄3,3 1,33,3 0,0 0,3▌3,3 3,0▀0,0 3,00,0 1,1 1,4▋4,4 4,1▀1,1 4,11,1
3,3 3,1▖1,1 3,1▄3,3 1,3▄▄▄╦╦╦╦0,0 3,0▜3,3 3,0▀0,0 3,0▄▄▄╦╦╦╦╦4,1╦╦╦╦▜4,4 4,1▀1,1 4,1▄▄▄╦╦╦╦╦
14,0▒▒3,3 1,3▔▔3,3 3,1▀1,1 1,3▔▔▔3,0▔▔▔▔▔▔0,0 0,3▀3,3 3,0▔▔▔▔4,1▔▔▔▔1,1 4,1▄4,4 4,1▔▔14,0▒▒
0,0 14,0▒▒3,3 3,1▀1,1 3,3 0,0 3,00,0 0,3▀3,3 0,0 1,1 4,11,1 4,1▄4,4 14,0▒▒0,0
1,1 0,0 14,0▒▒3,3 3,1▘1,1 3,3 0,0 3,00,0 3,0▟3,3 0,0 1,1 4,11,1 4,1▟4,4 14,0▒▒0,0 1,1
14,0▒▒1,1 0,0 14,0▒▒3,3 3,1▋1,1 3,1▄3,3 0,0 3,00,0 0,3▌3,3 3,0▀0,0 1,1 4,11,1 1,4▋4,4 14,0▒▒0,0 1,1 14,0▒▒
14,0▒▒▒▒1,1 0,0 14,0▒▒3,3 3,1▖1,1 3,1▄3,3 0,0 3,0▄▄▄╦╦╦╦╦╦╦╦╦▜3,3 3,0▀0,0 1,1 4,1▄▄▄╦╦╦╦╦╦╦╦╦▜4,4 14,0▒▒0,0 1,1 14,0▒▒▒▒
14,0▒▒▒▒▒▒1,1 0,0 14,0▒▒3,3 1,3▔▔3,3 3,0▄3,3 3,0▔▔▔▔▔▔▔▔▔▔0,0 1,4▀4,4 4,1▔▔▔▔▔▔▔▔14,0▒▒0,0▀ 1,1 14,0▒▒▒▒▒▒
14,0▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒3,3 3,1▀1,1 3,3 0,0 3,00,0 0,3▀3,3 4,4 1,1 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒
14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒3,3 3,1▘1,1 3,3 0,0 3,00,0 3,0▟3,3 4,4 1,1 14,0▒▒0,0 ▀1,1 14,0▒▒▒▒▒▒▒▒▒▒
1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒3,3 3,1▋1,1 3,3 3,0▀0,0 3,00,0 0,3▌3,3 4,4 4,1▀1,1 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1
0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒3,3 3,1▖1,1 3,3 3,0▀0,0 3,0▄▄▄╦╦╦╦╦╦╦╦╦▜3,3 4,4 4,1▀1,1 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0
14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒3,3 1,3▔▔0,0 3,0▄3,3 3,0▔▔▔▔▔▔▔▔0,0 1,1 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒
0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒3,3 0,0 3,0▄3,3 0,0 3,0 0,0 3,01,0 1,1 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0
1,0▌0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒3,3 0,0 3,0▟3,3 0,0 3,0 0,0 3,01,0 1,1 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0
0,0 1,0▗14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 0,3▌3,3 3,0▀0,0 3,0 0,0 3,014,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0
0,0 1,0▟▙0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 3,0▜3,3 3,0▀0,0 3,0 ▄▄14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0 0,0
0,0 1,0▄▟1,1 1,0▌0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 3,0▄3,3 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0
1,0▄▟1,1 1,0▛0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 3,0▄3,3 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0
1,1 1,0▀0,0 1,0▗14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 3,0▟14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0
1,1 1,0▀0,0 1,0▟▙0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0 0,0
1,0▀▚0,0 1,0▄▟1,1 1,0▌0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒14,1▛1,1 14,1▜14,0▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 1,0 0,0 14,0▒▒0,0 ▙ 1,0 0,0
0,0 1,0▄▟1,1 1,0▛0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,1▙1,1 14,1▟0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 ▙
0,0 1,0▐1,1 1,0▀0,0 1,0▗14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,1▗0,0 0,1▖1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0 0,0 1,0▗
0,0 1,0▁▁▐1,1 1,0▀0,0 1,0▟▙0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒1,1 14,0▒▒0,1▀14,0▒▒1,1 14,0▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0▗▄▄▄▟1,1
0,0 1,0▗1,1 1,0▀▀▚0,0 1,0▄▟1,1 1,0▌0,0 14,0▒▒0,0 1,1 14,0▒▒1,1 14,0▒▒14,1▀1,1 14,1▀14,0▒▒1,1 14,0▒▒1,1 0,0 14,0▒▒0,0 1,0▗▙0,0 1,0▀1,1 1,0▛
0,0 1,0▗▟1,1 0,0 1,0▄▟1,1 1,0▛0,0 ▌1,0 0,0 14,0▒▒0,0 1,1 14,0▒▒14,1▀1,1 0,1 1,1 14,1▀14,0▒▒1,1 0,0 14,0▒▒0,0 1,0▗1,1 1,0▌0,0
1,0▜1,1 1,0▛0,0 1,0▐1,1 1,0▀0,0 14,1▛1,1 14,1▜14,0▗▘▝14,1▛1,1 0,1 1,1 14,1▜14,0▘▝▖14,1▛1,1 14,1▜0,0 ▜1,0▗▟1,1 0,0
0,0 1,0▝▘0,0 1,0▁▁▐1,1 1,0▀0,0 14,1▙1,1 14,1▟14,0▝▖▗14,1▙1,1 0,1 1,1 14,1▟14,0▖▗▘14,1▙1,1 14,1▟0,0 1,0 ▐1,1 1,0▀0,0
0,0 1,0▄1,1 1,0▀▀▚0,0 14,0▒▒0,0 1,1 14,0▒▒1,14▀1,1 0,1 1,1 1,14▀14,0▒▒1,1 0,0 14,0▒▒0,0 1,0___▐1,1 1,0▀0,0 1,0 0,0
0,0 1,0▗▟1,1 0,0 14,0▒▒0,0 1,1 14,0▒▒1,1 14,0▒▒1,14▀1,1 1,14▀14,0▒▒1,1 14,0▒▒1,1 0,0 14,0▒▒0,0 1,0▄1,1 0,1 1,0▀▀▚ 0,0
0,0 1,0▞▀▜1,1 1,0▛0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒1,1 14,0▒▒1,0▀14,0▒▒1,1 14,0▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0▗▟1,1 1,0 0,0 1,0 0,0 1,0 0,0 1,0▗▟
0,0 1,0▟▙0,0 1,0▝▘0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 1,0▙ ▟1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0▝▀▜1,1 1,0▛ 0,0 1,0 0,0 1,0▐██
0,0 1,0▄▟1,1 1,0▌0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 1,0 14,1▛1,1 14,1▜0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0▔▝▘0,0 1,0 0,0 1,0▁▁▐█▀
0,0 1,0▄▟1,1 1,0▛0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒14,1▙1,1 14,1▟14,0▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0 0,0 1,0▗███▀▀▖
1,0▐1,1 1,0▀0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0▗▟███0,0
1,0▐1,1 1,0▀0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0▝▀▜0,1 1,0██▛0,0
1,0▀▀▚0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0▀ 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0▔▝▘0,0
0,0 14,0▒▒0,0 ▛1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 ▀ 1,0▗14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 ▟
0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0 0,0 1,0▟▙0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 ▟ 1,0▗
0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0 0,0 1,0▄▟1,1 1,0▌0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 1,0▝▀▜█
0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 14,0 0,0 ▀ 1,0 0,0 1,0 ▗▄▟1,1 1,0▛0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒1,0╯0,0 1,0▔
0,0 14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 0,8█0,0 1,0 0,0 1,0▐1,1 1,0▀0,0 1,0▗14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0▟ 14,0▒▒0,0
14,0▒▒0,0 1,1 14,0▒▒▒▒▒▒▒▒▒▒1,1 0,0 14,0▒▒0,0 s 1,0▅▅▅▄1,1 1,0▀0,0 1,0▟▙0,0 14,0▒▒0,0

View File

@ -0,0 +1,30 @@
2,2 0<sayjay> anyone who wants a POSTCARD or something send me your addr three drops of l0de's blood np
2,2 10,10▒▒▒▒▒▒▒▒▒▒▒▒▒2,2
2,2 0HI IM SAYJAY FROM TINYCHAT 2 10,10▒▒7,7 10,10▒▒▒2,2
2,2 10,10▒7,7 10,10▒2,2 0COME FLIRT WITH ME2
2,2 10,10▒7,7 10,10▒▒2,2 0 2
2,2 10,10▒7,7 1,1 7,7 1,1 7,7 10,10▒2,2 7,7 2,2
2,2 7,7 2,2 10,10▒2,2 7,7 10,10▒2,2 7,7 2,2
2,2 7,7 2,2 10,10▒2,2 7,7 1,1 7,7 2,2 10,10▒2,2 7,7 2,2
2,2 7,7 2,2 10,10▒2,2 7,7 2,2 10,10▒2,2 7,7 2,2
2,2 0I NEED UR LUV2 7,7 2,2 10,10▒▒2,2 7,7 2,2 7,7 10,10▒7,7 2,2
2,2 7,7 10,10▒7,7 8\7 8 /7 10,10▒7,7 2,2 0I WANT TO FIGHT ANJI2
2,2 4,7▒▒▒7 10,10▒7,7 8\whore/7 10,10▒7,7 2,2
2,2 7,7 4▒▒▒7 10,10▒7,7 1\\7 10,10▒2,2 7,7 2,2
2,2 0WHY DOESNT ANJI LIKE ME 2 7,7 4▒▒7 10,10▒7,7 2,2 10,10▒2,2 7,7 2,2
2,2 7,7 1.7 1.7 4▒▒1//7 4▒▒7 2,2 10,10▒2,2 7,7 2,2 0I NEED ATTENTION2 0
2,2 7,7 2,2 7,7 4▒▒▒▒▒7 4(.)▒▒▒▒▒▒(.)▒7 2,2 7,7 1.7 1.7 2,2
2,2 7,7 1.7 2,2 7,7 1.7 1.4▒▒7 4▒▒▒▒▒7 4▒▒▒7 2,2 7,7 2,2
2,2 7,7 2,2 7,7 1.7 2,2 7,7 1.7 1.7 2,2
2,2 0ILL KILL ANY GIRL WHO2 7,7 1.7 2,2 0TALKS2 7,7 1.7 0,15 7,7 4▒2,2 7,7 1.7 2,2 7,7 2,2
2,2 0TO MEEP2 1,7.7 1.7 2,2 7,7 1.7 0,15 0,12PROPERTY12 0,15 7,7 4▒▒7 1.7 2,2 7,7 1.7 1.7 2,2
2,2 7,7 2,2 7,7 1..7 0,15 0,12 12 0OF12 0,15 7,7 1.7 2,2 7,7 1.7 2,2 0IM SO NICE2
2,2 7,7 1.7 2,2 7,7 1.7 1.0,15 12,12 0#SALT12 0,15 7,7 1.7 2,2 7,7 2,2
10,10 7,7 10,10 7,7 1.7 0,15 7,7 1.7 10,10 7,7 10,10
10,10 7,7 10,10 7,7 1.7 5::7 1.7 1.7 10,10 7,7 10,10
10,10 4,4 10,10 7,7 1.7 5:7,0░5,7:7 10,10 7,7 10,10
10,10 4,4 10,10 11,0▒▒10,10 7,7 10,10 4,4 10,10
10,10 4,4 10,10 4,4 10,10 11,0▒10,10 4,4 10,10
10,10 4,4 10,10 4,4 10,10 4,4 10,10 4,4 10,10
10,10 4,4 10,10 4,4 10,10 4,4 10,10
10,10 11spoke &10 11vap

View File

@ -96,7 +96,7 @@ export default {
}),
computed: {
getCurrentTab() {
return this.tab;
return this.tab ?? 0;
},
shouldRefresh() {
return this.refresh;
@ -122,7 +122,7 @@ export default {
this.onChangeTab( val );
},
shouldRefresh(val,old) {
},
watchColorChange(val) {
console.log(JSON.stringify(val))
@ -176,7 +176,7 @@ export default {
}
// this.drawGrid();
this.redrawCanvas();
// this.redrawCanvas();
},
redrawCanvas() {
// console.log("Canvas redraw");
@ -197,27 +197,45 @@ export default {
// Draws the actual rectangle
let canvasX = 0;
let canvasY = 0;
let blockCanvasX = 0;
let blockCanvasY = 0;
let curBlock = {};
this.ctx.font = "16px Mono";
this.ctx.font = "8px Mono";
for (y = 0; y < this.currentAsciibirdMeta.height; y++) {
canvasY = BLOCK_HEIGHT * y+1;
for (y = 0; y < this.currentAsciibirdMeta.height+1; y++) {
canvasY = BLOCK_HEIGHT * y;
for (x = 0; x < this.currentAsciibirdMeta.width; x++) {
curBlock = JSON.parse(JSON.stringify(this.currentAsciibirdMeta.blocks[y][x]));
canvasX = BLOCK_WIDTH * x+1;
for (x = 0; x < this.currentAsciibirdMeta.width+1; x++) {
if (curBlock.char) {
this.ctx.fillStyle = this.mircColors[curBlock.fg];
this.ctx.fillText(curBlock.char, canvasX + 3, canvasY - 3);
}
if (this.currentAsciibirdMeta.blocks[y][x]) {
// Background block
this.ctx.fillStyle = this.mircColors[curBlock.bg];
this.ctx.fillRect(canvasX, canvasY, BLOCK_WIDTH, BLOCK_HEIGHT);
curBlock = JSON.parse(JSON.stringify(this.currentAsciibirdMeta.blocks[y][x]));
canvasX = BLOCK_WIDTH * x;
// Background block
if (curBlock.bg !== null) {
this.ctx.fillStyle = this.mircColors[curBlock.bg];
this.ctx.fillRect(canvasX, canvasY, BLOCK_WIDTH, BLOCK_HEIGHT);
} else {
this.ctx.fillStyle = "rgba(0, 0, 200, 0)";;
}
if (curBlock.char) {
if (curBlock.fg !== null) {
this.ctx.fillStyle = this.mircColors[curBlock.fg];
} else {
this.ctx.fillStyle = "#000000";
}
this.ctx.fillText(curBlock.char, canvasX, canvasY + BLOCK_HEIGHT - 3);
this.ctx.stroke();
}
}
// break;
}
}
}