-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathClient.java
199 lines (186 loc) · 9.82 KB
/
Client.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
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.Socket;
import java.util.Arrays;
import java.util.stream.Collectors;
import java.io.IOException;
public class Client {
public static final String RESET = "\u001B[0m";
public static final String GREEN = "\u001B[32m";
public static final String BOLD_ON = "\033[0;1m";
public static final String BOLD_OFF = "\033[0;0m";
public static final String RED = "\u001B[31m";
public static final String BACK = "\u001B[104m";
public static final String NAME = "\u001B[96m";
public static void main(String[] args) throws Exception {
Socket s = new Socket("localhost", 12348);
Demultiplexer d = new Demultiplexer(new Connection(s));
d.start();
BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
int var = 0;
String name = null;// used for the menu
Positions posicaoUser = new Positions();
while (var == 0) {
System.out.print(BOLD_ON + BACK + "\n" + " TrotiUM " + RESET + BOLD_OFF
+ "\n"
+ "Que operação pretende efetuar?\n"
+ "1-> Iniciar sessão\n"
+ "2-> Registar uma nova conta\n"
+ "0-> Sair"
+ "\n"
+ "Insira o número corresponde à operação: ");
String option = stdin.readLine();
if (option.equals("1")) { // início de sessão
System.out.print(
BOLD_ON + BACK + "\n" + " Iniciar Sessão " + RESET + BOLD_OFF
+ "\n"
+ "Introduza o seu username: ");
String username = stdin.readLine();
System.out.print("Introduza a sua password: ");
String password = stdin.readLine();
d.send(0, username, password.getBytes());
String response = new String(d.receive(0));
if (!response.startsWith("Erro")) {
var = 1;
name = username;
}
if (response.startsWith("Conta não existe")) {
System.out.println("\n" + RED + response + RESET + "\n");
}
if (response.startsWith("Erro")) {
System.out.println("\n" + RED + response + RESET + "\n");
}
System.out.println("\n" + GREEN + response + RESET + "\n");
}
else if (option.equals("2")) { // registo de conta
System.out.print("\n" + BOLD_ON + BACK + "\n" + " Registar Nova Conta "
+ RESET + BOLD_OFF
+ "\n"
+ "Introduza um username: ");
String username = stdin.readLine();
System.out.print("Introduza uma palavra-passe: ");
String password = stdin.readLine();
d.send(1, username, password.getBytes());
String response = new String(d.receive(1));
if (!response.startsWith("Erro")) {
System.out.println("Até breve...");
}
var = 0;
System.out.println("\n" + GREEN + response + RESET + "\n");
} else if (option.equals("0")) {
System.out.println("Até breve...");
var = 6;
}
}
while (var == 1) { // tratar da localização
System.out.print(
"\n" + BOLD_ON + BACK + "\n" + " Bem vindo, " + name + " " + RESET
+ BOLD_OFF
+ "\n"
+ "Por favor, insira as coordenadas da sua localização (x,y):"
+ "\n");
String userPos = stdin.readLine().strip();
try {
Positions pos = new Positions(userPos);
posicaoUser = pos;
d.send(2, name, userPos.getBytes());
var = 2;
} catch (IllegalStateException e) {
System.out.println("\n" + RED + "localização inválida - tente novamente." + RESET + "\n");
}
}
String resp = new String(d.receive(2));
while (var == 2) { // tratar da lista das trotinetes disponíveis e respetivas recompensas
System.out.println("-----------------------------------------------------------------");
System.out.println("\n As seguintes trotinetes estão no máximo a D=2 de si:");
String aux = resp;
System.out.println("\n" + GREEN + aux + RESET + "\n");
System.out.println("-----------------------------------------------------------------");
System.out.println("\n Os pares origem-destino com recompensas no nosso mapa são : ");
String recompensa = new String(d.receive(5));
if(recompensa.compareTo("0") == 0) System.out.println(GREEN+ "\n" +"Não existem recompensas disponíveis."+"\n"+RESET);
else{
String[] res = recompensa.split(":", 2);
System.out.println("\n"+"Origens acessíveis a no máximo D=2 de si:" + "\n");
System.out.println(GREEN+res[0]+RESET);
System.out.println("\n"+"Destinos elegíveis para recompensa:" + "\n");
System.out.println(GREEN+res[1]+RESET);
}
System.out.println("-----------------------------------------------------------------");
System.out.println("Insira as coordenadas da trotinete (x,y) que pretende reservar:");
String trotinetePos = stdin.readLine().strip();
if (resp.contains(trotinetePos)) {
try {
Positions posT = new Positions(trotinetePos);
if (posT.getX() <= 20 || posT.getY() <= 20) { // dentro das coordenadas do mapa
d.send(3, trotinetePos, trotinetePos.getBytes());
var = 3;
} else {
System.out.println("-----------------------------------------------------------------");
System.out.println(
"\n" + RED + "Estacionamento Inválido - não pertence às dimensões do mapa" + RESET
+ "\n");
System.out.println("-----------------------------------------------------------------");
}
} catch (IllegalStateException e) {
// destino sai do mapa
System.out.println("\n" + RED + "Localização inválida - tente novamente." + RESET + "\n");
}
} else {
System.out.println("-----------------------------------------------------------------");
System.out.println("\n" + RED + "As coordenadas inseridas não pertencemtà listagem!" + RESET + "\n");
System.out.println("-----------------------------------------------------------------");
aux = "";
}
}
while (var == 3) { // tratar do código de reserva
String answer = new String(d.receive(3));
String[] resposta = answer.split(" ");
System.out.println("-----------------------------------------------------------------");
System.out.println(
"\n" + GREEN + " A viagem com origem em " + resposta[0] + " tem código de reserva " + resposta[1]
+ RESET + "\n");
System.out.println("-----------------------------------------------------------------");
var = 4;
}
// calcular a recompensas
while (var == 4) { // tratar estacionamento1
System.out.println("Insira o código de reserva que lhe foi atribuído e o local estacionamento da trotinete (x,y):");
String posF = stdin.readLine().strip(); //código + posição
try {
String[] separateS = posF.split(" ");
Positions posFinal = new Positions(separateS[1]);
if (posFinal.getX() <= 20 || posFinal.getY() <= 20) { // dentro das coordenadas do mapa
d.send(4, posF, posF.getBytes());
var = 5;
} else {
System.out.println("-----------------------------------------------------------------");
System.out.println(
"\n" + RED + "Estacionamento Inválido - não pertence às dime1sões do mapa" + RESET + "\n");
System.out.println("-----------------------------------------------------------------");
}
} catch (IOException e) {
e.printStackTrace();
}
}
while (var == 5) { // tratar do custo de viagem
String a = new String(d.receive(4));
String [] separateByspaces = a.split(" ");
String custo = separateByspaces[0];
String recompensa = separateByspaces[1];
System.out.println("-----------------------------------------------------------------");
System.out.println("\n" + GREEN + " A viagem tem o custo de " + custo + RESET + "\n");
System.out.println("-----------------------------------------------------------------");
System.out.println("\n" + GREEN + " Ganhou a recompensa " + recompensa + RESET + "\n");
System.out.println("-----------------------------------------------------------------");
var = 6;
}
while (var == 6) {// sai
System.out.println("Até breve...");
break;
}
d.close();
}
}