-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.js
109 lines (75 loc) · 1.98 KB
/
sketch.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
const colorInput = document.getElementById('color');
const weight = document.getElementById('weight');
const clear = document.getElementById('clear');
const paths = [];
let currentPath = [];
var pos = {
x: 386,
y: 14
}
let myFont;
function preload(){
myFont = loadFont('ms-sans-serif.ttf');
bird = loadImage('bird.png')
birdfree = loadImage('birdfree.png')
closePopup = loadImage('x.png')
confirmButton = loadImage('confirmbutton.png')
}
let sceneIndex = 0;
function setup() {
createCanvas(437, 305);
}
function draw() {
noFill();
background('#C0C0C0');
if (sceneIndex == 0){
startScreen();
}
if (sceneIndex == 1){
startMaze();
}
function startScreen(){
push()
fill('#000181')
rect(4,11,426,41)
image(closePopup, pos.x,pos.y)
image(confirmButton, 130,198)
pop()
push()
fill(255)
textFont(myFont, 19);
text('Sign up', 18, 40)
pop()
push()
textFont(myFont, 19);
fill(0)
text('Im not a robot', 130, 103);
pop()
if (mouseIsPressed && mouseX + 14 > pos.x && mouseY + 14 > pos.y) {
pos.x = random(0, width);
pos.y = random(0, height);
}
if (mouseIsPressed && mouseX > 130 && mouseX < 306 && mouseY > 151 && mouseY < 245) {
sceneIndex = 1;
}
}
}
function startMaze(){
background(colorInput.value)
if (colorInput.value=='#ffffff'){
image(birdfree,166,88)
}
else {
image(bird, 148, 62);
}
push()
fill(255);
textFont(myFont, 19);
text('rescue the bird', 144, 37);
pop()
}
/*
First screen kommt
Wenn Mouse auf X kommt, X findet ein Random ort und kann nicht geklickt werden
Wenn Mouse auf Ok klickt, then page 2:
*/