raspikeyer/src/morse.cpp

109 lines
3.5 KiB
C++
Raw Normal View History

2024-02-23 08:58:48 +01:00
#include <algorithm>
#include <map>
#include <regex>
#include "morse.h"
2024-02-25 21:28:42 +01:00
static std::map<char, std::string> morseCode = {
2024-02-25 21:37:37 +01:00
{'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', "-----"},
{',', "--..--"}, {'.', ".-.-.-"}, {'?', "..--.."}, {'/', "-..-."}, {'-', "-....-"}, {':', "---..."},
{'&', ".-..."}, {'\'', ".----."}, {'@', ".--.-."}, {')', "-.--.-"}, {'(', "-.--."}, {'\"', ".-..-."},
{'=', "-...-"}, // '=' == <BT>
{'b', "-...-.-"}, // '=' == <BK>
{'k', "-.--."}, // k == <KN>
{'s', "...-.-"}, // s == <SK>
{'+', ".-.-."}, // + == <AR>
{'a', "-.-.-"}, // a == <KA>
2024-02-23 08:58:48 +01:00
};
2024-02-23 23:26:59 +01:00
void refurbishMessage(std::string &msg)
2024-02-23 08:58:48 +01:00
{
// Make the message all upper case
2024-02-23 23:26:59 +01:00
std::transform(msg.begin(), msg.end(), msg.begin(), ::toupper);
2024-02-23 08:58:48 +01:00
// Encode the special characters as we like it
2024-02-25 21:28:42 +01:00
msg = std::regex_replace(msg, std::regex("<BT>"), "=");
2024-02-25 21:37:37 +01:00
msg = std::regex_replace(msg, std::regex("<BK>"), "b");
2024-02-25 21:28:42 +01:00
msg = std::regex_replace(msg, std::regex("<KN>"), "k");
msg = std::regex_replace(msg, std::regex("<SK>"), "s");
msg = std::regex_replace(msg, std::regex("<AR>"), "+");
msg = std::regex_replace(msg, std::regex("<KA>"), "a");
2024-02-23 08:58:48 +01:00
// Remove all other unknown characters
2024-02-25 21:28:42 +01:00
msg.erase(remove_if(msg.begin(), msg.end(),
2024-02-25 21:37:37 +01:00
[](const char &c) { return c != ' ' && morseCode.find(c) == morseCode.end(); }),
msg.end());
2024-02-23 08:58:48 +01:00
// Remove spaces, if there are too many of them
2024-02-25 21:28:42 +01:00
msg = std::regex_replace(msg, std::regex("(\\s+)"), " ");
2024-02-23 14:29:36 +01:00
}
2024-02-23 23:26:59 +01:00
std::string messageToMorse(std::string &msg)
2024-02-23 14:29:36 +01:00
{
2024-02-23 23:26:59 +01:00
refurbishMessage(msg);
2024-02-23 14:29:36 +01:00
2024-02-25 21:37:37 +01:00
std::string morseString {};
2024-02-23 23:26:59 +01:00
for (unsigned int i = 0; i < msg.length(); i++) {
char c = msg[i];
2024-02-23 14:29:36 +01:00
if (c == ' ') {
2024-02-25 21:28:42 +01:00
morseString.push_back('w');
2024-02-23 14:29:36 +01:00
continue;
}
// Ignore and continue with next char, if not found
auto search = morseCode.find(c);
if (search == morseCode.end()) {
continue;
}
for (unsigned int j = 0; j < morseCode[c].length(); j++) {
2024-02-25 21:37:37 +01:00
char m = morseCode[c][j];
2024-02-23 23:26:59 +01:00
if (j == 0 && i > 0 && msg[i - 1] != ' ') {
2024-02-25 21:28:42 +01:00
morseString.push_back('c');
2024-02-23 14:29:36 +01:00
}
morseString += m;
if (j < morseCode[c].length() - 1) {
2024-02-25 21:28:42 +01:00
morseString.push_back('i');
2024-02-23 14:29:36 +01:00
}
}
}
// Append word space if last char was not a blank
2024-02-23 23:26:59 +01:00
if (msg.back() != ' ') {
2024-02-26 15:57:13 +01:00
morseString.push_back('w');
2024-02-23 14:29:36 +01:00
}
return morseString;
2024-02-26 15:19:11 +01:00
}
std::string charToMorse(char ch) {
std::string morseString {};
if (ch == ' ') {
morseString.push_back('w');
return morseString;
}
for (unsigned int j = 0; j < morseCode[ch].length(); j++) {
char m = morseCode[ch][j];
morseString += m;
if (j < morseCode[ch].length() - 1) {
morseString.push_back('i');
}
}
2024-02-26 15:57:13 +01:00
morseString.push_back('c');
2024-02-26 15:19:11 +01:00
return morseString;
2024-02-23 08:58:48 +01:00
}