mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-05 05:52:04 +02:00
51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
//
|
|
// HMDScriptingInterface.h
|
|
// interface/src/scripting
|
|
//
|
|
// Created by Thijs Wenker on 1/12/15.
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_HMDScriptingInterface_h
|
|
#define hifi_HMDScriptingInterface_h
|
|
|
|
#include <GLMHelpers.h>
|
|
|
|
#include "Application.h"
|
|
|
|
class HMDScriptingInterface : public QObject {
|
|
Q_OBJECT
|
|
Q_PROPERTY(bool magnifier READ getMagnifier)
|
|
Q_PROPERTY(bool active READ isHMDMode)
|
|
Q_PROPERTY(glm::vec3 position READ getPosition)
|
|
Q_PROPERTY(glm::quat orientation READ getOrientation)
|
|
Q_PROPERTY(float ipd READ getIPD)
|
|
public:
|
|
static HMDScriptingInterface& getInstance();
|
|
|
|
static QScriptValue getHUDLookAtPosition2D(QScriptContext* context, QScriptEngine* engine);
|
|
static QScriptValue getHUDLookAtPosition3D(QScriptContext* context, QScriptEngine* engine);
|
|
|
|
public slots:
|
|
void toggleMagnifier() { Application::getInstance()->getApplicationCompositor().toggleMagnifier(); };
|
|
|
|
private:
|
|
HMDScriptingInterface() {};
|
|
bool getMagnifier() const { return Application::getInstance()->getApplicationCompositor().hasMagnifier(); };
|
|
bool isHMDMode() const { return Application::getInstance()->isHMDMode(); }
|
|
float getIPD() const;
|
|
|
|
// Get the position of the HMD
|
|
glm::vec3 getPosition() const;
|
|
|
|
// Get the orientation of the HMD
|
|
glm::quat getOrientation() const;
|
|
|
|
bool getHUDLookAtPosition3D(glm::vec3& result) const;
|
|
|
|
};
|
|
|
|
#endif // hifi_HMDScriptingInterface_h
|