Compare commits
38 Commits
c1c4fca1db
...
noise-redu
| Author | SHA1 | Date | |
|---|---|---|---|
| 63bcf8532c | |||
| 47a9bf5c79 | |||
| d100473542 | |||
| d0946d3ab5 | |||
| 5ee1e908f1 | |||
| 5788baa0b8 | |||
| f135e184e4 | |||
| 3e7d6eeaa5 | |||
| f6308110be | |||
| 2d73963aa0 | |||
| 6f8e00130c | |||
| b478b1e3ee | |||
| 055928eb7b | |||
| b3690c4dd7 | |||
| da04534fd9 | |||
| 3d1129c613 | |||
| 3b851975d0 | |||
| afc626bae0 | |||
| 6e43249d64 | |||
| 458604cd1a | |||
| bb0b970281 | |||
| f62202cb74 | |||
| 745b18dfc0 | |||
| e5a87f854e | |||
| c2787db422 | |||
| 7d274bb3c2 | |||
| fbe40fb866 | |||
| 7ff67e51f8 | |||
| 80df4a9a6a | |||
| e76ff57053 | |||
| 0ef2d2acd9 | |||
| f9b0f6b6db | |||
| 8c92b05b74 | |||
| 512f386c25 | |||
| 63cb971aca | |||
| 03ce88e015 | |||
| 8a8b861e5d | |||
| 21eb632d22 |
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pixsy"
|
name = "pixsy"
|
||||||
version = "0.72.5"
|
version = "0.72.7"
|
||||||
description = "convert images to Bitsy rooms"
|
description = "convert images to Bitsy rooms"
|
||||||
authors = ["Max Bradbury <max@tinybird.info>"]
|
authors = ["Max Bradbury <max@tinybird.info>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|||||||
56
README.md
56
README.md
@@ -1,3 +1,57 @@
|
|||||||
# pixsy
|
# pixsy
|
||||||
|
|
||||||
convert images to rooms for use in Bitsy
|
a tool for [Bitsy Game Maker](http://bitsy.org).
|
||||||
|
upload any image and convert it into a room.
|
||||||
|
|
||||||
|
## credits
|
||||||
|
|
||||||
|
made by [Max Bradbury](http://tinybird.info/).
|
||||||
|
makes use of my own [bitsy parser](https://crates.io/crates/bitsy-parser) library.
|
||||||
|
|
||||||
|
uses the [Croppie](https://foliotek.github.io/Croppie/) image crop plugin
|
||||||
|
by [Foliotek](https://www.foliotek.com/)
|
||||||
|
|
||||||
|
uses [wasm-bindgen](https://crates.io/crates/wasm-bindgen) to automate WebAssembly bindings.
|
||||||
|
|
||||||
|
## thanks
|
||||||
|
|
||||||
|
to [Adam Le Doux](http://ledoux.io/) for creating the wonderful and inspiring Bitsy
|
||||||
|
|
||||||
|
to [Mark Wonnacott](https://kool.tools/) for their support, encouragement and inspiration
|
||||||
|
|
||||||
|
and to everyone in the bitsy community!
|
||||||
|
|
||||||
|
## contributing
|
||||||
|
|
||||||
|
forks and pull requests welcome!
|
||||||
|
|
||||||
|
### development prerequisites
|
||||||
|
|
||||||
|
* [rust/cargo](https://rustup.rs/)
|
||||||
|
* [pug](https://pugjs.org/)
|
||||||
|
* [less](http://lesscss.org/)
|
||||||
|
* a bash shell for the build script
|
||||||
|
|
||||||
|
## bugs
|
||||||
|
|
||||||
|
when importing images, some pixels have errors.
|
||||||
|
it seems to only happen for pixels surrounded at the top and left:
|
||||||
|
```
|
||||||
|
111 111
|
||||||
|
100 => 110
|
||||||
|
100 100
|
||||||
|
```
|
||||||
|
|
||||||
|
pixsy does not work in the Itch desktop program
|
||||||
|
because their bundled version of Chromium does not support WebAssembly.
|
||||||
|
|
||||||
|
## to do
|
||||||
|
|
||||||
|
* add alternative dithering options (Atkinson, Bayer 8×8)
|
||||||
|
* add a 'smoothing' (noise reduction?) stage to remove errant pixels
|
||||||
|
|
||||||
|
## could do
|
||||||
|
|
||||||
|
* reimplement tile reuse option
|
||||||
|
* add camera support so users can take a pic instead of uploading an image
|
||||||
|
* allow user to draw to canvas
|
||||||
|
|||||||
8
TODO.md
8
TODO.md
@@ -1,8 +0,0 @@
|
|||||||
# todo
|
|
||||||
|
|
||||||
* tests
|
|
||||||
* if image is exactly 128×128, *don't* crop
|
|
||||||
* tile reuse
|
|
||||||
* implement Atkinson and Bayer dithering options
|
|
||||||
* if "create new bitsy game", add new room as room 0
|
|
||||||
* actually create room
|
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
#! /usr/bin/env bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
./build.sh
|
|
||||||
rm -rf dist
|
rm -rf dist
|
||||||
mkdir dist
|
mkdir dist
|
||||||
cp -r README.md LICENSE index.html script.js background.png pkg includes dist
|
cp -r README.md LICENSE index.html script.js pkg includes old dist
|
||||||
# butler push dist ruin/pixsy:html
|
butler push dist ruin/pixsy:html
|
||||||
|
|||||||
@@ -1,122 +0,0 @@
|
|||||||
.slider[type='range'] {
|
|
||||||
-webkit-appearance: none;
|
|
||||||
margin: 9px 0;
|
|
||||||
width: 100%
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider[type='range']:focus {
|
|
||||||
outline: 0
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider[type='range']::-webkit-slider-runnable-track {
|
|
||||||
cursor: pointer;
|
|
||||||
height: 5px;
|
|
||||||
width: 100%;
|
|
||||||
background: #008ecc;
|
|
||||||
border: none
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider[type='range']::-webkit-slider-thumb {
|
|
||||||
background: #fff;
|
|
||||||
border: 1px solid #e0e0e0;
|
|
||||||
border-radius: 50%;
|
|
||||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.12);
|
|
||||||
cursor: pointer;
|
|
||||||
height: 18px;
|
|
||||||
width: 18px;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
margin-top: -6.5px
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider[type='range']::-moz-range-track {
|
|
||||||
cursor: pointer;
|
|
||||||
height: 5px;
|
|
||||||
width: 100%;
|
|
||||||
background: #008ecc;
|
|
||||||
border: none
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider[type='range']::-moz-range-thumb {
|
|
||||||
background: #fff;
|
|
||||||
border: 1px solid #e0e0e0;
|
|
||||||
border-radius: 50%;
|
|
||||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.12);
|
|
||||||
cursor: pointer;
|
|
||||||
height: 18px;
|
|
||||||
width: 18px
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider[type='range']::-ms-track {
|
|
||||||
cursor: pointer;
|
|
||||||
height: 5px;
|
|
||||||
width: 100%;
|
|
||||||
background: transparent;
|
|
||||||
border-color: transparent;
|
|
||||||
border-width: 9px 0;
|
|
||||||
color: transparent
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider[type='range']::-ms-fill-lower {
|
|
||||||
background: #008ecc;
|
|
||||||
border: none
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider[type='range']::-ms-fill-upper {
|
|
||||||
background: #008ecc;
|
|
||||||
border: none
|
|
||||||
}
|
|
||||||
|
|
||||||
.slider[type='range']::-ms-thumb {
|
|
||||||
background: #fff;
|
|
||||||
border: 1px solid #e0e0e0;
|
|
||||||
border-radius: 50%;
|
|
||||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.12);
|
|
||||||
cursor: pointer;
|
|
||||||
height: 18px;
|
|
||||||
width: 18px;
|
|
||||||
margin-top: 0
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.cropper {
|
|
||||||
display: inline-block
|
|
||||||
}
|
|
||||||
|
|
||||||
.cropper canvas {
|
|
||||||
border-radius: 3px
|
|
||||||
}
|
|
||||||
|
|
||||||
.cropper canvas:hover {
|
|
||||||
cursor: move
|
|
||||||
}
|
|
||||||
|
|
||||||
.cropper-tools {
|
|
||||||
margin-top: 15px;
|
|
||||||
text-align: center
|
|
||||||
}
|
|
||||||
|
|
||||||
.cropper-zoom {
|
|
||||||
display: inline-block
|
|
||||||
}
|
|
||||||
|
|
||||||
.cropper-zoom .slider {
|
|
||||||
margin: 0 10px;
|
|
||||||
width: 225px
|
|
||||||
}
|
|
||||||
|
|
||||||
.cropper-zoom .icon {
|
|
||||||
margin-top: 2px;
|
|
||||||
font-size: 18px
|
|
||||||
}
|
|
||||||
|
|
||||||
.cropper-zoom .icon:last-child {
|
|
||||||
font-size: 24px
|
|
||||||
}
|
|
||||||
|
|
||||||
.cropper .icon {
|
|
||||||
display: inline-block;
|
|
||||||
width: 1em;
|
|
||||||
height: 1em;
|
|
||||||
fill: rgba(0, 0, 0, .54);
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
1
includes/cropper.min.js
vendored
1
includes/cropper.min.js
vendored
File diff suppressed because one or more lines are too long
250
includes/croppie.css
Normal file
250
includes/croppie.css
Normal file
@@ -0,0 +1,250 @@
|
|||||||
|
.croppie-container {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-image {
|
||||||
|
z-index: -1;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
transform-origin: 0 0;
|
||||||
|
max-height: none;
|
||||||
|
max-width: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-boundary {
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
margin: 0 auto;
|
||||||
|
z-index: 1;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-viewport,
|
||||||
|
.croppie-container .cr-resizer {
|
||||||
|
position: absolute;
|
||||||
|
border: 2px solid #fff;
|
||||||
|
margin: auto;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-resizer {
|
||||||
|
z-index: 2;
|
||||||
|
box-shadow: none;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-resizer-vertical,
|
||||||
|
.croppie-container .cr-resizer-horisontal {
|
||||||
|
position: absolute;
|
||||||
|
pointer-events: all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-resizer-vertical::after,
|
||||||
|
.croppie-container .cr-resizer-horisontal::after {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border: 1px solid black;
|
||||||
|
background: #fff;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-resizer-vertical {
|
||||||
|
bottom: -5px;
|
||||||
|
cursor: row-resize;
|
||||||
|
width: 100%;
|
||||||
|
height: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-resizer-vertical::after {
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-resizer-horisontal {
|
||||||
|
right: -5px;
|
||||||
|
cursor: col-resize;
|
||||||
|
width: 10px;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-resizer-horisontal::after {
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-original-image {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-vp-circle {
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-overlay {
|
||||||
|
z-index: 1;
|
||||||
|
position: absolute;
|
||||||
|
cursor: move;
|
||||||
|
touch-action: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-slider-wrap {
|
||||||
|
width: 75%;
|
||||||
|
margin: 15px auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-result {
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-result img {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.croppie-container .cr-image,
|
||||||
|
.croppie-container .cr-overlay,
|
||||||
|
.croppie-container .cr-viewport {
|
||||||
|
-webkit-transform: translateZ(0);
|
||||||
|
-moz-transform: translateZ(0);
|
||||||
|
-ms-transform: translateZ(0);
|
||||||
|
transform: translateZ(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*************************************/
|
||||||
|
/***** STYLING RANGE INPUT ***********/
|
||||||
|
/*************************************/
|
||||||
|
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
|
||||||
|
/*************************************/
|
||||||
|
|
||||||
|
.cr-slider {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
/*removes default webkit styles*/
|
||||||
|
/*border: 1px solid white; *//*fix for FF unable to apply focus style bug */
|
||||||
|
width: 300px;
|
||||||
|
/*required for proper track sizing in FF*/
|
||||||
|
max-width: 100%;
|
||||||
|
padding-top: 8px;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cr-slider::-webkit-slider-runnable-track {
|
||||||
|
width: 100%;
|
||||||
|
height: 3px;
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
border: 0;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cr-slider::-webkit-slider-thumb {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
border: none;
|
||||||
|
height: 16px;
|
||||||
|
width: 16px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: #ddd;
|
||||||
|
margin-top: -6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cr-slider:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
.cr-slider:focus::-webkit-slider-runnable-track {
|
||||||
|
background: #ccc;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
.cr-slider::-moz-range-track {
|
||||||
|
width: 100%;
|
||||||
|
height: 3px;
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
border: 0;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cr-slider::-moz-range-thumb {
|
||||||
|
border: none;
|
||||||
|
height: 16px;
|
||||||
|
width: 16px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: #ddd;
|
||||||
|
margin-top: -6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*hide the outline behind the border*/
|
||||||
|
.cr-slider:-moz-focusring {
|
||||||
|
outline: 1px solid white;
|
||||||
|
outline-offset: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cr-slider::-ms-track {
|
||||||
|
width: 100%;
|
||||||
|
height: 5px;
|
||||||
|
background: transparent;
|
||||||
|
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
|
||||||
|
border-color: transparent;/*leave room for the larger thumb to overflow with a transparent border */
|
||||||
|
border-width: 6px 0;
|
||||||
|
color: transparent;/*remove default tick marks*/
|
||||||
|
}
|
||||||
|
.cr-slider::-ms-fill-lower {
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
.cr-slider::-ms-fill-upper {
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
.cr-slider::-ms-thumb {
|
||||||
|
border: none;
|
||||||
|
height: 16px;
|
||||||
|
width: 16px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: #ddd;
|
||||||
|
margin-top:1px;
|
||||||
|
}
|
||||||
|
.cr-slider:focus::-ms-fill-lower {
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
}
|
||||||
|
.cr-slider:focus::-ms-fill-upper {
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
}
|
||||||
|
/*******************************************/
|
||||||
|
|
||||||
|
/***********************************/
|
||||||
|
/* Rotation Tools */
|
||||||
|
/***********************************/
|
||||||
|
.cr-rotate-controls {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 5px;
|
||||||
|
left: 5px;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.cr-rotate-controls button {
|
||||||
|
border: 0;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
.cr-rotate-controls i:before {
|
||||||
|
display: inline-block;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 900;
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
.cr-rotate-l i:before {
|
||||||
|
content: '↺';
|
||||||
|
}
|
||||||
|
.cr-rotate-r i:before {
|
||||||
|
content: '↻';
|
||||||
|
}
|
||||||
1
includes/croppie.min.js
vendored
Normal file
1
includes/croppie.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -1,6 +1,7 @@
|
|||||||
@background: #fff4d9;
|
@background: #57506a;
|
||||||
@text: #ec6d7d;
|
@page-background: #968eb5;
|
||||||
@accent: #a3c4ef;
|
@accent: #ec6d7d;
|
||||||
|
@text: #464256;
|
||||||
|
|
||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@@ -36,6 +37,10 @@ button {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header * {
|
||||||
|
color: @accent;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
@@ -112,8 +117,8 @@ textarea {
|
|||||||
height: 80vmin;
|
height: 80vmin;
|
||||||
width: 80vmin;
|
width: 80vmin;
|
||||||
|
|
||||||
background-color: @background;
|
background-color: @page-background;
|
||||||
border: 2px solid @accent;
|
color: @text;
|
||||||
border-radius: 5vmin;
|
border-radius: 5vmin;
|
||||||
box-shadow: @accent 1vmin 1vmin;
|
box-shadow: @accent 1vmin 1vmin;
|
||||||
padding: 5vmin;
|
padding: 5vmin;
|
||||||
|
|||||||
46
index.pug
46
index.pug
@@ -4,20 +4,21 @@ html(lang="en-gb")
|
|||||||
meta(charset="utf-8")
|
meta(charset="utf-8")
|
||||||
title pixsy
|
title pixsy
|
||||||
link(rel="stylesheet" href="includes/style.css")
|
link(rel="stylesheet" href="includes/style.css")
|
||||||
link(rel="stylesheet" href="includes/cropper.css")
|
link(rel="stylesheet" href="includes/croppie.css")
|
||||||
script(src="includes/cropper.min.js")
|
script(src="includes/croppie.min.js")
|
||||||
body
|
body
|
||||||
h1
|
header
|
||||||
| pixsy
|
h1
|
||||||
//img(alt="pixsy" src="includes/pixsy.png")
|
| pixsy
|
||||||
p.
|
//img(alt="pixsy" src="includes/pixsy.png")
|
||||||
convert images to Bitsy rooms
|
p.
|
||||||
|
|
convert images to Bitsy rooms
|
||||||
#[a(href="./old/") old version]
|
|
|
||||||
|
|
#[a(href="http://tinybird.info/image-to-bitsy/old/" target="_blank") old version]
|
||||||
#[a(href="mailto:max@tinybird.info") email]
|
|
|
||||||
|
|
#[a(href="mailto:max@tinybird.info") email]
|
||||||
#[a(href="https://twitter.com/synth_ruiner") twitter]
|
|
|
||||||
|
#[a(href="https://twitter.com/synth_ruiner") twitter]
|
||||||
.pages
|
.pages
|
||||||
.page#start
|
.page#start
|
||||||
button.normal.pagination.next#new create a new bitsy game
|
button.normal.pagination.next#new create a new bitsy game
|
||||||
@@ -35,16 +36,16 @@ html(lang="en-gb")
|
|||||||
|
|
||||||
button.pagination.prev previous
|
button.pagination.prev previous
|
||||||
button.pagination.next#game-data-next(disabled=true) next
|
button.pagination.next#game-data-next(disabled=true) next
|
||||||
.page.image
|
.page.image#page-image
|
||||||
h2 image
|
h2 image
|
||||||
|
|
||||||
.image-container
|
.image-container
|
||||||
input#image(type="file" accept="image/*")
|
input#image(type="file" accept="image/*")
|
||||||
#crop
|
#crop(style="display: none;")
|
||||||
|
|
||||||
button.pagination.prev previous
|
button.pagination.prev previous
|
||||||
button.pagination.next#image-next(disabled=true) next
|
button.pagination.next#image-next(disabled=true) next
|
||||||
.page.room
|
.page.room#page-room
|
||||||
h2 room
|
h2 room
|
||||||
|
|
||||||
table
|
table
|
||||||
@@ -68,18 +69,25 @@ html(lang="en-gb")
|
|||||||
|
|
||||||
#new-palette(style="display: none;")
|
#new-palette(style="display: none;")
|
||||||
.half
|
.half
|
||||||
input#colour-background(type="color" value="#2f4ac9")
|
input#colour-background(type="color" value="#000000")
|
||||||
.half
|
.half
|
||||||
input#colour-foreground(type="color" value="#8798fe")
|
input#colour-foreground(type="color" value="#ffffff")
|
||||||
|
|
||||||
label
|
label
|
||||||
input#dither(type="checkbox" checked=true)
|
input#dither(type="checkbox" checked=true)
|
||||||
| dither
|
| dither
|
||||||
br
|
br
|
||||||
|
|
||||||
|
label
|
||||||
|
input#filter(type="checkbox")
|
||||||
|
| filter
|
||||||
|
br
|
||||||
|
|
||||||
button.pagination.prev#back-to-image previous
|
button.pagination.prev#back-to-image previous
|
||||||
button.pagination.next#room-next next
|
button.pagination.next#room-next add room
|
||||||
.page.download
|
.page.download
|
||||||
|
p#added
|
||||||
|
|
||||||
h2 download
|
h2 download
|
||||||
|
|
||||||
textarea#output(autocomplete="off")
|
textarea#output(autocomplete="off")
|
||||||
|
|||||||
53
script.js
53
script.js
@@ -8,14 +8,11 @@ import init, {
|
|||||||
output,
|
output,
|
||||||
set_brightness,
|
set_brightness,
|
||||||
set_dither,
|
set_dither,
|
||||||
|
set_filter,
|
||||||
set_palette,
|
set_palette,
|
||||||
set_room_name,
|
set_room_name,
|
||||||
} from './pkg/pixsy.js';
|
} from './pkg/pixsy.js';
|
||||||
|
|
||||||
if (typeof WebAssembly !== "object") {
|
|
||||||
window.location = "./old/"
|
|
||||||
}
|
|
||||||
|
|
||||||
// stolen from https://ourcodeworld.com/articles/read/189/how-to-create-a-file-and-generate-a-download-with-javascript-in-the-browser-without-a-server
|
// stolen from https://ourcodeworld.com/articles/read/189/how-to-create-a-file-and-generate-a-download-with-javascript-in-the-browser-without-a-server
|
||||||
function download(filename, text) {
|
function download(filename, text) {
|
||||||
let element = document.createElement('a');
|
let element = document.createElement('a');
|
||||||
@@ -60,6 +57,10 @@ function readFile(input, callback, type = "text") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
|
if (typeof WebAssembly !== "object") {
|
||||||
|
window.location = "http://tinybird.info/image-to-bitsy/old/"
|
||||||
|
}
|
||||||
|
|
||||||
await init();
|
await init();
|
||||||
|
|
||||||
const buttonAddImage = el("add");
|
const buttonAddImage = el("add");
|
||||||
@@ -72,6 +73,7 @@ async function run() {
|
|||||||
const buttonNewGame = el("new");
|
const buttonNewGame = el("new");
|
||||||
const buttonReset = el("reset");
|
const buttonReset = el("reset");
|
||||||
const checkboxDither = el("dither");
|
const checkboxDither = el("dither");
|
||||||
|
const divCroppie = el("crop");
|
||||||
const divNewPalette = el("new-palette");
|
const divNewPalette = el("new-palette");
|
||||||
const inputBrightness = el("brightness");
|
const inputBrightness = el("brightness");
|
||||||
const inputColourBackground = el("colour-background");
|
const inputColourBackground = el("colour-background");
|
||||||
@@ -81,8 +83,11 @@ async function run() {
|
|||||||
const textareaGameDataInput = el("game-data");
|
const textareaGameDataInput = el("game-data");
|
||||||
const textareaGameDataOutput = el("output");
|
const textareaGameDataOutput = el("output");
|
||||||
|
|
||||||
const cropper = new Cropper({ width: 192, height: 192 });
|
const croppie = new Croppie(divCroppie, {
|
||||||
let cropperRendered = false;
|
viewport: {width: 128, height: 128, type: 'square'},
|
||||||
|
boundary: {width: 256, height: 256},
|
||||||
|
enableZoom: true,
|
||||||
|
});
|
||||||
|
|
||||||
// hide all pages except start page
|
// hide all pages except start page
|
||||||
for (let page of document.getElementsByClassName('page')) {
|
for (let page of document.getElementsByClassName('page')) {
|
||||||
@@ -95,8 +100,12 @@ async function run() {
|
|||||||
pageButton.addEventListener('touchend', pagination);
|
pageButton.addEventListener('touchend', pagination);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// croppie needs to be on screen to work;
|
||||||
|
// halt pagination until we're finished gathering the results
|
||||||
|
buttonImageProceed.removeEventListener("click", pagination);
|
||||||
|
|
||||||
function new_game() {
|
function new_game() {
|
||||||
console.debug(load_default_game());
|
load_default_game();
|
||||||
textareaGameDataInput.value = output();
|
textareaGameDataInput.value = output();
|
||||||
checkGameData();
|
checkGameData();
|
||||||
// we don't need to look at the default game data, so skip ahead to the image page
|
// we don't need to look at the default game data, so skip ahead to the image page
|
||||||
@@ -159,13 +168,9 @@ async function run() {
|
|||||||
|
|
||||||
el('image').addEventListener('change', function () {
|
el('image').addEventListener('change', function () {
|
||||||
readFile(this, function (e) {
|
readFile(this, function (e) {
|
||||||
if ( ! cropperRendered) {
|
croppie.bind({url: e.target.result, zoom: 0});
|
||||||
cropper.render("#crop");
|
divCroppie.style.display = "block";
|
||||||
cropperRendered = true;
|
buttonImageProceed.removeAttribute("disabled");
|
||||||
buttonImageProceed.removeAttribute("disabled");
|
|
||||||
}
|
|
||||||
|
|
||||||
cropper.loadImage(e.target.result);
|
|
||||||
}, "image");
|
}, "image");
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -174,8 +179,18 @@ async function run() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function handleImage() {
|
function handleImage() {
|
||||||
console.log(load_image(cropper.getCroppedImage()));
|
croppie.result({
|
||||||
loadPreview();
|
type: "base64",
|
||||||
|
size: "viewport",
|
||||||
|
format: "png",
|
||||||
|
}).then((result) => {
|
||||||
|
console.log("Loading image: " + load_image(result));
|
||||||
|
|
||||||
|
el("page-image").style.display = "none";
|
||||||
|
el("page-room" ).style.display = "block";
|
||||||
|
|
||||||
|
loadPreview();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
buttonImageProceed.addEventListener("click", handleImage);
|
buttonImageProceed.addEventListener("click", handleImage);
|
||||||
@@ -216,7 +231,7 @@ async function run() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function addRoom() {
|
function addRoom() {
|
||||||
console.log(add_room());
|
el("added").innerText = add_room();
|
||||||
textareaGameDataOutput.value = output();
|
textareaGameDataOutput.value = output();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -247,8 +262,8 @@ async function run() {
|
|||||||
inputRoomName.value = "";
|
inputRoomName.value = "";
|
||||||
selectPalette.innerHTML = "";
|
selectPalette.innerHTML = "";
|
||||||
divNewPalette.style.display = "none";
|
divNewPalette.style.display = "none";
|
||||||
inputColourBackground.value = "#2f4ac9";
|
inputColourBackground.value = "#000000";
|
||||||
inputColourForeground.value = "#8798fe";
|
inputColourForeground.value = "#ffffff";
|
||||||
checkboxDither.checked = true;
|
checkboxDither.checked = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
125
src/lib.rs
125
src/lib.rs
@@ -33,6 +33,7 @@ struct State {
|
|||||||
room_name: Option<String>,
|
room_name: Option<String>,
|
||||||
palette: SelectedPalette,
|
palette: SelectedPalette,
|
||||||
dither: bool,
|
dither: bool,
|
||||||
|
filter: bool,
|
||||||
brightness: i32,
|
brightness: i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,14 +45,15 @@ lazy_static! {
|
|||||||
room_name: None,
|
room_name: None,
|
||||||
palette: SelectedPalette::None,
|
palette: SelectedPalette::None,
|
||||||
dither: true,
|
dither: true,
|
||||||
|
filter: false,
|
||||||
brightness: 0,
|
brightness: 0,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn tile_name(prefix: &Option<String>, index: &u32) -> Option<String> {
|
fn tile_name(prefix: &Option<String>, x: &u32, y: &u32) -> Option<String> {
|
||||||
if let Some(prefix) = prefix {
|
if let Some(prefix) = prefix {
|
||||||
Some(format!("{} {}", prefix, index))
|
Some(format!("{} ({},{})", prefix, x, y))
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
@@ -95,28 +97,34 @@ pub fn load_image(image_base64: String) -> String {
|
|||||||
let mut state = STATE.lock().expect("Couldn't lock application state");
|
let mut state = STATE.lock().expect("Couldn't lock application state");
|
||||||
|
|
||||||
let image_base64: Vec<&str> = image_base64.split("base64,").collect();
|
let image_base64: Vec<&str> = image_base64.split("base64,").collect();
|
||||||
|
|
||||||
|
if image_base64.len() < 2 {
|
||||||
|
return format!("Error: Badly-formatted base64: {}", image_base64.join(""));
|
||||||
|
}
|
||||||
|
|
||||||
let image_base64 = image_base64[1];
|
let image_base64 = image_base64[1];
|
||||||
|
|
||||||
match base64::decode(image_base64) {
|
match base64::decode(image_base64) {
|
||||||
Ok(image) => {
|
Ok(image) => {
|
||||||
match image::load_from_memory(image.as_ref()) {
|
match image::load_from_memory(image.as_ref()) {
|
||||||
Ok(image) => {
|
Ok(image) => {
|
||||||
|
let size = format!("{}×{}", image.width(), image.height());
|
||||||
// todo get rid of magic numbers! what about Bitsy HD?
|
// todo get rid of magic numbers! what about Bitsy HD?
|
||||||
let image = image.resize(128, 128, CatmullRom);
|
let image = image.resize(128, 128, CatmullRom);
|
||||||
state.image = Some(image);
|
state.image = Some(image);
|
||||||
"OK"
|
size
|
||||||
},
|
},
|
||||||
_ => {
|
_ => {
|
||||||
state.image = None;
|
state.image = None;
|
||||||
"Couldn't load image"
|
"Error: Couldn't load image".to_string()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
_ => {
|
_ => {
|
||||||
state.image = None;
|
state.image = None;
|
||||||
"Couldn't decode image"
|
"Error: Couldn't decode image".to_string()
|
||||||
}
|
}
|
||||||
}.to_string()
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen]
|
#[wasm_bindgen]
|
||||||
@@ -125,6 +133,12 @@ pub fn set_dither(dither: bool) {
|
|||||||
state.dither = dither;
|
state.dither = dither;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
pub fn set_filter(filter: bool) {
|
||||||
|
let mut state = STATE.lock().unwrap();
|
||||||
|
state.filter = filter;
|
||||||
|
}
|
||||||
|
|
||||||
#[wasm_bindgen]
|
#[wasm_bindgen]
|
||||||
pub fn set_palette(palette_id: &str, background: String, foreground: String) {
|
pub fn set_palette(palette_id: &str, background: String, foreground: String) {
|
||||||
let mut state = STATE.lock().unwrap();
|
let mut state = STATE.lock().unwrap();
|
||||||
@@ -184,19 +198,23 @@ fn image_to_base64(image: &DynamicImage) -> String {
|
|||||||
format!("data:image/png;base64,{}", base64::encode(&bytes))
|
format!("data:image/png;base64,{}", base64::encode(&bytes))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn palette_from(bg: &bitsy_parser::Colour, fg: &bitsy_parser::Colour) -> bitsy_parser::Palette {
|
||||||
|
bitsy_parser::Palette {
|
||||||
|
id: "0".to_string(),
|
||||||
|
name: None,
|
||||||
|
colours: vec![
|
||||||
|
bg.clone(), fg.clone(), bitsy_parser::Colour { red: 0, green: 0, blue: 0 }
|
||||||
|
],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn render_preview(state: &State) -> DynamicImage {
|
fn render_preview(state: &State) -> DynamicImage {
|
||||||
let mut buffer = state.image.as_ref().unwrap().clone().into_rgba();
|
let mut buffer = state.image.as_ref().unwrap().clone().into_rgba();
|
||||||
|
|
||||||
let palette = match &state.palette {
|
let palette = match &state.palette {
|
||||||
SelectedPalette::None => bitsy_parser::mock::game_default().palettes[0].clone(),
|
SelectedPalette::None => bitsy_parser::mock::game_default().palettes[0].clone(),
|
||||||
SelectedPalette::Existing { id } => state.game.as_ref().unwrap().get_palette(id).unwrap().clone(),
|
SelectedPalette::Existing { id } => state.game.as_ref().unwrap().get_palette(id).unwrap().clone(),
|
||||||
SelectedPalette::New { background, foreground } => bitsy_parser::Palette {
|
SelectedPalette::New { background, foreground } => palette_from(background, foreground),
|
||||||
id: "0".to_string(),
|
|
||||||
name: None,
|
|
||||||
colours: vec![
|
|
||||||
background.clone(), foreground.clone(), bitsy_parser::Colour { red: 0, green: 0, blue: 0 }
|
|
||||||
],
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
let colour_map = crate::ColourMap::from(&palette);
|
let colour_map = crate::ColourMap::from(&palette);
|
||||||
@@ -242,54 +260,96 @@ pub fn add_room() -> String {
|
|||||||
return "No game data loaded".to_string();
|
return "No game data loaded".to_string();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
match &state.palette {
|
||||||
|
SelectedPalette::None => { return "No palette selected".to_string(); },
|
||||||
|
_ => {}
|
||||||
|
};
|
||||||
|
|
||||||
let mut game = state.game.clone().unwrap();
|
let mut game = state.game.clone().unwrap();
|
||||||
|
|
||||||
if state.image.is_none() {
|
if state.image.is_none() {
|
||||||
return "No image loaded".to_string();
|
return "No image loaded".to_string();
|
||||||
}
|
}
|
||||||
|
|
||||||
let width = state.image.as_ref().unwrap().width();
|
let palette_id = Some(match &state.palette {
|
||||||
let height = state.image.as_ref().unwrap().height();
|
SelectedPalette::None => bitsy_parser::mock::game_default().palettes[0].id.clone(),
|
||||||
|
SelectedPalette::Existing { id } => id.clone(),
|
||||||
|
SelectedPalette::New { background, foreground } => {
|
||||||
|
game.add_palette(palette_from(background, foreground))
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
let foreground = &game.palettes
|
||||||
|
.iter()
|
||||||
|
.find(|&palette| &palette.id == palette_id.as_ref().unwrap())
|
||||||
|
.unwrap().colours[1].clone();
|
||||||
|
|
||||||
|
let preview = render_preview(&state);
|
||||||
|
|
||||||
|
let width = 128;
|
||||||
|
let height = 128;
|
||||||
let columns = (width as f64 / SD as f64).floor() as u32;
|
let columns = (width as f64 / SD as f64).floor() as u32;
|
||||||
let rows = (height as f64 / SD as f64).floor() as u32;
|
let rows = (height as f64 / SD as f64).floor() as u32;
|
||||||
|
|
||||||
let mut tile_index = 1;
|
let mut tile_ids = Vec::new();
|
||||||
|
let initial_tile_count = game.tiles.len();
|
||||||
|
|
||||||
for column in 0..columns {
|
for row in 0..rows {
|
||||||
for row in 0..rows {
|
for column in 0..columns {
|
||||||
let mut pixels = Vec::with_capacity(64);
|
let mut pixels = Vec::with_capacity(64);
|
||||||
|
|
||||||
|
fn colour_match(a: &image::Rgb<u8>, b: &bitsy_parser::Colour) -> u8 {
|
||||||
|
if a[0] == b.red && a[1] == b.green && a[2] == b.blue { 1 } else { 0 }
|
||||||
|
};
|
||||||
|
|
||||||
for y in (row * SD)..((row + 1) * SD) {
|
for y in (row * SD)..((row + 1) * SD) {
|
||||||
for x in (column * SD)..((column + 1) * SD) {
|
for x in (column * SD)..((column + 1) * SD) {
|
||||||
let pixel = state.image.as_ref().unwrap().get_pixel(x, y).to_rgb();
|
let pixel = preview.get_pixel(x, y).to_rgb();
|
||||||
let total = pixel[0] as u32 + pixel[1] as u32 + pixel[2] as u32;
|
pixels.push(colour_match(&pixel, foreground));
|
||||||
// is each channel brighter than 128/255 on average?
|
|
||||||
pixels.push(if total >= 384 {1} else {0});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let tile = Tile {
|
let tile = Tile {
|
||||||
// "0" will get overwritten to a new, safe tile ID
|
// "0" will get overwritten to a new, safe tile ID
|
||||||
id: "0".to_string(),
|
id: "0".to_string(),
|
||||||
name: tile_name(&state.room_name, &tile_index),
|
name: tile_name(&state.room_name, &column, &row),
|
||||||
wall: None,
|
wall: None,
|
||||||
animation_frames: vec![Image { pixels }],
|
animation_frames: vec![Image { pixels }],
|
||||||
colour_id: None
|
colour_id: None
|
||||||
};
|
};
|
||||||
|
|
||||||
if !game.tiles.contains(&tile) {
|
let tile_id = if game.tiles.contains(&tile) {
|
||||||
game.add_tile(tile.clone());
|
game.tiles.iter().find(|&t| t == &tile).unwrap().id.clone()
|
||||||
|
} else {
|
||||||
|
game.add_tile(tile)
|
||||||
|
};
|
||||||
|
|
||||||
tile_index += 1;
|
tile_ids.push(tile_id);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
game.add_room(bitsy_parser::Room {
|
||||||
|
id: "0".to_string(),
|
||||||
|
palette_id,
|
||||||
|
name: state.room_name.clone(),
|
||||||
|
tiles: tile_ids,
|
||||||
|
items: vec![],
|
||||||
|
exits: vec![],
|
||||||
|
endings: vec![],
|
||||||
|
walls: None
|
||||||
|
});
|
||||||
|
|
||||||
game.dedupe_tiles();
|
game.dedupe_tiles();
|
||||||
|
|
||||||
|
let new_tile_count = game.tiles.len();
|
||||||
|
|
||||||
state.game = Some(game.to_owned());
|
state.game = Some(game.to_owned());
|
||||||
|
|
||||||
"OK".to_string()
|
format!(
|
||||||
|
"Added room \"{}\" with {} new tiles",
|
||||||
|
&state.room_name.as_ref().unwrap_or(&"untitled".to_string()),
|
||||||
|
new_tile_count - initial_tile_count
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[wasm_bindgen]
|
#[wasm_bindgen]
|
||||||
@@ -304,7 +364,7 @@ pub fn output() -> String {
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
use crate::{add_room, load_image, load_default_game, output, get_preview};
|
use crate::{add_room, load_image, load_default_game, output, get_preview, set_room_name};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn image_to_base64() {
|
fn image_to_base64() {
|
||||||
@@ -334,9 +394,10 @@ mod test {
|
|||||||
#[test]
|
#[test]
|
||||||
fn example() {
|
fn example() {
|
||||||
load_default_game();
|
load_default_game();
|
||||||
load_image(include_str!("test-resources/test.png.base64").to_string());
|
load_image(include_str!("test-resources/test.png.base64").trim().to_string());
|
||||||
add_room();
|
set_room_name("test".to_string());
|
||||||
|
println!("add_room(): {}", add_room());
|
||||||
|
// todo what? why are extraneous pixels appearing in the output tiles?
|
||||||
assert_eq!(output(), include_str!("test-resources/expected.bitsy"));
|
assert_eq!(output(), include_str!("test-resources/expected.bitsy"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,6 +30,26 @@ ROOM 0
|
|||||||
NAME example room
|
NAME example room
|
||||||
PAL 0
|
PAL 0
|
||||||
|
|
||||||
|
ROOM 1
|
||||||
|
a,a,1,1,2,2,3,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||||
|
NAME test
|
||||||
|
PAL 0
|
||||||
|
|
||||||
TIL a
|
TIL a
|
||||||
11111111
|
11111111
|
||||||
10000001
|
10000001
|
||||||
@@ -41,7 +61,7 @@ TIL a
|
|||||||
11111111
|
11111111
|
||||||
NAME block
|
NAME block
|
||||||
|
|
||||||
TIL 2
|
TIL 1
|
||||||
00011000
|
00011000
|
||||||
00111000
|
00111000
|
||||||
00011000
|
00011000
|
||||||
@@ -50,8 +70,9 @@ TIL 2
|
|||||||
00011000
|
00011000
|
||||||
00011000
|
00011000
|
||||||
00111100
|
00111100
|
||||||
|
NAME test (2,0)
|
||||||
|
|
||||||
TIL 3
|
TIL 2
|
||||||
00111100
|
00111100
|
||||||
01100110
|
01100110
|
||||||
01100110
|
01100110
|
||||||
@@ -60,8 +81,9 @@ TIL 3
|
|||||||
00110000
|
00110000
|
||||||
01100000
|
01100000
|
||||||
01111110
|
01111110
|
||||||
|
NAME test (4,0)
|
||||||
|
|
||||||
TIL 4
|
TIL 3
|
||||||
00111100
|
00111100
|
||||||
01100110
|
01100110
|
||||||
01100110
|
01100110
|
||||||
@@ -70,6 +92,7 @@ TIL 4
|
|||||||
01100110
|
01100110
|
||||||
01100110
|
01100110
|
||||||
00111100
|
00111100
|
||||||
|
NAME test (6,0)
|
||||||
|
|
||||||
SPR A
|
SPR A
|
||||||
00011000
|
00011000
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 523 B |
@@ -1 +1 @@
|
|||||||
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAQCAYAAACm53kpAAAAvElEQVR4nO2QQQrDMBAD6/8/upVSBMqClab2IWAP2M1qtgmovcFrgNYa7i96lWdO8nKi7oz6HkcBvWUo3FgKXo7PQpmTvJzy2XNiWgGEM/HM6fmaz54TpwLwiBvhjVnPhDPxzLny5Gpn1FceVcCoJ7/sOKcCKlC4sRS8O87EMyf55Ejy1dU58YgCerm46+ucOArA79/oI/U1ykXy1QntXHlSd9wluHX+52LsAnB2ATjLsgvA2QXgLMvyBXwAjqzoAQg4VfAAAAAASUVORK5CYII=
|
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAABHNCSVQICAgIfAhkiAAAAcJJREFUeJzt19FqgzAAQFEz+v+/nD1t2NLWsQgW7jlP2ogVvUYdc865LRhj/C7/7Gr/29678cfDeNxmdZznbtv2vwu2H39cPtr26H/mnNuc8259ZZzXvs7a0dHJdjE+022/sjKFrzh6jKyO89ppM8AZrgqw7C6AMcbbk3s0vmL1BfLZewDHPmIGcOdfZ5z1GbjymfbqEI7u5nf7EMvfjG3bzJVhH/EI4DoCiBNAnADiBBAngDgBxAkgTgBxAogTQJwA4gQQJ4A4AcQJIE4AcQKIE0CcAOIEECeAOAHECSBOAHECiBNAnADiBBAngDgBxAkgTgBxAogTQJwA4gQQJ4A4AcQJIE4AcQKIE0CcAOIEECeAOAHECSBOAHECiBNAnADiBBAngDgBxAkgTgBxAogTQJwA4gQQJ4A4AcQJIE4AcQKIE0CcAOIEECeAOAHECSBOAHECiBNAnADiBBAngDgBxAkgTgBxAogTQJwA4gQQJ4A4AcQJIE4AcQKIE0CcAOIEECeAOAHECSBOAHECiBNAnADiBBAngDgBxAkgTgBxAogTQJwA4gQQJ4A4AcQJIE4AcQKIE0CcAOIEECeAOAHEfQM+SHkFb+/YEwAAAABJRU5ErkJggg==
|
||||||
|
|||||||
Reference in New Issue
Block a user