summaryrefslogtreecommitdiffhomepage
path: root/video-ps3eye/module.hpp
blob: 73cdf04c97a9fc80db1da2180ae84f8ed8f52aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma once

#include "video/camera.hpp"
#include "shm-layout.hpp"
#include "compat/shm.h"
#include "options/options.hpp"
#include "compat/macros1.h"

using namespace options;

#include <QProcess>

using video::impl::camera;
using video::impl::camera_;
using video::frame;

struct settings : opts
{
    settings() : opts{"video-ps3eye"} {}

    value<slider_value> exposure{b, "exposure", {63, 0, 63}};
    value<slider_value> gain{b, "gain", {30, 0, 63}};
};

struct ps3eye_camera final : video::impl::camera
{
    QProcess wrapper;
    shm_wrapper shm { "ps3eye-driver-shm", nullptr, sizeof(ps3eye::shm) };
    settings s;
    frame fr;
    bool open = false;
    unsigned timecode = 0;

    ps3eye_camera();
    ~ps3eye_camera() override;

    bool start(info& args) override;
    void stop() override;
    bool is_open() override { return open; }

    std::tuple<const frame&, bool> get_frame() override;
    [[nodiscard]] bool show_dialog() override;
};

struct ps3eye_camera_ final : video::impl::camera_
{
    std::vector<QString> camera_names() const override;
    std::unique_ptr<camera> make_camera(const QString& name) override;
    bool show_dialog(const QString& camera_name) override;
    bool can_show_dialog(const QString& camera_name) override;
};