-
Notifications
You must be signed in to change notification settings - Fork 0
/
GrafoGrafico.java
403 lines (343 loc) · 14.5 KB
/
GrafoGrafico.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/**
* Projeto Konigsberg se propõem a realizar o trabalho de EDII, proposto pelo professor Ricardo Matsumura Araújo.
* O repositório recebe o nome 'Königsberg' em referencia ao problema histórico relacionado aos grafos
* @author glaucoroberto
* @version 0.1
*/
import com.mxgraph.swing.mxGraphComponent;
import com.mxgraph.view.mxGraph;
import java.util.HashMap;
import java.util.Random;
import javax.swing.JFrame;
public class GrafoGrafico extends Grafo{
public GrafoGrafico(){
super();
}
/**
* Método que faz a leitura de dados e faz o retonro
* de cada comando inserido
* Para ver mais sobre 'comandos' leia o README
*/
@Override
public void lerComandos(){
/**
* tipoComando
* 0 = Queries
* 1 = Arcs ou edgues
* 2 = Vertices
*/
int tipoComando=0;
String comando = leitor.nextLine();
boolean leuSeEDirecionado = false;
boolean tipoLido;
String nomeQueRecebera;
int idQueRecebera;
int valorQueRecebera;
int inicioDoNome;
HashMap<String, Integer> caseHash = new HashMap<String, Integer>();
caseHash.put("get", 1);
caseHash.put("delete", 2);
caseHash.put("vizinhos", 3);
caseHash.put("conexao", 4);
caseHash.put("ordemtopologica", 5);
caseHash.put("arvoreminima", 6);
caseHash.put("menorcaminho", 7);
caseHash.put("remove", 8);
caseHash.put("modografico", 9);
/**
* Enquando não houver condição de parada prosegue
*/
while( !comando.equals("@")){
comando = comando.toLowerCase();
tipoLido = false;
String parteComando[] = comando.split(" ");
//Se for apenas uma linha quer dizer que mudará o tipo de comando
// os que seguirá são desse tipo
if(parteComando.length == 1){
if(parteComando[0].equals("*queries")){
tipoComando = 0;
tipoLido = true;
}else{
if(parteComando[0].equals("*arcs") || parteComando[0].equals("*edges") ){
tipoComando = 2;
if(!leuSeEDirecionado){
leuSeEDirecionado = true;
tipoLido = true;
if(parteComando[0].equals("*arcs")){
Vertice.setItsDirecionado(true);
}else{
Vertice.setItsDirecionado(false);
}
}
}else{
if( parteComando[0].equals("*vertices")){
tipoComando = 1;
tipoLido = true;
}
}
}
}else{
if( parteComando[0].equals("*vertices")){
tipoComando = 1;
tipoLido = true;
if(numMaximoDeVertice == Integer.MIN_VALUE){
int numeroMax = Integer.parseInt(parteComando[1]);
if(numeroMax >= 0){
numMaximoDeVertice = numeroMax;
}
}
}
}
//Em posse do tipo de comando segue-se o entendimento do comando
if(tipoLido == false){
switch(tipoComando){
case 0:
//QUERIE
//try{
switch (caseHash.containsKey(parteComando[0]) ? caseHash.get(parteComando[0]) : -1) {
case 1: {
// Get Vertice
System.out.println(this.getJSONid(Integer.parseInt(parteComando[1])));
break;
}
case 2: {
// Remove Vértice
System.out.println(this.deleteJSONid(Integer.parseInt(parteComando[1])));
break;
}
case 3: {
// Vizinhos
System.out.println(this.getVizinhoJSONid(Integer.parseInt(parteComando[1])));
break;
}
case 4: {
// Conexão
System.out.println(this.getConexaoJSONconexaoid( Integer.parseInt(parteComando[1]),Integer.parseInt(parteComando[2])));
break;
}
case 5: {
// Ordem Topológica
System.out.printf(this.getOrdemTopologicaJSON());
break;
}
case 6: {
System.out.printf(this.getArvoreMinimaJSON());
break;
}
case 7: {
// Menor Caminho
System.out.println(this.getMenorCaminhoJSON( Integer.parseInt(parteComando[1]),Integer.parseInt(parteComando[2])));
break;
}
case 8: {
// Remover Aresta
System.out.println(this.removeArestaJSONid(Integer.parseInt(parteComando[1]),Integer.parseInt(parteComando[2])));
break;
}
case 9: {
int a, b;
try{
a = Integer.parseInt(parteComando[1]);
b = Integer.parseInt(parteComando[2]);
if(b < 600)
b = 600;
if(a < 800)
a = 800;
}catch(Exception e){
}
a = 1204;
b = 768;
this.modoGrafico(raiz,a,b);
}
default:{
}
}
//}
//catch(Exception eee){
//}
break;
case 1:
//VERTICE
try{
if( numDeVertices >= numMaximoDeVertice){
break;
}else{
idQueRecebera = Integer.parseInt(parteComando[0]);
if(idQueRecebera >= 0){
inicioDoNome = comando.indexOf("\"");
nomeQueRecebera = comando.substring(inicioDoNome, comando.length()-1);
raiz.setNovoVertice(idQueRecebera, nomeQueRecebera);
numDeVertices++;
}
}
}catch(Exception eeee){
}
break;
case 2:
//ARESTA
try{
valorQueRecebera = Integer.parseInt(parteComando[2]);
if(valorQueRecebera >= 0)
raiz.setNovaAresta(Integer.parseInt(parteComando[0]),Integer.parseInt(parteComando[1]),valorQueRecebera);
}catch(Exception eee){
}
break;
}
}
comando = leitor.nextLine();
}
}
/**
* Método que cria o grafo segundo o seu estado atual
* @param Vertice grafo - rais do grafo
* @param int width
* @param int height
*/
public void modoGrafico(Vertice grafo, int width, int height){
InterfaceGrafica frame = new InterfaceGrafica(grafo,width,height);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(width, height);
frame.setVisible(true);
frame.inicializar();
}
public static void main(String args[]){
GrafoGrafico grafo = new GrafoGrafico();
grafo.inicialize();
grafo.lerComandos();
}
}
/**
* Classe do JFrame do Grafo
* serve apenas para a geração do grafo
* @author glaucoroberto
*/
class InterfaceGrafica extends JFrame {
private static final long serialVersionUID = -2707712944901661771L;
private Vertice g;
private int width;
private int height;
private mxGraph graph;
private Object parent;
mxGraphComponent graphComponent;
public InterfaceGrafica(Vertice g, int width, int height) {
super("Grafos");
this.g = g;
this.width = width;
this.height = height;
/**
* Inicia o grafo
*/
graph = new mxGraph();
parent = graph.getDefaultParent();
graph.getModel().beginUpdate();
/**
* Finaliza o grafo para exibição
*/
graph.getModel().endUpdate();
graphComponent = new mxGraphComponent(graph);
graph.setMultigraph(false);
graph.setAllowDanglingEdges(false);
graphComponent.setConnectable(false);
graphComponent.setToolTips(false);
getContentPane().add(graphComponent);
}
public void algoritmoAtracaoRepulsao(){
this.graph.refresh();
this.graph.getModel().beginUpdate();
this.graph.getModel().endUpdate();
this.repaint();
graph.repaint();
this.graphComponent = new mxGraphComponent(graph);
graph.setMultigraph(false);
graph.setAllowDanglingEdges(false);
this.graphComponent.setConnectable(false);
this.graphComponent.setToolTips(false);
getContentPane().add(graphComponent);
Vertice verticeTemp = g.getProximoVertice();
Vertice verticeVizinho;
Aresta arestaTemp;
int[] vizinhosID;
int newX, newY;
int id;
while(verticeTemp != null ){
id = verticeTemp.getID();
vizinhosID = g.getVizinhos(id);
System.out.printf("Tem %d vizinhos",vizinhosID.length);
for(int a=0; a < vizinhosID.length; a++){
verticeVizinho = g.getVerticeExists(vizinhosID[a]);
newX = (verticeTemp.getX() + verticeVizinho.getX())/2;
newY = (verticeTemp.getY() + verticeVizinho.getY())/2;
if ((newX < verticeTemp.getX()+30) || (newX < getX()+(-30))){
verticeVizinho.setX(newX);
} else {
verticeVizinho.setX(verticeTemp.getX()+50);
}
if ((newY < verticeTemp.getY()+30) || (newY < getY()+(-30))){
verticeVizinho.setY(newY);
} else {
verticeVizinho.setY(verticeTemp.getX()+50);
}
}
verticeTemp = verticeTemp.getProximoVertice();
}
/**
* Insere ao vertice posições aleatorias
*/
verticeTemp = g.getProximoVertice();
while(verticeTemp != null){
Object o = graph.insertVertex(parent, null, verticeTemp.getID() , verticeTemp.getY(),verticeTemp.getX(), 30, 30, "shape=ellipse;");
verticeTemp.setObject(o);
verticeTemp = verticeTemp.getProximoVertice();
}
/**
* Insere aresta segundo cada vertice
*/
verticeTemp = g.getProximoVertice();
while(verticeTemp != null){
arestaTemp = verticeTemp.getProximaAresta();
while(arestaTemp != null){
graph.insertEdge(parent, null, arestaTemp.getValor(), verticeTemp.getObject(), g.getVerticeExists(arestaTemp.getVerticeID()).getObject());
arestaTemp = arestaTemp.getProximaAresta();
}
verticeTemp = verticeTemp.getProximoVertice();
}
}
public void inicializar(){
graph.refresh();
graph.getModel().beginUpdate();
graph.getModel().endUpdate();
this.repaint();
graph.getModel().endUpdate();
mxGraphComponent graphComponent = new mxGraphComponent(graph);
graph.setMultigraph(false);
graph.setAllowDanglingEdges(false);
graphComponent.setConnectable(false);
graphComponent.setToolTips(false);
getContentPane().add(graphComponent);
Random random = new Random();
Vertice verticeTemp = g.getProximoVertice();
Aresta arestaTemp;
/**
* Insere ao vertice posições aleatorias
*/
while(verticeTemp != null){
verticeTemp.setY(random.nextInt(width-30));
verticeTemp.setX(random.nextInt(height-30));
Object o = graph.insertVertex(parent, null, verticeTemp.getID() , verticeTemp.getY(),verticeTemp.getX(), 30, 30, "shape=ellipse;");
verticeTemp.setObject(o);
verticeTemp = verticeTemp.getProximoVertice();
}
/**
* Insere aresta segundo cada vertice
*/
verticeTemp = g.getProximoVertice();
while(verticeTemp != null){
arestaTemp = verticeTemp.getProximaAresta();
while(arestaTemp != null){
graph.insertEdge(parent, null, arestaTemp.getValor(), verticeTemp.getObject(), g.getVerticeExists(arestaTemp.getVerticeID()).getObject());
arestaTemp = arestaTemp.getProximaAresta();
}
verticeTemp = verticeTemp.getProximoVertice();
}
}
}