-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrazos.pde
163 lines (143 loc) · 4.1 KB
/
Trazos.pde
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
import java.util.List;
Toque crearToque(boolean primero) {
float p = sqrt(sq(mouseX - pmouseX) + sq(mouseY - pmouseY));
Toque toque = new Toque(mouseX, mouseY, p, millis());
toque.primero = primero;
return toque;
}
void cerrarTrazo(CapaDibujo capa, boolean unico) {
if (capa.trazos.size() == MAX_TRAZOS) capa.trazos.remove(0);
if (estado.nuevoTrazo != null) {
estado.nuevoTrazo.cerrate(unico);
capa.trazos.add(estado.nuevoTrazo);
estado.registrandoTrazo = false;
}
}
class Trazo {
CapaDibujo capa;
Pincel pincel;
Tinta tinta;
float factorOpacidad;
float factorEscala;
ArrayList<Toque> toques;
Toque[] atoques;
int tiempoComienzo;
int tiempoBorrado;
int tiempoFinal;
boolean repetir;
boolean cerrado;
boolean removiendo;
boolean removido;
int duracionBorrado;
int indicePrevio;
Trazo(CapaDibujo capa, Pincel pincel, Tinta tinta, float factorOpacidad, float factorEscala, boolean rep, int t) {
this.capa = capa;
this.pincel = pincel;
this.tinta = tinta;
this.factorOpacidad = factorOpacidad;
this.factorEscala = factorEscala;
toques = new ArrayList<Toque>();
tiempoComienzo = t;
atoques = new Toque[0];
repetir = rep;
cerrado = false;
removiendo = false;
removido = false;
}
void cerrate(boolean unico) {
cerrado = true;
duracionBorrado = int(estado.tiempoBorradoTrazos.valor);
Toque ultimoToque = toques.get(toques.size() - 1);
Toque fakeToque = new Toque(ultimoToque.x, ultimoToque.y, ultimoToque.p, ultimoToque.t + duracionBorrado);
tiempoBorrado = ultimoToque.t;
agregarUnToque(fakeToque);
ultimoToque.ultimo = true;
removiendo = unico;
}
void dibujate(float opacidadCapa) {
if (factorOpacidad == 0 || factorEscala == 0) return;
int indice = toques.size() - 1;
float factorBorrado = 1;
if (cerrado && (repetir || removiendo)) {
int t = (millis() - tiempoComienzo) % (tiempoFinal - tiempoComienzo + 1);
int indiceCorriente = buscarIndice(t);
if (repetir) {
// Transformar tiempo absoluto (millis) en tiempo relativo al trazo:
indice = indiceCorriente;
}
if (removiendo || pincel.animarOpacidad) {
if (tiempoBorrado - tiempoComienzo <= t) {
factorBorrado = 1 - float(t - tiempoBorrado + tiempoComienzo) / duracionBorrado;
}
}
if (removiendo && (indiceCorriente < indicePrevio || factorBorrado < 0.01)) {
removido = true;
removiendo = false;
return;
}
indicePrevio = indiceCorriente;
}
List<Toque> list = toques.subList(0, indice + 1);
atoques = list.toArray(new Toque[indice + 1]);
float opacidad = constrain(opacidadCapa * factorOpacidad * factorBorrado * 255, 0, 255);
pushStyle();
pincel.pintar(atoques, tinta.generarColor(opacidad), factorEscala);
popStyle();
}
void remover() {
removiendo = true;
}
void agregarUnToque(Toque toque) {
if (toques.size() == MAX_TOQUES) toques.remove(0);
toques.add(toque);
tiempoFinal = toque.t;
}
void toquePrevioEsUltimo() {
if (0 < toques.size()) {
Toque toque = toques.get(toques.size() - 1);
toque.ultimo = true;
}
}
int buscarIndice(int tiempo) {
int n = toques.size();
int mini = 0;
int maxi = n - 1;
int idx = mini + (maxi - mini)/2;
int iter = 0;
while (iter < n) {
int t0 = toques.get(idx).t - tiempoComienzo;
int t1;
if (idx < n - 1) {
t1 = toques.get(idx + 1).t - tiempoComienzo;
} else {
t1 = tiempo + 1;
}
if (t0 <= tiempo && tiempo < t1) {
return idx;
} else if (tiempo < t0) {
maxi = idx;
} else {
mini = idx;
}
idx = mini + (maxi - mini)/2;
iter++;
}
return min(idx, n - 1);
}
}
class Toque {
int x;
int y;
int t;
float p;
boolean primero;
boolean ultimo;
Toque(int x, int y, float p, int t) {
this.x = x;
this.y = y;
this.t = t;
this.p = p;
primero = false;
ultimo = false;
}
}