mirror of
https://github.com/CrispyPin/sinpin-vr.git
synced 2025-04-04 17:34:00 +02:00
43 lines
No EOL
655 B
C++
43 lines
No EOL
655 B
C++
#include "util.h"
|
|
#include <GLFW/glfw3.h>
|
|
#include <X11/Xutil.h>
|
|
#include <vector>
|
|
|
|
class Panel;
|
|
|
|
struct CursorPos
|
|
{
|
|
int x, y;
|
|
};
|
|
|
|
class App
|
|
{
|
|
public:
|
|
App();
|
|
~App();
|
|
void Update();
|
|
|
|
std::vector<TrackerID> GetControllers();
|
|
glm::mat4 GetTrackerPose(TrackerID tracker);
|
|
bool IsGrabActive(TrackerID controller);
|
|
CursorPos GetCursorPosition();
|
|
|
|
Display *_xdisplay;
|
|
Window _root_window;
|
|
GLFWwindow *_gl_window;
|
|
|
|
int _root_width;
|
|
int _root_height;
|
|
|
|
vr::ETrackingUniverseOrigin _tracking_origin;
|
|
|
|
vr::IVRSystem *vr_sys;
|
|
vr::IVROverlay *vr_overlay;
|
|
|
|
std::vector<Panel> _panels;
|
|
|
|
private:
|
|
void InitX11();
|
|
void InitOVR();
|
|
void InitGLFW();
|
|
}; |