Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/camera/camera_win.cpp
10277 views
1
/**************************************************************************/
2
/* camera_win.cpp */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#include "camera_win.h"
32
33
///@TODO sorry guys, I got about 80% through implementing this using DirectShow only
34
// to find out Microsoft deprecated half the API and its replacement is as confusing
35
// as they could make it. Joey suggested looking into libuvc which offers a more direct
36
// route to webcams over USB and this is very promising but it wouldn't compile on
37
// windows for me...I've gutted the classes I implemented DirectShow in just to have
38
// a skeleton for someone to work on, mail me for more details or if you want a copy....
39
40
//////////////////////////////////////////////////////////////////////////
41
// CameraFeedWindows - Subclass for our camera feed on windows
42
43
/// @TODO need to implement this
44
45
class CameraFeedWindows : public CameraFeed {
46
private:
47
protected:
48
public:
49
CameraFeedWindows();
50
virtual ~CameraFeedWindows();
51
52
bool activate_feed();
53
void deactivate_feed();
54
};
55
56
CameraFeedWindows::CameraFeedWindows() {
57
///@TODO implement this, should store information about our available camera
58
}
59
60
CameraFeedWindows::~CameraFeedWindows() {
61
// make sure we stop recording if we are!
62
if (is_active()) {
63
deactivate_feed();
64
};
65
66
///@TODO free up anything used by this
67
}
68
69
bool CameraFeedWindows::activate_feed() {
70
///@TODO this should activate our camera and start the process of capturing frames
71
72
return true;
73
}
74
75
///@TODO we should probably have a callback method here that is being called by the
76
// camera API which provides frames and call back into the CameraServer to update our texture
77
78
void CameraFeedWindows::deactivate_feed() {
79
///@TODO this should deactivate our camera and stop the process of capturing frames
80
}
81
82
//////////////////////////////////////////////////////////////////////////
83
// CameraWindows - Subclass for our camera server on windows
84
85
void CameraWindows::add_active_cameras() {
86
///@TODO scan through any active cameras and create CameraFeedWindows objects for them
87
}
88
89
CameraWindows::CameraWindows() {
90
// Find cameras active right now
91
add_active_cameras();
92
93
// need to add something that will react to devices being connected/removed...
94
}
95
96