-
Notifications
You must be signed in to change notification settings - Fork 0
/
SerieConsoleUtils.cs
312 lines (260 loc) · 9.65 KB
/
SerieConsoleUtils.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
namespace MyAppDeSeries
{
internal static class SerieConsoleUtils
{
static readonly RepositorySerieIM repo = RepositorySerieIM.GetInstance();
public static void Adiciona()
{
Serie serie = ObterSerie();
repo.Adiciona(serie);
Console.WriteLine($"O cadastro da série \"{serie.Titulo}\" foi adicionado!");
Console.WriteLine();
}
public static void Listar()
{
List<Serie> lista = repo.Listar();
Console.Clear();
if (lista.Count < 1)
{
Console.WriteLine("Nenhuma série cadastrada."
+ Environment.NewLine);
return;
}
int digits = lista.Count.ToString().Length;
int idigits;
for (int i = 0; i < lista.Count; i++)
{
idigits = (i + 1).ToString().Length;
string espaco = Serie.ConstroiBarra(" ", digits - idigits);
Console.WriteLine($"{espaco}{i+1} - {lista[i].Titulo}");
}
Console.WriteLine();
}
public static void Retorna()
{
int tamLista = repo.Listar().Count;
if (tamLista < 1)
{
Console.Clear();
MsgErr("Não há nenhuma série catalogada para visualizar!");
Console.WriteLine();
return;
}
VerLista();
do
{
Console.WriteLine("Digite o índice da série para ver as informações: ");
if (!int.TryParse(Console.ReadLine(), out int index))
{
MsgErr("Não foi possível ler um número! Tente novamente.");
continue;
}
else if (index < 1 || index > tamLista)
{
MsgErr();
continue;
}
Console.Clear();
try
{
Console.WriteLine(repo.Retorna(index - 1));
}
catch (Exception ex)
{
MsgErr(ex.Message + " Tente aumentar/redimensionar" +
" a janela da aplicação");
continue;
}
Console.WriteLine("Estas são as informações do cadastro da série");
Console.WriteLine();
break;
} while (true);
}
public static void Atualiza()
{
int tamLista = repo.Listar().Count;
if (tamLista < 1)
{
Console.Clear();
MsgErr("Não há nenhuma série catalogada para atualizar!");
Console.WriteLine();
return;
}
VerLista();
do
{
Console.WriteLine("Digite o índice da série para atualizar: ");
if (!int.TryParse(Console.ReadLine(), out int index))
{
MsgErr("Não foi possível ler um número! Tente novamente.");
continue;
}
else if (index < 1 || index > tamLista)
{
MsgErr();
continue;
}
Console.WriteLine("Para atualizar...");
Serie serie = ObterSerie();
repo.Atualizar(index - 1, serie);
Console.WriteLine($"O cadastro da série \"{serie.Titulo}\" foi atualizado!");
Console.WriteLine();
break;
} while (true);
}
public static void Remove()
{
int tamLista = repo.Listar().Count;
if (tamLista < 1)
{
Console.Clear();
MsgErr("Não há nenhuma série catalogada para excluir!");
Console.WriteLine();
return;
}
VerLista();
do
{
Console.WriteLine("Digite o índice da série para excluir: ");
if (!int.TryParse(Console.ReadLine(), out int index))
{
MsgErr("Não foi possível ler um número! Tente novamente.");
continue;
}
else if (index < 1 || index > tamLista)
{
MsgErr();
continue;
}
Serie temp = repo.Retorna(index - 1);
repo.Remove(index - 1);
Console.Clear();
Console.WriteLine("O cadastro da série " +
$"\"{temp.Titulo}\" foi removido!");
Console.WriteLine();
break;
} while (true);
}
private static Serie ObterSerie()
{
Console.WriteLine("Digite o nome/título da série: ");
string titulo = Console.ReadLine();
Console.WriteLine("Faça uma breve descrição da série: ");
string descricao = Console.ReadLine();
uint ano;
do
{
Console.WriteLine("Forneça o ano de lançamento da série:");
if (uint.TryParse(Console.ReadLine(), out ano))
{
Console.Clear();
break;
}
MsgErr("Entrada invalída! Tente novamente.");
} while (true);
GenerosDeSerie genero;
do
{
ListarGeneros();
Console.WriteLine("Diga qual o gênero da série: ");
bool fim = int.TryParse(Console.ReadLine(), out int generoNum);
if (!fim)
{
Console.Clear();
MsgErr("Entrada inválida! Tente novamente.");
Console.WriteLine();
}
else
{
if (Enum.IsDefined(typeof(GenerosDeSerie), generoNum - 1))
{
genero = (GenerosDeSerie)(generoNum - 1);
}
else
{
Console.Clear();
MsgErr("Não está na lista!");
Console.WriteLine();
continue;
}
break;
}
} while (true);
Console.Clear();
return new Serie(titulo, descricao, ano, genero);
}
private static void ListarGeneros()
{
Array arrayGen = Enum.GetValues(typeof(GenerosDeSerie));
int digits = arrayGen.Length.ToString().Length;
int idigits;
for (int i = 0; i < arrayGen.Length; i++)
{
idigits = (i + 1).ToString().Length;
string espaco = Serie.ConstroiBarra(" ", digits - idigits);
Console.WriteLine($"{espaco}{i+1} - {arrayGen.GetValue(i)}");
}
Console.WriteLine();
}
private static void VerLista()
{
ConsoleKeyInfo keyInfo;
do
{
Console.WriteLine("Deseja ver a lista das séries antes? [s/n] ");
keyInfo = Console.ReadKey();
if (keyInfo.KeyChar == 's')
{
Listar();
break;
}
else if (keyInfo.KeyChar == 'n')
{
Console.Clear();
Console.WriteLine("Pulando listagem...");
break;
}
else
{
var pos = Console.GetCursorPosition();
if (pos.Left > 0)
{
Console.SetCursorPosition(pos.Left - 1, pos.Top);
}
MsgErr("Tecla inválida. Tente novamente.");
continue;
}
} while (true);
}
internal static void MsgErr()
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Error.WriteLine("Índice inválido. Tente novamente.");
Console.ResetColor();
}
internal static void MsgErr(string msg)
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Error.WriteLine(msg);
Console.ResetColor();
}
internal static void MsgErr(string msg,
ConsoleColor? foreColor,
ConsoleColor? backColor)
{
if (foreColor != null)
{
Console.ForegroundColor = foreColor.Value;
}
if (backColor != null)
{
Console.BackgroundColor = backColor.Value;
}
Console.Error.WriteLine(msg);
Console.ResetColor();
}
}
}