2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2020-03-26 22:49:16 +01:00
|
|
|
/* animated_sprite_2d.h */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
#ifndef ANIMATED_SPRITE_2D_H
|
|
|
|
#define ANIMATED_SPRITE_2D_H
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
#include "scene/2d/node_2d.h"
|
2021-03-16 07:00:47 +01:00
|
|
|
#include "scene/resources/sprite_frames.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
class AnimatedSprite2D : public Node2D {
|
|
|
|
GDCLASS(AnimatedSprite2D, Node2D);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Ref<SpriteFrames> frames;
|
2021-02-07 22:29:31 +01:00
|
|
|
bool playing = false;
|
|
|
|
bool backwards = false;
|
|
|
|
StringName animation = "default";
|
|
|
|
int frame = 0;
|
|
|
|
float speed_scale = 1.0f;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-02-07 22:29:31 +01:00
|
|
|
bool centered = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
Point2 offset;
|
|
|
|
|
2021-02-07 22:29:31 +01:00
|
|
|
bool is_over = false;
|
|
|
|
float timeout = 0.0;
|
2016-05-15 04:48:23 +02:00
|
|
|
|
2021-02-07 22:29:31 +01:00
|
|
|
bool hflip = false;
|
|
|
|
bool vflip = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _res_changed();
|
2016-05-15 04:48:23 +02:00
|
|
|
|
2021-02-02 03:16:37 +01:00
|
|
|
double _get_frame_duration();
|
2016-05-15 04:48:23 +02:00
|
|
|
void _reset_timeout();
|
2018-05-05 16:59:00 +02:00
|
|
|
Rect2 _get_rect() const;
|
2016-05-15 04:48:23 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
void _notification(int p_what);
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual void _validate_property(PropertyInfo &property) const override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
public:
|
2019-10-21 23:37:07 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual Dictionary _edit_get_state() const override;
|
|
|
|
virtual void _edit_set_state(const Dictionary &p_state) override;
|
|
|
|
|
|
|
|
virtual void _edit_set_pivot(const Point2 &p_pivot) override;
|
|
|
|
virtual Point2 _edit_get_pivot() const override;
|
|
|
|
virtual bool _edit_use_pivot() const override;
|
|
|
|
virtual Rect2 _edit_get_rect() const override;
|
|
|
|
virtual bool _edit_use_rect() const override;
|
2019-10-21 23:37:07 +02:00
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual Rect2 get_anchorable_rect() const override;
|
2018-05-05 16:59:00 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_sprite_frames(const Ref<SpriteFrames> &p_frames);
|
|
|
|
Ref<SpriteFrames> get_sprite_frames() const;
|
|
|
|
|
2019-03-17 08:03:23 +01:00
|
|
|
void play(const StringName &p_animation = StringName(), const bool p_backwards = false);
|
2016-05-15 04:48:23 +02:00
|
|
|
void stop();
|
2021-08-04 11:46:40 +02:00
|
|
|
|
|
|
|
void set_playing(bool p_playing);
|
2016-05-15 04:48:23 +02:00
|
|
|
bool is_playing() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_animation(const StringName &p_animation);
|
2016-05-15 04:48:23 +02:00
|
|
|
StringName get_animation() const;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_frame(int p_frame);
|
|
|
|
int get_frame() const;
|
|
|
|
|
2021-02-02 03:16:37 +01:00
|
|
|
void set_speed_scale(double p_speed_scale);
|
|
|
|
double get_speed_scale() const;
|
2018-04-26 21:08:21 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_centered(bool p_center);
|
|
|
|
bool is_centered() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_offset(const Point2 &p_offset);
|
2014-02-10 02:10:30 +01:00
|
|
|
Point2 get_offset() const;
|
|
|
|
|
|
|
|
void set_flip_h(bool p_flip);
|
|
|
|
bool is_flipped_h() const;
|
|
|
|
|
|
|
|
void set_flip_v(bool p_flip);
|
|
|
|
bool is_flipped_v() const;
|
|
|
|
|
2020-10-29 11:01:28 +01:00
|
|
|
TypedArray<String> get_configuration_warnings() const override;
|
2020-03-26 22:49:16 +01:00
|
|
|
AnimatedSprite2D();
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ANIMATED_SPRITE_H
|