You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#lockdown Nick.Penwarden (Will update with full description tomorrow) [CL 2984534 by Matthew Griffin in Main branch]
120 lines
3.8 KiB
C++
120 lines
3.8 KiB
C++
/** @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_Context_h_GUID_DD0155F5_61A4_4A76_8C2E_D9614C7A9EBD
|
|
#define INCLUDED_Context_h_GUID_DD0155F5_61A4_4A76_8C2E_D9614C7A9EBD
|
|
|
|
// Internal Includes
|
|
#include <osvr/ClientKit/Context_decl.h>
|
|
#include <osvr/ClientKit/ContextC.h>
|
|
#include <osvr/ClientKit/ParametersC.h>
|
|
#include <osvr/ClientKit/Interface.h>
|
|
#include <osvr/Util/StringBufferBuilder.h>
|
|
|
|
// Library/third-party includes
|
|
// - none
|
|
|
|
// Standard includes
|
|
#include <string>
|
|
#include <stdexcept>
|
|
|
|
namespace osvr {
|
|
|
|
namespace clientkit {
|
|
inline ClientContext::ClientContext(const char applicationIdentifier[],
|
|
uint32_t flags)
|
|
: m_context(osvrClientInit(applicationIdentifier, flags)) {}
|
|
|
|
inline ClientContext::ClientContext(OSVR_ClientContext context)
|
|
: m_context(context) {}
|
|
|
|
inline ClientContext::~ClientContext() { osvrClientShutdown(m_context); }
|
|
|
|
inline void ClientContext::update() {
|
|
OSVR_ReturnCode ret = osvrClientUpdate(m_context);
|
|
if (OSVR_RETURN_SUCCESS != ret) {
|
|
throw std::runtime_error("Error updating context.");
|
|
}
|
|
}
|
|
|
|
inline Interface ClientContext::getInterface(const std::string &path) {
|
|
OSVR_ClientInterface interface = NULL;
|
|
OSVR_ReturnCode ret =
|
|
osvrClientGetInterface(m_context, path.c_str(), &interface);
|
|
if (OSVR_RETURN_SUCCESS != ret) {
|
|
throw std::runtime_error(
|
|
"Couldn't create interface because the path was invalid.");
|
|
}
|
|
|
|
return Interface(*this, interface);
|
|
}
|
|
|
|
inline std::string
|
|
ClientContext::getStringParameter(const std::string &path) {
|
|
size_t length = 0;
|
|
OSVR_ReturnCode ret = osvrClientGetStringParameterLength(
|
|
m_context, path.c_str(), &length);
|
|
if (OSVR_RETURN_SUCCESS != ret) {
|
|
throw std::runtime_error(
|
|
"Invalid context or null reference to length variable.");
|
|
}
|
|
|
|
if (0 == length) {
|
|
return std::string();
|
|
}
|
|
|
|
util::StringBufferBuilder buf;
|
|
|
|
ret = osvrClientGetStringParameter(m_context, path.c_str(),
|
|
buf.getBufferOfSize(length), length);
|
|
if (OSVR_RETURN_SUCCESS != ret) {
|
|
throw std::runtime_error("Invalid context, null reference to "
|
|
"buffer, or buffer is too small.");
|
|
}
|
|
|
|
return buf.str();
|
|
}
|
|
|
|
inline void ClientContext::free(Interface &iface) {
|
|
OSVR_ReturnCode ret = osvrClientFreeInterface(m_context, iface.get());
|
|
if (OSVR_RETURN_SUCCESS != ret) {
|
|
throw std::logic_error(
|
|
"Could not free interface: either null or already freed!");
|
|
}
|
|
// Null out the interface.
|
|
iface = Interface(*this, NULL);
|
|
}
|
|
|
|
inline OSVR_ClientContext ClientContext::get() { return m_context; }
|
|
|
|
inline bool ClientContext::checkStatus() const {
|
|
return osvrClientCheckStatus(m_context) == OSVR_RETURN_SUCCESS;
|
|
}
|
|
|
|
} // end namespace clientkit
|
|
|
|
} // end namespace osvr
|
|
|
|
#endif // INCLUDED_Context_h_GUID_DD0155F5_61A4_4A76_8C2E_D9614C7A9EBD
|