mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-08 15:12:10 +08:00
504453c3e4
* support live streaming * update live stream's time * cleanup stream classes * disable video control in live streaming mode * emit streamStarted() in LiveStream::streamThread * disable some features in live streaming mode * refactor charts to support live streaming mode * disable dynamic mode checkbox in live streaming mode * updateDispalyRange * thread safe events * TODO: add support for ZMQ * atomic time stamp * only keep settings.cached_segment_limit*60 seconds data in liveStream * make charts work better in live mode * cleanup ChartView * fix toolbar * cleanup cleanup * disable openpilotPrefix and useOpenGL on macos * add comment * exit gracefully * support ZMQ * use ::operator new/delete * cleanup streams * cleanup * align stream buffers * check looping back * check if series is empty * cleanup * add TODO: write stream to log file to replay it * upper_bound * remove class member event_range * change default settings value * cleanup updateDisplayrange * fix merge error old-commit-hash: f9490739ab37ae680aef272d51eb3cf2b36b4103
157 lines
4.5 KiB
C++
157 lines
4.5 KiB
C++
#pragma once
|
|
|
|
#include <QComboBox>
|
|
#include <QDialogButtonBox>
|
|
#include <QDragEnterEvent>
|
|
#include <QGridLayout>
|
|
#include <QLabel>
|
|
#include <QListWidget>
|
|
#include <QGraphicsProxyWidget>
|
|
#include <QTimer>
|
|
#include <QtCharts/QChartView>
|
|
#include <QtCharts/QLineSeries>
|
|
#include <QtCharts/QValueAxis>
|
|
|
|
#include "tools/cabana/dbcmanager.h"
|
|
#include "tools/cabana/streams/abstractstream.h"
|
|
|
|
using namespace QtCharts;
|
|
|
|
class ChartView : public QChartView {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ChartView(QWidget *parent = nullptr);
|
|
void addSeries(const QString &msg_id, const Signal *sig);
|
|
void removeSeries(const QString &msg_id, const Signal *sig);
|
|
bool hasSeries(const QString &msg_id, const Signal *sig) const;
|
|
void updateSeries(const Signal *sig = nullptr, const std::vector<Event*> *events = nullptr, bool clear = true);
|
|
void setEventsRange(const std::pair<double, double> &range);
|
|
void setDisplayRange(double min, double max);
|
|
void setPlotAreaLeftPosition(int pos);
|
|
qreal getYAsixLabelWidth() const;
|
|
|
|
struct SigItem {
|
|
QString msg_id;
|
|
uint8_t source = 0;
|
|
uint32_t address = 0;
|
|
const Signal *sig = nullptr;
|
|
QLineSeries *series = nullptr;
|
|
double min_y = 0;
|
|
double max_y = 0;
|
|
QVector<QPointF> vals;
|
|
uint64_t last_value_mono_time = 0;
|
|
};
|
|
|
|
signals:
|
|
void seriesRemoved(const QString &id, const Signal *sig);
|
|
void seriesAdded(const QString &id, const Signal *sig);
|
|
void zoomIn(double min, double max);
|
|
void zoomReset();
|
|
void remove();
|
|
void axisYUpdated();
|
|
|
|
private slots:
|
|
void msgRemoved(uint32_t address);
|
|
void msgUpdated(uint32_t address);
|
|
void signalUpdated(const Signal *sig);
|
|
void signalRemoved(const Signal *sig);
|
|
void manageSeries();
|
|
|
|
private:
|
|
QList<ChartView::SigItem>::iterator removeSeries(const QList<ChartView::SigItem>::iterator &it);
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
void mouseMoveEvent(QMouseEvent *ev) override;
|
|
void dragMoveEvent(QDragMoveEvent *event) override;
|
|
void dropEvent(QDropEvent *event) override;
|
|
void leaveEvent(QEvent *event) override;
|
|
void resizeEvent(QResizeEvent *event) override;
|
|
void updateAxisY();
|
|
void updateTitle();
|
|
void drawForeground(QPainter *painter, const QRectF &rect) override;
|
|
void applyNiceNumbers(qreal min, qreal max);
|
|
qreal niceNumber(qreal x, bool ceiling);
|
|
void addSeries(const QList<QStringList> &series_list);
|
|
|
|
QValueAxis *axis_x;
|
|
QValueAxis *axis_y;
|
|
QPointF track_pt;
|
|
QGraphicsProxyWidget *close_btn_proxy;
|
|
QGraphicsProxyWidget *manage_btn_proxy;
|
|
std::pair<double, double> events_range = {0, 0};
|
|
QList<SigItem> sigs;
|
|
const QString mime_type = "application/x-cabanachartview";
|
|
};
|
|
|
|
class ChartsWidget : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ChartsWidget(QWidget *parent = nullptr);
|
|
void showChart(const QString &id, const Signal *sig, bool show, bool merge);
|
|
inline bool hasSignal(const QString &id, const Signal *sig) { return findChart(id, sig) != nullptr; }
|
|
|
|
public slots:
|
|
void setColumnCount(int n);
|
|
|
|
signals:
|
|
void dock(bool floating);
|
|
void rangeChanged(double min, double max, bool is_zommed);
|
|
void seriesChanged();
|
|
|
|
private:
|
|
void resizeEvent(QResizeEvent *event) override;
|
|
void alignCharts();
|
|
void removeChart(ChartView *chart);
|
|
void eventsMerged();
|
|
void updateState();
|
|
void updateDisplayRange();
|
|
void zoomIn(double min, double max);
|
|
void zoomReset();
|
|
void updateToolBar();
|
|
void removeAll();
|
|
void showAllData();
|
|
void updateLayout();
|
|
void settingChanged();
|
|
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
ChartView *findChart(const QString &id, const Signal *sig);
|
|
|
|
QLabel *title_label;
|
|
QLabel *range_label;
|
|
bool docking = true;
|
|
QAction *show_all_values_btn;
|
|
QAction *dock_btn;
|
|
QAction *reset_zoom_btn;
|
|
QAction *remove_all_btn;
|
|
QTimer *align_charts_timer;
|
|
QGridLayout *charts_layout;
|
|
QList<ChartView *> charts;
|
|
uint32_t max_chart_range = 0;
|
|
bool is_zoomed = false;
|
|
std::pair<double, double> display_range;
|
|
std::pair<double, double> zoomed_range;
|
|
bool use_dark_theme = false;
|
|
QComboBox *columns_cb;
|
|
int column_count = 1;
|
|
const int CHART_MIN_WIDTH = 300;
|
|
};
|
|
|
|
class SeriesSelector : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SeriesSelector(QWidget *parent);
|
|
void addSeries(const QString &id, const QString& msg_name, const QString &sig_name);
|
|
QList<QStringList> series();
|
|
|
|
private slots:
|
|
void msgSelected(int index);
|
|
void addSignal(QListWidgetItem *item);
|
|
|
|
private:
|
|
QComboBox *msgs_combo;
|
|
QListWidget *sig_list;
|
|
QListWidget *chart_series;
|
|
};
|