get rid of std::string
This commit is contained in:
parent
1ba9653578
commit
da54029403
4 changed files with 122 additions and 174 deletions
|
@ -53,7 +53,7 @@ void Keyer::sendCharacter(const char ch)
|
||||||
{
|
{
|
||||||
char morseSymbols[32] {0};
|
char morseSymbols[32] {0};
|
||||||
|
|
||||||
if (!charToMorse(ch, morseSymbols)) {
|
if (!m_morseCode.charToMorse(ch, morseSymbols)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
#include "sidetone.h"
|
#include "sidetone.h"
|
||||||
|
#include "morse.h"
|
||||||
|
|
||||||
class Keyer final
|
class Keyer final
|
||||||
{
|
{
|
||||||
|
@ -58,4 +59,6 @@ class Keyer final
|
||||||
bool m_currentlyKeying {false};
|
bool m_currentlyKeying {false};
|
||||||
bool m_currentlyPausing {false};
|
bool m_currentlyPausing {false};
|
||||||
bool m_keyNextIambicB {false};
|
bool m_keyNextIambicB {false};
|
||||||
|
|
||||||
|
MorseCode m_morseCode;
|
||||||
};
|
};
|
182
src/morse.cpp
182
src/morse.cpp
|
@ -1,87 +1,28 @@
|
||||||
#include <map>
|
#include <cstring>
|
||||||
#include <string>
|
#include <cstdio>
|
||||||
|
|
||||||
|
#include "pico/stdio.h"
|
||||||
|
|
||||||
#include "morse.h"
|
#include "morse.h"
|
||||||
|
|
||||||
std::map<char, std::string> morseMap = {
|
MorseCode::MorseCode() { buildMap(); }
|
||||||
{'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', "-----"},
|
|
||||||
{',', "--..--"},
|
|
||||||
{'.', ".-.-.-"},
|
|
||||||
{'?', "..--.."},
|
|
||||||
{':', "---..."},
|
|
||||||
{'&', ".-..."},
|
|
||||||
// Some WinKeyer compatible mappings …
|
|
||||||
{'\"', ".-..-."}, // " => <RR>
|
|
||||||
{'$', "...-..-"}, // $ => <SX>
|
|
||||||
{'\'', ".----."}, // ' => <WG>
|
|
||||||
{'(', "-.--."}, // ( => <KN>
|
|
||||||
{')', "-.--.-"}, // ) => <KK>
|
|
||||||
{'+', ".-.-."}, // + => <AR>
|
|
||||||
{'-', "-....-"}, // - => <DU>
|
|
||||||
{'/', "-..-."}, // / => <DN>
|
|
||||||
{':', "-.--."}, // : => <KN>
|
|
||||||
{';', ".-.-"}, // ; => <AA>
|
|
||||||
{'<', ".-.-."}, // < => <AR> [sic!]
|
|
||||||
{'=', "-...-"}, // = => <BT>
|
|
||||||
{'>', "...-.-"}, // > == <SK>
|
|
||||||
{'@', ".--.-."}, // @ => <AC>
|
|
||||||
{'[', ".-..."}, // [ => <AS>
|
|
||||||
{'\\', "-..-."}, // \ => <DN>
|
|
||||||
{']', "-.--."}, // ] => <KN> [sic!]
|
|
||||||
};
|
|
||||||
|
|
||||||
bool charToMorse(const char ch, char *morseSymbols)
|
bool MorseCode::charToMorse(const unsigned char ch, char *morseSymbols) {
|
||||||
{
|
|
||||||
size_t index{0};
|
size_t index{0};
|
||||||
|
|
||||||
if (ch != ' ' && !morseMap.contains(ch)) {
|
if (ch != ' ' && morseMap[ch] == nullptr) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ch == ' ') {
|
if (ch == ' ') {
|
||||||
morseSymbols[index++] = 'w';
|
morseSymbols[index++] = 'w';
|
||||||
} else {
|
} else {
|
||||||
for (size_t i = 0; i < morseMap[ch].length(); i++) {
|
for (unsigned int i = 0; i < strlen(morseMap[ch]); i++) {
|
||||||
char m = morseMap[ch][i];
|
char m = morseMap[ch][i];
|
||||||
|
|
||||||
morseSymbols[index++] = m;
|
morseSymbols[index++] = m;
|
||||||
|
|
||||||
if (i < morseMap[ch].length() - 1) {
|
if (i < strlen(morseMap[ch]) - 1) {
|
||||||
morseSymbols[index++] = 'i';
|
morseSymbols[index++] = 'i';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -94,94 +35,31 @@ bool charToMorse(const char ch, char *morseSymbols)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
void MorseCode::sendCharacter(const char ch) {
|
||||||
void refurbishMessage(std::string &msg)
|
char morseSymbols[32]{0};
|
||||||
{
|
|
||||||
// Make the message all upper case
|
|
||||||
std::transform(msg.begin(), msg.end(), msg.begin(), ::toupper);
|
|
||||||
|
|
||||||
// Encode the special characters as we like it
|
if (!charToMorse(ch, morseSymbols)) {
|
||||||
msg = std::regex_replace(msg, std::regex("<BT>"), "=");
|
return;
|
||||||
msg = std::regex_replace(msg, std::regex("<BK>"), "b");
|
|
||||||
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");
|
|
||||||
|
|
||||||
// Remove all other unknown characters
|
|
||||||
msg.erase(remove_if(msg.begin(), msg.end(),
|
|
||||||
[](const char &c) { return c != ' ' && morseMap.find(c) == morseMap.end(); }),
|
|
||||||
msg.end());
|
|
||||||
|
|
||||||
// Remove spaces, if there are too many of them
|
|
||||||
msg = std::regex_replace(msg, std::regex("(\\s+)"), " ");
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
std::string messageToMorse(std::string &msg)
|
|
||||||
{
|
|
||||||
// refurbishMessage(msg);
|
|
||||||
|
|
||||||
std::string morseString {};
|
|
||||||
|
|
||||||
for (unsigned int i = 0; i < msg.length(); i++) {
|
|
||||||
char c = msg[i];
|
|
||||||
if (c == ' ') {
|
|
||||||
morseString.push_back('w');
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ignore and continue with next char, if not found
|
for (unsigned int i = 0; i < strlen(morseSymbols); i++) {
|
||||||
auto search = morseMap.find(c);
|
printf("%c", morseSymbols[i]);
|
||||||
if (search == morseMap.end()) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (unsigned int j = 0; j < morseMap[c].length(); j++) {
|
|
||||||
char m = morseMap[c][j];
|
|
||||||
if (j == 0 && i > 0 && msg[i - 1] != ' ') {
|
|
||||||
morseString.push_back('c');
|
|
||||||
}
|
|
||||||
|
|
||||||
morseString += m;
|
|
||||||
|
|
||||||
if (j < morseMap[c].length() - 1) {
|
|
||||||
morseString.push_back('i');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Append word space if last char was not a blank
|
|
||||||
if (msg.back() != ' ') {
|
|
||||||
morseString.push_back('w');
|
|
||||||
}
|
|
||||||
|
|
||||||
return morseString;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
std::string charToMorse(const char ch)
|
|
||||||
{
|
|
||||||
std::string morseString {};
|
|
||||||
|
|
||||||
if (ch == ' ') {
|
|
||||||
morseString.push_back('w');
|
|
||||||
return morseString;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (unsigned int j = 0; j < morseMap[ch].length(); j++) {
|
|
||||||
char m = morseMap[ch][j];
|
|
||||||
|
|
||||||
morseString += m;
|
|
||||||
|
|
||||||
if (j < morseMap[ch].length() - 1) {
|
|
||||||
morseString.push_back('i');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
morseString.push_back('c');
|
void MorseCode::buildMap() {
|
||||||
|
for (size_t i = 0; i < 256; i++) {
|
||||||
return morseString;
|
if (i == '\"')
|
||||||
|
morseMap[i] = morseTable[0];
|
||||||
|
else if (i == '$')
|
||||||
|
morseMap[i] = morseTable[1];
|
||||||
|
else if (i == '\'')
|
||||||
|
morseMap[i] = morseTable[2];
|
||||||
|
else if (i == '(')
|
||||||
|
morseMap[i] = morseTable[3];
|
||||||
|
else if (i == ')')
|
||||||
|
morseMap[i] = morseTable[4];
|
||||||
|
else if (i >= '+' && i <= ']')
|
||||||
|
morseMap[i] = morseTable[i - 0x26];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
*/
|
|
69
src/morse.h
69
src/morse.h
|
@ -1,3 +1,70 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
bool charToMorse(const char ch, char * morseSymbols);
|
class MorseCode final {
|
||||||
|
public:
|
||||||
|
MorseCode();
|
||||||
|
void sendCharacter(const char ch);
|
||||||
|
bool charToMorse(const unsigned char ch, char *morseSymbols);
|
||||||
|
|
||||||
|
private:
|
||||||
|
void buildMap();
|
||||||
|
const char *morseMap[256] {nullptr};
|
||||||
|
static constexpr const char *morseTable[] = {
|
||||||
|
".-..-.", // " => <RR>
|
||||||
|
"...-..-", // $ => <SX>
|
||||||
|
".----.", // ' => <WG>
|
||||||
|
"-.--.", // ( => <KN>
|
||||||
|
"-.--.-", // ) => <KK>
|
||||||
|
".-.-.", // + => <AR>
|
||||||
|
"--..--", // ,
|
||||||
|
"-....-", // - => <DU>
|
||||||
|
".-.-.-", // .
|
||||||
|
"-..-.", // / => <DN>
|
||||||
|
"-----", // 0
|
||||||
|
".----", // 1
|
||||||
|
"..---", // 2
|
||||||
|
"...--", // 3
|
||||||
|
"....-", // 4
|
||||||
|
".....", // 5
|
||||||
|
"-....", // 6
|
||||||
|
"--...", // 7
|
||||||
|
"---..", // 8
|
||||||
|
"----.", // 9
|
||||||
|
"-.--.", // : => <KN>
|
||||||
|
".-.-", // ; => <AA>
|
||||||
|
".-.-.", // < => <AR> [sic!]
|
||||||
|
"-...-", // = => <BT>
|
||||||
|
"...-.-", // > == <SK>
|
||||||
|
"..--..", // ?
|
||||||
|
".--.-.", // @ => <AC>
|
||||||
|
".-", // 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
|
||||||
|
".-...", // [ => <AS>
|
||||||
|
"-..-.", // \ => <DN>
|
||||||
|
"-.--.", // ] => <KN> [sic!]
|
||||||
|
};
|
||||||
|
};
|
Loading…
Reference in a new issue