VideoManager.h 4.94 KB
Newer Older
1 2
/****************************************************************************
 *
3
 *   (c) 2009-2019 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9 10 11 12 13 14 15
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/


#ifndef VideoManager_H
#define VideoManager_H

#include <QObject>
#include <QTimer>
16
#include <QTime>
17
#include <QUrl>
18

19
#include "QGCMAVLink.h"
20 21 22
#include "QGCLoggingCategory.h"
#include "VideoReceiver.h"
#include "QGCToolbox.h"
23
#include "SubtitleWriter.h"
24 25 26

Q_DECLARE_LOGGING_CATEGORY(VideoManagerLog)

27
class VideoSettings;
28
class Vehicle;
29
class Joystick;
30

31 32 33 34 35
class VideoManager : public QGCTool
{
    Q_OBJECT

public:
36
    VideoManager    (QGCApplication* app, QGCToolbox* toolbox);
37 38
    ~VideoManager   ();

39 40 41 42 43 44 45
    Q_PROPERTY(bool             hasVideo                READ    hasVideo                                    NOTIFY hasVideoChanged)
    Q_PROPERTY(bool             isGStreamer             READ    isGStreamer                                 NOTIFY isGStreamerChanged)
    Q_PROPERTY(bool             isTaisync               READ    isTaisync       WRITE   setIsTaisync        NOTIFY isTaisyncChanged)
    Q_PROPERTY(QString          videoSourceID           READ    videoSourceID                               NOTIFY videoSourceIDChanged)
    Q_PROPERTY(bool             uvcEnabled              READ    uvcEnabled                                  CONSTANT)
    Q_PROPERTY(bool             fullScreen              READ    fullScreen      WRITE   setfullScreen       NOTIFY fullScreenChanged)
    Q_PROPERTY(VideoReceiver*   videoReceiver           READ    videoReceiver                               CONSTANT)
46
    Q_PROPERTY(VideoReceiver*   thermalVideoReceiver    READ    thermalVideoReceiver                        CONSTANT)
47
    Q_PROPERTY(double           aspectRatio             READ    aspectRatio                                 NOTIFY aspectRatioChanged)
48 49 50
    Q_PROPERTY(double           thermalAspectRatio      READ    thermalAspectRatio                          NOTIFY aspectRatioChanged)
    Q_PROPERTY(double           hfov                    READ    hfov                                        NOTIFY aspectRatioChanged)
    Q_PROPERTY(double           thermalHfov             READ    thermalHfov                                 NOTIFY aspectRatioChanged)
51
    Q_PROPERTY(bool             autoStreamConfigured    READ    autoStreamConfigured                        NOTIFY autoStreamConfiguredChanged)
52
    Q_PROPERTY(bool             hasThermal              READ    hasThermal                                  NOTIFY aspectRatioChanged)
53

54 55
    bool        hasVideo            ();
    bool        isGStreamer         ();
56
    bool        isAutoStream        ();
57
    bool        isTaisync           () { return _isTaisync; }
58
    bool        fullScreen          () { return _fullScreen; }
59
    QString     videoSourceID       () { return _videoSourceID; }
60
    double      aspectRatio         ();
61 62 63
    double      thermalAspectRatio  ();
    double      hfov                ();
    double      thermalHfov         ();
64
    bool        autoStreamConfigured();
65
    bool        hasThermal          ();
66
    void        restartVideo        ();
67

68 69
    VideoReceiver*  videoReceiver           () { return _videoReceiver; }
    VideoReceiver*  thermalVideoReceiver    () { return _thermalVideoReceiver; }
70

71 72 73 74 75 76
#if defined(QGC_DISABLE_UVC)
    bool        uvcEnabled          () { return false; }
#else
    bool        uvcEnabled          ();
#endif

77
    void        setfullScreen       (bool f) { _fullScreen = f; emit fullScreenChanged(); }
78
    void        setIsTaisync        (bool t) { _isTaisync = t;  emit isTaisyncChanged(); }
79

80 81 82
    // Override from QGCTool
    void        setToolbox          (QGCToolbox *toolbox);

83 84
    Q_INVOKABLE void startVideo     ();
    Q_INVOKABLE void stopVideo      ();
Patrick José Pereira's avatar
Patrick José Pereira committed
85

86
signals:
87 88 89
    void hasVideoChanged            ();
    void isGStreamerChanged         ();
    void videoSourceIDChanged       ();
90
    void fullScreenChanged          ();
91
    void isAutoStreamChanged        ();
92
    void isTaisyncChanged           ();
93 94
    void aspectRatioChanged         ();
    void autoStreamConfiguredChanged();
95

96
private slots:
97 98 99
    void _videoSourceChanged        ();
    void _udpPortChanged            ();
    void _rtspUrlChanged            ();
100
    void _tcpUrlChanged             ();
Gus Grubba's avatar
Gus Grubba committed
101
    void _updateUVC                 ();
102
    void _setActiveVehicle          (Vehicle* vehicle);
103
    void _aspectRatioChanged        ();
104

105
private:
106
    void _updateSettings            ();
107

108
private:
109
    SubtitleWriter  _subtitleWriter;
110 111 112 113
    bool            _isTaisync              = false;
    VideoReceiver*  _videoReceiver          = nullptr;
    VideoReceiver*  _thermalVideoReceiver   = nullptr;
    VideoSettings*  _videoSettings          = nullptr;
114
    QString         _videoSourceID;
115 116
    bool            _fullScreen             = false;
    Vehicle*        _activeVehicle          = nullptr;
117 118 119
};

#endif