-
Notifications
You must be signed in to change notification settings - Fork 1
/
translator.py
172 lines (134 loc) · 4.44 KB
/
translator.py
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
class MorseCodeTranslator(object):
"""
Classe para realizar traduções de código morse.
"""
__morse_code = {
'A':'.-',
'B':'-...',
'C':'-.-.',
'D':'-..',
'E':'.',
'F':'..-.',
'G':'--.',
'H':'....',
'I':'..',
'J':'.---',
'K':'-.-',
'L':'.-..',
'M':'--',
'N':'-.',
'O':'---',
'P':'.--.',
'Q':'--.-',
'R':'.-.',
'S':'...',
'T':'-',
'U':'..-',
'V':'...-',
'W':'.--',
'X':'-..-',
'Y':'-.--',
'Z':'--..',
'1':'.----',
'2':'..---',
'3':'...--',
'4':'....-',
'5':'.....',
'6':'-....',
'7':'--...',
'8':'---..',
'9':'----.',
'0':'-----',
'.':'.-.-.-',
',':'--..--',
'?':'..--..',
'‘':'.----.',
'!':'.-.--',
'/':'-..-.',
'(':'-.--.',
')':'-.--.-',
'&':'.-...',
':':'---...',
';':'-.-.-.',
'=':'-...-',
'-':'-....-',
'_':'..--.-',
'"':'.-..-.',
'$':'...-..-',
'@':'.--.-.',
}
errorChar = "�"
@staticmethod
def getMorseCodeTable():
"""
Método para obter um dicionário com os caracteres
e seus respectivos códigos morse.
"""
return MorseCodeTranslator.__morse_code
@staticmethod
def isMorse(text):
"""
Método para verificar se o texto está em código morse ou não.
"""
return all(
map( lambda char: False if not char in [".","-"," ","/","\n",MorseCodeTranslator.errorChar] else True , text)
)
@staticmethod
def translate(text):
"""
Método para traduzir o texto.
"""
new_text = ""
# Verifica se o texto é um código morse.
if MorseCodeTranslator.isMorse(text):
# Divide as letras codificadas do texto.
text = text.split(" ")
for char in text:
# Caso o caractere seja uma barra, ele será substituído por espaçamento.
if char == "/":
new_text += " "
continue
# Verifica se é possível converter o caractere.
if char == MorseCodeTranslator.errorChar:
if "\n" in char:
new_text += "\n"
continue
for (key,value) in MorseCodeTranslator.__morse_code.items():
# Verifica se existe uma quebra de linha junto do caractere.
# Se sim, sua posição será obtida.
if "\n" in char:
nextLine_i = char.index("\n")
else:
nextLine_i = -1
# Transforma o código morse para caractere ASCII.
if char.replace("\n","") == value:
# Adiciona caractere ao novo texto.
if nextLine_i != -1:
# Verifica se a quebra de linha vem antes ou depois do caractere.
if nextLine_i == 0:
new_text += "\n" + key
else:
new_text += key + "\n"
else:
new_text += key
# Codifica o texto para código morse.
else:
for char in text.upper():
# Verifica se o caractere é uma quebra de linha.
if char == "\n":
new_text += "\n"
continue
# Caso o caractere seja um espaçamento, ele será substituído por uma barra.
elif char.isspace():
new_text += "/ "
continue
# Tenta converter o caractere para código morse.
try:
new_text += MorseCodeTranslator.__morse_code[char] + " "
except KeyError:
new_text += MorseCodeTranslator.errorChar + " "
# Retira espaço do início.
if new_text.endswith("/"):
new_text = new_text[:-2]
# Retorna o novo texto.
return new_text.strip().capitalize()