xxxxxxxxxx
200
var circleWidth = 3;
var change = .8;
let eyePosition = 0;
let eyeOpen;
let eyeOpen2;
let jitterX;
let jitterY;
let textColor = 0;
let eyeDark;
function setup() {
createCanvas(600, 600);
angleMode(DEGREES);
}
function draw() {
background(0);
//map eye to open at center of canvas -----
let eyeX1 = map(mouseX, 0, 300, 0, 250)
let eyeX2 = map(mouseX, 300, 600, 250, .5)
let eyeY1 = map(mouseY, 0, 300, 200, 300)
let eyeY2 = map(mouseY, 300, 600, 300, 200)
let minutePoem = minute();
if (mouseX < 300){
eyeOpen = eyeX1
} else if (mouseX > 300){
eyeOpen = eyeX2
}
if (mouseY < 300){
eyeOpen2 = eyeY1
} else if (mouseY > 300){
eyeOpen2 = eyeY2
}
//map colors to mousex and mousey so most colorful at center
let colorX;
let colorY;
if (mouseX <= 300){
colorX = map(mouseX, 0, 300, 20, 205);
} else if (mouseX >= 300){
colorX = map(mouseX, 300, 600, 205, 0);
}
if (mouseY <= 300){
colorY = map(mouseY, 0, 300, 20, 205);
} else if (mouseY >= 300){
colorY = map(mouseY, 300, 600, 205, 0);
}
push();
translate(width/2, height/2);
//eyelids -------------
rotate(90);
stroke(255);
fill(255);
strokeWeight(0)
arc(0, eyePosition, eyeOpen, eyeOpen2, 0, 360);
push();
blendMode(DARKEST);
rotate(-180);
//clock arcs
let h = hour();
let m = minute();
let s = second();
noFill();
strokeWeight(20);
//second
stroke(0,0,colorX,50);
arc(0,0,180,180,0,s*6);
//minute
stroke(0,0,colorX,100);
arc(0,0,140,140,0,m*6);
//hour
stroke(0, 0, colorX, 150);
arc(0,0,100,100,0,h*15);
pop();
pop();
//pupil pulsating -----------------------------------------------------
push();
translate(width/2, height/2);
noStroke();
blendMode(DARKEST);
fill(0, 0, colorX);
circleWidth += change;
if (circleWidth > width/6){
change = -change;
} else if (circleWidth < 0){
change = -change;
}
ellipse(0,0,50,50);
ellipse(0, 0, circleWidth, circleWidth)
pop();
fill(0);
ellipse(width/2,height/2,30,30);
fill(255);
ellipse(width/2,height/2,10,10);
//text on mouse jitter -------------------------------
if (mouseX <= 300){
jitterX = map(mouseX, 0, 300, 0, 6);
} else if (mouseX >= 300){
jitterX = map(mouseX, 300, 600, 6, 0);
}
if (mouseY <= 300){
jitterY = map(mouseY, 0, 300, 0, 6);
} else if (mouseY >= 300){
jitterY = map(mouseY, 300, 600, 6, 0);
}
textFont('Georgia');
textSize(20);
fill(255);
text('wake up',mouseX+random(jitterX),mouseY+random(jitterY));
if(minutePoem < 10)
minutePoem = "0"+minutePoem
push();
blendMode(LIGHTEST);
textSize(60);
fill(textColor, textColor, textColor, 100);
text('The moon has set',20,20, width, height);
text('And the Pleiades;',20,90, width, height);
text('It is ' + hour() + ':' + minutePoem + ',',20,160, width, height);
text('The time is going by,',20,440, width, height);
fill(textColor, textColor, textColor, 200);
text('and I sleep alone.',110,510, width, height);
pop();
//overall darkness based on mouse locations
let eyeX3 = map(mouseX, 0, 300, 250, 0)
let eyeX4 = map(mouseX, 300, 600, 0, 250)
if (mouseX < 300){
eyeDark = eyeX3
} else if (mouseX > 300){
eyeDark = eyeX4
}
fill(0,0,0,eyeDark);
rect(0,0,600,600);
///---- repeating pulsating circles
push();
translate(width/2, height/2);
blendMode(LIGHTEST);
stroke(250, 250, 250, eyeDark);
strokeWeight(1);
ellipse(0,0,50,50);
ellipse(0, 0, circleWidth+100, circleWidth+100)
ellipse(0, 0, circleWidth+200, circleWidth+200)
ellipse(0, 0, circleWidth+300, circleWidth+300)
pop();
fill(255);
ellipse(width/2,height/2,10,10);
}
function mousePressed() {
if (textColor === 0) {
textColor = 255;
} else {
textColor = 0;
}
}