-
Notifications
You must be signed in to change notification settings - Fork 0
/
stage-6-nick.js
170 lines (138 loc) · 3.85 KB
/
stage-6-nick.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
function nick() {
background(backgroundImg0);
fill(250); // cor
stroke(0); // cor
strokeWeight(10); // borda
textSize(140); // tamanho da fonte
textAlign(CENTER, CENTER);
textStyle(BOLDITALIC);
text(`Mahoot?`, 305, 100, 690, 200);
input.position(CENTER, CENTER);
input.size(200, 40);
}
function persona() {
if (!backgroundImg3) {
background(backgroundImg0);
} else {
background(backgroundImg3);
}
image(perfil1, 275, 260, 100, 100);
image(perfil2, 405, 260, 100, 100);
image(perfil3, 535, 260, 100, 100);
image(perfil4, 665, 260, 100, 100);
image(perfil5, 795, 260, 100, 100);
image(perfil6, 925, 260, 100, 100);
// seletor
if (mouseIsPressed) {
if (mouseX >= 275 && mouseX <= 375 && mouseY >= 260 && mouseY <= 360) {
seletorX = 275;
tocar(button);
perfil = perfil1;
}
if (mouseX >= 405 && mouseX <= 505 && mouseY >= 260 && mouseY <= 360) {
seletorX = 405;
tocar(button);
perfil = perfil2;
}
if (mouseX >= 535 && mouseX <= 635 && mouseY >= 260 && mouseY <= 360) {
seletorX = 535;
tocar(button);
perfil = perfil3;
}
if (mouseX >= 665 && mouseX <= 765 && mouseY >= 260 && mouseY <= 360) {
seletorX = 665;
tocar(button);
perfil = perfil4;
}
if (mouseX >= 795 && mouseX <= 895 && mouseY >= 260 && mouseY <= 360) {
seletorX = 795;
tocar(button);
perfil = perfil5;
}
if (mouseX >= 925 && mouseX <= 1025 && mouseY >= 260 && mouseY <= 360) {
seletorX = 925;
tocar(button);
perfil = perfil6;
}
}
noFill();
stroke(0); // cor
strokeWeight(6); // borda
rect(seletorX, seletorY, 100, 100);
//bordas
noFill();
stroke(0); // cor
strokeWeight(2); // borda
rect(275, 260, 100, 100);
noFill();
stroke(0); // cor
strokeWeight(2); // borda
rect(405, 260, 100, 100);
noFill();
stroke(0); // cor
strokeWeight(2); // borda
rect(535, 260, 100, 100);
noFill();
stroke(0); // cor
strokeWeight(2); // borda
rect(665, 260, 100, 100);
noFill();
stroke(0); // cor
strokeWeight(2); // borda
rect(795, 260, 100, 100);
noFill();
stroke(0); // cor
strokeWeight(2); // borda
rect(925, 260, 100, 100);
// botoes bg
fill(200);
stroke(0); // cor
strokeWeight(2); // borda
rect(435, 390, 200, 40);
fill(30); // cor
noStroke();
textSize(20); // tamanho da fonte
textAlign(CENTER, CENTER);
textStyle(BOLD);
text(`Plano de Fundo A`, 535, 413);
fill(200);
stroke(0); // cor
strokeWeight(2); // borda
rect(665, 390, 200, 40);
fill(30); // cor
noStroke();
textSize(20); // tamanho da fonte
textAlign(CENTER, CENTER);
textStyle(BOLD);
text(`Plano de Fundo B`, 765, 413);
if (mouseIsPressed) {
if (mouseX >= 435 && mouseX <= 635 && mouseY >= 390 && mouseY <= 430) {
tocar(button);
backgroundImg3 = backgroundImg1;
}
if (mouseX >= 665 && mouseX <= 865 && mouseY >= 390 && mouseY <= 430) {
tocar(button);
backgroundImg3 = backgroundImg2;
}
}
//footer
fill(220);
noStroke();
rect(0, height - 50, width, 50);
// nickname
fill(30); // cor
textSize(24); // tamanho da fonte
textAlign(LEFT);
textStyle(BOLD);
text(`${nickname}`, 10, 727);
// caixa pontos
fill(50);
noStroke(); // cor da borda
rect(1190, 710, 100, 30, 5);
// pontos
fill(255); // cor
textSize(24); // tamanho da fonte
textAlign(RIGHT);
textStyle(NORMAL);
text(`${pontos}`, 1273, 727);
}