xxxxxxxxxx
82
var welcome_text = "on";
function setup() {
createCanvas(600, 600);
welcome();
}
function draw() {
if (welcome_text == "off") {
make_dough("small");
}
}
//below are all the functions
function welcome() {
textSize(15);
fill(0, 102, 153);
text("welcome to my kitchen!", 50, 50);
text("i'll take your order for a home-made pizza now.", 50, 80);
text("click on the button when you are ready!", 50, 110);
button = createButton("i'm ready!");
button.position(50, 140);
button.mousePressed(clear, welcome_text = "off");
}
function make_dough(size) {
textSize(15);
fill(0, 102, 153);
text("now it's time to choose your dough!", 50, 180);
text("since we have not covered user input yet, you will have to change the function manually :(", 50, 210);
if (size == "small") {
} else if (size == "big") {
}
}
function spread_sauce(amount) {
if (amount == "a little") {
} else if (amount == "a lot") {
}
}
function spread_cheese(amount) {
if (amount == "a little") {
} else if (amount == "a lot") {
}
}
function put_topping(topping) {
if (topping == "peperoni") {
} else if (topping == "veggies") {
} else {
print("sorry! we don't have that available yet. please come back later")
}
}
function put_in_oven() {
}