2020-11-29 19:30:18 -05:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2016 Edouard Griffiths, F4EXB //
// Copyright (C) 2020 Jon Beniston, M7RCE //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation as version 3 of the License, or //
// (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
# include <limits>
# include <QDockWidget>
# include <QMainWindow>
# include <QDebug>
# include <QQuickItem>
# include <QGeoLocation>
# include <QGeoCoordinate>
# include <QQmlContext>
# include <QMessageBox>
# include <QAction>
# include "feature/featureuiset.h"
# include "dsp/dspengine.h"
# include "dsp/dspcommands.h"
# include "dsp/dspengine.h"
# include "ui_vorlocalizergui.h"
# include "plugin/pluginapi.h"
# include "util/simpleserializer.h"
# include "util/db.h"
# include "util/morse.h"
# include "util/units.h"
# include "gui/basicfeaturesettingsdialog.h"
# include "gui/crightclickenabler.h"
# include "maincore.h"
# include "vorlocalizer.h"
# include "vorlocalizerreport.h"
# include "vorlocalizersettings.h"
# include "vorlocalizergui.h"
static const char * countryCodes [ ] = {
" ad " ,
" ae " ,
" af " ,
" ag " ,
" ai " ,
" al " ,
" am " ,
" an " ,
" ao " ,
" aq " ,
" ar " ,
" as " ,
" at " ,
" au " ,
" aw " ,
" ax " ,
" az " ,
" ba " ,
" bb " ,
" bd " ,
" be " ,
" bf " ,
" bg " ,
" bh " ,
" bi " ,
" bj " ,
" bl " ,
" bm " ,
" bn " ,
" bo " ,
" bq " ,
" br " ,
" bs " ,
" bt " ,
" bv " ,
" bw " ,
" by " ,
" bz " ,
" ca " ,
" cc " ,
" cd " ,
" cf " ,
" cg " ,
" ch " ,
" ci " ,
" ck " ,
" cl " ,
" cm " ,
" cn " ,
" co " ,
" cr " ,
" cu " ,
" cv " ,
" cw " ,
" cx " ,
" cy " ,
" cz " ,
" de " ,
" dj " ,
" dk " ,
" dm " ,
" do " ,
" dz " ,
" ec " ,
" ee " ,
" eg " ,
" eh " ,
" er " ,
" es " ,
" et " ,
" fi " ,
" fj " ,
" fk " ,
" fm " ,
" fo " ,
" fr " ,
" ga " ,
" gb " ,
" ge " ,
" gf " ,
" gg " ,
" gh " ,
" gi " ,
" gl " ,
" gm " ,
" gn " ,
" gp " ,
" gq " ,
" gr " ,
" gs " ,
" gt " ,
" gu " ,
" gw " ,
" gy " ,
" hk " ,
" hm " ,
" hn " ,
" hr " ,
" hu " ,
" id " ,
" ie " ,
" il " ,
" im " ,
" in " ,
" io " ,
" iq " ,
" ir " ,
" is " ,
" it " ,
" je " ,
" jm " ,
" jo " ,
" jp " ,
" ke " ,
" kg " ,
" kh " ,
" ki " ,
" km " ,
" kn " ,
" kp " ,
" kr " ,
" kw " ,
" ky " ,
" kz " ,
" la " ,
" lb " ,
" lc " ,
" li " ,
" lk " ,
" lr " ,
" ls " ,
" lt " ,
" lu " ,
" lv " ,
" ly " ,
" ma " ,
" mc " ,
" md " ,
" me " ,
" mf " ,
" mg " ,
" mh " ,
" mk " ,
" ml " ,
" mm " ,
" mn " ,
" mo " ,
" mp " ,
" mq " ,
" mr " ,
" ms " ,
" mt " ,
" mu " ,
" mv " ,
" mw " ,
" mx " ,
" my " ,
" mz " ,
" na " ,
" nc " ,
" ne " ,
" nf " ,
" ng " ,
" ni " ,
" nl " ,
" no " ,
" np " ,
" nr " ,
" nu " ,
" nz " ,
" om " ,
" pa " ,
" pe " ,
" pf " ,
" pg " ,
" ph " ,
" pk " ,
" pl " ,
" pm " ,
" pn " ,
" pr " ,
" ps " ,
" pt " ,
" pw " ,
" py " ,
" qa " ,
" re " ,
" ro " ,
" rs " ,
" ru " ,
" rw " ,
" sa " ,
" sb " ,
" sc " ,
" sd " ,
" se " ,
" sg " ,
" sh " ,
" si " ,
" sj " ,
" sk " ,
" sl " ,
" sm " ,
" sn " ,
" so " ,
" sr " ,
" ss " ,
" st " ,
" sv " ,
" sx " ,
" sy " ,
" sz " ,
" tc " ,
" td " ,
" tf " ,
" tg " ,
" th " ,
" tj " ,
" tk " ,
" tl " ,
" tm " ,
" tn " ,
" to " ,
" tr " ,
" tt " ,
" tv " ,
" tw " ,
" tz " ,
" ua " ,
" ug " ,
" um " ,
" us " ,
" uy " ,
" uz " ,
" va " ,
" vc " ,
" ve " ,
" vg " ,
" vi " ,
" vn " ,
" vu " ,
" wf " ,
" ws " ,
" ye " ,
" yt " ,
" za " ,
" zm " ,
" zw " ,
nullptr
} ;
// Lats and longs in decimal degrees. Distance in metres. Bearing in degrees.
// https://www.movable-type.co.uk/scripts/latlong.html
static void calcRadialEndPoint ( float startLatitude , float startLongitude , float distance , float bearing , float & endLatitude , float & endLongitude )
{
double startLatRad = startLatitude * M_PI / 180.0 ;
double startLongRad = startLongitude * M_PI / 180.0 ;
double theta = bearing * M_PI / 180.0 ;
double earthRadius = 6378137.0 ; // At equator
double delta = distance / earthRadius ;
double endLatRad = std : : asin ( sin ( startLatRad ) * cos ( delta ) + cos ( startLatRad ) * sin ( delta ) * cos ( theta ) ) ;
double endLongRad = startLongRad + std : : atan2 ( sin ( theta ) * sin ( delta ) * cos ( startLatRad ) , cos ( delta ) - sin ( startLatRad ) * sin ( endLatRad ) ) ;
endLatitude = endLatRad * 180.0 / M_PI ;
endLongitude = endLongRad * 180.0 / M_PI ;
}
// Calculate intersection point along two radials
// https://www.movable-type.co.uk/scripts/latlong.html
static bool calcIntersectionPoint ( float lat1 , float lon1 , float bearing1 , float lat2 , float lon2 , float bearing2 , float & intersectLat , float & intersectLon )
{
double lat1Rad = Units : : degreesToRadians ( lat1 ) ;
double lon1Rad = Units : : degreesToRadians ( lon1 ) ;
double lat2Rad = Units : : degreesToRadians ( lat2 ) ;
double lon2Rad = Units : : degreesToRadians ( lon2 ) ;
double theta13 = Units : : degreesToRadians ( bearing1 ) ;
double theta23 = Units : : degreesToRadians ( bearing2 ) ;
double deltaLat = lat1Rad - lat2Rad ;
double deltaLon = lon1Rad - lon2Rad ;
double sindlat = sin ( deltaLat / 2.0 ) ;
double sindlon = sin ( deltaLon / 2.0 ) ;
double cosLat1 = cos ( lat1Rad ) ;
double cosLat2 = cos ( lat2Rad ) ;
double delta12 = 2.0 * asin ( sqrt ( sindlat * sindlat + cosLat1 * cosLat2 * sindlon * sindlon ) ) ;
2020-12-07 13:32:43 -05:00
if ( abs ( delta12 ) < std : : numeric_limits < float > : : epsilon ( ) ) {
2020-11-29 19:30:18 -05:00
return false ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
double sinLat1 = sin ( lat1Rad ) ;
double sinLat2 = sin ( lat2Rad ) ;
double sinDelta12 = sin ( delta12 ) ;
double cosDelta12 = cos ( delta12 ) ;
double thetaA = acos ( ( sinLat2 - sinLat1 * cosDelta12 ) / ( sinDelta12 * cosLat1 ) ) ;
double thetaB = acos ( ( sinLat1 - sinLat2 * cosDelta12 ) / ( sinDelta12 * cosLat2 ) ) ;
double theta12 , theta21 ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( sin ( lon2Rad - lon1Rad ) > 0.0 )
{
theta12 = thetaA ;
theta21 = 2.0 * M_PI - thetaB ;
}
else
{
theta12 = 2.0 * M_PI - thetaA ;
theta21 = thetaB ;
}
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
double alpha1 = theta13 - theta12 ;
double alpha2 = theta21 - theta23 ;
double sinAlpha1 = sin ( alpha1 ) ;
double sinAlpha2 = sin ( alpha2 ) ;
2020-12-07 13:32:43 -05:00
if ( ( sinAlpha1 = = 0.0 ) & & ( sinAlpha2 = = 0.0 ) ) {
2020-11-29 19:30:18 -05:00
return false ;
2020-12-07 13:32:43 -05:00
}
if ( sinAlpha1 * sinAlpha2 < 0.0 ) {
2020-11-29 19:30:18 -05:00
return false ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
double cosAlpha1 = cos ( alpha1 ) ;
double cosAlpha2 = cos ( alpha2 ) ;
double cosAlpha3 = - cosAlpha1 * cosAlpha2 + sinAlpha1 * sinAlpha2 * cos ( delta12 ) ;
double delta13 = atan2 ( sin ( delta12 ) * sinAlpha1 * sinAlpha2 , cosAlpha2 + cosAlpha1 * cosAlpha3 ) ;
double lat3Rad = asin ( sinLat1 * cos ( delta13 ) + cosLat1 * sin ( delta13 ) * cos ( theta13 ) ) ;
double lon3Rad = lon1Rad + atan2 ( sin ( theta13 ) * sin ( delta13 ) * cosLat1 , cos ( delta13 ) - sinLat1 * sin ( lat3Rad ) ) ;
2021-01-13 12:10:18 -05:00
intersectLat = Units : : radiansToDegrees ( lat3Rad ) ;
intersectLon = Units : : radiansToDegrees ( lon3Rad ) ;
2020-11-29 19:30:18 -05:00
return true ;
}
VORGUI : : VORGUI ( NavAid * navAid , VORLocalizerGUI * gui ) :
m_navAid ( navAid ) ,
m_gui ( gui )
{
// These are deleted by QTableWidget
m_nameItem = new QTableWidgetItem ( ) ;
m_frequencyItem = new QTableWidgetItem ( ) ;
2020-12-07 13:32:43 -05:00
m_navIdItem = new QTableWidgetItem ( ) ;
2020-11-29 19:30:18 -05:00
m_radialItem = new QTableWidgetItem ( ) ;
m_identItem = new QTableWidgetItem ( ) ;
m_morseItem = new QTableWidgetItem ( ) ;
m_rxIdentItem = new QTableWidgetItem ( ) ;
m_rxMorseItem = new QTableWidgetItem ( ) ;
m_varMagItem = new QTableWidgetItem ( ) ;
m_refMagItem = new QTableWidgetItem ( ) ;
m_muteItem = new QWidget ( ) ;
m_muteButton = new QToolButton ( ) ;
m_muteButton - > setCheckable ( true ) ;
m_muteButton - > setChecked ( false ) ;
m_muteButton - > setToolTip ( " Mute/unmute audio from this VOR " ) ;
m_muteButton - > setIcon ( m_gui - > m_muteIcon ) ;
QHBoxLayout * pLayout = new QHBoxLayout ( m_muteItem ) ;
pLayout - > addWidget ( m_muteButton ) ;
pLayout - > setAlignment ( Qt : : AlignCenter ) ;
pLayout - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
m_muteItem - > setLayout ( pLayout ) ;
connect ( m_muteButton , & QPushButton : : toggled , this , & VORGUI : : on_audioMute_toggled ) ;
m_coordinates . push_back ( QVariant : : fromValue ( * new QGeoCoordinate ( m_navAid - > m_latitude , m_navAid - > m_longitude , Units : : feetToMetres ( m_navAid - > m_elevation ) ) ) ) ;
}
void VORGUI : : on_audioMute_toggled ( bool checked )
{
2020-12-07 13:32:43 -05:00
m_gui - > m_settings . m_subChannelSettings [ m_navAid - > m_id ] . m_audioMute = checked ;
2020-11-29 19:30:18 -05:00
m_gui - > applySettings ( ) ;
}
QVariant VORModel : : data ( const QModelIndex & index , int role ) const
{
int row = index . row ( ) ;
2020-12-07 13:32:43 -05:00
if ( ( row < 0 ) | | ( row > = m_vors . count ( ) ) ) {
2020-11-29 19:30:18 -05:00
return QVariant ( ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
if ( role = = VORModel : : positionRole )
{
// Coordinates to display the VOR icon at
QGeoCoordinate coords ;
coords . setLatitude ( m_vors [ row ] - > m_latitude ) ;
coords . setLongitude ( m_vors [ row ] - > m_longitude ) ;
coords . setAltitude ( Units : : feetToMetres ( m_vors [ row ] - > m_elevation ) ) ;
return QVariant : : fromValue ( coords ) ;
}
else if ( role = = VORModel : : vorDataRole )
{
// Create the text to go in the bubble next to the VOR
QStringList list ;
list . append ( QString ( " Name: %1 " ) . arg ( m_vors [ row ] - > m_name ) ) ;
list . append ( QString ( " Frequency: %1 MHz " ) . arg ( m_vors [ row ] - > m_frequencykHz / 1000.0f , 0 , ' f ' , 1 ) ) ;
2020-12-07 13:32:43 -05:00
if ( m_vors [ row ] - > m_channel ! = " " ) {
2020-11-29 19:30:18 -05:00
list . append ( QString ( " Channel: %1 " ) . arg ( m_vors [ row ] - > m_channel ) ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
list . append ( QString ( " Ident: %1 %2 " ) . arg ( m_vors [ row ] - > m_ident ) . arg ( Morse : : toSpacedUnicodeMorse ( m_vors [ row ] - > m_ident ) ) ) ;
list . append ( QString ( " Range: %1 nm " ) . arg ( m_vors [ row ] - > m_range ) ) ;
2020-12-07 13:32:43 -05:00
if ( m_vors [ row ] - > m_alignedTrueNorth ) {
2020-11-29 19:30:18 -05:00
list . append ( QString ( " Magnetic declination: Aligned to true North " ) ) ;
2020-12-07 13:32:43 -05:00
} else if ( m_vors [ row ] - > m_magneticDeclination ! = 0.0f ) {
2020-11-29 19:30:18 -05:00
list . append ( QString ( " Magnetic declination: %1%2 " ) . arg ( std : : round ( m_vors [ row ] - > m_magneticDeclination ) ) . arg ( QChar ( 0x00b0 ) ) ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
QString data = list . join ( " \n " ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
return QVariant : : fromValue ( data ) ;
}
else if ( role = = VORModel : : vorImageRole )
{
// Select an image to use for the VOR
return QVariant : : fromValue ( QString ( " /demodvor/map/%1.png " ) . arg ( m_vors [ row ] - > m_type ) ) ;
}
else if ( role = = VORModel : : bubbleColourRole )
{
// Select a background colour for the text bubble next to the VOR
2020-12-07 13:32:43 -05:00
if ( m_selected [ row ] ) {
2020-11-29 19:30:18 -05:00
return QVariant : : fromValue ( QColor ( " lightgreen " ) ) ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
return QVariant : : fromValue ( QColor ( " lightblue " ) ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
}
else if ( role = = VORModel : : vorRadialRole )
{
// Draw a radial line from centre of VOR outwards at the demodulated angle
if ( m_radialsVisible & & m_selected [ row ] & & ( m_vorGUIs [ row ] ! = nullptr ) & & ( m_radials [ row ] ! = - 1.0f ) )
{
QVariantList list ;
list . push_back ( m_vorGUIs [ row ] - > m_coordinates [ 0 ] ) ; // Centre of VOR
float endLat , endLong ;
float bearing ;
2020-12-07 13:32:43 -05:00
if ( m_gui - > m_settings . m_magDecAdjust & & ! m_vors [ row ] - > m_alignedTrueNorth ) {
2020-11-29 19:30:18 -05:00
bearing = m_radials [ row ] - m_vors [ row ] - > m_magneticDeclination ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
bearing = m_radials [ row ] ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
calcRadialEndPoint ( m_vors [ row ] - > m_latitude , m_vors [ row ] - > m_longitude , m_vors [ row ] - > getRangeMetres ( ) , bearing , endLat , endLong ) ;
list . push_back ( QVariant : : fromValue ( * new QGeoCoordinate ( endLat , endLong , Units : : feetToMetres ( m_vors [ row ] - > m_elevation ) ) ) ) ;
return list ;
}
else
return QVariantList ( ) ;
}
else if ( role = = VORModel : : selectedRole )
2020-12-07 13:32:43 -05:00
{
2020-11-29 19:30:18 -05:00
return QVariant : : fromValue ( m_selected [ row ] ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
return QVariant ( ) ;
}
bool VORModel : : setData ( const QModelIndex & index , const QVariant & value , int role )
{
int row = index . row ( ) ;
2020-12-07 13:32:43 -05:00
if ( ( row < 0 ) | | ( row > = m_vors . count ( ) ) ) {
2020-11-29 19:30:18 -05:00
return false ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
if ( role = = VORModel : : selectedRole )
{
bool selected = value . toBool ( ) ;
VORGUI * vorGUI ;
2020-12-07 13:32:43 -05:00
if ( selected )
2020-11-29 19:30:18 -05:00
{
vorGUI = new VORGUI ( m_vors [ row ] , m_gui ) ;
m_vorGUIs [ row ] = vorGUI ;
}
else
2020-12-07 13:32:43 -05:00
{
2020-11-29 19:30:18 -05:00
vorGUI = m_vorGUIs [ row ] ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
m_gui - > selectVOR ( vorGUI , selected ) ;
m_selected [ row ] = selected ;
emit dataChanged ( index , index ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( ! selected )
{
delete vorGUI ;
m_vorGUIs [ row ] = nullptr ;
}
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
return true ;
}
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
return true ;
}
// Find intersection between first two selected radials
bool VORModel : : findIntersection ( float & lat , float & lon )
{
if ( m_vors . count ( ) > 2 )
{
float lat1 , lon1 , bearing1 , valid1 = false ;
float lat2 , lon2 , bearing2 , valid2 = false ;
for ( int i = 0 ; i < m_vors . count ( ) ; i + + )
{
if ( m_selected [ i ] & & ( m_radials [ i ] > = 0.0 ) )
{
if ( ! valid1 )
{
lat1 = m_vors [ i ] - > m_latitude ;
lon1 = m_vors [ i ] - > m_longitude ;
2020-12-07 13:32:43 -05:00
if ( m_gui - > m_settings . m_magDecAdjust & & ! m_vors [ i ] - > m_alignedTrueNorth ) {
2020-11-29 19:30:18 -05:00
bearing1 = m_radials [ i ] - m_vors [ i ] - > m_magneticDeclination ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
bearing1 = m_radials [ i ] ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
valid1 = true ;
}
else
{
lat2 = m_vors [ i ] - > m_latitude ;
lon2 = m_vors [ i ] - > m_longitude ;
2020-12-07 13:32:43 -05:00
if ( m_gui - > m_settings . m_magDecAdjust & & ! m_vors [ i ] - > m_alignedTrueNorth ) {
2020-11-29 19:30:18 -05:00
bearing2 = m_radials [ i ] - m_vors [ i ] - > m_magneticDeclination ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
bearing2 = m_radials [ i ] ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
valid2 = true ;
break ;
}
}
}
2020-12-07 13:32:43 -05:00
if ( valid1 & & valid2 ) {
2020-11-29 19:30:18 -05:00
return calcIntersectionPoint ( lat1 , lon1 , bearing1 , lat2 , lon2 , bearing2 , lat , lon ) ;
}
}
return false ;
}
void VORLocalizerGUI : : resizeTable ( )
{
// Fill table with a row of dummy data that will size the columns nicely
// Trailing spaces are for sort arrow
QString morse ( " ---- ---- ---- " ) ;
int row = ui - > vorData - > rowCount ( ) ;
ui - > vorData - > setRowCount ( row + 1 ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_NAME , new QTableWidgetItem ( " White Sulphur Springs " ) ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_FREQUENCY , new QTableWidgetItem ( " Freq (MHz) " ) ) ;
2020-12-07 13:32:43 -05:00
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_NAVID , new QTableWidgetItem ( " 99999999 " ) ) ;
2020-11-29 19:30:18 -05:00
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_IDENT , new QTableWidgetItem ( " Ident " ) ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_MORSE , new QTableWidgetItem ( Morse : : toSpacedUnicode ( morse ) ) ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_RADIAL , new QTableWidgetItem ( " Radial (o) " ) ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_RX_IDENT , new QTableWidgetItem ( " RX Ident " ) ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_RX_MORSE , new QTableWidgetItem ( Morse : : toSpacedUnicode ( morse ) ) ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_VAR_MAG , new QTableWidgetItem ( " Var (dB) " ) ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_REF_MAG , new QTableWidgetItem ( " Ref (dB) " ) ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_MUTE , new QTableWidgetItem ( " Mute " ) ) ;
ui - > vorData - > resizeColumnsToContents ( ) ;
ui - > vorData - > removeRow ( row ) ;
}
// Columns in table reordered
void VORLocalizerGUI : : vorData_sectionMoved ( int logicalIndex , int oldVisualIndex , int newVisualIndex )
{
( void ) oldVisualIndex ;
m_settings . m_columnIndexes [ logicalIndex ] = newVisualIndex ;
}
// Column in table resized (when hidden size is 0)
void VORLocalizerGUI : : vorData_sectionResized ( int logicalIndex , int oldSize , int newSize )
{
( void ) oldSize ;
m_settings . m_columnSizes [ logicalIndex ] = newSize ;
}
// Right click in table header - show column select menu
void VORLocalizerGUI : : columnSelectMenu ( QPoint pos )
{
menu - > popup ( ui - > vorData - > horizontalHeader ( ) - > viewport ( ) - > mapToGlobal ( pos ) ) ;
}
// Hide/show column when menu selected
void VORLocalizerGUI : : columnSelectMenuChecked ( bool checked )
{
( void ) checked ;
QAction * action = qobject_cast < QAction * > ( sender ( ) ) ;
2020-12-07 13:32:43 -05:00
if ( action )
2020-11-29 19:30:18 -05:00
{
int idx = action - > data ( ) . toInt ( nullptr ) ;
ui - > vorData - > setColumnHidden ( idx , ! action - > isChecked ( ) ) ;
}
}
// Create column select menu item
QAction * VORLocalizerGUI : : createCheckableItem ( QString & text , int idx , bool checked )
{
QAction * action = new QAction ( text , this ) ;
action - > setCheckable ( true ) ;
action - > setChecked ( checked ) ;
action - > setData ( QVariant ( idx ) ) ;
connect ( action , SIGNAL ( triggered ( ) ) , this , SLOT ( columnSelectMenuChecked ( ) ) ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
return action ;
}
// Called when a VOR is selected on the map
void VORLocalizerGUI : : selectVOR ( VORGUI * vorGUI , bool selected )
{
int navId = vorGUI - > m_navAid - > m_id ;
if ( selected )
{
VORLocalizer : : MsgAddVORChannel * msg = VORLocalizer : : MsgAddVORChannel : : create ( navId ) ;
m_vorLocalizer - > getInputMessageQueue ( ) - > push ( msg ) ;
m_selectedVORs . insert ( navId , vorGUI ) ;
ui - > vorData - > setSortingEnabled ( false ) ;
int row = ui - > vorData - > rowCount ( ) ;
ui - > vorData - > setRowCount ( row + 1 ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_NAME , vorGUI - > m_nameItem ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_FREQUENCY , vorGUI - > m_frequencyItem ) ;
2020-12-07 13:32:43 -05:00
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_NAVID , vorGUI - > m_navIdItem ) ;
2020-11-29 19:30:18 -05:00
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_IDENT , vorGUI - > m_identItem ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_MORSE , vorGUI - > m_morseItem ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_RADIAL , vorGUI - > m_radialItem ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_RX_IDENT , vorGUI - > m_rxIdentItem ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_RX_MORSE , vorGUI - > m_rxMorseItem ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_VAR_MAG , vorGUI - > m_varMagItem ) ;
ui - > vorData - > setItem ( row , VORLocalizerSettings : : VOR_COL_REF_MAG , vorGUI - > m_refMagItem ) ;
ui - > vorData - > setCellWidget ( row , VORLocalizerSettings : : VOR_COL_MUTE , vorGUI - > m_muteItem ) ;
vorGUI - > m_nameItem - > setText ( vorGUI - > m_navAid - > m_name ) ;
vorGUI - > m_identItem - > setText ( vorGUI - > m_navAid - > m_ident ) ;
vorGUI - > m_morseItem - > setText ( Morse : : toSpacedUnicodeMorse ( vorGUI - > m_navAid - > m_ident ) ) ;
vorGUI - > m_frequencyItem - > setData ( Qt : : DisplayRole , vorGUI - > m_navAid - > m_frequencykHz / 1000.0 ) ;
ui - > vorData - > setSortingEnabled ( true ) ;
// Add to settings to create corresponding demodulator
2020-12-07 13:32:43 -05:00
m_settings . m_subChannelSettings . insert ( navId , VORLocalizerSubChannelSettings {
navId ,
vorGUI - > m_navAid - > m_frequencykHz * 1000 ,
false
} ) ;
2020-11-29 19:30:18 -05:00
applySettings ( ) ;
}
else
{
VORLocalizer : : MsgRemoveVORChannel * msg = VORLocalizer : : MsgRemoveVORChannel : : create ( navId ) ;
m_vorLocalizer - > getInputMessageQueue ( ) - > push ( msg ) ;
m_selectedVORs . remove ( navId ) ;
ui - > vorData - > removeRow ( vorGUI - > m_nameItem - > row ( ) ) ;
// Remove from settings to remove corresponding demodulator
m_settings . m_subChannelSettings . remove ( navId ) ;
applySettings ( ) ;
}
}
void VORLocalizerGUI : : updateVORs ( )
{
m_vorModel . removeAllVORs ( ) ;
QHash < int , NavAid * > : : iterator i = m_vors - > begin ( ) ;
AzEl azEl = m_azEl ;
while ( i ! = m_vors - > end ( ) )
{
NavAid * vor = i . value ( ) ;
// Calculate distance to VOR from My Position
azEl . setTarget ( vor - > m_latitude , vor - > m_longitude , Units : : feetToMetres ( vor - > m_elevation ) ) ;
azEl . calculate ( ) ;
// Only display VOR if in range
2020-12-07 13:32:43 -05:00
if ( azEl . getDistance ( ) < = 200000 ) {
2020-11-29 19:30:18 -05:00
m_vorModel . addVOR ( vor ) ;
}
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
+ + i ;
}
}
VORLocalizerGUI * VORLocalizerGUI : : create ( PluginAPI * pluginAPI , FeatureUISet * featureUISet , Feature * feature )
{
VORLocalizerGUI * gui = new VORLocalizerGUI ( pluginAPI , featureUISet , feature ) ;
return gui ;
}
void VORLocalizerGUI : : destroy ( )
{
delete this ;
}
void VORLocalizerGUI : : resetToDefaults ( )
{
m_settings . resetToDefaults ( ) ;
displaySettings ( ) ;
applySettings ( true ) ;
}
QByteArray VORLocalizerGUI : : serialize ( ) const
{
return m_settings . serialize ( ) ;
}
bool VORLocalizerGUI : : deserialize ( const QByteArray & data )
{
2020-12-07 13:32:43 -05:00
if ( m_settings . deserialize ( data ) )
{
2020-11-29 19:30:18 -05:00
displaySettings ( ) ;
applySettings ( true ) ;
return true ;
2020-12-07 13:32:43 -05:00
}
else
{
2020-11-29 19:30:18 -05:00
resetToDefaults ( ) ;
return false ;
}
}
bool VORLocalizerGUI : : handleMessage ( const Message & message )
{
if ( VORLocalizer : : MsgConfigureVORLocalizer : : match ( message ) )
{
qDebug ( " VORLocalizerGUI::handleMessage: VORLocalizer::MsgConfigureVORLocalizer " ) ;
const VORLocalizer : : MsgConfigureVORLocalizer & cfg = ( VORLocalizer : : MsgConfigureVORLocalizer & ) message ;
m_settings = cfg . getSettings ( ) ;
blockApplySettings ( true ) ;
displaySettings ( ) ;
blockApplySettings ( false ) ;
return true ;
}
else if ( DSPSignalNotification : : match ( message ) )
{
DSPSignalNotification & notif = ( DSPSignalNotification & ) message ;
m_basebandSampleRate = notif . getSampleRate ( ) ;
return true ;
}
else if ( VORLocalizerReport : : MsgReportRadial : : match ( message ) )
{
VORLocalizerReport : : MsgReportRadial & report = ( VORLocalizerReport : : MsgReportRadial & ) message ;
int subChannelId = report . getSubChannelId ( ) ;
VORGUI * vorGUI = m_selectedVORs . value ( subChannelId ) ;
// Display radial and signal magnitudes in table
Real varMagDB = std : : round ( 20.0 * std : : log10 ( report . getVarMag ( ) ) ) ;
Real refMagDB = std : : round ( 20.0 * std : : log10 ( report . getRefMag ( ) ) ) ;
bool validRadial = report . getValidRadial ( ) ;
vorGUI - > m_radialItem - > setData ( Qt : : DisplayRole , std : : round ( report . getRadial ( ) ) ) ;
2020-12-07 13:32:43 -05:00
vorGUI - > m_navIdItem - > setData ( Qt : : DisplayRole , subChannelId ) ;
if ( validRadial ) {
2020-11-29 19:30:18 -05:00
vorGUI - > m_radialItem - > setForeground ( QBrush ( Qt : : white ) ) ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
vorGUI - > m_radialItem - > setForeground ( QBrush ( Qt : : red ) ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
vorGUI - > m_refMagItem - > setData ( Qt : : DisplayRole , refMagDB ) ;
2020-12-07 13:32:43 -05:00
if ( report . getValidRefMag ( ) ) {
2020-11-29 19:30:18 -05:00
vorGUI - > m_refMagItem - > setForeground ( QBrush ( Qt : : white ) ) ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
vorGUI - > m_refMagItem - > setForeground ( QBrush ( Qt : : red ) ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
vorGUI - > m_varMagItem - > setData ( Qt : : DisplayRole , varMagDB ) ;
2020-12-07 13:32:43 -05:00
if ( report . getValidVarMag ( ) ) {
2020-11-29 19:30:18 -05:00
vorGUI - > m_varMagItem - > setForeground ( QBrush ( Qt : : white ) ) ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
vorGUI - > m_varMagItem - > setForeground ( QBrush ( Qt : : red ) ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
// Update radial on map
m_vorModel . setRadial ( subChannelId , validRadial , report . getRadial ( ) ) ;
return true ;
}
else if ( VORLocalizerReport : : MsgReportIdent : : match ( message ) )
{
VORLocalizerReport : : MsgReportIdent & report = ( VORLocalizerReport : : MsgReportIdent & ) message ;
int subChannelId = report . getSubChannelId ( ) ;
VORGUI * vorGUI = m_selectedVORs . value ( subChannelId ) ;
QString ident = report . getIdent ( ) ;
// Convert Morse to a string
QString identString = Morse : : toString ( ident ) ;
// Idents should only be two or three characters, so filter anything else
// other than TEST which indicates a VOR is under maintainance (may also be TST)
if ( ( ( identString . size ( ) > = 2 ) & & ( identString . size ( ) < = 3 ) ) | | ( identString = = " TEST " ) )
{
vorGUI - > m_rxIdentItem - > setText ( identString ) ;
vorGUI - > m_rxMorseItem - > setText ( Morse : : toSpacedUnicode ( ident ) ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( vorGUI - > m_navAid - > m_ident = = identString )
{
// Set colour to green if matching expected ident
vorGUI - > m_rxIdentItem - > setForeground ( QBrush ( Qt : : green ) ) ;
vorGUI - > m_rxMorseItem - > setForeground ( QBrush ( Qt : : green ) ) ;
}
else
{
// Set colour to green if not matching expected ident
vorGUI - > m_rxIdentItem - > setForeground ( QBrush ( Qt : : red ) ) ;
vorGUI - > m_rxMorseItem - > setForeground ( QBrush ( Qt : : red ) ) ;
}
}
else
{
// Set yellow to indicate we've filtered something (unless red)
if ( vorGUI - > m_rxIdentItem - > foreground ( ) . color ( ) ! = Qt : : red )
{
vorGUI - > m_rxIdentItem - > setForeground ( QBrush ( Qt : : yellow ) ) ;
vorGUI - > m_rxMorseItem - > setForeground ( QBrush ( Qt : : yellow ) ) ;
}
}
return true ;
}
else if ( VORLocalizerReport : : MsgReportChannels : : match ( message ) )
{
VORLocalizerReport : : MsgReportChannels & report = ( VORLocalizerReport : : MsgReportChannels & ) message ;
const std : : vector < VORLocalizerReport : : MsgReportChannels : : Channel > & channels = report . getChannels ( ) ;
std : : vector < VORLocalizerReport : : MsgReportChannels : : Channel > : : const_iterator it = channels . begin ( ) ;
ui - > channels - > clear ( ) ;
for ( ; it ! = channels . end ( ) ; + + it ) {
2020-12-07 13:32:43 -05:00
ui - > channels - > addItem ( tr ( " R%1:%2 " ) . arg ( it - > m_deviceSetIndex ) . arg ( it - > m_channelIndex ) ) ;
2020-11-29 19:30:18 -05:00
}
return true ;
}
2020-12-07 13:32:43 -05:00
else if ( VORLocalizerReport : : MsgReportServiceddVORs : : match ( message ) )
{
VORLocalizerReport : : MsgReportServiceddVORs & report = ( VORLocalizerReport : : MsgReportServiceddVORs & ) message ;
std : : vector < int > & servicedVORNavIds = report . getNavIds ( ) ;
for ( auto vorGUI : m_selectedVORs ) {
vorGUI - > m_frequencyItem - > setForeground ( QBrush ( Qt : : white ) ) ;
}
for ( auto navId : servicedVORNavIds )
{
if ( m_selectedVORs . contains ( navId ) )
{
VORGUI * vorGUI = m_selectedVORs [ navId ] ;
vorGUI - > m_frequencyItem - > setForeground ( QBrush ( Qt : : green ) ) ;
}
}
2020-12-08 02:28:55 -05:00
ui - > rrTurnTimeProgress - > setMaximum ( m_settings . m_rrTime ) ;
ui - > rrTurnTimeProgress - > setValue ( 0 ) ;
ui - > rrTurnTimeProgress - > setToolTip ( tr ( " Round robin turn %1s " ) . arg ( 0 ) ) ;
m_rrSecondsCount = 0 ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
return false ;
}
void VORLocalizerGUI : : handleInputMessages ( )
{
Message * message ;
while ( ( message = getInputMessageQueue ( ) - > pop ( ) ) ! = 0 )
{
2020-12-07 13:32:43 -05:00
if ( handleMessage ( * message ) ) {
2020-11-29 19:30:18 -05:00
delete message ;
}
}
}
qint64 VORLocalizerGUI : : fileAgeInDays ( QString filename )
{
QFile file ( filename ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( file . exists ( ) )
{
QDateTime modified = file . fileTime ( QFileDevice : : FileModificationTime ) ;
2020-12-07 13:32:43 -05:00
if ( modified . isValid ( ) ) {
2020-11-29 19:30:18 -05:00
return modified . daysTo ( QDateTime : : currentDateTime ( ) ) ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
return - 1 ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
}
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
return - 1 ;
}
bool VORLocalizerGUI : : confirmDownload ( QString filename )
{
qint64 age = fileAgeInDays ( filename ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( ( age = = - 1 ) | | ( age > 100 ) )
2020-12-07 13:32:43 -05:00
{
2020-11-29 19:30:18 -05:00
return true ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
else
{
QMessageBox : : StandardButton reply ;
2020-12-07 13:32:43 -05:00
if ( age = = 0 ) {
2020-11-29 19:30:18 -05:00
reply = QMessageBox : : question ( this , " Confirm download " , " This file was last downloaded today. Are you sure you wish to redownload it? " , QMessageBox : : Yes | QMessageBox : : No ) ;
2020-12-07 13:32:43 -05:00
} else if ( age = = 1 ) {
2020-11-29 19:30:18 -05:00
reply = QMessageBox : : question ( this , " Confirm download " , " This file was last downloaded yesterday. Are you sure you wish to redownload it? " , QMessageBox : : Yes | QMessageBox : : No ) ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
reply = QMessageBox : : question ( this , " Confirm download " , QString ( " This file was last downloaded %1 days ago. Are you sure you wish to redownload this file? " ) . arg ( age ) , QMessageBox : : Yes | QMessageBox : : No ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
return reply = = QMessageBox : : Yes ;
}
}
QString VORLocalizerGUI : : getDataDir ( )
{
// Get directory to store app data in
QStringList locations = QStandardPaths : : standardLocations ( QStandardPaths : : AppDataLocation ) ;
// First dir is writable
return locations [ 0 ] ;
}
QString VORLocalizerGUI : : getOpenAIPVORDBFilename ( int i )
{
2020-12-07 13:32:43 -05:00
if ( countryCodes [ i ] ! = nullptr ) {
2020-11-29 19:30:18 -05:00
return getDataDir ( ) + " / " + countryCodes [ i ] + " _nav.aip " ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
return " " ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
}
QString VORLocalizerGUI : : getOpenAIPVORDBURL ( int i )
{
2020-12-07 13:32:43 -05:00
if ( countryCodes [ i ] ! = nullptr ) {
2020-11-29 19:30:18 -05:00
return QString ( OPENAIP_NAVAIDS_URL ) . arg ( countryCodes [ i ] ) ;
2020-12-07 13:32:43 -05:00
} else {
2020-11-29 19:30:18 -05:00
return " " ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
}
QString VORLocalizerGUI : : getVORDBFilename ( )
{
return getDataDir ( ) + " /vorDatabase.csv " ;
}
void VORLocalizerGUI : : updateDownloadProgress ( qint64 bytesRead , qint64 totalBytes )
{
m_progressDialog - > setMaximum ( totalBytes ) ;
m_progressDialog - > setValue ( bytesRead ) ;
}
void VORLocalizerGUI : : downloadFinished ( const QString & filename , bool success )
{
if ( success )
{
if ( filename = = getVORDBFilename ( ) )
{
m_vors = NavAid : : readNavAidsDB ( filename ) ;
2020-12-07 13:32:43 -05:00
if ( m_vors ! = nullptr ) {
2020-11-29 19:30:18 -05:00
updateVORs ( ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
m_progressDialog - > close ( ) ;
m_progressDialog = nullptr ;
}
else if ( filename = = getOpenAIPVORDBFilename ( m_countryIndex ) )
{
m_countryIndex + + ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( countryCodes [ m_countryIndex ] ! = nullptr )
{
QString vorDBFile = getOpenAIPVORDBFilename ( m_countryIndex ) ;
QString urlString = getOpenAIPVORDBURL ( m_countryIndex ) ;
QUrl dbURL ( urlString ) ;
m_progressDialog - > setLabelText ( QString ( " Downloading %1. " ) . arg ( urlString ) ) ;
m_progressDialog - > setValue ( m_countryIndex ) ;
m_dlm . download ( dbURL , vorDBFile ) ;
}
else
{
readNavAids ( ) ;
2020-12-07 13:32:43 -05:00
if ( m_vors ) {
2020-11-29 19:30:18 -05:00
updateVORs ( ) ;
2020-12-07 13:32:43 -05:00
}
2020-11-29 19:30:18 -05:00
m_progressDialog - > close ( ) ;
m_progressDialog = nullptr ;
}
}
else
{
qDebug ( ) < < " VORLocalizerGUI::downloadFinished: Unexpected filename: " < < filename ;
m_progressDialog - > close ( ) ;
m_progressDialog = nullptr ;
}
}
else
{
qDebug ( ) < < " VORLocalizerGUI::downloadFinished: Failed: " < < filename ;
m_progressDialog - > close ( ) ;
m_progressDialog = nullptr ;
QMessageBox : : warning ( this , " Download failed " , QString ( " Failed to download %1 " ) . arg ( filename ) ) ;
}
}
void VORLocalizerGUI : : on_startStop_toggled ( bool checked )
{
if ( m_doApplySettings )
{
VORLocalizer : : MsgStartStop * message = VORLocalizer : : MsgStartStop : : create ( checked ) ;
m_vorLocalizer - > getInputMessageQueue ( ) - > push ( message ) ;
}
}
void VORLocalizerGUI : : on_getOurAirportsVORDB_clicked ( )
{
// Don't try to download while already in progress
if ( m_progressDialog = = nullptr )
{
QString vorDBFile = getVORDBFilename ( ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( confirmDownload ( vorDBFile ) )
{
// Download OurAirports navaid database to disk
QUrl dbURL ( QString ( OURAIRPORTS_NAVAIDS_URL ) ) ;
m_progressDialog = new QProgressDialog ( this ) ;
m_progressDialog - > setAttribute ( Qt : : WA_DeleteOnClose ) ;
m_progressDialog - > setCancelButton ( nullptr ) ;
m_progressDialog - > setMinimumDuration ( 500 ) ;
m_progressDialog - > setLabelText ( QString ( " Downloading %1. " ) . arg ( OURAIRPORTS_NAVAIDS_URL ) ) ;
QNetworkReply * reply = m_dlm . download ( dbURL , vorDBFile ) ;
connect ( reply , SIGNAL ( downloadProgress ( qint64 , qint64 ) ) , this , SLOT ( updateDownloadProgress ( qint64 , qint64 ) ) ) ;
}
}
}
void VORLocalizerGUI : : on_getOpenAIPVORDB_clicked ( )
{
// Don't try to download while already in progress
2020-12-07 13:32:43 -05:00
if ( ! m_progressDialog )
2020-11-29 19:30:18 -05:00
{
m_countryIndex = 0 ;
QString vorDBFile = getOpenAIPVORDBFilename ( m_countryIndex ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( confirmDownload ( vorDBFile ) )
{
// Download OpenAIP XML to disk
QString urlString = getOpenAIPVORDBURL ( m_countryIndex ) ;
QUrl dbURL ( urlString ) ;
m_progressDialog = new QProgressDialog ( this ) ;
m_progressDialog - > setAttribute ( Qt : : WA_DeleteOnClose ) ;
m_progressDialog - > setCancelButton ( nullptr ) ;
m_progressDialog - > setMinimumDuration ( 500 ) ;
m_progressDialog - > setMaximum ( sizeof ( countryCodes ) / sizeof ( countryCodes [ 0 ] ) ) ;
m_progressDialog - > setValue ( 0 ) ;
m_progressDialog - > setLabelText ( QString ( " Downloading %1. " ) . arg ( urlString ) ) ;
m_dlm . download ( dbURL , vorDBFile ) ;
}
}
}
void VORLocalizerGUI : : readNavAids ( )
{
m_vors = new QHash < int , NavAid * > ( ) ;
for ( int countryIndex = 0 ; countryCodes [ countryIndex ] ! = nullptr ; countryIndex + + )
{
QString vorDBFile = getOpenAIPVORDBFilename ( countryIndex ) ;
NavAid : : readNavAidsXML ( m_vors , vorDBFile ) ;
}
}
2020-12-07 13:32:43 -05:00
void VORLocalizerGUI : : on_magDecAdjust_toggled ( bool checked )
2020-11-29 19:30:18 -05:00
{
m_settings . m_magDecAdjust = checked ;
m_vorModel . allVORUpdated ( ) ;
applySettings ( ) ;
}
2020-12-07 13:32:43 -05:00
void VORLocalizerGUI : : on_rrTime_valueChanged ( int value )
{
m_settings . m_rrTime = value ;
ui - > rrTimeText - > setText ( tr ( " %1s " ) . arg ( m_settings . m_rrTime ) ) ;
applySettings ( ) ;
}
void VORLocalizerGUI : : on_centerShift_valueChanged ( int value )
{
m_settings . m_centerShift = value * 1000 ;
ui - > centerShiftText - > setText ( tr ( " %1k " ) . arg ( value ) ) ;
applySettings ( ) ;
}
2020-11-29 19:30:18 -05:00
void VORLocalizerGUI : : on_channelsRefresh_clicked ( )
{
if ( m_doApplySettings )
{
VORLocalizer : : MsgRefreshChannels * message = VORLocalizer : : MsgRefreshChannels : : create ( ) ;
m_vorLocalizer - > getInputMessageQueue ( ) - > push ( message ) ;
}
}
void VORLocalizerGUI : : onWidgetRolled ( QWidget * widget , bool rollDown )
{
( void ) widget ;
( void ) rollDown ;
}
void VORLocalizerGUI : : onMenuDialogCalled ( const QPoint & p )
{
if ( m_contextMenuType = = ContextMenuChannelSettings )
{
BasicFeatureSettingsDialog dialog ( this ) ;
dialog . setTitle ( m_settings . m_title ) ;
dialog . setColor ( m_settings . m_rgbColor ) ;
dialog . setUseReverseAPI ( m_settings . m_useReverseAPI ) ;
dialog . setReverseAPIAddress ( m_settings . m_reverseAPIAddress ) ;
dialog . setReverseAPIPort ( m_settings . m_reverseAPIPort ) ;
dialog . setReverseAPIFeatureSetIndex ( m_settings . m_reverseAPIFeatureSetIndex ) ;
dialog . setReverseAPIFeatureIndex ( m_settings . m_reverseAPIFeatureIndex ) ;
dialog . move ( p ) ;
dialog . exec ( ) ;
m_settings . m_rgbColor = dialog . getColor ( ) . rgb ( ) ;
m_settings . m_title = dialog . getTitle ( ) ;
m_settings . m_useReverseAPI = dialog . useReverseAPI ( ) ;
m_settings . m_reverseAPIAddress = dialog . getReverseAPIAddress ( ) ;
m_settings . m_reverseAPIPort = dialog . getReverseAPIPort ( ) ;
m_settings . m_reverseAPIFeatureSetIndex = dialog . getReverseAPIFeatureSetIndex ( ) ;
m_settings . m_reverseAPIFeatureIndex = dialog . getReverseAPIFeatureIndex ( ) ;
setWindowTitle ( m_settings . m_title ) ;
setTitleColor ( m_settings . m_rgbColor ) ;
applySettings ( ) ;
}
resetContextMenuType ( ) ;
}
VORLocalizerGUI : : VORLocalizerGUI ( PluginAPI * pluginAPI , FeatureUISet * featureUISet , Feature * feature , QWidget * parent ) :
FeatureGUI ( parent ) ,
ui ( new Ui : : VORLocalizerGUI ) ,
m_pluginAPI ( pluginAPI ) ,
m_featureUISet ( featureUISet ) ,
m_doApplySettings ( true ) ,
m_squelchOpen ( false ) ,
m_tickCount ( 0 ) ,
m_progressDialog ( nullptr ) ,
m_vorModel ( this ) ,
m_vors ( nullptr ) ,
2020-12-08 02:28:55 -05:00
m_lastFeatureState ( 0 ) ,
m_rrSecondsCount ( 0 )
2020-11-29 19:30:18 -05:00
{
ui - > setupUi ( this ) ;
ui - > map - > rootContext ( ) - > setContextProperty ( " vorModel " , & m_vorModel ) ;
ui - > map - > setSource ( QUrl ( QStringLiteral ( " qrc:/demodvor/map/map.qml " ) ) ) ;
m_muteIcon . addPixmap ( QPixmap ( " ://sound_off.png " ) , QIcon : : Normal , QIcon : : On ) ;
m_muteIcon . addPixmap ( QPixmap ( " ://sound_on.png " ) , QIcon : : Normal , QIcon : : Off ) ;
setAttribute ( Qt : : WA_DeleteOnClose , true ) ;
connect ( this , SIGNAL ( widgetRolled ( QWidget * , bool ) ) , this , SLOT ( onWidgetRolled ( QWidget * , bool ) ) ) ;
connect ( this , SIGNAL ( customContextMenuRequested ( const QPoint & ) ) , this , SLOT ( onMenuDialogCalled ( const QPoint & ) ) ) ;
connect ( & m_dlm , & HttpDownloadManager : : downloadComplete , this , & VORLocalizerGUI : : downloadFinished ) ;
m_vorLocalizer = reinterpret_cast < VORLocalizer * > ( feature ) ;
m_vorLocalizer - > setMessageQueueToGUI ( getInputMessageQueue ( ) ) ;
connect ( & MainCore : : instance ( ) - > getMasterTimer ( ) , SIGNAL ( timeout ( ) ) , this , SLOT ( tick ( ) ) ) ; // 50 ms
m_featureUISet - > addRollupWidget ( this ) ;
connect ( getInputMessageQueue ( ) , SIGNAL ( messageEnqueued ( ) ) , this , SLOT ( handleInputMessages ( ) ) ) ;
// Get station position
Real stationLatitude = MainCore : : instance ( ) - > getSettings ( ) . getLatitude ( ) ;
Real stationLongitude = MainCore : : instance ( ) - > getSettings ( ) . getLongitude ( ) ;
Real stationAltitude = MainCore : : instance ( ) - > getSettings ( ) . getAltitude ( ) ;
m_azEl . setLocation ( stationLatitude , stationLongitude , stationAltitude ) ;
// Centre map at My Position
QQuickItem * item = ui - > map - > rootObject ( ) ;
QObject * object = item - > findChild < QObject * > ( " map " ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( object )
{
QGeoCoordinate coords = object - > property ( " center " ) . value < QGeoCoordinate > ( ) ;
coords . setLatitude ( stationLatitude ) ;
coords . setLongitude ( stationLongitude ) ;
object - > setProperty ( " center " , QVariant : : fromValue ( coords ) ) ;
}
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
// Move antenna icon to My Position to start with
QObject * stationObject = item - > findChild < QObject * > ( " station " ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( stationObject )
{
QGeoCoordinate coords = stationObject - > property ( " coordinate " ) . value < QGeoCoordinate > ( ) ;
coords . setLatitude ( stationLatitude ) ;
coords . setLongitude ( stationLongitude ) ;
coords . setAltitude ( stationAltitude ) ;
stationObject - > setProperty ( " coordinate " , QVariant : : fromValue ( coords ) ) ;
stationObject - > setProperty ( " stationName " , QVariant : : fromValue ( MainCore : : instance ( ) - > getSettings ( ) . getStationName ( ) ) ) ;
}
// Read in VOR information if it exists
bool useOurAirports = false ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( useOurAirports )
{
m_vors = NavAid : : readNavAidsDB ( getVORDBFilename ( ) ) ;
ui - > getOpenAIPVORDB - > setVisible ( false ) ;
}
else
{
readNavAids ( ) ;
ui - > getOurAirportsVORDB - > setVisible ( false ) ;
}
2020-12-07 13:32:43 -05:00
if ( m_vors ) {
2020-11-29 19:30:18 -05:00
updateVORs ( ) ;
}
// Resize the table using dummy data
resizeTable ( ) ;
// Allow user to reorder columns
ui - > vorData - > horizontalHeader ( ) - > setSectionsMovable ( true ) ;
// Allow user to sort table by clicking on headers
ui - > vorData - > setSortingEnabled ( true ) ;
// Add context menu to allow hiding/showing of columns
menu = new QMenu ( ui - > vorData ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
for ( int i = 0 ; i < ui - > vorData - > horizontalHeader ( ) - > count ( ) ; i + + )
{
QString text = ui - > vorData - > horizontalHeaderItem ( i ) - > text ( ) ;
menu - > addAction ( createCheckableItem ( text , i , true ) ) ;
}
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
ui - > vorData - > horizontalHeader ( ) - > setContextMenuPolicy ( Qt : : CustomContextMenu ) ;
connect ( ui - > vorData - > horizontalHeader ( ) , SIGNAL ( customContextMenuRequested ( QPoint ) ) , SLOT ( columnSelectMenu ( QPoint ) ) ) ;
// Get signals when columns change
connect ( ui - > vorData - > horizontalHeader ( ) , SIGNAL ( sectionMoved ( int , int , int ) ) , SLOT ( vorData_sectionMoved ( int , int , int ) ) ) ;
connect ( ui - > vorData - > horizontalHeader ( ) , SIGNAL ( sectionResized ( int , int , int ) ) , SLOT ( vorData_sectionResized ( int , int , int ) ) ) ;
connect ( & m_statusTimer , SIGNAL ( timeout ( ) ) , this , SLOT ( updateStatus ( ) ) ) ;
m_statusTimer . start ( 1000 ) ;
2020-12-08 02:28:55 -05:00
ui - > rrTurnTimeProgress - > setMaximum ( m_settings . m_rrTime ) ;
ui - > rrTurnTimeProgress - > setValue ( 0 ) ;
ui - > rrTurnTimeProgress - > setToolTip ( tr ( " Round robin turn time %1s " ) . arg ( 0 ) ) ;
2020-11-29 19:30:18 -05:00
displaySettings ( ) ;
applySettings ( true ) ;
}
VORLocalizerGUI : : ~ VORLocalizerGUI ( )
{
delete ui ;
}
void VORLocalizerGUI : : blockApplySettings ( bool block )
{
m_doApplySettings = ! block ;
}
void VORLocalizerGUI : : applySettings ( bool force )
{
if ( m_doApplySettings )
{
VORLocalizer : : MsgConfigureVORLocalizer * message = VORLocalizer : : MsgConfigureVORLocalizer : : create ( m_settings , force ) ;
m_vorLocalizer - > getInputMessageQueue ( ) - > push ( message ) ;
}
}
void VORLocalizerGUI : : displaySettings ( )
{
setTitleColor ( m_settings . m_rgbColor ) ;
setWindowTitle ( m_settings . m_title ) ;
blockApplySettings ( true ) ;
// Order and size columns
QHeaderView * header = ui - > vorData - > horizontalHeader ( ) ;
for ( int i = 0 ; i < VORLocalizerSettings : : VORDEMOD_COLUMNS ; i + + )
{
bool hidden = m_settings . m_columnSizes [ i ] = = 0 ;
header - > setSectionHidden ( i , hidden ) ;
menu - > actions ( ) . at ( i ) - > setChecked ( ! hidden ) ;
if ( m_settings . m_columnSizes [ i ] > 0 ) {
ui - > vorData - > setColumnWidth ( i , m_settings . m_columnSizes [ i ] ) ;
}
header - > moveSection ( header - > visualIndex ( i ) , m_settings . m_columnIndexes [ i ] ) ;
}
2020-12-07 13:32:43 -05:00
ui - > rrTimeText - > setText ( tr ( " %1s " ) . arg ( m_settings . m_rrTime ) ) ;
ui - > rrTime - > setValue ( m_settings . m_rrTime ) ;
ui - > centerShiftText - > setText ( tr ( " %1k " ) . arg ( m_settings . m_centerShift / 1000 ) ) ;
ui - > centerShift - > setValue ( m_settings . m_centerShift / 1000 ) ;
2020-12-08 02:28:55 -05:00
ui - > forceRRAveraging - > setChecked ( m_settings . m_forceRRAveraging ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
blockApplySettings ( false ) ;
}
void VORLocalizerGUI : : leaveEvent ( QEvent * )
{
}
void VORLocalizerGUI : : enterEvent ( QEvent * )
{
}
void VORLocalizerGUI : : updateStatus ( )
{
int state = m_vorLocalizer - > getState ( ) ;
if ( m_lastFeatureState ! = state )
{
switch ( state )
{
case Feature : : StNotStarted :
ui - > startStop - > setStyleSheet ( " QToolButton { background:rgb(79,79,79); } " ) ;
break ;
case Feature : : StIdle :
ui - > startStop - > setStyleSheet ( " QToolButton { background-color : blue; } " ) ;
break ;
case Feature : : StRunning :
ui - > startStop - > setStyleSheet ( " QToolButton { background-color : green; } " ) ;
break ;
case Feature : : StError :
ui - > startStop - > setStyleSheet ( " QToolButton { background-color : red; } " ) ;
QMessageBox : : information ( this , tr ( " Message " ) , m_vorLocalizer - > getErrorMessage ( ) ) ;
break ;
default :
break ;
}
m_lastFeatureState = state ;
}
}
void VORLocalizerGUI : : tick ( )
{
2020-12-08 02:28:55 -05:00
// Try to determine position, based on intersection of two radials - every second
if ( + + m_tickCount = = 20 )
2020-11-29 19:30:18 -05:00
{
float lat , lon ;
if ( m_vorModel . findIntersection ( lat , lon ) )
{
// Move antenna icon to estimated position
QQuickItem * item = ui - > map - > rootObject ( ) ;
QObject * stationObject = item - > findChild < QObject * > ( " station " ) ;
2020-12-07 13:32:43 -05:00
2020-11-29 19:30:18 -05:00
if ( stationObject ! = NULL )
{
QGeoCoordinate coords = stationObject - > property ( " coordinate " ) . value < QGeoCoordinate > ( ) ;
coords . setLatitude ( lat ) ;
coords . setLongitude ( lon ) ;
stationObject - > setProperty ( " coordinate " , QVariant : : fromValue ( coords ) ) ;
stationObject - > setProperty ( " stationName " , QVariant : : fromValue ( MainCore : : instance ( ) - > getSettings ( ) . getStationName ( ) ) ) ;
}
}
2020-12-08 02:28:55 -05:00
m_rrSecondsCount + + ;
ui - > rrTurnTimeProgress - > setMaximum ( m_settings . m_rrTime ) ;
ui - > rrTurnTimeProgress - > setValue ( m_rrSecondsCount < = m_settings . m_rrTime ? m_rrSecondsCount : m_settings . m_rrTime ) ;
ui - > rrTurnTimeProgress - > setToolTip ( tr ( " Round robin turn time %1s " ) . arg ( m_rrSecondsCount ) ) ;
m_tickCount = 0 ;
}
2020-11-29 19:30:18 -05:00
}