Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gltf/structures/gltf_camera.cpp
10278 views
1
/**************************************************************************/
2
/* gltf_camera.cpp */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#include "gltf_camera.h"
32
33
#include "gltf_object_model_property.h"
34
#include "scene/3d/camera_3d.h"
35
36
void GLTFCamera::_bind_methods() {
37
ClassDB::bind_static_method("GLTFCamera", D_METHOD("from_node", "camera_node"), &GLTFCamera::from_node);
38
ClassDB::bind_method(D_METHOD("to_node"), &GLTFCamera::to_node);
39
40
ClassDB::bind_static_method("GLTFCamera", D_METHOD("from_dictionary", "dictionary"), &GLTFCamera::from_dictionary);
41
ClassDB::bind_method(D_METHOD("to_dictionary"), &GLTFCamera::to_dictionary);
42
43
ClassDB::bind_method(D_METHOD("get_perspective"), &GLTFCamera::get_perspective);
44
ClassDB::bind_method(D_METHOD("set_perspective", "perspective"), &GLTFCamera::set_perspective);
45
ClassDB::bind_method(D_METHOD("get_fov"), &GLTFCamera::get_fov);
46
ClassDB::bind_method(D_METHOD("set_fov", "fov"), &GLTFCamera::set_fov);
47
ClassDB::bind_method(D_METHOD("get_size_mag"), &GLTFCamera::get_size_mag);
48
ClassDB::bind_method(D_METHOD("set_size_mag", "size_mag"), &GLTFCamera::set_size_mag);
49
ClassDB::bind_method(D_METHOD("get_depth_far"), &GLTFCamera::get_depth_far);
50
ClassDB::bind_method(D_METHOD("set_depth_far", "zdepth_far"), &GLTFCamera::set_depth_far);
51
ClassDB::bind_method(D_METHOD("get_depth_near"), &GLTFCamera::get_depth_near);
52
ClassDB::bind_method(D_METHOD("set_depth_near", "zdepth_near"), &GLTFCamera::set_depth_near);
53
54
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "perspective"), "set_perspective", "get_perspective");
55
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "fov"), "set_fov", "get_fov");
56
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "size_mag"), "set_size_mag", "get_size_mag");
57
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "depth_far"), "set_depth_far", "get_depth_far");
58
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "depth_near"), "set_depth_near", "get_depth_near");
59
}
60
61
void GLTFCamera::set_fov_conversion_expressions(Ref<GLTFObjectModelProperty> &r_obj_model_prop) {
62
// Expression to convert glTF yfov in radians to Godot fov in degrees.
63
Ref<Expression> gltf_to_godot_expr;
64
gltf_to_godot_expr.instantiate();
65
PackedStringArray gltf_to_godot_args = { "yfov_rad" };
66
gltf_to_godot_expr->parse("rad_to_deg(yfov_rad)", gltf_to_godot_args);
67
r_obj_model_prop->set_gltf_to_godot_expression(gltf_to_godot_expr);
68
// Expression to convert Godot fov in degrees to glTF yfov in radians.
69
Ref<Expression> godot_to_gltf_expr;
70
godot_to_gltf_expr.instantiate();
71
PackedStringArray godot_to_gltf_args = { "fov_deg" };
72
godot_to_gltf_expr->parse("deg_to_rad(fov_deg)", godot_to_gltf_args);
73
r_obj_model_prop->set_godot_to_gltf_expression(godot_to_gltf_expr);
74
}
75
76
Ref<GLTFCamera> GLTFCamera::from_node(const Camera3D *p_camera) {
77
Ref<GLTFCamera> c;
78
c.instantiate();
79
ERR_FAIL_NULL_V_MSG(p_camera, c, "Tried to create a GLTFCamera from a Camera3D node, but the given node was null.");
80
c->set_perspective(p_camera->get_projection() == Camera3D::ProjectionType::PROJECTION_PERSPECTIVE);
81
// glTF spec (yfov) is in radians, Godot's camera (fov) is in degrees.
82
c->set_fov(Math::deg_to_rad(p_camera->get_fov()));
83
// glTF spec (xmag and ymag) is a radius in meters, Godot's camera (size) is a diameter in meters.
84
c->set_size_mag(p_camera->get_size() * 0.5f);
85
c->set_depth_far(p_camera->get_far());
86
c->set_depth_near(p_camera->get_near());
87
return c;
88
}
89
90
Camera3D *GLTFCamera::to_node() const {
91
Camera3D *camera = memnew(Camera3D);
92
camera->set_projection(perspective ? Camera3D::PROJECTION_PERSPECTIVE : Camera3D::PROJECTION_ORTHOGONAL);
93
// glTF spec (yfov) is in radians, Godot's camera (fov) is in degrees.
94
camera->set_fov(Math::rad_to_deg(fov));
95
// glTF spec (xmag and ymag) is a radius in meters, Godot's camera (size) is a diameter in meters.
96
camera->set_size(size_mag * 2.0f);
97
camera->set_near(depth_near);
98
camera->set_far(depth_far);
99
return camera;
100
}
101
102
Ref<GLTFCamera> GLTFCamera::from_dictionary(const Dictionary p_dictionary) {
103
ERR_FAIL_COND_V_MSG(!p_dictionary.has("type"), Ref<GLTFCamera>(), "Failed to parse glTF camera, missing required field 'type'.");
104
Ref<GLTFCamera> camera;
105
camera.instantiate();
106
const String &type = p_dictionary["type"];
107
if (type == "perspective") {
108
camera->set_perspective(true);
109
if (p_dictionary.has("perspective")) {
110
const Dictionary &persp = p_dictionary["perspective"];
111
camera->set_fov(persp["yfov"]);
112
if (persp.has("zfar")) {
113
camera->set_depth_far(persp["zfar"]);
114
}
115
camera->set_depth_near(persp["znear"]);
116
}
117
} else if (type == "orthographic") {
118
camera->set_perspective(false);
119
if (p_dictionary.has("orthographic")) {
120
const Dictionary &ortho = p_dictionary["orthographic"];
121
camera->set_size_mag(ortho["ymag"]);
122
camera->set_depth_far(ortho["zfar"]);
123
camera->set_depth_near(ortho["znear"]);
124
}
125
} else {
126
ERR_PRINT("Error parsing glTF camera: Camera type '" + type + "' is unknown, should be perspective or orthographic.");
127
}
128
return camera;
129
}
130
131
Dictionary GLTFCamera::to_dictionary() const {
132
Dictionary d;
133
if (perspective) {
134
Dictionary persp;
135
persp["yfov"] = fov;
136
persp["zfar"] = depth_far;
137
persp["znear"] = depth_near;
138
d["perspective"] = persp;
139
d["type"] = "perspective";
140
} else {
141
Dictionary ortho;
142
ortho["ymag"] = size_mag;
143
ortho["xmag"] = size_mag;
144
ortho["zfar"] = depth_far;
145
ortho["znear"] = depth_near;
146
d["orthographic"] = ortho;
147
d["type"] = "orthographic";
148
}
149
return d;
150
}
151
152