2021-05-07 16:50:27 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2023-11-18 07:12:18 -05:00
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// Copyright (C) 2015-2020, 2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
|
|
|
// Copyright (C) 2015 John Greb <hexameron@spam.no> //
|
|
|
|
// Copyright (C) 2020-2023 Jon Beniston, M7RCE <jon@beniston.com> //
|
2021-05-07 16:50:27 -04:00
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef INCLUDE_FEATURE_AISGUI_H_
|
|
|
|
#define INCLUDE_FEATURE_AISGUI_H_
|
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QMenu>
|
2022-02-04 12:06:00 -05:00
|
|
|
#include <QDateTime>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QRandomGenerator>
|
2021-05-07 16:50:27 -04:00
|
|
|
|
|
|
|
#include "feature/featuregui.h"
|
|
|
|
#include "util/messagequeue.h"
|
|
|
|
#include "util/ais.h"
|
2022-01-08 23:27:12 -05:00
|
|
|
#include "settings/rollupstate.h"
|
|
|
|
|
2021-05-07 16:50:27 -04:00
|
|
|
#include "aissettings.h"
|
|
|
|
|
|
|
|
class PluginAPI;
|
|
|
|
class FeatureUISet;
|
|
|
|
class AIS;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class AISGUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
class AISGUI : public FeatureGUI {
|
|
|
|
Q_OBJECT
|
2022-02-04 12:06:00 -05:00
|
|
|
|
|
|
|
// Holds information not in the table
|
|
|
|
struct Vessel {
|
|
|
|
QString m_image;
|
|
|
|
QString m_model;
|
|
|
|
};
|
|
|
|
|
2021-05-07 16:50:27 -04:00
|
|
|
public:
|
|
|
|
static AISGUI* create(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feature);
|
|
|
|
virtual void destroy();
|
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2022-05-13 16:24:48 -04:00
|
|
|
virtual void setWorkspaceIndex(int index);
|
2022-04-05 10:26:57 -04:00
|
|
|
virtual int getWorkspaceIndex() const { return m_settings.m_workspaceIndex; }
|
|
|
|
virtual void setGeometryBytes(const QByteArray& blob) { m_settings.m_geometryBytes = blob; }
|
|
|
|
virtual QByteArray getGeometryBytes() const { return m_settings.m_geometryBytes; }
|
2021-05-07 16:50:27 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::AISGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
FeatureUISet* m_featureUISet;
|
|
|
|
AISSettings m_settings;
|
2022-11-20 13:54:13 -05:00
|
|
|
QList<QString> m_settingsKeys;
|
2022-01-08 23:27:12 -05:00
|
|
|
RollupState m_rollupState;
|
2021-05-07 16:50:27 -04:00
|
|
|
bool m_doApplySettings;
|
|
|
|
|
|
|
|
AIS* m_ais;
|
|
|
|
MessageQueue m_inputMessageQueue;
|
2022-02-04 12:06:00 -05:00
|
|
|
QTimer m_timer;
|
2021-05-07 16:50:27 -04:00
|
|
|
int m_lastFeatureState;
|
|
|
|
|
2022-02-04 12:06:00 -05:00
|
|
|
QRandomGenerator m_random;
|
|
|
|
QHash<QString, Vessel *> m_vessels; // Hash of mmsi to vessels
|
|
|
|
static QStringList m_shipModels;
|
|
|
|
static QStringList m_sailboatModels;
|
|
|
|
static QHash<QString, float> m_labelOffset;
|
|
|
|
static QHash<QString, float> m_modelOffset;
|
|
|
|
|
2021-05-07 16:50:27 -04:00
|
|
|
QMenu *vesselsMenu; // Column select context menu
|
|
|
|
|
|
|
|
explicit AISGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feature, QWidget* parent = nullptr);
|
|
|
|
virtual ~AISGUI();
|
|
|
|
|
|
|
|
void blockApplySettings(bool block);
|
|
|
|
void applySettings(bool force = false);
|
|
|
|
void displaySettings();
|
|
|
|
bool handleMessage(const Message& message);
|
|
|
|
|
2022-02-04 17:42:05 -05:00
|
|
|
void sendToMap(const QString &name, const QString &label,
|
2022-02-04 12:06:00 -05:00
|
|
|
const QString &image, const QString &text,
|
|
|
|
const QString &model, float modelOffset, float labelOffset,
|
|
|
|
float latitude, float longitude, QDateTime positionDateTime,
|
|
|
|
float heading
|
|
|
|
);
|
|
|
|
void updateVessels(AISMessage *ais, QDateTime dateTime);
|
|
|
|
void getImageAndModel(const QString &type, const QString &shipType, int length, const QString &status, Vessel *vessel);
|
2021-05-07 16:50:27 -04:00
|
|
|
void resizeTable();
|
|
|
|
QAction *createCheckableItem(QString& text, int idx, bool checked, const char *slot);
|
|
|
|
|
|
|
|
enum VesselCol {
|
|
|
|
VESSEL_COL_MMSI,
|
2023-05-16 05:17:17 -04:00
|
|
|
VESSEL_COL_COUNTRY,
|
2021-05-07 16:50:27 -04:00
|
|
|
VESSEL_COL_TYPE,
|
|
|
|
VESSEL_COL_LATITUDE,
|
|
|
|
VESSEL_COL_LONGITUDE,
|
|
|
|
VESSEL_COL_COURSE,
|
|
|
|
VESSEL_COL_SPEED,
|
|
|
|
VESSEL_COL_HEADING,
|
|
|
|
VESSEL_COL_STATUS,
|
|
|
|
VESSEL_COL_IMO,
|
|
|
|
VESSEL_COL_NAME,
|
|
|
|
VESSEL_COL_CALLSIGN,
|
|
|
|
VESSEL_COL_SHIP_TYPE,
|
2022-02-04 12:06:00 -05:00
|
|
|
VESSEL_COL_LENGTH,
|
|
|
|
VESSEL_COL_DESTINATION,
|
|
|
|
VESSEL_COL_POSITION_UPDATE,
|
|
|
|
VESSEL_COL_LAST_UPDATE,
|
|
|
|
VESSEL_COL_MESSAGES
|
2021-05-07 16:50:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onMenuDialogCalled(const QPoint &p);
|
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
|
|
void handleInputMessages();
|
|
|
|
void on_vessels_cellDoubleClicked(int row, int column);
|
2022-02-04 12:06:00 -05:00
|
|
|
void vessels_customContextMenuRequested(QPoint pos);
|
2021-05-07 16:50:27 -04:00
|
|
|
void vessels_sectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex);
|
|
|
|
void vessels_sectionResized(int logicalIndex, int oldSize, int newSize);
|
|
|
|
void vesselsColumnSelectMenu(QPoint pos);
|
|
|
|
void vesselsColumnSelectMenuChecked(bool checked = false);
|
2022-02-04 12:06:00 -05:00
|
|
|
void removeOldVessels();
|
2021-05-07 16:50:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_FEATURE_AISGUI_H_
|