xxxxxxxxxx
134
// Machine Learning for Artists and Designers
// NYUSH F24 - gohai
// Based on Neal Agarwal's endless crafting game:
// https://neal.fun/infinite-craft/
// Note: this sketch consists of additional JavaScript
// files. Make sure to duplicate it, rather than copying
// and pasting code :)
let openai_api_proxy = "https://zest-quiet-phalange.glitch.me/";
let symbols = [];
let selected_symbol = null;
function setup() {
createCanvas(400, 400);
select("#submit").mouseClicked(addNewSymbol);
}
function addNewSymbol() {
let content = select("#content").value();
if (content.length == 0) {
return;
}
// find a place on the map where there is not
// already another symbol
let x, y;
do {
x = random(width);
y = random(height);
} while (getSymbolCloseTo(x, y) != null)
symbols.push({
x: x,
y: y,
content: content
});
}
function getSymbolCloseTo(x, y) {
for (let i=0; i < symbols.length; i++) {
// return symbol if distance is less than 25 px
if (dist(x, y, symbols[i].x, symbols[i].y) < 50) {
return symbols[i];
}
}
// if none is close, return null
return null;
}
function mousePressed() {
// check if there is a symbols close to the mouse
// and save it in the "selected" variable
selected_symbol = getSymbolCloseTo(mouseX, mouseY);
}
function mouseReleased() {
// nothing to do if no element is selected
if (selected_symbol == null) {
return;
}
// check if there is any other symbol under the
// mouse cursor
let other_symbol = getSymbolCloseTo(mouseX, mouseY);
if (other_symbol) {
// mark both as being combined
selected_symbol.combining = true;
other_symbol.combining = true;
combineSymbols(selected_symbol.content, other_symbol.content);
}
// update coordinates
selected_symbol.x = mouseX;
selected_symbol.y = mouseY;
// deselect
selected_symbol = null;
}
function combineSymbols(first, second) {
messages = [{
role: "user",
content: "What happens when we combine " + first + " and " + second + "? Be imaginative, and respond with single emoji if you can. Don't prefix your answer. Respond solely with the emoji.",
}];
let params = {
model: "gpt-4o-mini",
messages: messages,
};
requestOAI("POST", "/v1/chat/completions", params, gotResult);
}
function gotResult(results) {
let message = results.choices[0].message.content;
console.log(message);
// find the first symbols marked as "combining",
// and replace its content
for (let i=0; i < symbols.length; i++) {
if (symbols[i].combining) {
symbols[i].content = message;
symbols[i].combining = false;
break;
}
}
// find the second symbol marked as "combining",
// and remove it
for (let i=0; i < symbols.length; i++) {
if (symbols[i].combining) {
symbols.splice(i, 1);
i--;
}
}
}
function draw() {
background(0);
textAlign(CENTER, CENTER);
textSize(48);
// draw all symbols (besides the selected one)
for (let i=0; i < symbols.length; i++) {
if (symbols[i] != selected_symbol) {
text(symbols[i].content, symbols[i].x, symbols[i].y);
}
}
// draw the selected symbol
if (selected_symbol) {
text(selected_symbol.content, mouseX, mouseY);
}
}