-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathContext_decl.h
105 lines (83 loc) · 3.61 KB
/
Context_decl.h
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
95
96
97
98
99
100
101
102
103
104
105
/** @file
@brief Header
@date 2014
@author
Sensics, Inc.
<http://sensics.com/osvr>
*/
// Copyright 2014 Sensics, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef INCLUDED_ClientContext_decl_h_GUID_1EFFF79A_3D9F_4794_9F98_37010949F386
#define INCLUDED_ClientContext_decl_h_GUID_1EFFF79A_3D9F_4794_9F98_37010949F386
// Internal Includes
#include <osvr/ClientKit/ContextC.h>
#include <osvr/Util/StringIds.h>
// Library/third-party includes
#include <boost/noncopyable.hpp>
// Standard includes
#include <string>
namespace osvr {
namespace clientkit {
// Forward declaration
class Interface;
/// @brief Client context object: Create and keep one in your application.
/// Handles lifetime management and provides access to ClientKit
/// functionality.
/// @ingroup ClientKitCPP
class ClientContext : private boost::noncopyable {
public:
/// @brief Initialize the library.
/// @param applicationIdentifier A string identifying your application.
/// Reverse DNS format strongly suggested.
/// @param flags initialization options (reserved, optional)
ClientContext(const char applicationIdentifier[], uint32_t flags = 0u);
/// @brief Initialize the context with an existing context.
/// @note The ClientContext class will take ownership of the context.
ClientContext(OSVR_ClientContext context);
/// @brief Destructor: Shutdown the library.
~ClientContext();
/// @brief Updates the state of the context - call regularly in your
/// mainloop.
void update();
/// @brief Get the interface associated with the given path.
/// @param path A resource path.
/// @returns The interface object.
Interface getInterface(const std::string &path);
/// @brief Get a string parameter value from the given path.
/// @param path A resource path.
/// @returns parameter value, or empty string if parameter does not
/// exist or is not a string.
std::string getStringParameter(const std::string &path);
/// @brief Frees an interface before it would normally be freed (at
/// context close).
void free(Interface &iface);
/// @brief Checks to see if the client context is properly and fully
/// started up.
///
/// If this returns false, there may not be a server running, or it may
/// be taking longer than usual to connect. The result will not change
/// from false to true without calling update() - consider a loop.
bool checkStatus() const;
/// @brief converts gesture ID to string name. Not for frequent use -
/// typical usage is to get a gesture ID from a string, and use that for
/// comparison.
std::string getGestureNamefromID(util::StringID id);
/// @brief Gets the bare OSVR_ClientContext.
OSVR_ClientContext get();
private:
OSVR_ClientContext m_context;
};
} // end namespace clientkit
} // end namespace osvr
#endif // INCLUDED_ClientContext_decl_h_GUID_1EFFF79A_3D9F_4794_9F98_37010949F386