xxxxxxxxxx
189
let x = 30,
y = 60;
let n = 3;
let n2 = 3;
let n3 = 3;
let numSentences1 = 2;
let numSentences2 = 2;
let numSentences3 = 2;
let displayText = [""];
let markov;
let markov2;
let markov3;
let sourceMoon;
let sourceMiniMoon;
let sourceBakunawa;
let moon = ["power", "instincts", "creatures"];
let miniMoon = ["love", "soul", "pain"];
let bakunawa = ["earth", "voice", "heaven"];
let inputField;
let submitButton;
let state = 0;
function preload() {
sourceMoon = loadStrings("sourceMoon.txt");
sourceMiniMoon = loadStrings("sourceMiniMoon.txt");
sourceBakunawa = loadStrings("sourceBakunawa.txt");
story8 = loadImage("8.png"); //moon
story9 = loadImage("9.png"); //mini-moon
story10 = loadImage("10.png"); //bakunawa
}
function setup() {
createCanvas(444, 444);
// Create Markov models
markov = RiTa.markov(n);
markov2 = RiTa.markov(n2);
markov3 = RiTa.markov(n3);
// Load text into the models
markov.addText(sourceMoon.join(" "));
markov2.addText(sourceMiniMoon.join(" "));
markov3.addText(sourceBakunawa.join(" "));
inputField = createInput();
inputField.position(40, 300);
inputField.hide(); // Hide initially
submitButton = createButton('offer prayer');
submitButton.position(inputField.x + inputField.width + 10, 300);
submitButton.style('background-color', color(199, 255, 255));
submitButton.hide(); // Hide initially
submitButton.mousePressed(checkPrayer);
}
function draw() {
if (state == 0) {
screen1();
} else if (state == 1) {
screen2();
} else if (state == 2) {
screen3();
}
}
function screen1() {
// image(story4, 10, 25, 430, 430);
background(17, 27, 44);
fill(199, 255, 255);
text("screen 1 test.", 20, 40);
}
function screen2() {
textStyle(NORMAL);
textAlign(LEFT);
background(17, 27, 44);
fill(199, 255, 255);
text("screen 2 test.", 20, 40);
}
function screen3() {
let blue = color(199, 255, 255);
background(17, 27, 44);
textFont('Courier New');
fill(199, 255, 255);
textSize(12);
fill(255);
textAlign(LEFT);
textStyle(NORMAL);
text(' Please offer a prayer to the collective using one \n of the following words:', 32, 100);
textSize(24);
fill(199, 255, 255);
text('Love Pain Power', 40, 170);
text('Heaven Earth Creatures', 40, 210);
text('Instincts Soul Voice', 40, 250);
inputField.show();
submitButton.show();
}
function checkPrayer() {
background(17, 27, 44);
fill(255);
textSize(14);
let prayer = inputField.value().toLowerCase().split(/\s+/);
let matchFound = false;
for (let word of prayer) {
if (moon.includes(word)) {
background(17, 27, 44);
textStyle(ITALIC);
text("A message from the Moon:", 30, 40);
tint(255, 160);
image(story8, 0, 40, width, height);
textStyle(NORMAL);
displayText = markov.generate(numSentences3);
text(displayText.join(" "), x, y, 390, 420);
matchFound = true;
inputField.hide();
submitButton.hide();
break;
} else if (miniMoon.includes(word)) {
background(17, 27, 44);
textStyle(ITALIC);
text("A message from the Mini-Moon:", 30, 40);
tint(255, 160);
image(story9, 0, 35, width, height);
textStyle(NORMAL);
displayText = markov2.generate(numSentences2);
text(displayText.join(" "), x, y, 390, 420);
matchFound = true;
inputField.hide();
submitButton.hide();
break;
} else if (bakunawa.includes(word)) {
background(17, 27, 44);
textStyle(ITALIC);
text("A message from Bakunawa:", 30, 40);
tint(255, 160);
image(story10, 0, 0, width, height);
textStyle(NORMAL);
displayText = markov3.generate(numSentences1);
text(displayText.join(" "), x, y, 390, 420);
matchFound = true;
inputField.hide();
submitButton.hide();
break;
}
}
if (!matchFound) {
textSize(12);
textStyle(NORMAL);
text(' Please offer a prayer to the collective using one \n of the following words:', 32, 100);
textSize(24);
fill(199, 255, 255);
text('Love Pain Power', 40, 170);
text('Heaven Earth Creatures', 40, 210);
text('Instincts Soul Voice', 40, 250);
textSize(12);
textStyle(ITALIC);
fill(255);
text('Please offer a prayer using one of the words.', 40, 290);
console.log("no match");
}
}
function mousePressed(){
state = state + 1;
if (state == 3) {
submitButton.mousePressed(checkPrayer);
}
print(state);
}