Command-line script is now a gotosocial bot
This commit is contained in:
parent
4decaaf156
commit
270bcc9cfa
56
poptimal.js
56
poptimal.js
@ -33,44 +33,45 @@ function randomise_params() {
|
|||||||
}});
|
}});
|
||||||
return {
|
return {
|
||||||
background: palette[0],
|
background: palette[0],
|
||||||
|
palette: palette_name,
|
||||||
patterns: patterns
|
patterns: patterns
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function poptimal_svg(width, params) {
|
function poptimal_svg(params) {
|
||||||
const window = new JSDOM().window;
|
const window = new JSDOM().window;
|
||||||
const document = window.document;
|
const document = window.document;
|
||||||
const container = d3.select(document.body).append("div");
|
const container = d3.select(document.body).append("div");
|
||||||
|
|
||||||
const dm = new DotMaker(width);
|
const dm = new DotMaker(WIDTH);
|
||||||
|
|
||||||
const svg = container.append("svg")
|
const svg = container.append("svg")
|
||||||
.attr("width", width * CELL * MAG)
|
.attr("width", WIDTH * CELL * MAG)
|
||||||
.attr("height", HEIGHT * CELL * MAG)
|
.attr("height", HEIGHT * CELL * MAG)
|
||||||
.attr("viewBox", [ 0, 0, width, HEIGHT ]);
|
.attr("viewBox", [ 0, 0, WIDTH, HEIGHT ]);
|
||||||
|
|
||||||
const background = svg.append("rect")
|
const background = svg.append("rect")
|
||||||
.attr("x", 0)
|
.attr("x", 0)
|
||||||
.attr("y", 0)
|
.attr("y", 0)
|
||||||
.attr("width", width)
|
.attr("width", WIDTH)
|
||||||
.attr("height", width)
|
.attr("height", WIDTH)
|
||||||
.attr("fill", params.background);
|
.attr("fill", params.background);
|
||||||
|
|
||||||
const p1 = params.patterns[0];
|
|
||||||
const p2 = params.patterns[1];
|
|
||||||
|
|
||||||
const dots = dm.dots(1 / p1.m, p1.n);
|
params.patterns.map((p) => {
|
||||||
|
const dots = dm.dots(1 / p.m, p.n);
|
||||||
const dots_g = svg.append("g")
|
const dots_g = svg.append("g")
|
||||||
.attr("id", `$dots{p1.i}`);
|
.attr("id", `dots${p.i}`);
|
||||||
|
|
||||||
dots_g.selectAll("circle")
|
dots_g.selectAll("circle")
|
||||||
.data(dots)
|
.data(dots)
|
||||||
.join("circle")
|
.join("circle")
|
||||||
.attr("r", (d) => dm.radius(d, p1.f, p1.r))
|
.attr("r", (d) => dm.radius(d, p.f, p.r))
|
||||||
.attr("fill", p1.colour)
|
.attr("fill", p.colour)
|
||||||
.attr("cx", (d) => d.x)
|
.attr("cx", (d) => d.x)
|
||||||
.attr("cy", (d) => d.y);
|
.attr("cy", (d) => d.y);
|
||||||
|
});
|
||||||
|
|
||||||
const node = svg.node();
|
const node = svg.node();
|
||||||
|
|
||||||
@ -117,32 +118,37 @@ async function post_image(image, alt_text, cf) {
|
|||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
const argv = yargs(hideBin(process.argv))
|
const argv = yargs(hideBin(process.argv))
|
||||||
.usage("Usage: -w WIDTH -o OUTPUT_PNG -g GOTOSOCIAL_CONFIG")
|
.usage("Usage: -s SIZE -o output.png -c config.json")
|
||||||
.default('w', 1200)
|
.default('s', 1200)
|
||||||
.default('o', 'poptimal.png')
|
|
||||||
.default('g', 'config.json').argv;
|
.default('g', 'config.json').argv;
|
||||||
|
|
||||||
const params = randomise_params();
|
const cfjson = await promises.readFile(argv.g);
|
||||||
console.log(JSON.stringify(params));
|
const cf = JSON.parse(cfjson);
|
||||||
|
|
||||||
const svg = poptimal_svg(argv.w, params);
|
const fn = argv.o || String(Date.now()) + '.png';
|
||||||
|
|
||||||
|
const imgfile = cf['working_dir'] + '/' + fn;
|
||||||
|
|
||||||
|
const params = randomise_params();
|
||||||
|
const alt_text = JSON.stringify(params);
|
||||||
|
|
||||||
|
const svg = poptimal_svg(params);
|
||||||
const opts = {
|
const opts = {
|
||||||
background: 'rgba(255, 255, 255, 1.0)',
|
background: 'rgba(255, 255, 255, 1.0)',
|
||||||
fitTo: {
|
fitTo: {
|
||||||
mode: 'width',
|
mode: 'width',
|
||||||
value: argv.w,
|
value: argv.s,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const resvg = new Resvg(svg, opts);
|
const resvg = new Resvg(svg, opts);
|
||||||
const pngData = resvg.render();
|
const pngData = resvg.render();
|
||||||
const pngBuffer = pngData.asPng();
|
const pngBuffer = pngData.asPng();
|
||||||
|
|
||||||
await promises.writeFile(argv.o, pngBuffer);
|
await promises.writeFile(imgfile, pngBuffer);
|
||||||
// if( argv.g ) {
|
if( cf['base_url'] ) {
|
||||||
// const cfjson = await promises.readFile(argv.g);
|
await post_image(imgfile, alt_text, cf);
|
||||||
// const cf = JSON.parse(cfjson);
|
}
|
||||||
// await post_image(argv.o, "An abstract pattern", cf);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user