mesh_data_resource/mesh_data_resource.h

109 lines
2.9 KiB
C
Raw Normal View History

/*
2021-04-19 10:11:02 +02:00
Copyright (c) 2019-2021 Péter Magyar
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 MESH_DATA_REOURCE_H
#define MESH_DATA_REOURCE_H
2021-02-06 11:51:02 +01:00
#include "core/version.h"
#include "core/variant.h"
2021-02-06 11:51:02 +01:00
#if VERSION_MAJOR > 3
#include "core/io/resource.h"
#include "core/variant/array.h"
#else
2020-04-10 14:02:39 +02:00
#include "core/resource.h"
2021-02-06 11:51:02 +01:00
#include "core/array.h"
#endif
2020-07-29 00:02:05 +02:00
#include "core/version.h"
#include "scene/resources/mesh.h"
2020-07-29 00:02:05 +02:00
#if VERSION_MAJOR < 4
#include "scene/resources/shape.h"
2020-07-29 00:02:05 +02:00
#else
#include "scene/resources/shape_3d.h"
#define Shape Shape3D
#endif
class MeshDataResource : public Resource {
GDCLASS(MeshDataResource, Resource);
RES_BASE_EXTENSION("mdres");
public:
static const String BINDING_STRING_COLLIDER_TYPE;
enum ColliderType {
COLLIDER_TYPE_NONE = 0,
COLLIDER_TYPE_TRIMESH_COLLISION_SHAPE,
COLLIDER_TYPE_SINGLE_CONVEX_COLLISION_SHAPE,
COLLIDER_TYPE_MULTIPLE_CONVEX_COLLISION_SHAPES,
COLLIDER_TYPE_APPROXIMATED_BOX,
COLLIDER_TYPE_APPROXIMATED_CAPSULE,
COLLIDER_TYPE_APPROXIMATED_CYLINDER,
COLLIDER_TYPE_APPROXIMATED_SPHERE,
};
public:
Array get_array();
void set_array(const Array &p_arrays);
Array get_array_const() const;
2020-08-16 11:54:54 +02:00
AABB get_aabb() const;
void set_aabb(const AABB &aabb);
void add_collision_shape(const Transform &transform, const Ref<Shape> &shape);
Ref<Shape> get_collision_shape(const int index);
Transform get_collision_shape_offset(const int index);
int get_collision_shape_count() const;
2020-06-30 14:42:12 +02:00
Vector<Variant> get_collision_shapes();
void set_collision_shapes(const Vector<Variant> &p_arrays);
PoolIntArray get_seams();
void set_seams(const PoolIntArray &array);
void recompute_aabb();
MeshDataResource();
~MeshDataResource();
2020-06-30 14:42:12 +02:00
protected:
struct MDRData {
Ref<Shape> shape;
Transform transform;
2020-06-30 14:42:12 +02:00
};
protected:
static void _bind_methods();
private:
Array _arrays;
AABB _aabb;
2020-06-30 14:42:12 +02:00
Vector<MDRData> _collision_shapes;
PoolIntArray _seams;
};
VARIANT_ENUM_CAST(MeshDataResource::ColliderType);
#endif