mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	Build now creates and installs a UDP library that contains the server side of the UDP messaging facility. This library is used by the udp_daemon and message_aggregator reference examples. The new library is currently a static archive but can also be built as a shared library. The library allows third party Qt applications to easily access UDP messages from WSJT-X. Refactored the message_aggregator reference example to split out classes into separate translation units. Added new functionality to exercise the new UDP status fields, highlight own call, CQ/QRZ messages and decodes near Rx DF. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6691 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			109 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "Radio.hpp"
 | 
						|
 | 
						|
#include <cmath>
 | 
						|
 | 
						|
#include <QString>
 | 
						|
#include <QChar>
 | 
						|
#include <QRegularExpression>
 | 
						|
 | 
						|
namespace Radio
 | 
						|
{
 | 
						|
  namespace
 | 
						|
  {
 | 
						|
    double constexpr MHz_factor {1.e6};
 | 
						|
    int constexpr frequency_precsion {6};
 | 
						|
 | 
						|
    // very loose validation - callsign must contain a letter next to
 | 
						|
    // a number
 | 
						|
    QRegularExpression valid_callsign_regexp {R"(\d[[:alpha:]]|[[:alpha:]]\d)"};
 | 
						|
  }
 | 
						|
 | 
						|
 | 
						|
  Frequency frequency (QVariant const& v, int scale, QLocale const& locale)
 | 
						|
  {
 | 
						|
    double value {0};
 | 
						|
    if (QVariant::String == v.type ())
 | 
						|
      {
 | 
						|
        value = locale.toDouble (v.value<QString> ());
 | 
						|
      }
 | 
						|
    else
 | 
						|
      {
 | 
						|
        value = v.toDouble ();
 | 
						|
      }
 | 
						|
    return std::llround (value * std::pow (10., scale));
 | 
						|
  }
 | 
						|
 | 
						|
  FrequencyDelta frequency_delta (QVariant const& v, int scale, QLocale const& locale)
 | 
						|
  {
 | 
						|
    double value {0};
 | 
						|
    if (QVariant::String == v.type ())
 | 
						|
      {
 | 
						|
        value = locale.toDouble (v.value<QString> ());
 | 
						|
      }
 | 
						|
    else
 | 
						|
      {
 | 
						|
        value = v.toDouble ();
 | 
						|
      }
 | 
						|
    return std::llround (value * std::pow (10., scale));
 | 
						|
  }
 | 
						|
 | 
						|
 | 
						|
  QString frequency_MHz_string (Frequency f, QLocale const& locale)
 | 
						|
  {
 | 
						|
    return locale.toString (f / MHz_factor, 'f', frequency_precsion);
 | 
						|
  }
 | 
						|
 | 
						|
  QString frequency_MHz_string (FrequencyDelta d, QLocale const& locale)
 | 
						|
  {
 | 
						|
    return locale.toString (d / MHz_factor, 'f', frequency_precsion);
 | 
						|
  }
 | 
						|
 | 
						|
  QString pretty_frequency_MHz_string (Frequency f, QLocale const& locale)
 | 
						|
  {
 | 
						|
    auto f_string = locale.toString (f / MHz_factor, 'f', frequency_precsion);
 | 
						|
    return f_string.insert (f_string.size () - 3, QChar::Nbsp);
 | 
						|
  }
 | 
						|
 | 
						|
  QString pretty_frequency_MHz_string (double f, int scale, QLocale const& locale)
 | 
						|
  {
 | 
						|
    auto f_string = locale.toString (f / std::pow (10., scale - 6), 'f', frequency_precsion);
 | 
						|
    return f_string.insert (f_string.size () - 3, QChar::Nbsp);
 | 
						|
  }
 | 
						|
 | 
						|
  QString pretty_frequency_MHz_string (FrequencyDelta d, QLocale const& locale)
 | 
						|
  {
 | 
						|
    auto d_string = locale.toString (d / MHz_factor, 'f', frequency_precsion);
 | 
						|
    return d_string.insert (d_string.size () - 3, QChar::Nbsp);
 | 
						|
  }
 | 
						|
 | 
						|
  bool is_callsign (QString const& callsign)
 | 
						|
  {
 | 
						|
    return callsign.contains (valid_callsign_regexp);
 | 
						|
  }
 | 
						|
 | 
						|
  bool is_compound_callsign (QString const& callsign)
 | 
						|
  {
 | 
						|
    return callsign.contains ('/');
 | 
						|
  }
 | 
						|
 | 
						|
  // split on first '/' and return the larger portion or the whole if
 | 
						|
  // there is no '/'
 | 
						|
  QString base_callsign (QString callsign)
 | 
						|
  {
 | 
						|
    auto slash_pos = callsign.indexOf ('/');
 | 
						|
    if (slash_pos >= 0)
 | 
						|
      {
 | 
						|
        auto right_size = callsign.size () - slash_pos - 1;
 | 
						|
        if (right_size>= slash_pos)
 | 
						|
          {
 | 
						|
            callsign = callsign.mid (slash_pos + 1);
 | 
						|
          }
 | 
						|
        else
 | 
						|
          {
 | 
						|
            callsign = callsign.left (slash_pos);
 | 
						|
          }
 | 
						|
      }
 | 
						|
    return callsign;
 | 
						|
  }
 | 
						|
}
 |