mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-08 03:35:35 +08:00
Ref T310, added model statistics dialog
* UI for statistics * renamed to "coverageSummaryForModel" * model list "htmlStatistics"
This commit is contained in:
@@ -120,7 +120,7 @@ namespace BlackCore
|
|||||||
if (log) { log->clear(); }
|
if (log) { log->clear(); }
|
||||||
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, m1.arg(startTime.toString(format)));
|
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, m1.arg(startTime.toString(format)));
|
||||||
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, m2.arg(remoteAircraft.getCallsignAsString(), remoteAircraft.getModel().toQString()));
|
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, m2.arg(remoteAircraft.getCallsignAsString(), remoteAircraft.getModel().toQString()));
|
||||||
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, m3.arg(modelSet.size()).arg(modelSet.extCoverageSummary(remoteAircraft.getModel())));
|
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, m3.arg(modelSet.size()).arg(modelSet.coverageSummaryForModel(remoteAircraft.getModel())));
|
||||||
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, m4.arg(setup.toQString(true)));
|
CMatchingUtils::addLogDetailsToList(log, remoteAircraft, m4.arg(setup.toQString(true)));
|
||||||
|
|
||||||
// Before I really search I check some special conditions
|
// Before I really search I check some special conditions
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ SOURCES += $$PWD/menus/*.cpp
|
|||||||
|
|
||||||
HEADERS += $$PWD/views/*.h
|
HEADERS += $$PWD/views/*.h
|
||||||
SOURCES += $$PWD/views/*.cpp
|
SOURCES += $$PWD/views/*.cpp
|
||||||
|
FORMS += $$PWD/views/*.ui
|
||||||
|
|
||||||
HEADERS += $$PWD/components/*.h
|
HEADERS += $$PWD/components/*.h
|
||||||
HEADERS += $$PWD/settings/*.h
|
HEADERS += $$PWD/settings/*.h
|
||||||
|
|||||||
35
src/blackgui/views/aircraftmodelstatisticsdialog.cpp
Normal file
35
src/blackgui/views/aircraftmodelstatisticsdialog.cpp
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
/* Copyright (C) 2018
|
||||||
|
* swift project Community / Contributors
|
||||||
|
*
|
||||||
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
||||||
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
||||||
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
||||||
|
* contained in the LICENSE file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "aircraftmodelstatisticsdialog.h"
|
||||||
|
#include "ui_aircraftmodelstatisticsdialog.h"
|
||||||
|
|
||||||
|
using namespace BlackMisc::Simulation;
|
||||||
|
|
||||||
|
namespace BlackGui
|
||||||
|
{
|
||||||
|
namespace Views
|
||||||
|
{
|
||||||
|
CAircraftModelStatisticsDialog::CAircraftModelStatisticsDialog(QWidget *parent) :
|
||||||
|
QDialog(parent),
|
||||||
|
ui(new Ui::CAircraftModelStatisticsDialog)
|
||||||
|
{
|
||||||
|
ui->setupUi(this);
|
||||||
|
this->setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||||
|
}
|
||||||
|
|
||||||
|
CAircraftModelStatisticsDialog::~CAircraftModelStatisticsDialog()
|
||||||
|
{ }
|
||||||
|
|
||||||
|
void CAircraftModelStatisticsDialog::analyzeModels(const CAircraftModelList &models)
|
||||||
|
{
|
||||||
|
ui->te_Statistics->setHtml(models.htmlStatistics());
|
||||||
|
}
|
||||||
|
} // ns
|
||||||
|
} // ns
|
||||||
45
src/blackgui/views/aircraftmodelstatisticsdialog.h
Normal file
45
src/blackgui/views/aircraftmodelstatisticsdialog.h
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
/* Copyright (C) 2018
|
||||||
|
* swift project Community / Contributors
|
||||||
|
*
|
||||||
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
||||||
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
||||||
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
||||||
|
* contained in the LICENSE file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//! \file
|
||||||
|
|
||||||
|
#ifndef BLACKGUI_VIEW_AIRCRAFTMODELSTATISTICSDIALOG_H
|
||||||
|
#define BLACKGUI_VIEW_AIRCRAFTMODELSTATISTICSDIALOG_H
|
||||||
|
|
||||||
|
#include "blackmisc/simulation/aircraftmodellist.h"
|
||||||
|
#include <QDialog>
|
||||||
|
#include <QScopedPointer>
|
||||||
|
|
||||||
|
namespace Ui { class CAircraftModelStatisticsDialog; }
|
||||||
|
namespace BlackGui
|
||||||
|
{
|
||||||
|
namespace Views
|
||||||
|
{
|
||||||
|
//! Info about the models
|
||||||
|
class CAircraftModelStatisticsDialog : public QDialog
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
//! Constructor
|
||||||
|
explicit CAircraftModelStatisticsDialog(QWidget *parent = nullptr);
|
||||||
|
|
||||||
|
//! Destructor
|
||||||
|
virtual ~CAircraftModelStatisticsDialog();
|
||||||
|
|
||||||
|
//! Set and analyze the models
|
||||||
|
void analyzeModels(const BlackMisc::Simulation::CAircraftModelList &models);
|
||||||
|
|
||||||
|
private:
|
||||||
|
QScopedPointer<Ui::CAircraftModelStatisticsDialog> ui;
|
||||||
|
};
|
||||||
|
} // ns
|
||||||
|
} // ns
|
||||||
|
|
||||||
|
#endif // guard
|
||||||
80
src/blackgui/views/aircraftmodelstatisticsdialog.ui
Normal file
80
src/blackgui/views/aircraftmodelstatisticsdialog.ui
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>CAircraftModelStatisticsDialog</class>
|
||||||
|
<widget class="QDialog" name="CAircraftModelStatisticsDialog">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>400</width>
|
||||||
|
<height>300</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>300</width>
|
||||||
|
<height>200</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Aircraft model statistics</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QTextEdit" name="te_Statistics">
|
||||||
|
<property name="documentTitle">
|
||||||
|
<string>Statistics</string>
|
||||||
|
</property>
|
||||||
|
<property name="readOnly">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QDialogButtonBox" name="bb_AircraftModelStatistics">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Close</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections>
|
||||||
|
<connection>
|
||||||
|
<sender>bb_AircraftModelStatistics</sender>
|
||||||
|
<signal>accepted()</signal>
|
||||||
|
<receiver>CAircraftModelStatisticsDialog</receiver>
|
||||||
|
<slot>accept()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>248</x>
|
||||||
|
<y>254</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>157</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>bb_AircraftModelStatistics</sender>
|
||||||
|
<signal>rejected()</signal>
|
||||||
|
<receiver>CAircraftModelStatisticsDialog</receiver>
|
||||||
|
<slot>reject()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>316</x>
|
||||||
|
<y>260</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>286</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
</connections>
|
||||||
|
</ui>
|
||||||
@@ -7,9 +7,10 @@
|
|||||||
* contained in the LICENSE file.
|
* contained in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "aircraftmodelview.h"
|
||||||
|
#include "viewbase.h"
|
||||||
|
#include "aircraftmodelstatisticsdialog.h"
|
||||||
#include "blackgui/filters/aircraftmodelfilterdialog.h"
|
#include "blackgui/filters/aircraftmodelfilterdialog.h"
|
||||||
#include "blackgui/views/aircraftmodelview.h"
|
|
||||||
#include "blackgui/views/viewbase.h"
|
|
||||||
#include "blackgui/menus/menuaction.h"
|
#include "blackgui/menus/menuaction.h"
|
||||||
#include "blackgui/guiapplication.h"
|
#include "blackgui/guiapplication.h"
|
||||||
#include "blackgui/guiutility.h"
|
#include "blackgui/guiutility.h"
|
||||||
@@ -206,7 +207,7 @@ namespace BlackGui
|
|||||||
{
|
{
|
||||||
if (valueVariant.canConvert<CAircraftModel>())
|
if (valueVariant.canConvert<CAircraftModel>())
|
||||||
{
|
{
|
||||||
CAircraftModel model = valueVariant.value<CAircraftModel>();
|
const CAircraftModel model = valueVariant.value<CAircraftModel>();
|
||||||
if (!model.hasModelString()) { return; }
|
if (!model.hasModelString()) { return; }
|
||||||
const CAircraftModelList models({model});
|
const CAircraftModelList models({model});
|
||||||
this->derivedModel()->replaceOrAddByModelString(models);
|
this->derivedModel()->replaceOrAddByModelString(models);
|
||||||
@@ -214,7 +215,7 @@ namespace BlackGui
|
|||||||
}
|
}
|
||||||
else if (valueVariant.canConvert<CAircraftModelList>())
|
else if (valueVariant.canConvert<CAircraftModelList>())
|
||||||
{
|
{
|
||||||
CAircraftModelList models(valueVariant.value<CAircraftModelList>());
|
const CAircraftModelList models(valueVariant.value<CAircraftModelList>());
|
||||||
if (models.isEmpty()) { return; }
|
if (models.isEmpty()) { return; }
|
||||||
this->derivedModel()->replaceOrAddByModelString(models);
|
this->derivedModel()->replaceOrAddByModelString(models);
|
||||||
return;
|
return;
|
||||||
@@ -266,7 +267,7 @@ namespace BlackGui
|
|||||||
}
|
}
|
||||||
else if (valueVariant.canConvert<CAirlineIcaoCode>())
|
else if (valueVariant.canConvert<CAirlineIcaoCode>())
|
||||||
{
|
{
|
||||||
CAirlineIcaoCode airline = valueVariant.value<CAirlineIcaoCode>();
|
const CAirlineIcaoCode airline = valueVariant.value<CAirlineIcaoCode>();
|
||||||
if (airline.validate().hasErrorMessages()) { return; }
|
if (airline.validate().hasErrorMessages()) { return; }
|
||||||
emit requestHandlingOfStashDrop(airline); // I need to convert to stanard livery, which I can`t do here
|
emit requestHandlingOfStashDrop(airline); // I need to convert to stanard livery, which I can`t do here
|
||||||
}
|
}
|
||||||
@@ -288,7 +289,11 @@ namespace BlackGui
|
|||||||
|
|
||||||
void CAircraftModelView::customMenu(CMenuActions &menuActions)
|
void CAircraftModelView::customMenu(CMenuActions &menuActions)
|
||||||
{
|
{
|
||||||
bool used = false;
|
// Statistics
|
||||||
|
menuActions.addAction(CIcons::appAircraft16(), "Model statistics", CMenuAction::pathModel(), { this, &CAircraftModelView::displayModelStatisticsDialog });
|
||||||
|
|
||||||
|
// Stash menus
|
||||||
|
bool addStashMenu = false;
|
||||||
if (m_menus.testFlag(MenuCanStashModels))
|
if (m_menus.testFlag(MenuCanStashModels))
|
||||||
{
|
{
|
||||||
if (!m_menuFlagActions.contains(MenuCanStashModels))
|
if (!m_menuFlagActions.contains(MenuCanStashModels))
|
||||||
@@ -308,7 +313,7 @@ namespace BlackGui
|
|||||||
a->setEnabled(canStash);
|
a->setEnabled(canStash);
|
||||||
a = menuActions.addActions(initMenuActions(MenuCanStashModels)).last();
|
a = menuActions.addActions(initMenuActions(MenuCanStashModels)).last();
|
||||||
a->setChecked(m_stashingClearsSelection);
|
a->setChecked(m_stashingClearsSelection);
|
||||||
used = true;
|
addStashMenu = true;
|
||||||
}
|
}
|
||||||
if (m_menus.testFlag(MenuHighlightStashed))
|
if (m_menus.testFlag(MenuHighlightStashed))
|
||||||
{
|
{
|
||||||
@@ -322,9 +327,11 @@ namespace BlackGui
|
|||||||
}
|
}
|
||||||
QAction *a = menuActions.addActions(initMenuActions(CViewBaseNonTemplate::MenuHighlightStashed)).first();
|
QAction *a = menuActions.addActions(initMenuActions(CViewBaseNonTemplate::MenuHighlightStashed)).first();
|
||||||
a->setChecked(this->derivedModel()->highlightModelStrings());
|
a->setChecked(this->derivedModel()->highlightModelStrings());
|
||||||
used = true;
|
addStashMenu = true;
|
||||||
}
|
}
|
||||||
if (used) { menuActions.addMenuStash();}
|
if (addStashMenu) { menuActions.addMenuStash(); }
|
||||||
|
|
||||||
|
// base class menus
|
||||||
COrderableViewWithDbObjects::customMenu(menuActions);
|
COrderableViewWithDbObjects::customMenu(menuActions);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -392,5 +399,16 @@ namespace BlackGui
|
|||||||
}
|
}
|
||||||
sGui->displayInStatusBar(CStatusMessage(CStatusMessage::SeverityInfo, "Stashed " + models.getModelStringList(true).join(" ")));
|
sGui->displayInStatusBar(CStatusMessage(CStatusMessage::SeverityInfo, "Stashed " + models.getModelStringList(true).join(" ")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CAircraftModelView::displayModelStatisticsDialog()
|
||||||
|
{
|
||||||
|
if (!m_statisticsDialog)
|
||||||
|
{
|
||||||
|
m_statisticsDialog = new CAircraftModelStatisticsDialog(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
m_statisticsDialog->analyzeModels(this->container());
|
||||||
|
m_statisticsDialog->exec();
|
||||||
|
}
|
||||||
} // namespace
|
} // namespace
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|||||||
@@ -46,6 +46,8 @@ namespace BlackGui
|
|||||||
namespace Menus { class CMenuActions; }
|
namespace Menus { class CMenuActions; }
|
||||||
namespace Views
|
namespace Views
|
||||||
{
|
{
|
||||||
|
class CAircraftModelStatisticsDialog;
|
||||||
|
|
||||||
//! Aircraft view
|
//! Aircraft view
|
||||||
class BLACKGUI_EXPORT CAircraftModelView :
|
class BLACKGUI_EXPORT CAircraftModelView :
|
||||||
public COrderableViewWithDbObjects<Models::CAircraftModelListModel, BlackMisc::Simulation::CAircraftModelList, BlackMisc::Simulation::CAircraftModel, int>
|
public COrderableViewWithDbObjects<Models::CAircraftModelListModel, BlackMisc::Simulation::CAircraftModelList, BlackMisc::Simulation::CAircraftModel, int>
|
||||||
@@ -146,7 +148,11 @@ namespace BlackGui
|
|||||||
//! Stash shortcut pressed
|
//! Stash shortcut pressed
|
||||||
void requestedStash();
|
void requestedStash();
|
||||||
|
|
||||||
|
//! Dialog about model statistics
|
||||||
|
void displayModelStatisticsDialog();
|
||||||
|
|
||||||
bool m_stashingClearsSelection = true; //!< stashing unselects
|
bool m_stashingClearsSelection = true; //!< stashing unselects
|
||||||
|
CAircraftModelStatisticsDialog *m_statisticsDialog = nullptr;
|
||||||
BlackMisc::Simulation::CSimulatorInfo m_loadingRequiresSimulator; //!< simulator required when loading
|
BlackMisc::Simulation::CSimulatorInfo m_loadingRequiresSimulator; //!< simulator required when loading
|
||||||
};
|
};
|
||||||
} // ns
|
} // ns
|
||||||
|
|||||||
@@ -47,6 +47,30 @@ namespace BlackMisc
|
|||||||
return this->container().findFirstByOrDefault(&OBJ::getDbKey, key, notFound);
|
return this->container().findFirstByOrDefault(&OBJ::getDbKey, key, notFound);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class OBJ, class CONTAINER, typename KEYTYPE>
|
||||||
|
CONTAINER IDatastoreObjectList<OBJ, CONTAINER, KEYTYPE>::findObjectsWithDbKey() const
|
||||||
|
{
|
||||||
|
CONTAINER objects;
|
||||||
|
for (const OBJ &obj : ITimestampObjectList<OBJ, CONTAINER>::container())
|
||||||
|
{
|
||||||
|
if (!obj.hasValidDbKey()) { continue; }
|
||||||
|
objects.push_back(obj);
|
||||||
|
}
|
||||||
|
return objects;
|
||||||
|
}
|
||||||
|
|
||||||
|
template<class OBJ, class CONTAINER, typename KEYTYPE>
|
||||||
|
CONTAINER IDatastoreObjectList<OBJ, CONTAINER, KEYTYPE>::findObjectsWithoutDbKey() const
|
||||||
|
{
|
||||||
|
CONTAINER objects;
|
||||||
|
for (const OBJ &obj : ITimestampObjectList<OBJ, CONTAINER>::container())
|
||||||
|
{
|
||||||
|
if (obj.hasValidDbKey()) { continue; }
|
||||||
|
objects.push_back(obj);
|
||||||
|
}
|
||||||
|
return objects;
|
||||||
|
}
|
||||||
|
|
||||||
template <class OBJ, class CONTAINER, typename KEYTYPE>
|
template <class OBJ, class CONTAINER, typename KEYTYPE>
|
||||||
OBJ IDatastoreObjectList<OBJ, CONTAINER, KEYTYPE>::maxKeyObject() const
|
OBJ IDatastoreObjectList<OBJ, CONTAINER, KEYTYPE>::maxKeyObject() const
|
||||||
{
|
{
|
||||||
@@ -139,8 +163,8 @@ namespace BlackMisc
|
|||||||
if (keys.contains(obj.getDbKey())) { continue; }
|
if (keys.contains(obj.getDbKey())) { continue; }
|
||||||
newValues.push_back(obj);
|
newValues.push_back(obj);
|
||||||
}
|
}
|
||||||
int delta = this->container().size() - newValues.size();
|
const int delta = this->container().size() - newValues.size();
|
||||||
this->container() = newValues;
|
if (delta > 0) { this->container() = newValues; }
|
||||||
return delta;
|
return delta;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -197,6 +221,16 @@ namespace BlackMisc
|
|||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class OBJ, class CONTAINER, typename KEYTYPE>
|
||||||
|
bool IDatastoreObjectList<OBJ, CONTAINER, KEYTYPE>::containsAnyObjectWithoutKey() const
|
||||||
|
{
|
||||||
|
for (const OBJ &obj : ITimestampObjectList<OBJ, CONTAINER>::container())
|
||||||
|
{
|
||||||
|
if (!obj.hasValidDbKey()) { return true; }
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
template<class OBJ, class CONTAINER, typename KEYTYPE>
|
template<class OBJ, class CONTAINER, typename KEYTYPE>
|
||||||
CONTAINER IDatastoreObjectList<OBJ, CONTAINER, KEYTYPE>::fromMultipleJsonFormats(const QJsonObject &jsonObject)
|
CONTAINER IDatastoreObjectList<OBJ, CONTAINER, KEYTYPE>::fromMultipleJsonFormats(const QJsonObject &jsonObject)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -30,6 +30,12 @@ namespace BlackMisc
|
|||||||
//! Object with key, notFound otherwise
|
//! Object with key, notFound otherwise
|
||||||
OBJ findByKey(KEYTYPE key, const OBJ ¬Found = OBJ()) const;
|
OBJ findByKey(KEYTYPE key, const OBJ ¬Found = OBJ()) const;
|
||||||
|
|
||||||
|
//! Objects with DB key
|
||||||
|
CONTAINER findObjectsWithDbKey() const;
|
||||||
|
|
||||||
|
//! Objects without DB key
|
||||||
|
CONTAINER findObjectsWithoutDbKey() const;
|
||||||
|
|
||||||
//! Object with max.key
|
//! Object with max.key
|
||||||
OBJ maxKeyObject() const;
|
OBJ maxKeyObject() const;
|
||||||
|
|
||||||
@@ -66,6 +72,9 @@ namespace BlackMisc
|
|||||||
//! Number of entries with valid DB key
|
//! Number of entries with valid DB key
|
||||||
int countWithValidDbKey() const;
|
int countWithValidDbKey() const;
|
||||||
|
|
||||||
|
//! Any object without key?
|
||||||
|
bool containsAnyObjectWithoutKey() const;
|
||||||
|
|
||||||
//! From multiple JSON formats
|
//! From multiple JSON formats
|
||||||
//! \remark supports native swift C++ format, DB format, and cache format
|
//! \remark supports native swift C++ format, DB format, and cache format
|
||||||
static CONTAINER fromMultipleJsonFormats(const QJsonObject &jsonObject);
|
static CONTAINER fromMultipleJsonFormats(const QJsonObject &jsonObject);
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
#include "blackmisc/aviation/airlineicaocode.h"
|
#include "blackmisc/aviation/airlineicaocode.h"
|
||||||
#include "blackmisc/aviation/callsign.h"
|
#include "blackmisc/aviation/callsign.h"
|
||||||
#include "blackmisc/aviation/livery.h"
|
#include "blackmisc/aviation/livery.h"
|
||||||
|
#include "blackmisc/math/mathutils.h"
|
||||||
#include "blackmisc/compare.h"
|
#include "blackmisc/compare.h"
|
||||||
#include "blackmisc/iterator.h"
|
#include "blackmisc/iterator.h"
|
||||||
#include "blackmisc/range.h"
|
#include "blackmisc/range.h"
|
||||||
@@ -26,6 +27,7 @@
|
|||||||
#include <tuple>
|
#include <tuple>
|
||||||
|
|
||||||
using namespace BlackMisc::Network;
|
using namespace BlackMisc::Network;
|
||||||
|
using namespace BlackMisc::Math;
|
||||||
using namespace BlackMisc::Aviation;
|
using namespace BlackMisc::Aviation;
|
||||||
using namespace BlackMisc::PhysicalQuantities;
|
using namespace BlackMisc::PhysicalQuantities;
|
||||||
|
|
||||||
@@ -504,20 +506,18 @@ namespace BlackMisc
|
|||||||
int CAircraftModelList::removeIfNotMatchingSimulator(const CSimulatorInfo &needToMatch)
|
int CAircraftModelList::removeIfNotMatchingSimulator(const CSimulatorInfo &needToMatch)
|
||||||
{
|
{
|
||||||
if (this->isEmpty()) { return 0; }
|
if (this->isEmpty()) { return 0; }
|
||||||
int c = 0;
|
const int oldSize = this->size();
|
||||||
for (auto it = this->begin(); it != this->end();)
|
CAircraftModelList models;
|
||||||
|
for (const CAircraftModel &model : *this)
|
||||||
{
|
{
|
||||||
if (it->matchesSimulator(needToMatch))
|
if (model.matchesSimulator(needToMatch))
|
||||||
{
|
{
|
||||||
++it;
|
models.push_back(model);
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
c++;
|
|
||||||
it = this->erase(it);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return c;
|
const int diff = models.size() - oldSize;
|
||||||
|
if (diff > 0) { *this = models; }
|
||||||
|
return diff;
|
||||||
}
|
}
|
||||||
|
|
||||||
int CAircraftModelList::removeAllWithoutModelString()
|
int CAircraftModelList::removeAllWithoutModelString()
|
||||||
@@ -848,7 +848,7 @@ namespace BlackMisc
|
|||||||
// normally prefer colors if there is no airline
|
// normally prefer colors if there is no airline
|
||||||
CMatchingUtils::addLogDetailsToList(log, remoteModel.getCallsign(), QString("Prefer color liveries: '%1', airline: '%2', ignore zero scores: '%3'").arg(boolToYesNo(preferColorLiveries), remoteModel.getAirlineIcaoCodeDesignator(), boolToYesNo(ignoreZeroScores)));
|
CMatchingUtils::addLogDetailsToList(log, remoteModel.getCallsign(), QString("Prefer color liveries: '%1', airline: '%2', ignore zero scores: '%3'").arg(boolToYesNo(preferColorLiveries), remoteModel.getAirlineIcaoCodeDesignator(), boolToYesNo(ignoreZeroScores)));
|
||||||
CMatchingUtils::addLogDetailsToList(log, remoteModel.getCallsign(), QString("--- Start scoring in list with %1 models").arg(this->size()));
|
CMatchingUtils::addLogDetailsToList(log, remoteModel.getCallsign(), QString("--- Start scoring in list with %1 models").arg(this->size()));
|
||||||
CMatchingUtils::addLogDetailsToList(log, remoteModel.getCallsign(), this->extCoverageSummary(remoteModel));
|
CMatchingUtils::addLogDetailsToList(log, remoteModel.getCallsign(), this->coverageSummaryForModel(remoteModel));
|
||||||
|
|
||||||
int c = 1;
|
int c = 1;
|
||||||
for (const CAircraftModel &model : *this)
|
for (const CAircraftModel &model : *this)
|
||||||
@@ -1054,17 +1054,23 @@ namespace BlackMisc
|
|||||||
QString html;
|
QString html;
|
||||||
for (const CAircraftModel &model : *this)
|
for (const CAircraftModel &model : *this)
|
||||||
{
|
{
|
||||||
if (!html.isEmpty()) { html += "<br>"; }
|
html += html.isEmpty() ?
|
||||||
html += model.asHtmlSummary(" ");
|
model.asHtmlSummary(" ") :
|
||||||
|
QStringLiteral("<br>") % model.asHtmlSummary(" ");
|
||||||
}
|
}
|
||||||
return html;
|
return html;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString CAircraftModelList::coverageSummary(const QString &separator) const
|
QString CAircraftModelList::coverageSummary(const QString &separator) const
|
||||||
{
|
{
|
||||||
|
if (this->isEmpty()) { return "no models"; } // avoid division by 0
|
||||||
|
|
||||||
|
const int dbEntries = this->countWithValidDbKey();
|
||||||
|
const double dbRatio = CMathUtils::round(static_cast<double>(100 * dbEntries) / this->size(), 1);
|
||||||
return
|
return
|
||||||
QStringLiteral("Entries: ") % QString::number(this->size()) %
|
QStringLiteral("Entries: ") % QString::number(this->size()) %
|
||||||
QStringLiteral(" | valid DB keys: ") % QString::number(this->countWithValidDbKey()) % separator %
|
QStringLiteral(" | valid DB keys: ") % QString::number(dbEntries) %
|
||||||
|
QStringLiteral(" (") % QString::number(dbRatio) % QStringLiteral("%)") % separator %
|
||||||
QStringLiteral("color liveries: ") % QString::number(this->countModelsWithColorLivery()) %
|
QStringLiteral("color liveries: ") % QString::number(this->countModelsWithColorLivery()) %
|
||||||
QStringLiteral(" | airline liveries: ") % QString::number(this->countModelsWithAirlineLivery()) % separator %
|
QStringLiteral(" | airline liveries: ") % QString::number(this->countModelsWithAirlineLivery()) % separator %
|
||||||
QStringLiteral("VTOL: ") % QString::number(this->countVtolAircraft()) %
|
QStringLiteral("VTOL: ") % QString::number(this->countVtolAircraft()) %
|
||||||
@@ -1075,7 +1081,7 @@ namespace BlackMisc
|
|||||||
QStringLiteral("Simulators: ") % this->countPerSimulator().toQString();
|
QStringLiteral("Simulators: ") % this->countPerSimulator().toQString();
|
||||||
}
|
}
|
||||||
|
|
||||||
QString CAircraftModelList::extCoverageSummary(const CAircraftModel &checkModel, const QString &separator) const
|
QString CAircraftModelList::coverageSummaryForModel(const CAircraftModel &checkModel, const QString &separator) const
|
||||||
{
|
{
|
||||||
const bool combinedCodeForModel = this->containsCombinedType(checkModel.getAircraftIcaoCode().getCombinedType());
|
const bool combinedCodeForModel = this->containsCombinedType(checkModel.getAircraftIcaoCode().getCombinedType());
|
||||||
const bool airlineForModel = checkModel.hasAirlineDesignator() && this->containsAirlineLivery(checkModel.getAirlineIcaoCode());
|
const bool airlineForModel = checkModel.hasAirlineDesignator() && this->containsAirlineLivery(checkModel.getAirlineIcaoCode());
|
||||||
@@ -1087,5 +1093,18 @@ namespace BlackMisc
|
|||||||
QStringLiteral("")
|
QStringLiteral("")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString CAircraftModelList::htmlStatistics() const
|
||||||
|
{
|
||||||
|
const bool notOnlyDb = this->containsAnyObjectWithoutKey();
|
||||||
|
QString stats = this->coverageSummary("<br>");
|
||||||
|
if (notOnlyDb)
|
||||||
|
{
|
||||||
|
const CAircraftModelList dbModels = this->findObjectsWithDbKey();
|
||||||
|
stats += QStringLiteral("<br><br>DB objects:<br>---------<br>") %
|
||||||
|
dbModels.coverageSummary("<br>");
|
||||||
|
}
|
||||||
|
return stats;
|
||||||
|
}
|
||||||
} // namespace
|
} // namespace
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|||||||
@@ -352,7 +352,10 @@ namespace BlackMisc
|
|||||||
|
|
||||||
//! What kind of models are represented here?
|
//! What kind of models are represented here?
|
||||||
//! \remark checking for some criteria in the given model
|
//! \remark checking for some criteria in the given model
|
||||||
QString extCoverageSummary(const CAircraftModel &checkModel, const QString &separator = "\n") const;
|
QString coverageSummaryForModel(const CAircraftModel &checkModel, const QString &separator = "\n") const;
|
||||||
|
|
||||||
|
//! A HTML summary of the data in the list
|
||||||
|
QString htmlStatistics() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
//! Model per callsign
|
//! Model per callsign
|
||||||
|
|||||||
Reference in New Issue
Block a user