mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2024-12-15 02:59:55 +08:00
97 lines
2.8 KiB
TypeScript
97 lines
2.8 KiB
TypeScript
import path from 'path';
|
|
import prompt from 'prompt';
|
|
|
|
import { RGBA } from '../src/colour';
|
|
import { clog, log } from './logging';
|
|
|
|
export const ASSERT = (condition: boolean, onFailMessage: string) => {
|
|
if (!condition) {
|
|
log('Failure', onFailMessage);
|
|
process.exit(0);
|
|
}
|
|
};
|
|
|
|
type PNG = {};
|
|
|
|
export function getAverageColour(image: PNG): RGBA {
|
|
/*
|
|
let r = 0;
|
|
let g = 0;
|
|
let b = 0;
|
|
let a = 0;
|
|
let weight = 0;
|
|
for (let x = 0; x < image.width; ++x) {
|
|
for (let y = 0; y < image.height; ++y) {
|
|
const index = 4 * (image.width * y + x);
|
|
const rgba = image.data.slice(index, index + 4);
|
|
const alpha = rgba[3] / 255;
|
|
r += (rgba[0] / 255) * alpha;
|
|
g += (rgba[1] / 255) * alpha;
|
|
b += (rgba[2] / 255) * alpha;
|
|
a += alpha;
|
|
weight += alpha;
|
|
}
|
|
}
|
|
const numPixels = image.width * image.height;
|
|
return {
|
|
r: r / weight,
|
|
g: g / weight,
|
|
b: b / weight,
|
|
a: a / numPixels,
|
|
};
|
|
*/
|
|
return { r: 0, g: 0, b: 0, a: 0 };
|
|
}
|
|
|
|
|
|
export function getStandardDeviation(image: PNG, average: RGBA): number {
|
|
return 0; // TODO Unimplemented
|
|
/*
|
|
let squaredDist = 0.0;
|
|
let weight = 0.0;
|
|
for (let x = 0; x < image.width; ++x) {
|
|
for (let y = 0; y < image.height; ++y) {
|
|
const index = 4 * (image.width * y + x);
|
|
const rgba = image.data.slice(index, index + 4);
|
|
const alpha = rgba[3] / 255;
|
|
weight += alpha;
|
|
const r = (rgba[0] / 255) * alpha;
|
|
const g = (rgba[1] / 255) * alpha;
|
|
const b = (rgba[2] / 255) * alpha;
|
|
squaredDist += Math.pow(r - average.r, 2) + Math.pow(g - average.g, 2) + Math.pow(b - average.b, 2);
|
|
}
|
|
}
|
|
return Math.sqrt(squaredDist / weight);
|
|
*/
|
|
}
|
|
|
|
export async function getPermission() {
|
|
const directory = getMinecraftDir();
|
|
log('Prompt', `This script requires files inside of ${directory}`);
|
|
const { permission } = await prompt.get({
|
|
properties: {
|
|
permission: {
|
|
pattern: /^[YyNn]$/,
|
|
description: 'Do you give permission to access these files? (y/n)',
|
|
message: 'Response must be Y or N',
|
|
required: true,
|
|
},
|
|
},
|
|
});
|
|
const responseYes = ['Y', 'y'].includes(permission as string);
|
|
if (!responseYes) {
|
|
process.exit(0);
|
|
}
|
|
}
|
|
|
|
export function getMinecraftDir(): string {
|
|
switch (process.platform) {
|
|
case 'darwin': // MacOS
|
|
return path.join(process.env.HOME!, './Library/Application Support/minecraft');
|
|
case 'win32': // Windows
|
|
return path.join(process.env.APPDATA!, './.minecraft');
|
|
default:
|
|
return path.join(require('os').homedir(), '/.minecraft');
|
|
}
|
|
}
|