2021-07-16 18:09:16 +00:00
|
|
|
const fs = require('fs').promises;
|
|
|
|
const PNG = require("pngjs").PNG;
|
|
|
|
const process = require('process');
|
|
|
|
const { Buffer } = require('buffer');
|
2021-08-15 01:57:00 +00:00
|
|
|
const StringBuilder = require('string-builder');
|
2021-07-16 18:09:16 +00:00
|
|
|
|
|
|
|
main(process.argv.slice(2)).then(
|
|
|
|
() => process.exit(0),
|
|
|
|
(e) => {
|
|
|
|
console.error(e);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
function findColorIndex(options, png, pixel) {
|
2021-07-16 18:09:16 +00:00
|
|
|
for (let i = 0; i < png.palette.length; i += 1) {
|
2021-08-15 01:57:00 +00:00
|
|
|
const color = png.palette[i].slice(0, pixel.length); // Handle RGB or RGBA
|
2021-07-16 18:09:16 +00:00
|
|
|
if (color.every((c, idx) => c === pixel[idx])) {
|
2021-11-03 02:59:08 +00:00
|
|
|
return i + options.startIndex;
|
2021-07-16 18:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
function pngToIIgsBuff(options, png) {
|
2021-07-16 18:09:16 +00:00
|
|
|
let i = 0;
|
|
|
|
const buff = Buffer.alloc(png.height * (png.width / 2), 0);
|
|
|
|
for (let y = 0; y < png.height; y += 1) {
|
|
|
|
for (let x = 0; x < png.width; x += 1, i += 4) {
|
|
|
|
const pixel = png.data.slice(i, i + 4);
|
2021-11-03 02:59:08 +00:00
|
|
|
const index = findColorIndex(options, png, pixel);
|
2021-07-16 22:05:29 +00:00
|
|
|
const j = y * (png.width / 2) + Math.floor(x / 2);
|
|
|
|
|
|
|
|
if (index > 15) {
|
2021-08-06 21:35:47 +00:00
|
|
|
console.warn('; Pixel index greater than 15. Skipping...');
|
2021-07-16 22:05:29 +00:00
|
|
|
continue;
|
|
|
|
}
|
2021-07-16 18:09:16 +00:00
|
|
|
|
|
|
|
if (x % 2 === 0) {
|
2021-07-16 22:05:29 +00:00
|
|
|
buff[j] = 16 * index;
|
2021-07-16 18:09:16 +00:00
|
|
|
}
|
|
|
|
else {
|
2021-07-16 22:05:29 +00:00
|
|
|
buff[j] = buff[j] | index;
|
2021-07-16 18:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return buff;
|
|
|
|
}
|
|
|
|
|
2021-07-16 22:05:29 +00:00
|
|
|
function shiftImage(src) {
|
|
|
|
const { width, height, colorType, bitDepth } = src;
|
|
|
|
const dst = new PNG({ width, height, colorType, bitDepth });
|
|
|
|
|
|
|
|
PNG.bitblt(src, dst, 1, 0, width - 1, height, 0, 0);
|
|
|
|
PNG.bitblt(src, dst, 0, 0, 1, height, width - 1, 0);
|
|
|
|
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
function pngToIIgsBuffRepeat(options, png) {
|
2021-07-16 18:09:16 +00:00
|
|
|
let i = 0;
|
|
|
|
const buff = Buffer.alloc(png.height * png.width, 0);
|
|
|
|
for (let y = 0; y < png.height; y += 1) {
|
|
|
|
for (let x = 0; x < png.width; x += 1, i += 4) {
|
|
|
|
const pixel = png.data.slice(i, i + 4);
|
2021-11-03 02:59:08 +00:00
|
|
|
const index = findColorIndex(options, png, pixel);
|
2021-07-16 18:09:16 +00:00
|
|
|
const j = y * png.width + Math.floor(x / 2);
|
|
|
|
|
|
|
|
if (index > 15) {
|
2021-08-06 21:35:47 +00:00
|
|
|
console.warn('; Pixel index greater than 15. Skipping...');
|
2021-07-16 18:09:16 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x % 2 === 0) {
|
|
|
|
buff[j] = 16 * index;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
buff[j] = buff[j] | index;
|
|
|
|
}
|
|
|
|
|
|
|
|
buff[j + (png.width / 2)] = buff[j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return buff;
|
|
|
|
}
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
function hexStringToPalette(hex) {
|
|
|
|
return [
|
|
|
|
parseInt(hex.slice(0,2), 16),
|
|
|
|
parseInt(hex.slice(2,4), 16),
|
|
|
|
parseInt(hex.slice(4,6), 16)
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-10-31 20:43:23 +00:00
|
|
|
function paletteToHexString(palette) {
|
|
|
|
const r = Math.round(palette[0]);
|
|
|
|
const g = Math.round(palette[1]);
|
|
|
|
const b = Math.round(palette[2]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
r.toString(16).toUpperCase().padStart(2, '0') +
|
|
|
|
g.toString(16).toUpperCase().padStart(2, '0') +
|
|
|
|
b.toString(16).toUpperCase().padStart(2, '0')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-07-16 18:09:16 +00:00
|
|
|
function paletteToIIgs(palette) {
|
|
|
|
const r = Math.round(palette[0] / 17);
|
|
|
|
const g = Math.round(palette[1] / 17);
|
|
|
|
const b = Math.round(palette[2] / 17);
|
|
|
|
|
|
|
|
return '0' + r.toString(16).toUpperCase() + g.toString(16).toUpperCase() + b.toString(16).toUpperCase();
|
|
|
|
}
|
|
|
|
|
2021-07-18 13:59:19 +00:00
|
|
|
function getArg(argv, arg, fn, defaultValue) {
|
|
|
|
for (let i = 0; i < argv.length; i += 1) {
|
|
|
|
if (argv[i] === arg) {
|
2021-08-06 21:35:47 +00:00
|
|
|
if (fn) {
|
|
|
|
return fn(argv[i+1]);
|
|
|
|
}
|
2021-08-15 01:57:00 +00:00
|
|
|
return true; // Return true if the argument was found
|
2021-07-18 13:59:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
async function readPNG(filename) {
|
|
|
|
const data = await fs.readFile(filename);
|
2021-07-16 18:09:16 +00:00
|
|
|
const png = PNG.sync.read(data);
|
|
|
|
|
|
|
|
if (png.colorType !== 3) {
|
2021-08-15 01:57:00 +00:00
|
|
|
throw new Error('PNG must be in palette color type');
|
2021-07-16 18:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (png.palette.length > 16) {
|
2021-08-15 01:57:00 +00:00
|
|
|
throw new Error(`Too many colors. Must be 16 or less. Found ${png.palette.length}`);
|
2021-07-16 18:09:16 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
return png;
|
|
|
|
}
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
function getOptions(argv) {
|
|
|
|
const options = {};
|
|
|
|
options.startIndex = getArg(argv, '--start-index', x => parseInt(x, 10), 0);
|
|
|
|
options.asTileData = getArg(argv, '--as-tile-data', x => true, false);
|
|
|
|
options.maxTiles = getArg(argv, '--max-tiles', x => parseInt(x, 10), 511);
|
|
|
|
options.transparentIndex = getArg(argv, '--transparent-color-index', x => parseInt(x, 10), -1);
|
|
|
|
options.transparentColor = getArg(argv, '--transparent-color', x => x, null);
|
|
|
|
options.backgroundColor = getArg(argv, '--background-color', x => x, null);
|
|
|
|
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
async function main(argv) {
|
2021-11-03 02:59:08 +00:00
|
|
|
// try {
|
2021-08-15 01:57:00 +00:00
|
|
|
const png = await readPNG(argv[0]);
|
2021-11-03 02:59:08 +00:00
|
|
|
const options = getOptions(argv);
|
2021-08-15 01:57:00 +00:00
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
console.info(`; startIndex = ${options.startIndex}`);
|
2021-08-15 01:57:00 +00:00
|
|
|
|
|
|
|
if (png.colorType !== 3) {
|
|
|
|
console.warn('; PNG must be in palette color type');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (png.palette.length > 16) {
|
|
|
|
console.warn('; Too many colors. Must be 16 or less');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-10-31 20:43:23 +00:00
|
|
|
// Get the RGB triplets from the palette
|
2021-11-03 02:59:08 +00:00
|
|
|
const palette = png.palette;
|
|
|
|
const paletteCSSTripplets = palette.map(c => paletteToHexString(c));
|
|
|
|
|
|
|
|
// If there is a transparent color / color index, make sure it gets shuffled
|
|
|
|
// into index 0
|
|
|
|
if (options.transparentIndex > 0) {
|
|
|
|
[palette[0], palette[options.transparentIndex]] = [palette[options.transparentIndex], palette[0]];
|
|
|
|
options.transparentIndex = 0;
|
|
|
|
}
|
|
|
|
if (options.transparentColor !== null) {
|
|
|
|
const index = paletteCSSTripplets.findIndex(p => p === options.transparentColor);
|
|
|
|
if (index !== -1) {
|
|
|
|
options.transparentIndex = 0;
|
|
|
|
[palette[0], palette[index]] = [palette[index], palette[0]];
|
|
|
|
} else {
|
|
|
|
console.warn(`; transparent color defined, ${options.transparentColor}, but not found in image`);
|
2021-10-31 20:43:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
// Dump the palette in IIgs hex format
|
|
|
|
console.log('; Palette:');
|
2021-11-03 02:59:08 +00:00
|
|
|
const hexCodes = palette.map(c => '$' + paletteToIIgs(c));
|
|
|
|
if (options.backgroundColor !== null) {
|
|
|
|
hexCodes[options.transparentIndex] = '$' + paletteToIIgs(hexStringToPalette(options.backgroundColor));
|
|
|
|
}
|
2021-08-15 01:57:00 +00:00
|
|
|
console.log(';', hexCodes.join(','));
|
|
|
|
|
|
|
|
// Just convert a paletted PNG to IIgs memory format. We make sure that only a few widths
|
|
|
|
// are supported
|
|
|
|
let buff = null;
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
console.log('; Converting to BG0 format...');
|
|
|
|
buff = pngToIIgsBuff(options, png);
|
2021-08-15 01:57:00 +00:00
|
|
|
|
|
|
|
if (buff && argv[1]) {
|
2021-11-03 02:59:08 +00:00
|
|
|
if (options.asTileData) {
|
|
|
|
writeToTileDataSource(options, buff, png.width / 2);
|
2021-08-15 01:57:00 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.log(`; Writing to output file ${argv[1]}`);
|
2021-11-03 02:59:08 +00:00
|
|
|
await writeBinayOutput(options, argv[1], buff);
|
2021-08-15 01:57:00 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-03 02:59:08 +00:00
|
|
|
//}
|
|
|
|
// catch (e) {
|
|
|
|
// console.log(`; ${e}`);
|
|
|
|
// process.exit(1);
|
|
|
|
//}
|
2021-08-15 01:57:00 +00:00
|
|
|
}
|
2021-07-16 18:09:16 +00:00
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
function reverse(str) {
|
|
|
|
return [...str].reverse().join(''); // use [...str] instead of split as it is unicode-aware.
|
|
|
|
}
|
|
|
|
|
|
|
|
function toHex(h) {
|
|
|
|
return h.toString(16).padStart(2, '0');
|
|
|
|
}
|
|
|
|
|
|
|
|
function swap(hex) {
|
|
|
|
const high = hex & 0xF0;
|
|
|
|
const low = hex & 0x0F;
|
|
|
|
|
|
|
|
return (high >> 4) | (low << 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
function toMask(hex, transparentIndex) {
|
|
|
|
if (transparentIndex === -1) {
|
|
|
|
return 0;
|
2021-07-16 18:09:16 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
const indexHigh = (transparentIndex & 0xF) << 4;
|
|
|
|
const indexLow = (transparentIndex & 0xF);
|
|
|
|
let mask = 0;
|
|
|
|
if ((hex & 0xF0) === indexHigh) {
|
|
|
|
mask = mask | 0xF0;
|
|
|
|
}
|
|
|
|
if ((hex & 0x0F) === indexLow) {
|
|
|
|
mask = mask | 0x0F;
|
2021-07-16 18:09:16 +00:00
|
|
|
}
|
2021-08-15 01:57:00 +00:00
|
|
|
return mask;
|
|
|
|
}
|
2021-07-16 18:09:16 +00:00
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
/**
|
|
|
|
* Return all four 32 byte chunks of data for a single 8x8 tile
|
|
|
|
*/
|
2021-11-03 02:59:08 +00:00
|
|
|
function buildTile(options, buff, width, x, y) {
|
2021-08-15 01:57:00 +00:00
|
|
|
const tile = {
|
2021-08-17 21:23:23 +00:00
|
|
|
isSolid: true,
|
2021-08-15 01:57:00 +00:00
|
|
|
normal: {
|
|
|
|
data: [],
|
|
|
|
mask: []
|
|
|
|
},
|
|
|
|
flipped: {
|
|
|
|
data: [],
|
|
|
|
mask: []
|
2021-08-06 21:35:47 +00:00
|
|
|
}
|
2021-08-15 01:57:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const offset = y * width + x;
|
|
|
|
for (dy = 0; dy < 8; dy += 1) {
|
|
|
|
const hex0 = buff[offset + dy * width + 0];
|
|
|
|
const hex1 = buff[offset + dy * width + 1];
|
|
|
|
const hex2 = buff[offset + dy * width + 2];
|
|
|
|
const hex3 = buff[offset + dy * width + 3];
|
|
|
|
|
2021-08-19 05:47:34 +00:00
|
|
|
const raw = [hex0, hex1, hex2, hex3];
|
2021-11-03 02:59:08 +00:00
|
|
|
const mask = raw.map(h => toMask(h, options.transparentIndex));
|
2021-08-19 05:47:34 +00:00
|
|
|
const data = raw.map((h, i) => h & ~mask[i]);
|
2021-08-15 01:57:00 +00:00
|
|
|
|
|
|
|
tile.normal.data.push(data);
|
|
|
|
tile.normal.mask.push(mask);
|
2021-08-17 21:23:23 +00:00
|
|
|
|
|
|
|
// If we run across any non-zero mask value, then the tile is not solid
|
|
|
|
if (mask.some(h => h != 0)) {
|
|
|
|
tile.isSolid = false;
|
|
|
|
}
|
2021-08-15 01:57:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (dy = 0; dy < 8; dy += 1) {
|
|
|
|
const hex0 = swap(buff[offset + dy * width + 0]);
|
|
|
|
const hex1 = swap(buff[offset + dy * width + 1]);
|
|
|
|
const hex2 = swap(buff[offset + dy * width + 2]);
|
|
|
|
const hex3 = swap(buff[offset + dy * width + 3]);
|
|
|
|
|
2021-08-19 05:47:34 +00:00
|
|
|
const raw = [hex3, hex2, hex1, hex0];
|
2021-11-03 02:59:08 +00:00
|
|
|
const mask = raw.map(h => toMask(h, options.transparentIndex));
|
2021-08-19 05:47:34 +00:00
|
|
|
const data = raw.map((h, i) => h & ~mask[i]);
|
2021-08-15 01:57:00 +00:00
|
|
|
|
|
|
|
tile.flipped.data.push(data);
|
|
|
|
tile.flipped.mask.push(mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
return tile;
|
|
|
|
}
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
function buildTiles(options, buff, width) {
|
2021-08-15 01:57:00 +00:00
|
|
|
const tiles = [];
|
|
|
|
|
|
|
|
let count = 0;
|
|
|
|
for (let y = 0; ; y += 8) {
|
|
|
|
for (let x = 0; x < width; x += 4, count += 1) {
|
2021-11-03 02:59:08 +00:00
|
|
|
if (count >= options.maxTiles) {
|
2021-08-15 01:57:00 +00:00
|
|
|
return tiles;
|
|
|
|
}
|
2021-11-03 02:59:08 +00:00
|
|
|
const tile = buildTile(options, buff, width, x, y);
|
2021-10-08 02:57:56 +00:00
|
|
|
|
|
|
|
// Tiled TileIDs start at 1
|
|
|
|
tile.tileId = count + 1;
|
2021-08-15 01:57:00 +00:00
|
|
|
tiles.push(tile);
|
2021-08-06 21:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-19 19:18:02 +00:00
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
function writeTileToStream(stream, data) {
|
|
|
|
// Output the tile data
|
|
|
|
for (const row of data) {
|
|
|
|
const hex = row.map(d => toHex(d)).join('');
|
|
|
|
stream.write(' hex ' + hex + '\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
function writeTilesToStream(options, stream, tiles, label='tiledata') {
|
2021-08-15 01:57:00 +00:00
|
|
|
stream.write(`${label} ENT\n`);
|
|
|
|
stream.write('');
|
|
|
|
stream.write('; Reserved space (tile 0 is special...)\n');
|
|
|
|
stream.write(' ds 128\n');
|
|
|
|
|
|
|
|
let count = 0;
|
2021-11-03 02:59:08 +00:00
|
|
|
for (const tile of tiles.slice(0, options.maxTiles)) {
|
2021-08-15 01:57:00 +00:00
|
|
|
console.log(`Writing tile ${count + 1}`);
|
2021-08-19 05:47:34 +00:00
|
|
|
stream.write(`; Tile ID ${count + 1}, isSolid: ${tile.isSolid}\n`);
|
2021-08-15 01:57:00 +00:00
|
|
|
writeTileToStream(stream, tile.normal.data);
|
|
|
|
writeTileToStream(stream, tile.normal.mask);
|
|
|
|
writeTileToStream(stream, tile.flipped.data);
|
|
|
|
writeTileToStream(stream, tile.flipped.mask);
|
|
|
|
stream.write('');
|
|
|
|
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildMerlinCodeForTile(data) {
|
|
|
|
const sb = new StringBuilder();
|
|
|
|
|
|
|
|
// Output the tile data
|
|
|
|
for (const row of data) {
|
|
|
|
const hex = row.map(d => toHex(d)).join('');
|
|
|
|
sb.appendLine(' hex ' + hex);
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb.toString();
|
|
|
|
}
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
function buildMerlinCodeForTiles(options, tiles, label='tiledata') {
|
2021-08-15 01:57:00 +00:00
|
|
|
const sb = new StringBuilder();
|
|
|
|
sb.appendLine(`${label} ENT`);
|
|
|
|
sb.appendLine();
|
|
|
|
sb.appendLine('; Reserved space (tile 0 is special...)');
|
|
|
|
sb.appendLine(' ds 128');
|
|
|
|
|
|
|
|
let count = 0;
|
2021-11-03 02:59:08 +00:00
|
|
|
for (const tile of tiles.slice(0, options.maxTiles)) {
|
2021-08-15 01:57:00 +00:00
|
|
|
console.log(`Writing tile ${count + 1}`);
|
2021-08-19 05:47:34 +00:00
|
|
|
sb.appendLine(`; Tile ID ${count + 1}, isSolid: ${tile.isSolid}`);
|
2021-08-15 01:57:00 +00:00
|
|
|
sb.append(buildMerlinCodeForTile(tile.normal.data));
|
|
|
|
sb.append(buildMerlinCodeForTile(tile.normal.mask));
|
|
|
|
sb.append(buildMerlinCodeForTile(tile.flipped.data));
|
|
|
|
sb.append(buildMerlinCodeForTile(tile.flipped.mask));
|
|
|
|
sb.appendLine();
|
|
|
|
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb.toString();
|
2021-08-13 16:57:41 +00:00
|
|
|
}
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
function writeToTileDataSource(options, buff, width) {
|
2021-08-06 21:35:47 +00:00
|
|
|
console.log('tiledata ENT');
|
2021-08-13 16:57:41 +00:00
|
|
|
console.log();
|
|
|
|
console.log('; Reserved space (tile 0 is special...');
|
|
|
|
console.log(' ds 128');
|
|
|
|
|
2021-08-06 21:35:47 +00:00
|
|
|
let count = 0;
|
|
|
|
for (let y = 0; ; y += 8) {
|
|
|
|
for (let x = 0; x < width; x += 4, count += 1) {
|
2021-11-03 02:59:08 +00:00
|
|
|
if (count >= options.maxTiles) {
|
2021-08-06 21:35:47 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-08-13 16:57:41 +00:00
|
|
|
console.log('; Tile ID ' + (count + 1));
|
2021-08-06 21:35:47 +00:00
|
|
|
console.log('; From image coordinates ' + (x * 2) + ', ' + y);
|
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
const tile = buildTile(options, buff, width, x, y);
|
2021-08-15 01:57:00 +00:00
|
|
|
|
2021-08-13 16:57:41 +00:00
|
|
|
// Output the tile data
|
2021-08-15 01:57:00 +00:00
|
|
|
for (const row of tile.normal.data) {
|
|
|
|
const hex = row.map(d => toHex(d)).join('');
|
|
|
|
console.log(' hex ' + hex);
|
2021-08-06 21:35:47 +00:00
|
|
|
}
|
|
|
|
console.log();
|
2021-08-13 16:57:41 +00:00
|
|
|
|
|
|
|
// Output the tile mask
|
2021-08-15 01:57:00 +00:00
|
|
|
for (const row of tile.normal.mask) {
|
|
|
|
const hex = row.map(d => toHex(d)).join('');
|
|
|
|
console.log(' hex ' + hex);
|
2021-08-13 16:57:41 +00:00
|
|
|
}
|
|
|
|
console.log();
|
|
|
|
|
|
|
|
// Output the flipped tile data
|
2021-08-15 01:57:00 +00:00
|
|
|
for (const row of tile.flipped.data) {
|
|
|
|
const hex = row.map(d => toHex(d)).join('');
|
|
|
|
console.log(' hex ' + hex);
|
2021-08-13 16:57:41 +00:00
|
|
|
}
|
|
|
|
console.log();
|
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
// Output the flipped tile data
|
|
|
|
for (const row of tile.flipped.mask) {
|
|
|
|
const hex = row.map(d => toHex(d)).join('');
|
|
|
|
console.log(' hex ' + hex);
|
2021-08-13 16:57:41 +00:00
|
|
|
}
|
|
|
|
console.log();
|
2021-07-19 19:18:02 +00:00
|
|
|
}
|
2021-08-06 21:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-19 19:18:02 +00:00
|
|
|
|
2021-11-03 02:59:08 +00:00
|
|
|
async function writeBinayOutput(options, filename, buff) {
|
2021-08-06 21:35:47 +00:00
|
|
|
// Write a small header. This is useful and avoids triggering a sparse file load
|
|
|
|
// bug when the first block of the file on the GS/OS drive is sparse.
|
|
|
|
|
|
|
|
// Put the ASCII text of "GTERAW" in the first 6 bytes
|
|
|
|
const header = Buffer.alloc(8);
|
|
|
|
header.write('GTERAW', 'latin1');
|
|
|
|
|
|
|
|
// Use the special value $A5A5 to identify no transparency
|
2021-11-03 02:59:08 +00:00
|
|
|
if (options.transparentIndex < 0) {
|
2021-08-06 21:35:47 +00:00
|
|
|
header.writeUInt16LE(0xA5A5);
|
|
|
|
} else {
|
2021-11-03 02:59:08 +00:00
|
|
|
header.writeUInt16LE(0x1111 * options.transparentIndex, 6);
|
2021-07-16 18:09:16 +00:00
|
|
|
}
|
2021-08-06 21:35:47 +00:00
|
|
|
|
|
|
|
await fs.writeFile(filename, Buffer.concat([header, buff]));
|
2021-07-16 18:09:16 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 01:57:00 +00:00
|
|
|
module.exports = {
|
|
|
|
buildTile,
|
|
|
|
buildTiles,
|
|
|
|
buildMerlinCodeForTiles,
|
|
|
|
buildMerlinCodeForTile,
|
|
|
|
findColorIndex,
|
|
|
|
paletteToIIgs,
|
|
|
|
pngToIIgsBuff,
|
|
|
|
readPNG,
|
|
|
|
toHex,
|
|
|
|
writeBinayOutput,
|
|
|
|
writeToTileDataSource,
|
|
|
|
writeTilesToStream
|
|
|
|
}
|