blob: c4884f2259072739a83eae8d87fbc3b0a40b0e3e (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*
* Copyright (c) 2017-2018 Wei Shuai <cpuwolf@gmail.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*/
#include "ftnoir_tracker_pt.h"
#include "wii_module.hpp"
#include "wii_camera.h"
#include "wii_frame.hpp"
#include "wii_point_extractor.h"
#include "wii_module.hpp"
#include "ftnoir_tracker_pt_dialog.h"
#include "pt-api.hpp"
#include <memory>
static const QString module_name = "tracker-wii-pt";
#ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wweak-vtables"
#endif
namespace pt_module {
struct wii_pt_module_traits final : pt_runtime_traits
{
pointer<pt_camera> make_camera() const override
{
return pointer<pt_camera>(new WIICamera(module_name));
}
pointer<pt_point_extractor> make_point_extractor() const override
{
return pointer<pt_point_extractor>(new WIIPointExtractor(module_name));
}
QString get_module_name() const override
{
return module_name;
}
pointer<pt_frame> make_frame() const override
{
return pointer<pt_frame>(new WIIFrame);
}
pointer<pt_preview> make_preview(int w, int h) const override
{
return pointer<pt_preview>(new WIIPreview(w, h));
}
};
struct wii_tracker_pt : Tracker_PT
{
wii_tracker_pt() : Tracker_PT(pointer<pt_runtime_traits>(new wii_pt_module_traits))
{
}
};
struct wii_dialog_pt : TrackerDialog_PT
{
wii_dialog_pt();
};
} // ns pt_module
#ifdef __clang__
# pragma clang diagnostic pop
#endif
QString wii_metadata_pt::name()
{
return tr("WiiPointTracker 1.1");
}
QIcon wii_metadata_pt::icon()
{
return QIcon(":/Resources/wii.png");
}
using namespace pt_module;
wii_dialog_pt::wii_dialog_pt() : TrackerDialog_PT(module_name)
{
ui.tabWidget->removeTab(0);
}
OPENTRACK_DECLARE_TRACKER(wii_tracker_pt, wii_dialog_pt, wii_metadata_pt)
|