This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Silnik.java
155 lines (134 loc) · 4.79 KB
/
Silnik.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
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
package auto;
import javax.swing.*;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.Random;
public class Silnik extends Komponent implements Runnable {
private int max_obroty;
private volatile float obroty;
private boolean blinker;
private volatile float obroty2; // to obserwuję
private ArrayList<Observer> observers = new ArrayList<Observer>(); // lista obserwatorów
// konstruktor
public Silnik(String nazwa, float waga, float cena, int max_obroty) {
super(nazwa, waga, cena); // inicjalizuje atrybuty klasy komponent
this.max_obroty = max_obroty;
this.obroty = 0;
}
public String uruchom() {
this.obroty = 100; // na początku obroty są niskie przy włączeniu
return "Silnik uruchomiony";
}
public String zatrzymaj() {
this.obroty = 0; // przy wyłączeniu obroty silnika ustają
return "Silnik zatrzymany";
}
public float zwieksz_obroty(float obroty) {
// obroty nie mogą przekroczyc maksymalnych obrotów
if (!(this.obroty >= 100)) { // nie można nic zrobić jak silnik wyłączony
System.out.println("Silnik nie uruchomiony");
return this.obroty;
} else if (this.obroty + obroty > this.max_obroty) {
System.out.println("obroty nie mogą przekroczyć max obrotów");
return this.obroty;
} else {
this.obroty += obroty;
System.out.println("Zwiększono obroty!");
return this.obroty;
}
}
public float zmniejsz_obroty(float obroty) {
if (!(this.obroty >= 100)) { // nie można nic zrobić jak silnik wyłączony
System.out.println("Silnik nie uruchomiony");
return this.obroty;
}
// obroty nei mogą być ujemne
else if (this.obroty - obroty < 0) {
System.out.println("Obroty nie mogą być ujemne");
return this.obroty;
} else {
this.obroty -= obroty;
System.out.println("Zmniejszono obroty!");
return this.obroty;
}
}
// gettery
public int getMax_obroty() {
return this.max_obroty;
}
public float getObroty() {
return this.obroty;
}
public ArrayList<Observer> getObservers() {
return observers;
}
public float getObroty2() {
return obroty2;
}
// settery
public void setObroty(float obroty) {
this.obroty = obroty;
}
public void setBlinker(boolean blinker) {
this.blinker = blinker;
}
// nowy wątek
@Override
public void run() {
System.out.println("Uruchomiono kolejny wątek eloeloe");
Random r = new Random();
while (blinker) {
if (this.obroty > 110 && this.obroty + 10 < this.max_obroty) {
int start = (int) (obroty) - 10;
int stop = (int) (obroty) + 10;
obroty2 = r.nextFloat() * (stop - start) + start;
}
else if (this.obroty == 100) { // jeśli obroty 100 to oscylacja tylko +10 w góre
int stop = (int) (obroty) + 10;
obroty2 = r.nextFloat() * (stop - 100) + 100;
}
else if (this.obroty == this.max_obroty) { // jeśl iobroty max to oscylacja tylko -10 w dół
int start = (int) (obroty) - 10;
obroty2 = r.nextFloat() * ((this.max_obroty) - start) + start;
}
try {
notifyObservers(); // powiadamiam obserwatora o zmianie
Thread.sleep(100); // zmiana obrotów co 1s
} catch (java.lang.InterruptedException i) { System.out.println("przerwano"); }
}
System.out.println("wychodzę z while'a");
obroty2 = 0;
}
public void stopThread(){
blinker = false;
}
// observer pattern
public void addObserver(Observer observer) {
observers.add(observer);
}
public void removeObserver(Observer observer){
observers.remove(observer);
}
public void notifyObservers(){
for (Observer observer:
observers) {
//observer.setText(String.valueOf(obroty2)); // uaktualniam zmienione obroty
//observer.setEditable(false);
observer.update();
}
}
// TEST
public static void main(String[] args) {
Silnik silnik = new Silnik("sil",789,7987,5000);
Thread thread = new Thread(silnik);
silnik.blinker = true;
thread.start();
silnik.uruchom();
try {
silnik.zwieksz_obroty(20);
Thread.sleep(10000);
}catch (InterruptedException i){}
silnik.zmniejsz_obroty(20);
silnik.blinker = false;
}
}