2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2020-03-26 22:49:16 +01:00
|
|
|
/* immediate_geometry_3d.h */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2020-01-01 11:16:22 +01:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2016-06-18 14:46:12 +02: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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
#ifndef IMMEDIATE_GEOMETRY_3D_H
|
|
|
|
#define IMMEDIATE_GEOMETRY_3D_H
|
2014-05-29 15:56:39 +02:00
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
#include "scene/3d/visual_instance_3d.h"
|
2014-05-29 15:56:39 +02:00
|
|
|
#include "scene/resources/mesh.h"
|
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
class ImmediateGeometry3D : public GeometryInstance3D {
|
|
|
|
GDCLASS(ImmediateGeometry3D, GeometryInstance3D);
|
2014-05-29 15:56:39 +02:00
|
|
|
|
|
|
|
RID im;
|
2017-09-28 23:40:01 +02:00
|
|
|
//a list of textures drawn need to be kept, to avoid references
|
2020-03-27 19:21:27 +01:00
|
|
|
// in RenderingServer from becoming invalid if the texture is no longer used
|
2020-03-17 07:33:00 +01:00
|
|
|
List<Ref<Texture2D>> cached_textures;
|
2014-05-29 15:56:39 +02:00
|
|
|
bool empty;
|
2017-11-17 03:09:00 +01:00
|
|
|
AABB aabb;
|
2014-05-29 15:56:39 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
protected:
|
2014-05-29 15:56:39 +02:00
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2019-06-11 20:43:37 +02:00
|
|
|
void begin(Mesh::PrimitiveType p_primitive, const Ref<Texture2D> &p_texture = Ref<Texture2D>());
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_normal(const Vector3 &p_normal);
|
|
|
|
void set_tangent(const Plane &p_tangent);
|
|
|
|
void set_color(const Color &p_color);
|
2017-08-11 21:10:05 +02:00
|
|
|
void set_uv(const Vector2 &p_uv);
|
|
|
|
void set_uv2(const Vector2 &p_uv2);
|
2014-05-29 15:56:39 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void add_vertex(const Vector3 &p_vertex);
|
2014-05-29 15:56:39 +02:00
|
|
|
|
|
|
|
void end();
|
|
|
|
void clear();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void add_sphere(int p_lats, int p_lons, float p_radius, bool p_add_uv = true);
|
2014-10-12 07:13:22 +02:00
|
|
|
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual AABB get_aabb() const override;
|
|
|
|
virtual Vector<Face3> get_faces(uint32_t p_usage_flags) const override;
|
2014-05-29 15:56:39 +02:00
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
ImmediateGeometry3D();
|
|
|
|
~ImmediateGeometry3D();
|
2014-05-29 15:56:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // IMMEDIATE_GEOMETRY_H
|