2018-08-29 20:38:13 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* animation_blend_space_2d.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2019-01-01 11:53:14 +00:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2018-08-29 20:38:13 +00: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-06-22 19:52:13 +00:00
|
|
|
#ifndef ANIMATION_BLEND_SPACE_2D_H
|
|
|
|
#define ANIMATION_BLEND_SPACE_2D_H
|
2018-06-21 18:45:44 +00:00
|
|
|
|
2018-06-25 21:40:24 +00:00
|
|
|
#include "scene/animation/animation_tree.h"
|
2018-06-21 18:45:44 +00:00
|
|
|
|
2018-06-22 13:17:54 +00:00
|
|
|
class AnimationNodeBlendSpace2D : public AnimationRootNode {
|
2018-06-22 15:13:43 +00:00
|
|
|
GDCLASS(AnimationNodeBlendSpace2D, AnimationRootNode)
|
2018-11-21 19:06:17 +00:00
|
|
|
public:
|
|
|
|
enum BlendMode {
|
|
|
|
BLEND_MODE_INTERPOLATED,
|
|
|
|
BLEND_MODE_DISCRETE,
|
|
|
|
BLEND_MODE_DISCRETE_CARRY,
|
|
|
|
};
|
2018-06-21 18:45:44 +00:00
|
|
|
|
2018-11-21 19:06:17 +00:00
|
|
|
protected:
|
2018-06-21 18:45:44 +00:00
|
|
|
enum {
|
|
|
|
MAX_BLEND_POINTS = 64
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BlendPoint {
|
2018-08-20 16:38:18 +00:00
|
|
|
StringName name;
|
2018-06-21 18:45:44 +00:00
|
|
|
Ref<AnimationRootNode> node;
|
|
|
|
Vector2 position;
|
|
|
|
};
|
|
|
|
|
|
|
|
BlendPoint blend_points[MAX_BLEND_POINTS];
|
|
|
|
int blend_points_used;
|
|
|
|
|
|
|
|
struct BlendTriangle {
|
|
|
|
int points[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
Vector<BlendTriangle> triangles;
|
|
|
|
|
2018-08-20 16:38:18 +00:00
|
|
|
StringName blend_position;
|
2018-11-21 19:06:17 +00:00
|
|
|
StringName closest;
|
|
|
|
StringName length_internal;
|
2018-06-21 18:45:44 +00:00
|
|
|
Vector2 max_space;
|
|
|
|
Vector2 min_space;
|
|
|
|
Vector2 snap;
|
|
|
|
String x_label;
|
|
|
|
String y_label;
|
2018-11-21 19:06:17 +00:00
|
|
|
BlendMode blend_mode;
|
2018-06-21 18:45:44 +00:00
|
|
|
|
|
|
|
void _add_blend_point(int p_index, const Ref<AnimationRootNode> &p_node);
|
|
|
|
void _set_triangles(const Vector<int> &p_triangles);
|
|
|
|
Vector<int> _get_triangles() const;
|
|
|
|
|
|
|
|
void _blend_triangle(const Vector2 &p_pos, const Vector2 *p_points, float *r_weights);
|
|
|
|
|
2018-06-22 01:48:47 +00:00
|
|
|
bool auto_triangles;
|
|
|
|
bool trianges_dirty;
|
|
|
|
|
|
|
|
void _update_triangles();
|
2019-01-11 00:40:46 +00:00
|
|
|
void _queue_auto_triangles();
|
2018-06-22 01:48:47 +00:00
|
|
|
|
2018-08-20 16:38:18 +00:00
|
|
|
void _tree_changed();
|
|
|
|
|
2018-06-21 18:45:44 +00:00
|
|
|
protected:
|
|
|
|
virtual void _validate_property(PropertyInfo &property) const;
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2018-08-20 16:38:18 +00:00
|
|
|
virtual void get_parameter_list(List<PropertyInfo> *r_list) const;
|
|
|
|
virtual Variant get_parameter_default_value(const StringName &p_parameter) const;
|
|
|
|
|
|
|
|
virtual void get_child_nodes(List<ChildNode> *r_child_nodes);
|
2018-06-27 23:50:25 +00:00
|
|
|
|
2018-06-21 18:45:44 +00:00
|
|
|
void add_blend_point(const Ref<AnimationRootNode> &p_node, const Vector2 &p_position, int p_at_index = -1);
|
|
|
|
void set_blend_point_position(int p_point, const Vector2 &p_position);
|
|
|
|
void set_blend_point_node(int p_point, const Ref<AnimationRootNode> &p_node);
|
|
|
|
Vector2 get_blend_point_position(int p_point) const;
|
|
|
|
Ref<AnimationRootNode> get_blend_point_node(int p_point) const;
|
|
|
|
void remove_blend_point(int p_point);
|
|
|
|
int get_blend_point_count() const;
|
|
|
|
|
|
|
|
bool has_triangle(int p_x, int p_y, int p_z) const;
|
|
|
|
void add_triangle(int p_x, int p_y, int p_z, int p_at_index = -1);
|
|
|
|
int get_triangle_point(int p_triangle, int p_point);
|
|
|
|
void remove_triangle(int p_triangle);
|
|
|
|
int get_triangle_count() const;
|
|
|
|
|
|
|
|
void set_min_space(const Vector2 &p_min);
|
|
|
|
Vector2 get_min_space() const;
|
|
|
|
|
|
|
|
void set_max_space(const Vector2 &p_max);
|
|
|
|
Vector2 get_max_space() const;
|
|
|
|
|
|
|
|
void set_snap(const Vector2 &p_snap);
|
|
|
|
Vector2 get_snap() const;
|
|
|
|
|
|
|
|
void set_x_label(const String &p_label);
|
|
|
|
String get_x_label() const;
|
|
|
|
|
|
|
|
void set_y_label(const String &p_label);
|
|
|
|
String get_y_label() const;
|
|
|
|
|
2018-06-25 19:21:57 +00:00
|
|
|
virtual float process(float p_time, bool p_seek);
|
|
|
|
virtual String get_caption() const;
|
2018-06-21 18:45:44 +00:00
|
|
|
|
|
|
|
Vector2 get_closest_point(const Vector2 &p_point);
|
|
|
|
|
2018-06-22 01:48:47 +00:00
|
|
|
void set_auto_triangles(bool p_enable);
|
|
|
|
bool get_auto_triangles() const;
|
|
|
|
|
2018-11-21 19:06:17 +00:00
|
|
|
void set_blend_mode(BlendMode p_blend_mode);
|
|
|
|
BlendMode get_blend_mode() const;
|
|
|
|
|
2018-08-20 16:38:18 +00:00
|
|
|
virtual Ref<AnimationNode> get_child_by_name(const StringName &p_name);
|
|
|
|
|
2018-06-22 15:13:43 +00:00
|
|
|
AnimationNodeBlendSpace2D();
|
|
|
|
~AnimationNodeBlendSpace2D();
|
2018-06-21 18:45:44 +00:00
|
|
|
};
|
|
|
|
|
2018-11-21 19:06:17 +00:00
|
|
|
VARIANT_ENUM_CAST(AnimationNodeBlendSpace2D::BlendMode)
|
|
|
|
|
2018-06-22 19:52:13 +00:00
|
|
|
#endif // ANIMATION_BLEND_SPACE_2D_H
|