-
Notifications
You must be signed in to change notification settings - Fork 0
/
Libro.java
95 lines (73 loc) · 2.96 KB
/
Libro.java
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
package codigo;
import java.awt.Color;
import javax.swing.JLabel;
import javax.swing.JTextPane;
public class Libro {
private final int MAX_PALABRAS = 50;
private int cantPalabrasActual = 0;
private final int tiempoEscrituraLectura = 500;
private JTextPane txtLibro;
private JLabel libroTotalPalabras;
public Libro(JTextPane txtLibro, JLabel libroTotalPalabras) {
this.txtLibro = txtLibro;
this.libroTotalPalabras = libroTotalPalabras;
}
public synchronized boolean escribir(JLabel luzImg, JLabel numTxt) {
notifyAll();
if (cantPalabrasActual == MAX_PALABRAS) {
return false;
}
Utilidades.labelSetImg(luzImg, ImgNombres.SEMAFORO_VERDE);
int cantPalabrasNuevas = Utilidades.numeroAleatorio(1, 10);
if (cantPalabrasNuevas + cantPalabrasActual > MAX_PALABRAS) {
cantPalabrasNuevas = MAX_PALABRAS - cantPalabrasActual;
}
int mostrarNum = cantPalabrasNuevas;
Utilidades.setColorParrafo(txtLibro, Color.WHITE, cantPalabrasActual);
for (int i = 0; i < cantPalabrasNuevas; i++) {
try {
Thread.sleep(tiempoEscrituraLectura);
} catch (InterruptedException ex) {
}
Utilidades.paneSetTexto(txtLibro, Character.toString((char) Utilidades.numeroAleatorio(97, 122)));
Utilidades.labelSetTexto(numTxt, Integer.toString(--mostrarNum));
Utilidades.labelSetTexto(libroTotalPalabras, "Letras totales: " + (++cantPalabrasActual));
}
try {
Thread.sleep(tiempoEscrituraLectura);
} catch (InterruptedException ex) {
}
Utilidades.labelSetTexto(numTxt, "");
Utilidades.labelSetImg(luzImg, ImgNombres.SEMAFORO_ROJO);
try {
wait();
} catch (InterruptedException ex) {
}
return true;
}
public synchronized boolean leer(Lector lector, JLabel luzImg, JLabel numTxt) {
if (lector.getPalabrasLeidas() == MAX_PALABRAS) {
return false;
}
if (lector.getPalabrasLeidas() == cantPalabrasActual) {
return true;
}
Utilidades.labelSetImg(luzImg, ImgNombres.SEMAFORO_VERDE);
int palabrasRestantes = cantPalabrasActual - lector.getPalabrasLeidas();
for (int i = 0; i < palabrasRestantes; i++) {
try {
Thread.sleep(tiempoEscrituraLectura);
} catch (InterruptedException ex) {
}
Utilidades.labelSetTexto(numTxt, Integer.toString(lector.incrementarPalabrasLeidas()));
Utilidades.setColorParrafo(txtLibro, Color.YELLOW, lector.getPalabrasLeidas());
}
try {
Thread.sleep(tiempoEscrituraLectura);
} catch (InterruptedException ex) {
}
Utilidades.setColorParrafo(txtLibro, Color.WHITE, cantPalabrasActual);
Utilidades.labelSetImg(luzImg, ImgNombres.SEMAFORO_ROJO);
return true;
}
}