-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStateHash.pde
110 lines (89 loc) · 3.34 KB
/
StateHash.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
/** questa classe gestisce la hashtable, e tutta la serie di
oggetti necessari alla visualizzazione e gestione degli aerei
**/
public class StateHash {
PImage p = loadImage("plane.png"); // carica immagine aerei
PImage psel = loadImage("planeSel.png"); // carica immagine aereo selezionato
HashMap states; // hash-table con tutti i marker
boolean markerSelected = false; // controlla se ho selezionato un marker
boolean justClicked = false; // controlla se ho appena premuto (per riavviare le call)
LabeledMarker lastMarker = new LabeledMarker(new Location(0, 0)); // utilizzato per cancellare la selezione precedente
LabeledMarker hitMarker; // marker selezionato
Radar radar = new Radar(); // utilizzato per l'effetto radar
UnfoldingMap map; // mappa a cui è collegata la classe
public StateHash(UnfoldingMap map) {
this.map = map;
states = new HashMap(5000);
}
// questo metodo fa l'update in tempo lineare, grazie ad hash, di tutti i valori
void update(JSONArray allStates) {
for (int i = 0; i < allStates.size(); i++) {
try {
JSONArray informations = allStates.getJSONArray(i); //informazioni di ogni aereo i
String flightName = informations.getString(1); // chiave della hash
//se già esiste aggiorno
if (states.get(flightName) != null) {
getMarker(flightName).setLocation(new Location(informations.getFloat(6), informations.getFloat(5)));
getMarker(flightName).info = informations; // nuovi dati JSON
} else {
// altrimenti creo nuovo record
LabeledMarker x = new LabeledMarker(new Location(informations.getFloat(6), informations.getFloat(5)), flightName, informations, p );
states.put(x.name, x);
map.addMarker(x);
}
}
catch(Exception e) {
println("");
}
}
println("updated successfully!");
}
// questo metodo mi permette di castare il tipo e ottenere il marker su cui fare update.
LabeledMarker getMarker(String name) {
return (LabeledMarker)states.get(name);
}
// questa funzione seleziona un marker (un velivolo)
void select() {
try {
hitMarker = (LabeledMarker)map.getFirstHitMarker(mouseX, mouseY);
if (hitMarker != null) {
justClicked = true;
lastMarker.setSelected(false);
lastMarker.p = p;
hitMarker.setSelected(true);
this.markerSelected = true;
hitMarker.p = psel;
lastMarker = hitMarker;
} else {
lastMarker.p = p;
this.markerSelected = false;
}
}
catch(Exception e) {
println("not a number somewhere");
}
}
/** ---------------------------------------- **/
private class Radar {
int radius = 30;
float opacity = 255;
color radarColor = color(0, 161, 231, opacity);
public Radar() {
}
void radarDraw() {
radarColor = color(200, 200, 255, opacity);
ScreenPosition position = hitMarker.getScreenPosition(map);
pushStyle();
noStroke();
fill(radarColor);
ellipse(position.x, position.y, radius, radius);
popStyle();
opacity-=2;
radius+=2;
if (opacity <= 0) {
opacity = 255;
radius = 30;
}
}
}
}