mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-07-26 18:52:27 -04:00
------------------------------------------------------------------------ r8060 | k1jt | 2017-09-01 13:51:42 +0100 (Fri, 01 Sep 2017) | 2 lines Add a link to G3WDG doc on using QRA64 for microwave EME. ------------------------------------------------------------------------ r8061 | k1jt | 2017-09-01 17:22:19 +0100 (Fri, 01 Sep 2017) | 1 line Fix a misspelled word. ------------------------------------------------------------------------ r8062 | bsomervi | 2017-09-01 21:10:35 +0100 (Fri, 01 Sep 2017) | 7 lines Rationalize NA contest mode Generic message packing and unpacking routines now understand antipode grid contest messages. These messages are now recognized as standard messages in message response processing and dealt with appropriately when contest mode is selected and applicable (currently FT8 and MSK144 only). ------------------------------------------------------------------------ r8063 | bsomervi | 2017-09-01 21:43:45 +0100 (Fri, 01 Sep 2017) | 1 line Fix issue compiling with Qt older than v5.7 ------------------------------------------------------------------------ r8064 | bsomervi | 2017-09-01 22:29:02 +0100 (Fri, 01 Sep 2017) | 7 lines Fix issues with type 2 compound calls in contest mode Message generation in contest mode now generates the correct Tx3 for type 2 calls. "<type-2> 73" is a free text so needed special handling in message processing. ------------------------------------------------------------------------ r8065 | bsomervi | 2017-09-01 23:22:20 +0100 (Fri, 01 Sep 2017) | 11 lines Improved message generation for type 2 calls in contest mode These attempt to ensure that a prefix is logged by the QSO partner even if the compound call holder user Tx3 to tail-end a QSO. The type 2 message generation options are largely overridden in contest mode as only a few options make sense. Key is that Tx1 may use only the base call when calling split is necessary, this requires that both Tx3 and Tx4 have the full compound call otherwise the QSO partner will never see the full call until it is possibly too late i.e. post logging. ------------------------------------------------------------------------ r8066 | bsomervi | 2017-09-02 00:28:44 +0100 (Sat, 02 Sep 2017) | 5 lines Fix erroneous auto stop critera for auto reply in FT8 We cannot assume that a "DE <dx-call> <anything>" is or is not for us so we must continue calling and risk possible QRM. Calling split avoids this issue. ------------------------------------------------------------------------ git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.8@8067 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
86 lines
2.4 KiB
C++
86 lines
2.4 KiB
C++
// -*- Mode: C++ -*-
|
|
/*
|
|
* Class to handle the formatted string as returned from the fortran decoder
|
|
*
|
|
* VK3ACF August 2013
|
|
*/
|
|
|
|
|
|
#ifndef DECODEDTEXT_H
|
|
#define DECODEDTEXT_H
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
/*
|
|
012345678901234567890123456789012345678901
|
|
^ ^ ^ ^ ^ ^
|
|
2343 -11 0.8 1259 # CQ VP2X/GM4WJS GL33
|
|
2343 -11 0.8 1259 # CQ 999 VP2V/GM4WJS
|
|
2343 -11 0.8 1259 # YV6BFE F6GUU R-08
|
|
2343 -19 0.3 718 # VE6WQ SQ2NIJ -14
|
|
2343 -7 0.3 815 # KK4DSD W7VP -16
|
|
2343 -13 0.1 3627 @ CT1FBK IK5YZT R+02
|
|
|
|
0605 Tx 1259 # CQ VK3ACF QF22
|
|
*/
|
|
|
|
class DecodedText
|
|
{
|
|
public:
|
|
explicit DecodedText (QString const& message, bool, QString const& my_grid);
|
|
|
|
QString string() const { return string_; };
|
|
QStringList messageWords () const;
|
|
int indexOf(QString s) const { return string_.indexOf(s); };
|
|
int indexOf(QString s, int i) const { return string_.indexOf(s,i); };
|
|
QString mid(int f, int t) const { return string_.mid(f,t); };
|
|
QString left(int i) const { return string_.left(i); };
|
|
|
|
void clear() { string_.clear(); };
|
|
|
|
QString CQersCall() const;
|
|
|
|
bool isJT65() const;
|
|
bool isJT9() const;
|
|
bool isTX() const;
|
|
bool isStandardMessage () const {return is_standard_;}
|
|
bool isLowConfidence () const;
|
|
int frequencyOffset() const; // hertz offset from the tuned dial or rx frequency, aka audio frequency
|
|
int snr() const;
|
|
float dt() const;
|
|
|
|
// find and extract any report. Returns true if this is a standard message
|
|
bool report(QString const& myBaseCall, QString const& dxBaseCall, /*mod*/QString& report) const;
|
|
|
|
// get the first message text word, usually the call
|
|
QString call() const;
|
|
|
|
// get the second word, most likely the de call and the third word, most likely grid
|
|
void deCallAndGrid(/*out*/QString& call, QString& grid) const;
|
|
|
|
unsigned timeInSeconds() const;
|
|
|
|
// returns a string of the SNR field with a leading + or - followed by two digits
|
|
QString report() const;
|
|
|
|
private:
|
|
// These define the columns in the decoded text where fields are to be found.
|
|
// We rely on these columns being the same in the fortran code (lib/decoder.f90) that formats the decoded text
|
|
enum Columns {column_time = 0,
|
|
column_snr = 5,
|
|
column_dt = 9,
|
|
column_freq = 14,
|
|
column_mode = 19,
|
|
column_qsoText = 22 };
|
|
|
|
QString string_;
|
|
int padding_;
|
|
bool contest_mode_;
|
|
QString message_;
|
|
bool is_standard_;
|
|
};
|
|
|
|
#endif // DECODEDTEXT_H
|