For our project, we decided to create an iPhone and allow for interactions with some of the apps typical users like to spend time on. Carly created the Snapchat app and added in a few filters that can be changed by hovering over the different circles.Tai recreated a music app where the user can choose different songs to listen to. Jai created the Instagram and Clock apps and also some of the initial images for the home screen. For instagram, the page mimics a person’s profile picture (his own), and for the clock app, each of the locations in different time zones represent their current live time. Putting together the code was difficult, but Carly went over the commenting and formatting, while Tai helped with debugging and combining all of the code.
Although this project was very fun to complete, we had a lot of glitches we weren’t expecting. Having multiple apps that all ran but did not interfere with each other was a bit of a struggle. Coding between three people made the code lengthy and since we had separately used the same functions, when we consolidated our codes, the functions were overriding each other. Also, for the music app, we originally had an entire album to play from, but by the end of the project our code was so long and took a while to load, that we had to cut out a lot of songs and shorten the length of the songs, so there are only 2 short sound clips that play if you click the “1” or “2” key.
sketch
menuOn = true;musicOn = false;
snapchatOn = false;
instagramOn = false;
clockOn = false;
var song1;
var song2;
function preload() {
var snapURL = "https://i.imgur.com/UfJfDg1.png?"
snapPic = loadImage(snapURL);
var musicURL = "https://i.imgur.com/m6NxUGy.png?"
musicPic = loadImage(musicURL);
var instaURL = "https://i.imgur.com/qTYtnyQ.png?"
instaPic = loadImage(instaURL);
var clockURL = "https://i.imgur.com/eX2G9P3.png?"
clockBG = loadImage(clockURL);
var instaPic1URL = "https://i.imgur.com/FVXjmZU.jpg?2"
instaPic1 = loadImage(instaPic1URL);
var instaPic2URL = "https://i.imgur.com/RIkwcRD.jpg?2"
instaPic2 = loadImage(instaPic2URL);
var instaPic3URL = "https://i.imgur.com/eBPLHVa.jpg?2"
instaPic3 = loadImage(instaPic3URL);
var instaPic4URL = "https://i.imgur.com/aKhmsST.jpg?2"
instaPic4 = loadImage(instaPic4URL);
var instaPic5URL = "https://i.imgur.com/Pf6NRRh.png"
instaPic5 = loadImage(instaPic5URL);
var albumImage = "https://i.imgur.com/ajcDQxJ.jpg"
albumCover = loadImage(albumImage);
song1 = loadSound("https://courses.ideate.cmu.edu/15-104/f2019/wp-content/uploads/2019/12/382698__iwawiwi__small-fragment-of-one-man-rumba-music-recording-from-wikimedia-common.wav");
song2 = loadSound("https://courses.ideate.cmu.edu/15-104/f2019/wp-content/uploads/2019/12/213096__soundsexciting__gong-with-music.wav");
}
function soundSetup(){
song1.setVolume(2);
song2.setVolume(2);
}
function setup() {
createCanvas(640, 400);
push();
rectMode(CENTER);
fill(100)
rect(width/2, height/2, 159, 323, 15);
pop();
normalCamera = createCapture(VIDEO);
normalCamera.size(158, 318); normalCamera.hide();
filter1 = createCapture(VIDEO);
filter1.size(158, 318); filter1.hide();
filter2 = createCapture(VIDEO);
filter2.size(158, 318); filter2.hide();
filter3 = createCapture(VIDEO);
filter3.size(158, 318); filter3.hide();
filter4 = createCapture(VIDEO);
filter4.size(158, 318); filter4.hide();
}
function draw() {
if (keyIsDown(77)) {
musicOn = true;
menuOn = false;
}
if (keyIsDown(83)) {
snapchatOn = true;
menuOn = false;
}
if (keyIsDown(73)) {
instagramOn = true;
menuOn = false;
}
if (keyIsDown(67)) {
clockOn = true;
menuOn = false;
}
if (keyIsDown(72)) {
menuOn = true;
snapchatOn = false;
musicOn = false;
instagramOn = false;
clockOn = false;
}
if (menuOn == true) {
makePhone();
}
if (musicOn == true){
makeMusicApp();
}
if (snapchatOn == true){
makeSnapchatApp();
}
if (instagramOn == true){
makeInstagramApp();
}
if (clockOn == true){
makeClockApp();
}
makeBorder();
push();
noStroke();
textFont('Helvetica');
fill(189, 160, 0)
text("type s for snapchat", 20, height / 2 - 40);
text("hover over buttons to change filter", 30, height / 2 - 25);
fill(169, 68, 194)
text("type m for music", 20, height / 2 - 5);
text("press the song number you want", 30, height / 2 + 10 )
text("press the space bar to play & pause", 30, height / 2 + 20);
fill(219, 37, 113);
text("type i for instagram", 20, height / 2 + 40)
fill(103, 168, 156);
text("type c for clock", 20, height / 2 + 60);
fill(89, 92, 91);
textSize(20)
text("type h to return home", 20, height / 2 - 70);
pop();
}
function makeMusicApp() {
push()
rectMode(CENTER);
fill(50);
rect(width / 2, height / 2, 148, 308, 15);
image(albumCover, width / 2 - 30, height / 2 - 140);
fill(50, 235, 50);
noStroke();
rect(width / 2, height / 2 - 42.5, 50, 20, 10);
push();
strokeWeight(2);
stroke(255);
line(width / 2 - 74, height / 2 - 25, width / 2 + 74, height / 2 - 25);
line(width / 2 - 74, height / 2 - 5, width / 2 + 74, height / 2 - 5);
line(width / 2 - 74, height / 2 + 15, width / 2 + 74, height / 2 + 15);
line(width / 2 - 74, height / 2 + 35, width / 2 + 74, height / 2 + 35);
line(width / 2 - 74, height / 2 + 55, width / 2 + 74, height / 2 + 55);
line(width / 2 - 74, height / 2 + 75, width / 2 + 74, height / 2 + 75);
line(width / 2 - 74, height / 2 + 95, width / 2 + 74, height / 2 + 95);
line(width / 2 - 74, height / 2 + 115, width / 2 + 74, height / 2 + 115);
line(width / 2 - 74, height / 2 + 135, width / 2 + 74, height / 2 + 135);
pop();
noStroke();
fill(255);
textAlign(CENTER);
textSize(12);
text("Nostalgia Ultra", width / 2, height / 2 - 67.5);
textSize(10);
text("Pause", width / 2, height / 2 - 40);
text("1. strawberry swing", width / 2, height / 2 - 12.5);
text("2. novacane", width / 2, height / 2 + 7.5);
text("3. we all try", width / 2, height / 2 + 27.5);
text("4. songs for women", width / 2, height / 2 + 47.5);
text("5. there will be tears", width / 2, height / 2 + 67.5);
text("6. swim good", width / 2, height / 2 + 87.5);
text("7. dust", width / 2, height / 2 + 107.5);
text("8. american wedding", width / 2, height / 2 + 127.5);
text("9. nature feels", width / 2, height / 2 + 147.5);
pop();
}
function keyPressed() {
if (keyCode === 49) {
song1.play();
song2.pause();
}
if (keyCode === 50) {
song2.play();
song1.pause();
}
if (keyCode === 32) {
song1.pause();
song2.pause();
}
}
function normalCamera() {
push();
normalCamera.loadPixels();
image(normalCamera, 242, 41);
pop();
}
function filterThreshold() {
push();
filter1.loadPixels();
image(filter1, 242, 41);
filter(THRESHOLD);
pop();
buttons();
}
function filterInvert() {
push();
filter2.loadPixels();
image(filter2, 242, 41);
filter(INVERT);
pop();
buttons();
}
function filterPosterize() {
push();
filter3.loadPixels();
image(filter3, 242, 41);
filter(POSTERIZE, 3);
pop();
buttons();
}
function filterGray() {
push();
filter4.loadPixels();
image(filter4, 242, 41);
filter(GRAY);
pop();
buttons();
}
function buttons() {
noFill();
stroke(255);
strokeWeight(2);
ellipse(width/2, height / 2 + 135, 25, 25);
noFill();
stroke(255);
strokeWeight(2);
ellipse(width/2 - 60, height / 2 + 135, 20, 20);
noFill();
stroke(255);
strokeWeight(2);
ellipse(width/2 - 30, height / 2 + 135, 20, 20);
noFill();
stroke(255);
strokeWeight(2);
ellipse(width/2 + 30, height / 2 + 135, 20, 20);
noFill();
stroke(255);
strokeWeight(2);
ellipse(width/2 + 60, height / 2 + 135, 20, 20);
}
function makeSnapchatApp(){
push();
normalCamera.loadPixels();
image(normalCamera, 242, 41);
pop();
buttons();
if (mouseX > 250 & mouseX < 275 && mouseY > 320) {
filterThreshold();
}
if (mouseX > 270 & mouseX < 295 && mouseY > 320) {
filterInvert();
}
if (mouseX > 335 & mouseX < 360 && mouseY > 320) {
filterPosterize();
}
if (mouseX > 365 & mouseX < 400 && mouseY > 320) {
filterGray();
}
}
function makeInstagramApp(){
push();
rectMode(CENTER);
fill(245);
noStroke();
rect(width/2, height/2, 159, 323, 15);
textSize(32);
fill(42, 57, 107);
textAlign(CENTER);
textFont('Satisfy');
text('Instagram', width/2 + 1, 80);
stroke(42, 57, 107);
strokeWeight(.5);
line(width/2 - 73.5, 95, width/2 + 73.5, 95);
fill(240);
strokeWeight(1.5);
push();
scale(1.2)
image(instaPic5, width/2 - 113.5, 84);
pop();
noFill();
noStroke();
fill(42, 57, 107);
textAlign(LEFT);
textFont('Helvetica');
textSize(10);
text("Jai Sawkar", width/2 - 68, 165);
fill(60)
textSize(9);
text("@jsawkar", width/2 - 68, 175);
rectMode(CORNER)
fill(60, 60, 60, 20)
rect(width/2 - 7, 102.5, 75, 30);
stroke(60);
strokeWeight(.2);
line((width/2-7 + width/2 + 68)/2, 102.5, (width/2-7 + width/2 + 68)/2, 132.5)
fill(60)
textSize(7);
noStroke();
text("Followers", width/2 - 3, 110);
text("Following", width/2 + 35, 110);
textSize(8);
fill(0);
textAlign(LEFT);
text("1,027", width/2 + 2, 122)
text("971", width/2 + 43, 122);
textSize(9);
textAlign(RIGHT);
text("sammamish, wa", width/2 + 65, 165);
text("carnegie mellon '22", width/2 + 65, 175);
stroke(42, 57, 107);
strokeWeight(.5);
line(width/2 - 73.5, 190, width/2 + 73.5, 190);
pop();
push();
scale(0.6)
image(instaPic1, width/2 + 105, 330);
image(instaPic2, width/2 + 220, 330);
image(instaPic3, width/2 + 105, 445);
image(instaPic4, width/2 + 220, 445);
pop();
}
function makeClockApp(){
push();
rectMode(CENTER);
fill(20);
noStroke();
rect(width/2, height/2, 159, 323, 15);
textSize(32);
fill('WHITE');
textFont('Helvetica');
text('Clock', width/2 - 70, 80);
stroke(255);
strokeWeight(.5);
line(width/2 - 73.5, 90, width/2 + 73.5, 90);
var h = hour();
var m = minute();
var s = second();
var hPos = width/2 + 10; var mPos = width/2 + 40;
var singleHPos = width/2 + 20; var singleMPos = width/2 + 51
var pittsburghH = h; var pittsburghM = m;
var pittsburghHPos = hPos; var pittsburghMPos = mPos;
if (pittsburghH < 10){
pittsburghHPos = singleHPos;
}
if (pittsburghM < 10){
pittsburghMPos = singleMPos;
textSize(20);
fill(255);
text("0", mPos, 115);
}
var cupertinoH = h - 3; var cupertinoM = m;
var cupertinoHPos = hPos; var cupertinoMPos = mPos;
if (cupertinoH < 10){
cupertinoHPos = singleHPos;
}
if (cupertinoM < 10){
cupertinoMPos = singleMPos;
textSize(20);
fill(255);
text("0", mPos, 147);
}
var beijingH = (h + 13) % 12; var beijingM = m;
var beijingHPos = hPos; var beijingMPos = mPos;
if (beijingH < 10){
beijingHPos = singleHPos;
}
if (beijingM < 10){
beijingMPos = singleMPos;
textSize(20);
fill(255);
text("0", mPos, 181);
}
var chennaiH = (h + 10) % 12; var chennaiM = (m + 30) % 60;
var chennaiHPos = hPos; var chennaiMPos = mPos;
if (chennaiH < 10){
chennaiHPos = singleHPos;
}
if (chennaiM < 10){
chennaiMPos = singleMPos;
textSize(20);
fill(255);
text("0", mPos, 215);
}
var chicagoH = h-1; var chicagoM = (m) % 60;
var chicagoHPos = hPos; var chicagoMPos = mPos;
if (chicagoH < 10){
chicagoHPos = singleHPos;
}
if (chicagoM < 10){
chicagoMPos = singleMPos;
textSize(20);
fill(255);
text("0", mPos, 249);
}
var adH = (h + 9) % 12; var adM = (m) % 60;
var adHPos = hPos; var adMPos = mPos;
if (adH < 10){
adHPos = singleHPos;
}
if (adM < 10){
adMPos = singleMPos;
textSize(20);
fill(255);
text("0", mPos, 283);
}
var adelaideH = (h + 6) % 12; var adelaideM = (m + 30) % 60;
var adelaideHPos = hPos; var adelaideMPos = mPos;
if (adelaideH < 10){
adelaideHPos = singleHPos;
}
if (adelaideM < 10){
adelaideMPos = singleMPos;
textSize(20);
fill(255);
text("0", mPos, 318);
}
textSize(8);
fill(150);
noStroke();
text('LOCAL TIME', width/2 - 70, 100);
textSize(15);
fill(255);
text('Pittsburgh', width/2 - 70, 115);
textSize(20);
text(pittsburghH, pittsburghHPos, 115);
text(pittsburghM, pittsburghMPos, 115);
text(":", width/2 + 32, 114);
stroke(255);
strokeWeight(.5);
line(width/2 - 74, 122, width / 2 + 73, 122);
textSize(8);
fill(150);
noStroke();
text('-3HRS', width / 2 - 70, 132);
textSize(15);
fill(255);
text('Cupertino', width / 2 - 70, 147);
textSize(20);
text(cupertinoH, cupertinoHPos, 147);
text(cupertinoM, cupertinoMPos, 147);
text(":", width/2 + 32, 146);
stroke(255);
strokeWeight(.5)
line(width/2 - 74, 156, width / 2 + 73, 156);
textSize(8);
fill(150);
noStroke();
text('+13HRS', width / 2 - 70, 166);
textSize(15);
fill(255);
text('Beijing', width / 2 - 70, 181);
textSize(20);
text(beijingH, beijingHPos, 181);
text(beijingM, beijingMPos, 181);
text(":", width / 2 + 32, 180);
stroke(255);
strokeWeight(.5);
line(width / 2 - 74, 190, width / 2 + 73, 190);
textSize(8);
fill(150);
noStroke();
text('+10:30HRS', width/2 - 70, 200);
textSize(15);
fill(255);
text('Chennai', width/2 - 70, 215);
textSize(20);
text(chennaiH, chennaiHPos, 215);
text(chennaiM, chennaiMPos, 215);
text(":", width / 2 + 32, 214);
stroke(255);
strokeWeight(.5);
line(width / 2 - 74, 224, width/2 + 73, 224);
textSize(8);
fill(150);
noStroke();
text('-1HRS', width/2 - 70, 234);
textSize(15);
fill(255);
text('Chicago', width/2 - 70, 249);
textSize(20);
text(chicagoH, chicagoHPos, 249);
text(chicagoM, chicagoMPos, 249);
text(":", width / 2 + 32, 248);
stroke(255);
strokeWeight(.5);
line(width / 2 - 74, 258, width/2 + 73, 258);
textSize(8);
fill(150);
noStroke();
text('+9Hrs', width / 2 - 70, 268);
textSize(15);
fill(255);
text('Abu Dhabi', width / 2 - 70, 283);
textSize(20);
text(adH, adHPos, 283);
text(adM, adMPos, 283);
text(":", width / 2 + 32, 282);
stroke(255);
strokeWeight(.5);
line(width / 2 - 74, 293, width / 2 + 73, 293);
textSize(8);
fill(150);
noStroke();
text('+15:30Hrs', width / 2 - 70, 303);
textSize(15);
fill(255);
text('Adelaide', width / 2 - 70, 318);
textSize(20);
text(adelaideH, adelaideHPos, 318);
text(adelaideM, adelaideMPos, 318);
text(":", width / 2 + 32, 317);
pop();
}
function makeBorder(){
noFill();
stroke(60, 59, 59);
strokeWeight(6);
rect(width/2, height/2, 159, 323, 15)
fill(60, 59, 59);
rect(width/2, 48, 81, 11, 10);
rect(239.5, 94, 1.6, 11.9);
rect(239.5, 123, 1.6, 23.75);
rect(239.5, 149, 1.6, 23.75);
rect(400.5, 137, 1.6, 38)
fill(88, 89, 91);
ellipseMode(CENTER);
ellipse(289, 48, 5);
ellipse(301, 48, 5);
ellipse(340, 48, 5);
}
function makePhone(){
push();
rectMode(CENTER);
fill(100)
rect(width/2, height/2, 159, 323, 15);
pop();
push()
rectMode(CENTER);
makeSnapchat();
makeMusic();
makeInsta();
makeClock();
pop();
}
function makeSnapchat(){
push();
translate(width/2 - 60, 85)
scale(0.25);
image(snapPic, 0, 0)
pop();
}
function makeMusic(){
push();
translate(width/2 + 6, 85)
scale(0.25);
image(musicPic, 0, 0)
pop();
}
function makeInsta(){
push();
translate(width/2 - 60, 160)
scale(0.25);
image(instaPic, 0, 0)
pop();
}
function makeClock(){
push();
translate(width/2 + 6, 160)
scale(0.25);
image(clockBG, 0, 0)
pop();
push()
translate(width/2 + 1.5, 155);
scale(0.15);
clockMove();
}
function clockMove(){
angleMode(DEGREES);
var h = hour();
var m = minute();
var s = second();
push()
noFill();
translate(200, 200);
rotate(-90);
strokeWeight(5);
var hStart = map(h % 12, 0, 12, -90, 360);
arc(0, 0, 220, 220, 0, hStart)
strokeWeight(4);
var mStart = map(m, 0, 60, 0, 360);
arc(0, 0, 240, 240, 0, mStart)
stroke(0);
strokeWeight(2);
var sStart = map(s, 0, 60, 0, 360);
arc(0, 0, 260, 260, 0, sStart)
pop()
}