2018-07-11 23:09:22 -04:00
|
|
|
#ifndef VARICODE_H
|
|
|
|
#define VARICODE_H
|
|
|
|
|
2018-07-12 09:54:56 -04:00
|
|
|
/**
|
|
|
|
* (C) 2018 Jordan Sherer <kn4crd@gmail.com> - All Rights Reserved
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <QBitArray>
|
2018-07-12 15:14:41 -04:00
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QRegExp>
|
2018-07-11 23:09:22 -04:00
|
|
|
#include <QString>
|
2018-07-12 09:54:56 -04:00
|
|
|
#include <QVector>
|
2018-07-11 23:09:22 -04:00
|
|
|
|
|
|
|
class Varicode
|
|
|
|
{
|
|
|
|
public:
|
2018-07-18 16:45:27 -04:00
|
|
|
enum FrameType{
|
|
|
|
FT8 = 0, // [000]
|
|
|
|
FT8Fox = 1, // [001]
|
|
|
|
FT8Call = 2, // [010]
|
|
|
|
FT8CallLast = 3, // [011] <- used to indicate last frame in transmission
|
|
|
|
FT8CallReservedA = 4, // [100]
|
|
|
|
FT8CallReservedB = 5, // [101]
|
|
|
|
FT8CallReservedC = 6, // [110]
|
|
|
|
FT8CallReservedD = 7, // [111]
|
|
|
|
};
|
|
|
|
|
2018-07-11 23:09:22 -04:00
|
|
|
//Varicode();
|
|
|
|
|
2018-07-20 11:40:55 -04:00
|
|
|
static QString formatSNR(int snr);
|
2018-07-21 02:18:15 -04:00
|
|
|
static QString formatPWR(int dbm);
|
2018-07-20 11:40:55 -04:00
|
|
|
|
2018-07-24 23:10:47 -04:00
|
|
|
static QString checksum16(QString const &input);
|
|
|
|
static bool checksum16Valid(QString const &checksum, QString const &input);
|
|
|
|
|
|
|
|
static QString checksum32(QString const &input);
|
|
|
|
static bool checksum32Valid(QString const &checksum, QString const &input);
|
2018-07-23 08:51:29 -04:00
|
|
|
|
2018-07-12 15:14:41 -04:00
|
|
|
static QStringList parseCallsigns(QString const &input);
|
|
|
|
static QStringList parseGrids(QString const &input);
|
|
|
|
|
2018-07-12 20:31:45 -04:00
|
|
|
static QList<QVector<bool>> huffEncode(QString const& text);
|
|
|
|
static QVector<bool> huffFlatten(QList<QVector<bool>> &list);
|
2018-07-19 03:44:02 -04:00
|
|
|
static QString huffDecode(QVector<bool> const& bitvec, int pad=0);
|
2018-07-12 15:14:41 -04:00
|
|
|
|
2018-07-15 15:43:29 -04:00
|
|
|
static QVector<bool> bytesToBits(char * bitvec, int n);
|
2018-07-12 18:02:54 -04:00
|
|
|
static QVector<bool> strToBits(QString const& bitvec);
|
|
|
|
static QString bitsToStr(QVector<bool> const& bitvec);
|
2018-07-12 09:54:56 -04:00
|
|
|
|
2018-07-12 18:02:54 -04:00
|
|
|
static QVector<bool> intToBits(quint64 value, int expected=0);
|
|
|
|
static quint64 bitsToInt(QVector<bool> const value);
|
2018-07-15 15:43:29 -04:00
|
|
|
static quint64 bitsToInt(QVector<bool>::ConstIterator start, int n);
|
2018-07-12 09:54:56 -04:00
|
|
|
|
2018-07-12 18:02:54 -04:00
|
|
|
static quint8 unpack5bits(QString const& value);
|
|
|
|
static QString pack5bits(quint8 packed);
|
2018-07-12 09:54:56 -04:00
|
|
|
|
2018-07-23 15:28:36 -04:00
|
|
|
static quint8 unpack6bits(QString const& value);
|
|
|
|
static QString pack6bits(quint8 packed);
|
|
|
|
|
2018-07-12 18:02:54 -04:00
|
|
|
static quint16 unpack16bits(QString const& value);
|
|
|
|
static QString pack16bits(quint16 packed);
|
2018-07-12 09:54:56 -04:00
|
|
|
|
2018-07-12 18:02:54 -04:00
|
|
|
static quint32 unpack32bits(QString const& value);
|
|
|
|
static QString pack32bits(quint32 packed);
|
|
|
|
|
|
|
|
static quint64 unpack64bits(QString const& value);
|
|
|
|
static QString pack64bits(quint64 packed);
|
2018-07-13 00:55:48 -04:00
|
|
|
|
2018-07-23 15:28:36 -04:00
|
|
|
static quint32 packCallsignPrefixSuffix(QString const& value);
|
|
|
|
static QString unpackCallsignPrefixSuffix(quint32 packed);
|
|
|
|
|
2018-07-13 00:55:48 -04:00
|
|
|
static quint32 packCallsign(QString const& value);
|
|
|
|
static QString unpackCallsign(quint32 value);
|
|
|
|
|
2018-07-13 21:59:54 -04:00
|
|
|
static quint16 packGrid(QString const& value);
|
|
|
|
static QString unpackGrid(quint16 value);
|
|
|
|
|
2018-07-19 02:09:19 -04:00
|
|
|
static bool isCommandAllowed(const QString &cmd);
|
2018-07-24 02:47:14 -04:00
|
|
|
|
|
|
|
static QString packCompoundMessage(const QString &baseCallsign, const QString &fix, bool isPrefix, quint16 num);
|
|
|
|
static QStringList unpackCompoundMessage(const QString &text);
|
|
|
|
|
2018-07-15 13:03:16 -04:00
|
|
|
static QString packDirectedMessage(QString const& text, QString const& callsign, int *n);
|
2018-07-13 04:42:23 -04:00
|
|
|
static QStringList unpackDirectedMessage(QString const& text);
|
2018-07-19 03:44:02 -04:00
|
|
|
|
|
|
|
static QString packDataMessage(QString const& text, int *n);
|
|
|
|
static QString unpackDataMessage(QString const& text);
|
2018-07-11 23:09:22 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VARICODE_H
|