-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMorse_Code_Generator.cpp
More file actions
229 lines (211 loc) · 6.68 KB
/
Morse_Code_Generator.cpp
File metadata and controls
229 lines (211 loc) · 6.68 KB
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
#include <iostream>
#include <string>
#include <algorithm>
#include <cctype>
using namespace std;
class MorseCodeConverter
{
protected:
virtual bool isValidInput(const string& input) const
{
// Override this method in derived classes to add specific validation rules
return true;
}
string sanitizeInput(const string& input) const
{
string sanitized = input;
for (char& ch : sanitized)
{
ch = toupper(ch);
}
return sanitized;
}
virtual string convertCharToMorse(char ch) const
{
switch (ch)
{
case 'A': return ".-";
case 'B': return "-...";
case 'C': return "-.-.";
case 'D': return "-..";
case 'E': return ".";
case 'F': return "..-.";
case 'G': return "--.";
case 'H': return "....";
case 'I': return "..";
case 'J': return ".---";
case 'K': return "-.-";
case 'L': return ".-..";
case 'M': return "--";
case 'N': return "-.";
case 'O': return "---";
case 'P': return ".--.";
case 'Q': return "--.-";
case 'R': return ".-.";
case 'S': return "...";
case 'T': return "-";
case 'U': return "..-";
case 'V': return "...-";
case 'W': return ".--";
case 'X': return "-..-";
case 'Y': return "-.--";
case 'Z': return "--..";
case '1': return ".----";
case '2': return "..---";
case '3': return "...--";
case '4': return "....-";
case '5': return ".....";
case '6': return "-....";
case '7': return "--...";
case '8': return "---..";
case '9': return "----.";
case '0': return "-----";
case '.': return ".-.-.-";
case ',': return "--..--";
case '!': return "-.-.--";
case '@': return ".--.-.";
/*
else if (msg[i] == '$')
cout<<"...-..-";
else if (msg[i] == '&')
cout<<".-...";
else if (msg[i] == '-')
cout<<"-....-";
else if (msg[i] == '_')
cout<<"..--.-";
else if (msg[i] == '=')
cout<<"-...-";
else if (msg[i] == '+')
cout<<".-.-.";
else if (msg[i] == ';')
cout<<"-.-.-.";
else if (msg[i] == ':')
cout<<"---...";
else if (msg[i] == '\'')
cout<<".----.";
else if (msg[i] == '"')
cout<<".-..-.";
else if (msg[i] == '/')
cout<<"-..-.";
else if (msg[i] == '?')
cout<<"..--..";
// Add the remaining special characters...
*/
default: return "";
}
}
public:
MorseCodeConverter() = default;
void convertToMorse()
{
while (true) {
system("CLS");
printLogo();
cout << "\n \n ";
string msg = getInput();
string morse = "";
for (char ch : msg) {
morse += (ch == ' ') ? " " : convertCharToMorse(ch) + " ";
}
cout << "\n \t \t Morse Code is : \t" << morse << endl;
if (!askForRepeat()) {
printClosingMessage();
break;
}
}
}
virtual ~MorseCodeConverter() = default;
protected:
virtual void printLogo() const
{
cout << "Put your logo here..." << endl;
}
virtual string getInput() const
{
string input;
while (true)
{
cout << "\t \t Enter the message (use alphanumeric mostly): \t";
getline(cin, input);
if (isValidInput(input))
{
break;
}
else
{
cout << "\t \t Invalid input. Please try again." << endl;
}
}
return sanitizeInput(input);
}
virtual bool askForRepeat() const
{
while (true)
{
cout << "\n \n \t \t Do you want to do it again (Yes/No): ";
string answer;
getline(cin, answer);
transform(answer.begin(), answer.end(), answer.begin(), ::toupper);
if (answer == "YES" || answer == "Y")
{
return true;
}
else if (answer == "NO" || answer == "N")
{
return false;
}
else
{
cout << "\n \t \t Invalid input. Please enter 'Yes' or 'No'." << endl;
}
}
}
virtual void printClosingMessage() const
{
cout << "\n \n \n \n \t \t \t \t \t \t Have a Nice Day !!!" << endl;
}
};
class MorseCodeEnglishConverter : public MorseCodeConverter
{
protected:
bool isValidInput(const string& input) const override
{
// Perform specific validation for English characters
for (char ch : input)
{
if (!isalpha(ch) && ch != ' ')
{
return false;
}
}
return true;
}
string convertCharToMorse(char ch) const override
{
// Override the base class method to handle English characters
if (isalpha(ch))
{
return MorseCodeConverter::convertCharToMorse(toupper(ch));
}
return "";
}
void printLogo() const override
{
system("CLS");
cout<<"\n \n ";
cout<<" \t \t ";cout<<"## ## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ";cout<<endl;
cout<<" \t \t ";cout<<"# # # # # # # # # # # # # # # # ";cout<<endl;
cout<<" \t \t ";cout<<"# # # # # # # # # # # # # # # # ";cout<<endl;
cout<<" \t \t ";cout<<"# # # # # # # # # # # # # # # # # # # # # # # ";cout<<endl;
cout<<" \t \t ";cout<<"# # # # # # # # # # # # # # ";cout<<endl;
cout<<" \t \t ";cout<<"# # # # # # # # # # # # # # ";cout<<endl;
cout<<" \t \t ";cout<<"# # # # # # # # # # # # # # # # # # # # # # # # # # # # # ";cout<<endl;
}
};
int main()
{
system("color 7c");
MorseCodeEnglishConverter converter;
converter.convertToMorse();
return 0;
}