xxxxxxxxxx
276
var input, button, reset, greeting;
function setup() {
removeElements();
// create canvas
createCanvas(650, 725);
button = createButton('Click to Converse with the Cosmos!');
button.position(200, 300);
button.mousePressed(matchCosmos);
}
function matchCosmos() {
removeElements();
//Create input box
input = createInput();
input.position(25, 550);
//create enter button
button = createButton('Enter');
button.position(input.x + input.width, 550);
button.mousePressed(cosmosReply);
//Creates body text
greeting = createElement('p', 'The Cosmos is online! Say Hi!');
greeting.position(20, 5);
greeting.style("font-family", "sans-serif");
greeting.style("color", "#FFF");
greeting.style("font-size", "16pt");
//Ceates exit button
var exit = createButton('Exit')
exit.position(input.x + input.width * 1.35, 550);
exit.mousePressed(exitSketch);
}
//Exit frame
function exitSketch() {
removeElements();
greeting = createElement('p', 'Goodbye!');
greeting.position(250, 350);
greeting.style("font-family", "sans-serif");
greeting.style("color", "#FFF");
greeting.style("font-size", "24pt");
refresh = createButton('Return');
refresh.position(285, 425);
refresh.mousePressed(setup);
}
function resetSketch() {
removeElements();
//input box
input = createInput();
input.position(25, 550);
//chatbox
button = createButton('Enter');
button.position(input.x + input.width, 550);
button.mousePressed(figureReply);
//body text
greeting = createElement('p', 'The Cosmos is online! Say Hi!');
greeting.position(20, 5);
greeting.style("font-family", "sans-serif");
greeting.style("color", "#FFF");
greeting.style("font-size", "16pt");
//exit button
var exit = createButton('Exit')
exit.position(input.x + input.width * 1.35, 550);
exit.mousePressed(exitSketch);
}
function draw() {
background(120);
}
//The Cosmos will talk back
function cosmosReply() {
var grammar = tracery.createGrammar(grammarSource);
grammar.addModifiers(tracery.baseEngModifiers);
var output = grammar.flatten("#origin#");
var grammarSource = {
"origin": [
"Our #posturings, our imagined #selfImportance, the #delusion that we have some #privileged position in the #Universe, are #challenged by this point of pale light. Our #planet is a #lonely speck in the #great #enveloping cosmic dark. In our #obscurity, in all this #vastness, there is no #hint that #help will come from elsewhere to save us from ourselves."
],
"posturings": [
"posturings", "putting on airs", "playacting",
"displaying",
"flaunting",
"showiness",
"exhibitions",
"struttings",
"brandishing",
"flourishing"
],
"selfImportance": [
"self-importance",
"vanity",
"pride",
"ego",
"presumptions",
"arrogance",
"self-glory",
"pretentions",
"selfishness"
],
"delusion": [
"delusion",
"conceit",
"fantasy",
"figment",
"fancy",
"dream",
"imagination",
"illusion",
"notion"
],
"privleged": [
"privleged",
"deserved",
"conceded",
"entitled",
"expected",
"claimed",
"rightful",
"authorized",
"legitimate",
"valid",
"licensed",
"certified"
],
"universe": [
"universe",
"cosmos",
"macrocosm",
"firmament"
],
"challenged": [
"challenged",
"dared",
"provoked",
"taunted",
"confronted",
"defy",
"interrogated"
],
"planet": [
"planet",
"world",
"sphere",
"orb",
"globe"
],
"lonely": [
"lonely",
"solitary",
"isolated",
"detatched",
"segregated",
"lonesome",
"abandoned",
"single",
"remote",
"deserted"
],
"obscurity": [
"obscurity",
"dimness",
"dimness",
"ambiguity",
"uncertainty",
"unknowingness",
"darkness"
],
"vastness": [
"vastness",
"expanse",
"greatness",
"immenseness",
"hugeness",
"enormousness",
"immensity"
],
"great": [
"great",
"grand",
"vast",
"immense",
"terrible",
"enormous",
"considerable",
"extreme",
"numerous",
"voluminous",
"abundant",
"huge",
"ample"
],
"enveloping": [
"enveloping",
"blanketing",
"swathing",
"surrounding",
"encompassing",
"obscuring",
"enclosing",
"embracing",
"enshrouding",
"overlaying",
"concealing",
"enfolding",
"engulfing",
"cloaking"
],
"hint": [
"hint",
"clue",
"sign",
"idea",
"inkling",
"tip",
"pointer",
"token",
"impression",
"implication",
"evidence",
"allusion"
],
"help": [
"help",
"advice",
"support",
"service",
"succor",
"remedy",
"utility",
"cooperation",
"benefit",
"guidance",
"aid",
"hand",
"comfort"
]
};
greeting.html( ''+output+'' );
input.value('');
}