camera_3d.cpp 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754
  1. /**************************************************************************/
  2. /* camera_3d.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. #include "camera_3d.h"
  31. #include "collision_object_3d.h"
  32. #include "core/core_string_names.h"
  33. #include "core/math/projection.h"
  34. #include "scene/main/viewport.h"
  35. void Camera3D::_update_audio_listener_state() {
  36. }
  37. void Camera3D::_request_camera_update() {
  38. _update_camera();
  39. }
  40. void Camera3D::_update_camera_mode() {
  41. force_change = true;
  42. switch (mode) {
  43. case PROJECTION_PERSPECTIVE: {
  44. set_perspective(fov, near, far);
  45. } break;
  46. case PROJECTION_ORTHOGONAL: {
  47. set_orthogonal(size, near, far);
  48. } break;
  49. case PROJECTION_FRUSTUM: {
  50. set_frustum(size, frustum_offset, near, far);
  51. } break;
  52. }
  53. }
  54. void Camera3D::_validate_property(PropertyInfo &p_property) const {
  55. if (p_property.name == "fov") {
  56. if (mode != PROJECTION_PERSPECTIVE) {
  57. p_property.usage = PROPERTY_USAGE_NO_EDITOR;
  58. }
  59. } else if (p_property.name == "size") {
  60. if (mode != PROJECTION_ORTHOGONAL && mode != PROJECTION_FRUSTUM) {
  61. p_property.usage = PROPERTY_USAGE_NO_EDITOR;
  62. }
  63. } else if (p_property.name == "frustum_offset") {
  64. if (mode != PROJECTION_FRUSTUM) {
  65. p_property.usage = PROPERTY_USAGE_NO_EDITOR;
  66. }
  67. }
  68. if (attributes.is_valid()) {
  69. const CameraAttributesPhysical *physical_attributes = Object::cast_to<CameraAttributesPhysical>(attributes.ptr());
  70. if (physical_attributes) {
  71. if (p_property.name == "near" || p_property.name == "far" || p_property.name == "fov" || p_property.name == "keep_aspect") {
  72. p_property.usage = PROPERTY_USAGE_READ_ONLY | PROPERTY_USAGE_INTERNAL | PROPERTY_USAGE_EDITOR;
  73. }
  74. }
  75. }
  76. Node3D::_validate_property(p_property);
  77. }
  78. void Camera3D::_update_camera() {
  79. if (!is_inside_tree()) {
  80. return;
  81. }
  82. RenderingServer::get_singleton()->camera_set_transform(camera, get_camera_transform());
  83. if (get_tree()->is_node_being_edited(this) || !is_current()) {
  84. return;
  85. }
  86. get_viewport()->_camera_3d_transform_changed_notify();
  87. }
  88. void Camera3D::_notification(int p_what) {
  89. switch (p_what) {
  90. case NOTIFICATION_ENTER_WORLD: {
  91. // Needs to track the Viewport because it's needed on NOTIFICATION_EXIT_WORLD
  92. // and Spatial will handle it first, including clearing its reference to the Viewport,
  93. // therefore making it impossible to subclasses to access it
  94. viewport = get_viewport();
  95. ERR_FAIL_COND(!viewport);
  96. bool first_camera = viewport->_camera_3d_add(this);
  97. if (current || first_camera) {
  98. viewport->_camera_3d_set(this);
  99. }
  100. #ifdef TOOLS_ENABLED
  101. if (Engine::get_singleton()->is_editor_hint()) {
  102. viewport->connect(SNAME("size_changed"), callable_mp((Node3D *)this, &Camera3D::update_gizmos));
  103. }
  104. #endif
  105. } break;
  106. case NOTIFICATION_TRANSFORM_CHANGED: {
  107. _request_camera_update();
  108. if (doppler_tracking != DOPPLER_TRACKING_DISABLED) {
  109. velocity_tracker->update_position(get_global_transform().origin);
  110. }
  111. } break;
  112. case NOTIFICATION_EXIT_WORLD: {
  113. if (!get_tree()->is_node_being_edited(this)) {
  114. if (is_current()) {
  115. clear_current();
  116. current = true; //keep it true
  117. } else {
  118. current = false;
  119. }
  120. }
  121. if (viewport) {
  122. #ifdef TOOLS_ENABLED
  123. if (Engine::get_singleton()->is_editor_hint()) {
  124. viewport->disconnect(SNAME("size_changed"), callable_mp((Node3D *)this, &Camera3D::update_gizmos));
  125. }
  126. #endif
  127. viewport->_camera_3d_remove(this);
  128. viewport = nullptr;
  129. }
  130. } break;
  131. case NOTIFICATION_BECAME_CURRENT: {
  132. if (viewport) {
  133. viewport->find_world_3d()->_register_camera(this);
  134. }
  135. } break;
  136. case NOTIFICATION_LOST_CURRENT: {
  137. if (viewport) {
  138. viewport->find_world_3d()->_remove_camera(this);
  139. }
  140. } break;
  141. }
  142. }
  143. Transform3D Camera3D::get_camera_transform() const {
  144. Transform3D tr = get_global_transform().orthonormalized();
  145. tr.origin += tr.basis.get_column(1) * v_offset;
  146. tr.origin += tr.basis.get_column(0) * h_offset;
  147. return tr;
  148. }
  149. void Camera3D::set_perspective(real_t p_fovy_degrees, real_t p_z_near, real_t p_z_far) {
  150. if (!force_change && fov == p_fovy_degrees && p_z_near == near && p_z_far == far && mode == PROJECTION_PERSPECTIVE) {
  151. return;
  152. }
  153. fov = p_fovy_degrees;
  154. near = p_z_near;
  155. far = p_z_far;
  156. mode = PROJECTION_PERSPECTIVE;
  157. RenderingServer::get_singleton()->camera_set_perspective(camera, fov, near, far);
  158. update_gizmos();
  159. force_change = false;
  160. }
  161. void Camera3D::set_orthogonal(real_t p_size, real_t p_z_near, real_t p_z_far) {
  162. if (!force_change && size == p_size && p_z_near == near && p_z_far == far && mode == PROJECTION_ORTHOGONAL) {
  163. return;
  164. }
  165. size = p_size;
  166. near = p_z_near;
  167. far = p_z_far;
  168. mode = PROJECTION_ORTHOGONAL;
  169. force_change = false;
  170. RenderingServer::get_singleton()->camera_set_orthogonal(camera, size, near, far);
  171. update_gizmos();
  172. }
  173. void Camera3D::set_frustum(real_t p_size, Vector2 p_offset, real_t p_z_near, real_t p_z_far) {
  174. if (!force_change && size == p_size && frustum_offset == p_offset && p_z_near == near && p_z_far == far && mode == PROJECTION_FRUSTUM) {
  175. return;
  176. }
  177. size = p_size;
  178. frustum_offset = p_offset;
  179. near = p_z_near;
  180. far = p_z_far;
  181. mode = PROJECTION_FRUSTUM;
  182. force_change = false;
  183. RenderingServer::get_singleton()->camera_set_frustum(camera, size, frustum_offset, near, far);
  184. update_gizmos();
  185. }
  186. void Camera3D::set_projection(ProjectionType p_mode) {
  187. if (p_mode == PROJECTION_PERSPECTIVE || p_mode == PROJECTION_ORTHOGONAL || p_mode == PROJECTION_FRUSTUM) {
  188. mode = p_mode;
  189. _update_camera_mode();
  190. notify_property_list_changed();
  191. }
  192. }
  193. RID Camera3D::get_camera() const {
  194. return camera;
  195. };
  196. void Camera3D::make_current() {
  197. current = true;
  198. if (!is_inside_tree()) {
  199. return;
  200. }
  201. get_viewport()->_camera_3d_set(this);
  202. }
  203. void Camera3D::clear_current(bool p_enable_next) {
  204. current = false;
  205. if (!is_inside_tree()) {
  206. return;
  207. }
  208. if (get_viewport()->get_camera_3d() == this) {
  209. get_viewport()->_camera_3d_set(nullptr);
  210. if (p_enable_next) {
  211. get_viewport()->_camera_3d_make_next_current(this);
  212. }
  213. }
  214. }
  215. void Camera3D::set_current(bool p_enabled) {
  216. if (p_enabled) {
  217. make_current();
  218. } else {
  219. clear_current();
  220. }
  221. }
  222. bool Camera3D::is_current() const {
  223. if (is_inside_tree() && !get_tree()->is_node_being_edited(this)) {
  224. return get_viewport()->get_camera_3d() == this;
  225. } else {
  226. return current;
  227. }
  228. }
  229. Vector3 Camera3D::project_ray_normal(const Point2 &p_pos) const {
  230. Vector3 ray = project_local_ray_normal(p_pos);
  231. return get_camera_transform().basis.xform(ray).normalized();
  232. };
  233. Vector3 Camera3D::project_local_ray_normal(const Point2 &p_pos) const {
  234. ERR_FAIL_COND_V_MSG(!is_inside_tree(), Vector3(), "Camera is not inside scene.");
  235. Size2 viewport_size = get_viewport()->get_camera_rect_size();
  236. Vector2 cpos = get_viewport()->get_camera_coords(p_pos);
  237. Vector3 ray;
  238. if (mode == PROJECTION_ORTHOGONAL) {
  239. ray = Vector3(0, 0, -1);
  240. } else {
  241. Projection cm;
  242. cm.set_perspective(fov, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
  243. Vector2 screen_he = cm.get_viewport_half_extents();
  244. ray = Vector3(((cpos.x / viewport_size.width) * 2.0 - 1.0) * screen_he.x, ((1.0 - (cpos.y / viewport_size.height)) * 2.0 - 1.0) * screen_he.y, -near).normalized();
  245. }
  246. return ray;
  247. };
  248. Vector3 Camera3D::project_ray_origin(const Point2 &p_pos) const {
  249. ERR_FAIL_COND_V_MSG(!is_inside_tree(), Vector3(), "Camera is not inside scene.");
  250. Size2 viewport_size = get_viewport()->get_camera_rect_size();
  251. Vector2 cpos = get_viewport()->get_camera_coords(p_pos);
  252. ERR_FAIL_COND_V(viewport_size.y == 0, Vector3());
  253. if (mode == PROJECTION_PERSPECTIVE) {
  254. return get_camera_transform().origin;
  255. } else {
  256. Vector2 pos = cpos / viewport_size;
  257. real_t vsize, hsize;
  258. if (keep_aspect == KEEP_WIDTH) {
  259. vsize = size / viewport_size.aspect();
  260. hsize = size;
  261. } else {
  262. hsize = size * viewport_size.aspect();
  263. vsize = size;
  264. }
  265. Vector3 ray;
  266. ray.x = pos.x * (hsize)-hsize / 2;
  267. ray.y = (1.0 - pos.y) * (vsize)-vsize / 2;
  268. ray.z = -near;
  269. ray = get_camera_transform().xform(ray);
  270. return ray;
  271. };
  272. };
  273. bool Camera3D::is_position_behind(const Vector3 &p_pos) const {
  274. Transform3D t = get_global_transform();
  275. Vector3 eyedir = -t.basis.get_column(2).normalized();
  276. return eyedir.dot(p_pos - t.origin) < near;
  277. }
  278. Vector<Vector3> Camera3D::get_near_plane_points() const {
  279. ERR_FAIL_COND_V_MSG(!is_inside_tree(), Vector<Vector3>(), "Camera is not inside scene.");
  280. Size2 viewport_size = get_viewport()->get_visible_rect().size;
  281. Projection cm;
  282. if (mode == PROJECTION_ORTHOGONAL) {
  283. cm.set_orthogonal(size, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
  284. } else {
  285. cm.set_perspective(fov, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
  286. }
  287. Vector3 endpoints[8];
  288. cm.get_endpoints(Transform3D(), endpoints);
  289. Vector<Vector3> points = {
  290. Vector3(),
  291. endpoints[4],
  292. endpoints[5],
  293. endpoints[6],
  294. endpoints[7]
  295. };
  296. return points;
  297. }
  298. Point2 Camera3D::unproject_position(const Vector3 &p_pos) const {
  299. ERR_FAIL_COND_V_MSG(!is_inside_tree(), Vector2(), "Camera is not inside scene.");
  300. Size2 viewport_size = get_viewport()->get_visible_rect().size;
  301. Projection cm;
  302. if (mode == PROJECTION_ORTHOGONAL) {
  303. cm.set_orthogonal(size, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
  304. } else {
  305. cm.set_perspective(fov, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
  306. }
  307. Plane p(get_camera_transform().xform_inv(p_pos), 1.0);
  308. p = cm.xform4(p);
  309. p.normal /= p.d;
  310. Point2 res;
  311. res.x = (p.normal.x * 0.5 + 0.5) * viewport_size.x;
  312. res.y = (-p.normal.y * 0.5 + 0.5) * viewport_size.y;
  313. return res;
  314. }
  315. Vector3 Camera3D::project_position(const Point2 &p_point, real_t p_z_depth) const {
  316. ERR_FAIL_COND_V_MSG(!is_inside_tree(), Vector3(), "Camera is not inside scene.");
  317. if (p_z_depth == 0 && mode != PROJECTION_ORTHOGONAL) {
  318. return get_global_transform().origin;
  319. }
  320. Size2 viewport_size = get_viewport()->get_visible_rect().size;
  321. Projection cm;
  322. if (mode == PROJECTION_ORTHOGONAL) {
  323. cm.set_orthogonal(size, viewport_size.aspect(), p_z_depth, far, keep_aspect == KEEP_WIDTH);
  324. } else {
  325. cm.set_perspective(fov, viewport_size.aspect(), p_z_depth, far, keep_aspect == KEEP_WIDTH);
  326. }
  327. Vector2 vp_he = cm.get_viewport_half_extents();
  328. Vector2 point;
  329. point.x = (p_point.x / viewport_size.x) * 2.0 - 1.0;
  330. point.y = (1.0 - (p_point.y / viewport_size.y)) * 2.0 - 1.0;
  331. point *= vp_he;
  332. Vector3 p(point.x, point.y, -p_z_depth);
  333. return get_camera_transform().xform(p);
  334. }
  335. void Camera3D::set_environment(const Ref<Environment> &p_environment) {
  336. environment = p_environment;
  337. if (environment.is_valid()) {
  338. RS::get_singleton()->camera_set_environment(camera, environment->get_rid());
  339. } else {
  340. RS::get_singleton()->camera_set_environment(camera, RID());
  341. }
  342. _update_camera_mode();
  343. }
  344. Ref<Environment> Camera3D::get_environment() const {
  345. return environment;
  346. }
  347. void Camera3D::set_attributes(const Ref<CameraAttributes> &p_attributes) {
  348. if (attributes.is_valid()) {
  349. CameraAttributesPhysical *physical_attributes = Object::cast_to<CameraAttributesPhysical>(attributes.ptr());
  350. if (physical_attributes) {
  351. attributes->disconnect(CoreStringNames::get_singleton()->changed, callable_mp(this, &Camera3D::_attributes_changed));
  352. }
  353. }
  354. attributes = p_attributes;
  355. if (attributes.is_valid()) {
  356. CameraAttributesPhysical *physical_attributes = Object::cast_to<CameraAttributesPhysical>(attributes.ptr());
  357. if (physical_attributes) {
  358. attributes->connect(CoreStringNames::get_singleton()->changed, callable_mp(this, &Camera3D::_attributes_changed));
  359. _attributes_changed();
  360. }
  361. RS::get_singleton()->camera_set_camera_attributes(camera, attributes->get_rid());
  362. } else {
  363. RS::get_singleton()->camera_set_camera_attributes(camera, RID());
  364. }
  365. notify_property_list_changed();
  366. }
  367. Ref<CameraAttributes> Camera3D::get_attributes() const {
  368. return attributes;
  369. }
  370. void Camera3D::_attributes_changed() {
  371. CameraAttributesPhysical *physical_attributes = Object::cast_to<CameraAttributesPhysical>(attributes.ptr());
  372. ERR_FAIL_COND(!physical_attributes);
  373. fov = physical_attributes->get_fov();
  374. near = physical_attributes->get_near();
  375. far = physical_attributes->get_far();
  376. keep_aspect = KEEP_HEIGHT;
  377. _update_camera_mode();
  378. }
  379. void Camera3D::set_keep_aspect_mode(KeepAspect p_aspect) {
  380. keep_aspect = p_aspect;
  381. RenderingServer::get_singleton()->camera_set_use_vertical_aspect(camera, p_aspect == KEEP_WIDTH);
  382. _update_camera_mode();
  383. notify_property_list_changed();
  384. }
  385. Camera3D::KeepAspect Camera3D::get_keep_aspect_mode() const {
  386. return keep_aspect;
  387. }
  388. void Camera3D::set_doppler_tracking(DopplerTracking p_tracking) {
  389. if (doppler_tracking == p_tracking) {
  390. return;
  391. }
  392. doppler_tracking = p_tracking;
  393. if (p_tracking != DOPPLER_TRACKING_DISABLED) {
  394. velocity_tracker->set_track_physics_step(doppler_tracking == DOPPLER_TRACKING_PHYSICS_STEP);
  395. if (is_inside_tree()) {
  396. velocity_tracker->reset(get_global_transform().origin);
  397. }
  398. }
  399. _update_camera_mode();
  400. }
  401. Camera3D::DopplerTracking Camera3D::get_doppler_tracking() const {
  402. return doppler_tracking;
  403. }
  404. void Camera3D::_bind_methods() {
  405. ClassDB::bind_method(D_METHOD("project_ray_normal", "screen_point"), &Camera3D::project_ray_normal);
  406. ClassDB::bind_method(D_METHOD("project_local_ray_normal", "screen_point"), &Camera3D::project_local_ray_normal);
  407. ClassDB::bind_method(D_METHOD("project_ray_origin", "screen_point"), &Camera3D::project_ray_origin);
  408. ClassDB::bind_method(D_METHOD("unproject_position", "world_point"), &Camera3D::unproject_position);
  409. ClassDB::bind_method(D_METHOD("is_position_behind", "world_point"), &Camera3D::is_position_behind);
  410. ClassDB::bind_method(D_METHOD("project_position", "screen_point", "z_depth"), &Camera3D::project_position);
  411. ClassDB::bind_method(D_METHOD("set_perspective", "fov", "z_near", "z_far"), &Camera3D::set_perspective);
  412. ClassDB::bind_method(D_METHOD("set_orthogonal", "size", "z_near", "z_far"), &Camera3D::set_orthogonal);
  413. ClassDB::bind_method(D_METHOD("set_frustum", "size", "offset", "z_near", "z_far"), &Camera3D::set_frustum);
  414. ClassDB::bind_method(D_METHOD("make_current"), &Camera3D::make_current);
  415. ClassDB::bind_method(D_METHOD("clear_current", "enable_next"), &Camera3D::clear_current, DEFVAL(true));
  416. ClassDB::bind_method(D_METHOD("set_current", "enabled"), &Camera3D::set_current);
  417. ClassDB::bind_method(D_METHOD("is_current"), &Camera3D::is_current);
  418. ClassDB::bind_method(D_METHOD("get_camera_transform"), &Camera3D::get_camera_transform);
  419. ClassDB::bind_method(D_METHOD("get_fov"), &Camera3D::get_fov);
  420. ClassDB::bind_method(D_METHOD("get_frustum_offset"), &Camera3D::get_frustum_offset);
  421. ClassDB::bind_method(D_METHOD("get_size"), &Camera3D::get_size);
  422. ClassDB::bind_method(D_METHOD("get_far"), &Camera3D::get_far);
  423. ClassDB::bind_method(D_METHOD("get_near"), &Camera3D::get_near);
  424. ClassDB::bind_method(D_METHOD("set_fov", "fov"), &Camera3D::set_fov);
  425. ClassDB::bind_method(D_METHOD("set_frustum_offset", "offset"), &Camera3D::set_frustum_offset);
  426. ClassDB::bind_method(D_METHOD("set_size", "size"), &Camera3D::set_size);
  427. ClassDB::bind_method(D_METHOD("set_far", "far"), &Camera3D::set_far);
  428. ClassDB::bind_method(D_METHOD("set_near", "near"), &Camera3D::set_near);
  429. ClassDB::bind_method(D_METHOD("get_projection"), &Camera3D::get_projection);
  430. ClassDB::bind_method(D_METHOD("set_projection", "mode"), &Camera3D::set_projection);
  431. ClassDB::bind_method(D_METHOD("set_h_offset", "offset"), &Camera3D::set_h_offset);
  432. ClassDB::bind_method(D_METHOD("get_h_offset"), &Camera3D::get_h_offset);
  433. ClassDB::bind_method(D_METHOD("set_v_offset", "offset"), &Camera3D::set_v_offset);
  434. ClassDB::bind_method(D_METHOD("get_v_offset"), &Camera3D::get_v_offset);
  435. ClassDB::bind_method(D_METHOD("set_cull_mask", "mask"), &Camera3D::set_cull_mask);
  436. ClassDB::bind_method(D_METHOD("get_cull_mask"), &Camera3D::get_cull_mask);
  437. ClassDB::bind_method(D_METHOD("set_environment", "env"), &Camera3D::set_environment);
  438. ClassDB::bind_method(D_METHOD("get_environment"), &Camera3D::get_environment);
  439. ClassDB::bind_method(D_METHOD("set_attributes", "env"), &Camera3D::set_attributes);
  440. ClassDB::bind_method(D_METHOD("get_attributes"), &Camera3D::get_attributes);
  441. ClassDB::bind_method(D_METHOD("set_keep_aspect_mode", "mode"), &Camera3D::set_keep_aspect_mode);
  442. ClassDB::bind_method(D_METHOD("get_keep_aspect_mode"), &Camera3D::get_keep_aspect_mode);
  443. ClassDB::bind_method(D_METHOD("set_doppler_tracking", "mode"), &Camera3D::set_doppler_tracking);
  444. ClassDB::bind_method(D_METHOD("get_doppler_tracking"), &Camera3D::get_doppler_tracking);
  445. ClassDB::bind_method(D_METHOD("get_frustum"), &Camera3D::_get_frustum);
  446. ClassDB::bind_method(D_METHOD("is_position_in_frustum", "world_point"), &Camera3D::is_position_in_frustum);
  447. ClassDB::bind_method(D_METHOD("get_camera_rid"), &Camera3D::get_camera);
  448. ClassDB::bind_method(D_METHOD("get_pyramid_shape_rid"), &Camera3D::get_pyramid_shape_rid);
  449. ClassDB::bind_method(D_METHOD("set_cull_mask_value", "layer_number", "value"), &Camera3D::set_cull_mask_value);
  450. ClassDB::bind_method(D_METHOD("get_cull_mask_value", "layer_number"), &Camera3D::get_cull_mask_value);
  451. //ClassDB::bind_method(D_METHOD("_camera_make_current"),&Camera::_camera_make_current );
  452. ADD_PROPERTY(PropertyInfo(Variant::INT, "keep_aspect", PROPERTY_HINT_ENUM, "Keep Width,Keep Height"), "set_keep_aspect_mode", "get_keep_aspect_mode");
  453. ADD_PROPERTY(PropertyInfo(Variant::INT, "cull_mask", PROPERTY_HINT_LAYERS_3D_RENDER), "set_cull_mask", "get_cull_mask");
  454. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "environment", PROPERTY_HINT_RESOURCE_TYPE, "Environment"), "set_environment", "get_environment");
  455. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "attributes", PROPERTY_HINT_RESOURCE_TYPE, "CameraAttributesPractical,CameraAttributesPhysical"), "set_attributes", "get_attributes");
  456. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "h_offset", PROPERTY_HINT_NONE, "suffix:m"), "set_h_offset", "get_h_offset");
  457. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "v_offset", PROPERTY_HINT_NONE, "suffix:m"), "set_v_offset", "get_v_offset");
  458. ADD_PROPERTY(PropertyInfo(Variant::INT, "doppler_tracking", PROPERTY_HINT_ENUM, "Disabled,Idle,Physics"), "set_doppler_tracking", "get_doppler_tracking");
  459. ADD_PROPERTY(PropertyInfo(Variant::INT, "projection", PROPERTY_HINT_ENUM, "Perspective,Orthogonal,Frustum"), "set_projection", "get_projection");
  460. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "current"), "set_current", "is_current");
  461. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "fov", PROPERTY_HINT_RANGE, "1,179,0.1,degrees"), "set_fov", "get_fov");
  462. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "size", PROPERTY_HINT_RANGE, "0.001,16384,0.001,or_greater,suffix:m"), "set_size", "get_size");
  463. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "frustum_offset", PROPERTY_HINT_NONE, "suffix:m"), "set_frustum_offset", "get_frustum_offset");
  464. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "near", PROPERTY_HINT_RANGE, "0.001,10,0.001,or_greater,exp,suffix:m"), "set_near", "get_near");
  465. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "far", PROPERTY_HINT_RANGE, "0.01,4000,0.01,or_greater,exp,suffix:m"), "set_far", "get_far");
  466. BIND_ENUM_CONSTANT(PROJECTION_PERSPECTIVE);
  467. BIND_ENUM_CONSTANT(PROJECTION_ORTHOGONAL);
  468. BIND_ENUM_CONSTANT(PROJECTION_FRUSTUM);
  469. BIND_ENUM_CONSTANT(KEEP_WIDTH);
  470. BIND_ENUM_CONSTANT(KEEP_HEIGHT);
  471. BIND_ENUM_CONSTANT(DOPPLER_TRACKING_DISABLED);
  472. BIND_ENUM_CONSTANT(DOPPLER_TRACKING_IDLE_STEP);
  473. BIND_ENUM_CONSTANT(DOPPLER_TRACKING_PHYSICS_STEP);
  474. }
  475. real_t Camera3D::get_fov() const {
  476. return fov;
  477. }
  478. real_t Camera3D::get_size() const {
  479. return size;
  480. }
  481. real_t Camera3D::get_near() const {
  482. return near;
  483. }
  484. Vector2 Camera3D::get_frustum_offset() const {
  485. return frustum_offset;
  486. }
  487. real_t Camera3D::get_far() const {
  488. return far;
  489. }
  490. Camera3D::ProjectionType Camera3D::get_projection() const {
  491. return mode;
  492. }
  493. void Camera3D::set_fov(real_t p_fov) {
  494. ERR_FAIL_COND(p_fov < 1 || p_fov > 179);
  495. fov = p_fov;
  496. _update_camera_mode();
  497. }
  498. void Camera3D::set_size(real_t p_size) {
  499. ERR_FAIL_COND(p_size <= CMP_EPSILON);
  500. size = p_size;
  501. _update_camera_mode();
  502. }
  503. void Camera3D::set_near(real_t p_near) {
  504. near = p_near;
  505. _update_camera_mode();
  506. }
  507. void Camera3D::set_frustum_offset(Vector2 p_offset) {
  508. frustum_offset = p_offset;
  509. _update_camera_mode();
  510. }
  511. void Camera3D::set_far(real_t p_far) {
  512. far = p_far;
  513. _update_camera_mode();
  514. }
  515. void Camera3D::set_cull_mask(uint32_t p_layers) {
  516. layers = p_layers;
  517. RenderingServer::get_singleton()->camera_set_cull_mask(camera, layers);
  518. _update_camera_mode();
  519. }
  520. uint32_t Camera3D::get_cull_mask() const {
  521. return layers;
  522. }
  523. void Camera3D::set_cull_mask_value(int p_layer_number, bool p_value) {
  524. ERR_FAIL_COND_MSG(p_layer_number < 1, "Render layer number must be between 1 and 20 inclusive.");
  525. ERR_FAIL_COND_MSG(p_layer_number > 20, "Render layer number must be between 1 and 20 inclusive.");
  526. uint32_t mask = get_cull_mask();
  527. if (p_value) {
  528. mask |= 1 << (p_layer_number - 1);
  529. } else {
  530. mask &= ~(1 << (p_layer_number - 1));
  531. }
  532. set_cull_mask(mask);
  533. }
  534. bool Camera3D::get_cull_mask_value(int p_layer_number) const {
  535. ERR_FAIL_COND_V_MSG(p_layer_number < 1, false, "Render layer number must be between 1 and 20 inclusive.");
  536. ERR_FAIL_COND_V_MSG(p_layer_number > 20, false, "Render layer number must be between 1 and 20 inclusive.");
  537. return layers & (1 << (p_layer_number - 1));
  538. }
  539. Vector<Plane> Camera3D::get_frustum() const {
  540. ERR_FAIL_COND_V(!is_inside_world(), Vector<Plane>());
  541. Size2 viewport_size = get_viewport()->get_visible_rect().size;
  542. Projection cm;
  543. if (mode == PROJECTION_PERSPECTIVE) {
  544. cm.set_perspective(fov, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
  545. } else {
  546. cm.set_orthogonal(size, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
  547. }
  548. return cm.get_projection_planes(get_camera_transform());
  549. }
  550. TypedArray<Plane> Camera3D::_get_frustum() const {
  551. Variant ret = get_frustum();
  552. return ret;
  553. }
  554. bool Camera3D::is_position_in_frustum(const Vector3 &p_position) const {
  555. Vector<Plane> frustum = get_frustum();
  556. for (int i = 0; i < frustum.size(); i++) {
  557. if (frustum[i].is_point_over(p_position)) {
  558. return false;
  559. }
  560. }
  561. return true;
  562. }
  563. void Camera3D::set_v_offset(real_t p_offset) {
  564. v_offset = p_offset;
  565. _update_camera();
  566. }
  567. real_t Camera3D::get_v_offset() const {
  568. return v_offset;
  569. }
  570. void Camera3D::set_h_offset(real_t p_offset) {
  571. h_offset = p_offset;
  572. _update_camera();
  573. }
  574. real_t Camera3D::get_h_offset() const {
  575. return h_offset;
  576. }
  577. Vector3 Camera3D::get_doppler_tracked_velocity() const {
  578. if (doppler_tracking != DOPPLER_TRACKING_DISABLED) {
  579. return velocity_tracker->get_tracked_linear_velocity();
  580. } else {
  581. return Vector3();
  582. }
  583. }
  584. RID Camera3D::get_pyramid_shape_rid() {
  585. ERR_FAIL_COND_V_MSG(!is_inside_tree(), RID(), "Camera is not inside scene.");
  586. if (pyramid_shape == RID()) {
  587. pyramid_shape_points = get_near_plane_points();
  588. pyramid_shape = PhysicsServer3D::get_singleton()->convex_polygon_shape_create();
  589. PhysicsServer3D::get_singleton()->shape_set_data(pyramid_shape, pyramid_shape_points);
  590. } else { //check if points changed
  591. Vector<Vector3> local_points = get_near_plane_points();
  592. bool all_equal = true;
  593. for (int i = 0; i < 5; i++) {
  594. if (local_points[i] != pyramid_shape_points[i]) {
  595. all_equal = false;
  596. break;
  597. }
  598. }
  599. if (!all_equal) {
  600. PhysicsServer3D::get_singleton()->shape_set_data(pyramid_shape, local_points);
  601. pyramid_shape_points = local_points;
  602. }
  603. }
  604. return pyramid_shape;
  605. }
  606. Camera3D::Camera3D() {
  607. camera = RenderingServer::get_singleton()->camera_create();
  608. set_perspective(75.0, 0.05, 4000.0);
  609. RenderingServer::get_singleton()->camera_set_cull_mask(camera, layers);
  610. //active=false;
  611. velocity_tracker.instantiate();
  612. set_notify_transform(true);
  613. set_disable_scale(true);
  614. }
  615. Camera3D::~Camera3D() {
  616. ERR_FAIL_NULL(RenderingServer::get_singleton());
  617. RenderingServer::get_singleton()->free(camera);
  618. if (pyramid_shape.is_valid()) {
  619. ERR_FAIL_NULL(PhysicsServer3D::get_singleton());
  620. PhysicsServer3D::get_singleton()->free(pyramid_shape);
  621. }
  622. }