-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.js
164 lines (142 loc) · 4.24 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
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
console.log("Iniciando sistema");
let NombreMQTT = "ChepeCarlos";
let MensajeMQTT = "Amo a Lila <3";
// MensajeMQTT =
// "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus a neque vel odio luctus tincidunt sit amet ut neque. Praesent quis leo feugiat elit accumsan accumsan. Donec accumsan luctus est, ut posuere libero vehicula";
// MensajeMQTT =
// "Hola mundo los quiero mucho este lindo dia, quiero estar con ustedes , Les quiero compartir algo muy interesante . sobre mqtt y Arduino es especial algo que puede ayudarte en proyectos de MQTT 😀 en el futuro";
let ImagenMQTT;
let imagenCargada = false;
let noImagen = false;
let Imagen =
"https://yt4.ggpht.com/hyfbUP1SmorOKU6Rk0vMTHyz1CBrAc8dPSlg3Z3aMgiAcENaqF_EQxIr2eZryXPjB08cIzXIRQ=s64-c-k-c0x00ffffff-no-rj";
let dibujarMensaje = false;
let duracionMensaje = 6000;
let inicioConteo = -duracionMensaje;
// let ImagenFondo;
let ArchivoMQTT = "token/mqtt.json";
let DataMQTT;
let Presente;
let Comando;
let Mensaje;
let FuenteRoboto;
function preload() {
// ImagenFondo = loadImage("Fondo.png");
FuenteRoboto = loadFont("fuente/Roboto-Black.ttf");
DataMQTT = loadJSON(ArchivoMQTT);
}
function setup() {
createCanvas(windowWidth, windowHeight);
ConectarMQTT();
inicioConteo = millis();
cargarImagen(Imagen);
Presente = new AlertaPresente();
Comando = new AlertaComando();
Mensaje = new AlertaMensaje();
// Presente.agregar("100", "ChepeCarlos", false, "google");
// Presente.agregar("101", "Josué Javier Martínez Alcántara Garcia", false, "google");
// Presente.Activo = true;
// Mensaje.cargarFuente(FuenteRoboto);
// Mensaje.activo = true;
// Mensaje.colorTexto("#fff")
// Comando.Activo = true;
}
function draw() {
clear();
// image(ImagenFondo, 0, 0, width, height);
if (Presente.Activo) {
Presente.dibujar();
}
if (Comando.Activo) {
Comando.dibujar();
}
Mensaje.dibujar();
if (!imagenCargada) return;
if (millis() - inicioConteo < duracionMensaje || dibujarMensaje) {
let Posicion = createVector(width / 15, height / 80);
mostrarTexto(Posicion, NombreMQTT, MensajeMQTT, ImagenMQTT);
}
}
function cargarImagen(imageUrl) {
imagenCargada = false;
noImagen = true;
if (imageUrl == "no") {
imagenCargada = true;
inicioConteo = millis();
noImagen = false;
return;
}
loadImage(imageUrl, (img) => {
print(`Cargando ${imageUrl}`);
ImagenMQTT = img;
imagenCargada = true;
inicioConteo = millis();
});
}
function mostrarTexto(Posicion, Nombre, Mensaje, Perfil) {
let AzulOscuro = "#001427";
let Naranja = "#ff3a20";
let Acua = "#008080";
let ColorTexto = "#fff";
let ColorFondo = color(50);
let altoNombre = 20;
let altoMensaje = altoNombre + 7;
let Borde = altoNombre;
let DesfaceFondo = 4;
let AnchoMaximo = width - 2 * Posicion.x;
let AltoMaximo = 75;
let Separador = 10;
push();
translate(Posicion.x, Posicion.y);
textFont(FuenteRoboto);
stroke(AzulOscuro);
strokeWeight(3);
fill(AzulOscuro);
if (noImagen) {
rect(DesfaceFondo, DesfaceFondo, AltoMaximo, AltoMaximo);
image(Perfil, 0, 0, AltoMaximo, AltoMaximo);
AnchoMaximo = AnchoMaximo - AltoMaximo;
translate(AltoMaximo + Separador, 0);
}
textSize(altoNombre);
let anchoNombre = textWidth(Nombre);
fill(AzulOscuro);
rect(
DesfaceFondo * 2,
DesfaceFondo,
anchoNombre + Borde,
altoNombre + Borde / 2,
Borde / 4
);
fill(Naranja);
rect(0, 0, anchoNombre + Borde, altoNombre + Borde / 2, Borde / 4);
noStroke();
fill(ColorTexto);
text(Nombre, Borde / 2, altoNombre + Borde / 8);
textSize(altoMensaje);
let anchoMensaje = textWidth(Mensaje);
let Lineas = int(anchoMensaje / AnchoMaximo);
translate(0, altoNombre + Borde / 2 + Separador);
if (anchoMensaje > AnchoMaximo) {
anchoMensaje = AnchoMaximo;
}
stroke(AzulOscuro);
strokeWeight(3);
fill(AzulOscuro);
rect(
DesfaceFondo + 2,
DesfaceFondo,
anchoMensaje + Borde,
(Lineas + 1) * altoMensaje + 10,
5
);
fill(Acua);
rect(0, 0, anchoMensaje + Borde, (Lineas + 1) * altoMensaje + 10, 5);
fill(ColorTexto);
textLeading(altoMensaje);
text(Mensaje, Borde / 2, altoMensaje + Borde / 8, AnchoMaximo);
pop();
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}