blob: 04ca33901af71ead3f543f4bf434569be291ea9e (
plain)
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
|
#ifndef SCRIPT_INTERFACE_H
#define SCRIPT_INTERFACE_H
#include "arvr_interface.h"
/**
@authors Hinsbart & Karroffel
This subclass of our AR/VR interface forms a bridge to GDNative.
*/
class ARVRScriptInterface : public ARVRInterface {
GDCLASS(ARVRScriptInterface, ARVRInterface);
protected:
static void _bind_methods();
public:
ARVRScriptInterface();
~ARVRScriptInterface();
virtual StringName get_name() const;
virtual bool is_installed();
virtual bool hmd_is_present();
virtual bool supports_hmd();
virtual bool is_initialized();
virtual bool initialize();
virtual void uninitialize();
virtual Size2 get_recommended_render_targetsize();
virtual bool is_stereo();
virtual Transform get_transform_for_eye(ARVRInterface::Eyes p_eye, const Transform &p_cam_transform);
// we expose a PoolVector<float> version of this function to GDNative
PoolVector<float> _get_projection_for_eye(Eyes p_eye, real_t p_aspect, real_t p_z_near, real_t p_z_far);
// and a CameraMatrix version to ARVRServer
virtual CameraMatrix get_projection_for_eye(ARVRInterface::Eyes p_eye, real_t p_aspect, real_t p_z_near, real_t p_z_far);
virtual void commit_for_eye(ARVRInterface::Eyes p_eye, RID p_render_target, const Rect2 &p_screen_rect);
virtual void process();
};
#endif // SCRIPT_INTERFACE_H
|