godot/scene/3d/camera_3d.h

187 lines
6 KiB
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* camera_3d.h */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
2014-02-10 02:10:30 +01:00
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#ifndef CAMERA_3D_H
#define CAMERA_3D_H
2014-02-10 02:10:30 +01:00
#include "scene/3d/node_3d.h"
#include "scene/3d/velocity_tracker_3d.h"
2019-08-10 14:28:17 +02:00
class Camera3D : public Node3D {
GDCLASS(Camera3D, Node3D);
2014-02-10 02:10:30 +01:00
public:
enum Projection {
PROJECTION_PERSPECTIVE,
PROJECTION_ORTHOGONAL,
PROJECTION_FRUSTUM
2014-02-10 02:10:30 +01:00
};
enum KeepAspect {
KEEP_WIDTH,
KEEP_HEIGHT
};
enum DopplerTracking {
DOPPLER_TRACKING_DISABLED,
DOPPLER_TRACKING_IDLE_STEP,
DOPPLER_TRACKING_PHYSICS_STEP
};
2014-02-10 02:10:30 +01:00
private:
bool force_change = false;
bool current = false;
Viewport *viewport = nullptr;
2014-02-10 02:10:30 +01:00
Projection mode = PROJECTION_PERSPECTIVE;
2016-03-09 00:00:52 +01:00
2021-01-30 01:55:54 +01:00
real_t fov = 0.0;
real_t size = 1.0;
Vector2 frustum_offset;
2021-01-30 01:55:54 +01:00
real_t near = 0.0;
real_t far = 0.0;
real_t v_offset = 0.0;
real_t h_offset = 0.0;
KeepAspect keep_aspect = KEEP_HEIGHT;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
RID camera;
RID scenario_id;
// String camera_group;
uint32_t layers = 0xfffff;
2014-02-10 02:10:30 +01:00
Ref<Environment> environment;
Ref<CameraEffects> effects;
2014-02-10 02:10:30 +01:00
// void _camera_make_current(Node *p_camera);
friend class Viewport;
2014-02-10 02:10:30 +01:00
void _update_audio_listener_state();
DopplerTracking doppler_tracking = DOPPLER_TRACKING_DISABLED;
Ref<VelocityTracker3D> velocity_tracker;
RID pyramid_shape;
Vector<Vector3> pyramid_shape_points;
protected:
2014-02-10 02:10:30 +01:00
void _update_camera();
virtual void _request_camera_update();
void _update_camera_mode();
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
void _notification(int p_what);
2020-07-10 12:34:39 +02:00
virtual void _validate_property(PropertyInfo &p_property) const override;
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
static void _bind_methods();
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
public:
enum {
NOTIFICATION_BECAME_CURRENT = 50,
NOTIFICATION_LOST_CURRENT = 51
2014-02-10 02:10:30 +01:00
};
2021-01-30 01:55:54 +01:00
void set_perspective(real_t p_fovy_degrees, real_t p_z_near, real_t p_z_far);
void set_orthogonal(real_t p_size, real_t p_z_near, real_t p_z_far);
void set_frustum(real_t p_size, Vector2 p_offset, real_t p_z_near, real_t p_z_far);
void set_projection(Camera3D::Projection p_mode);
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
void make_current();
void clear_current(bool p_enable_next = true);
void set_current(bool p_enabled);
2014-02-10 02:10:30 +01:00
bool is_current() const;
RID get_camera() const;
2021-01-30 01:55:54 +01:00
real_t get_fov() const;
real_t get_size() const;
real_t get_far() const;
real_t get_near() const;
Vector2 get_frustum_offset() const;
2014-02-10 02:10:30 +01:00
Projection get_projection() const;
2021-01-30 01:55:54 +01:00
void set_fov(real_t p_fov);
void set_size(real_t p_size);
void set_far(real_t p_far);
void set_near(real_t p_near);
void set_frustum_offset(Vector2 p_offset);
2017-12-07 07:31:03 +01:00
virtual Transform3D get_camera_transform() const;
2014-02-10 02:10:30 +01:00
virtual Vector3 project_ray_normal(const Point2 &p_pos) const;
2017-09-29 13:36:27 +02:00
virtual Vector3 project_ray_origin(const Point2 &p_pos) const;
virtual Vector3 project_local_ray_normal(const Point2 &p_pos) const;
2017-09-29 13:36:27 +02:00
virtual Point2 unproject_position(const Vector3 &p_pos) const;
bool is_position_behind(const Vector3 &p_pos) const;
2021-01-30 01:55:54 +01:00
virtual Vector3 project_position(const Point2 &p_point, real_t p_z_depth) const;
2014-02-10 02:10:30 +01:00
Vector<Vector3> get_near_plane_points() const;
void set_cull_mask(uint32_t p_layers);
uint32_t get_cull_mask() const;
2014-02-10 02:10:30 +01:00
void set_cull_mask_value(int p_layer_number, bool p_enable);
bool get_cull_mask_value(int p_layer_number) const;
2017-09-29 13:36:27 +02:00
virtual Vector<Plane> get_frustum() const;
2021-04-29 03:14:12 +02:00
bool is_position_in_frustum(const Vector3 &p_position) const;
2014-02-10 02:10:30 +01:00
void set_environment(const Ref<Environment> &p_environment);
2014-02-10 02:10:30 +01:00
Ref<Environment> get_environment() const;
void set_effects(const Ref<CameraEffects> &p_effects);
Ref<CameraEffects> get_effects() const;
void set_keep_aspect_mode(KeepAspect p_aspect);
KeepAspect get_keep_aspect_mode() const;
2014-02-10 02:10:30 +01:00
2021-01-30 01:55:54 +01:00
void set_v_offset(real_t p_offset);
real_t get_v_offset() const;
2021-01-30 01:55:54 +01:00
void set_h_offset(real_t p_offset);
real_t get_h_offset() const;
void set_doppler_tracking(DopplerTracking p_tracking);
DopplerTracking get_doppler_tracking() const;
Vector3 get_doppler_tracked_velocity() const;
RID get_pyramid_shape_rid();
Camera3D();
~Camera3D();
2014-02-10 02:10:30 +01:00
};
VARIANT_ENUM_CAST(Camera3D::Projection);
VARIANT_ENUM_CAST(Camera3D::KeepAspect);
VARIANT_ENUM_CAST(Camera3D::DopplerTracking);
2014-02-10 02:10:30 +01:00
#endif