animated_sprite.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740
  1. /*************************************************************************/
  2. /* animated_sprite.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "animated_sprite.h"
  31. #include "core/os/os.h"
  32. #include "scene/scene_string_names.h"
  33. #define NORMAL_SUFFIX "_normal"
  34. #ifdef TOOLS_ENABLED
  35. Dictionary AnimatedSprite::_edit_get_state() const {
  36. Dictionary state = Node2D::_edit_get_state();
  37. state["offset"] = offset;
  38. return state;
  39. }
  40. void AnimatedSprite::_edit_set_state(const Dictionary &p_state) {
  41. Node2D::_edit_set_state(p_state);
  42. set_offset(p_state["offset"]);
  43. }
  44. void AnimatedSprite::_edit_set_pivot(const Point2 &p_pivot) {
  45. set_offset(get_offset() - p_pivot);
  46. set_position(get_transform().xform(p_pivot));
  47. }
  48. Point2 AnimatedSprite::_edit_get_pivot() const {
  49. return Vector2();
  50. }
  51. bool AnimatedSprite::_edit_use_pivot() const {
  52. return true;
  53. }
  54. Rect2 AnimatedSprite::_edit_get_rect() const {
  55. return _get_rect();
  56. }
  57. bool AnimatedSprite::_edit_use_rect() const {
  58. if (!frames.is_valid() || !frames->has_animation(animation) || frame < 0 || frame >= frames->get_frame_count(animation)) {
  59. return false;
  60. }
  61. Ref<Texture> t;
  62. if (animation)
  63. t = frames->get_frame(animation, frame);
  64. return t.is_valid();
  65. }
  66. #endif
  67. Rect2 AnimatedSprite::get_anchorable_rect() const {
  68. return _get_rect();
  69. }
  70. Rect2 AnimatedSprite::_get_rect() const {
  71. if (!frames.is_valid() || !frames->has_animation(animation) || frame < 0 || frame >= frames->get_frame_count(animation)) {
  72. return Rect2();
  73. }
  74. Ref<Texture> t;
  75. if (animation)
  76. t = frames->get_frame(animation, frame);
  77. if (t.is_null())
  78. return Rect2();
  79. Size2 s = t->get_size();
  80. Point2 ofs = offset;
  81. if (centered)
  82. ofs -= Size2(s) / 2;
  83. if (s == Size2(0, 0))
  84. s = Size2(1, 1);
  85. return Rect2(ofs, s);
  86. }
  87. void SpriteFrames::add_frame(const StringName &p_anim, const Ref<Texture> &p_frame, int p_at_pos) {
  88. Map<StringName, Anim>::Element *E = animations.find(p_anim);
  89. ERR_FAIL_COND_MSG(!E, "Animation '" + String(p_anim) + "' doesn't exist.");
  90. if (p_at_pos >= 0 && p_at_pos < E->get().frames.size())
  91. E->get().frames.insert(p_at_pos, p_frame);
  92. else
  93. E->get().frames.push_back(p_frame);
  94. emit_changed();
  95. }
  96. int SpriteFrames::get_frame_count(const StringName &p_anim) const {
  97. const Map<StringName, Anim>::Element *E = animations.find(p_anim);
  98. ERR_FAIL_COND_V_MSG(!E, 0, "Animation '" + String(p_anim) + "' doesn't exist.");
  99. return E->get().frames.size();
  100. }
  101. void SpriteFrames::remove_frame(const StringName &p_anim, int p_idx) {
  102. Map<StringName, Anim>::Element *E = animations.find(p_anim);
  103. ERR_FAIL_COND_MSG(!E, "Animation '" + String(p_anim) + "' doesn't exist.");
  104. E->get().frames.remove(p_idx);
  105. emit_changed();
  106. }
  107. void SpriteFrames::clear(const StringName &p_anim) {
  108. Map<StringName, Anim>::Element *E = animations.find(p_anim);
  109. ERR_FAIL_COND_MSG(!E, "Animation '" + String(p_anim) + "' doesn't exist.");
  110. E->get().frames.clear();
  111. emit_changed();
  112. }
  113. void SpriteFrames::clear_all() {
  114. animations.clear();
  115. add_animation("default");
  116. }
  117. void SpriteFrames::add_animation(const StringName &p_anim) {
  118. ERR_FAIL_COND_MSG(animations.has(p_anim), "SpriteFrames already has animation '" + p_anim + "'.");
  119. animations[p_anim] = Anim();
  120. animations[p_anim].normal_name = String(p_anim) + NORMAL_SUFFIX;
  121. }
  122. bool SpriteFrames::has_animation(const StringName &p_anim) const {
  123. return animations.has(p_anim);
  124. }
  125. void SpriteFrames::remove_animation(const StringName &p_anim) {
  126. animations.erase(p_anim);
  127. }
  128. void SpriteFrames::rename_animation(const StringName &p_prev, const StringName &p_next) {
  129. ERR_FAIL_COND_MSG(!animations.has(p_prev), "SpriteFrames doesn't have animation '" + String(p_prev) + "'.");
  130. ERR_FAIL_COND_MSG(animations.has(p_next), "Animation '" + String(p_next) + "' already exists.");
  131. Anim anim = animations[p_prev];
  132. animations.erase(p_prev);
  133. animations[p_next] = anim;
  134. animations[p_next].normal_name = String(p_next) + NORMAL_SUFFIX;
  135. }
  136. Vector<String> SpriteFrames::_get_animation_list() const {
  137. Vector<String> ret;
  138. List<StringName> al;
  139. get_animation_list(&al);
  140. for (List<StringName>::Element *E = al.front(); E; E = E->next()) {
  141. ret.push_back(E->get());
  142. }
  143. return ret;
  144. }
  145. void SpriteFrames::get_animation_list(List<StringName> *r_animations) const {
  146. for (const Map<StringName, Anim>::Element *E = animations.front(); E; E = E->next()) {
  147. r_animations->push_back(E->key());
  148. }
  149. }
  150. Vector<String> SpriteFrames::get_animation_names() const {
  151. Vector<String> names;
  152. for (const Map<StringName, Anim>::Element *E = animations.front(); E; E = E->next()) {
  153. names.push_back(E->key());
  154. }
  155. names.sort();
  156. return names;
  157. }
  158. void SpriteFrames::set_animation_speed(const StringName &p_anim, float p_fps) {
  159. ERR_FAIL_COND_MSG(p_fps < 0, "Animation speed cannot be negative (" + itos(p_fps) + ").");
  160. Map<StringName, Anim>::Element *E = animations.find(p_anim);
  161. ERR_FAIL_COND_MSG(!E, "Animation '" + String(p_anim) + "' doesn't exist.");
  162. E->get().speed = p_fps;
  163. }
  164. float SpriteFrames::get_animation_speed(const StringName &p_anim) const {
  165. const Map<StringName, Anim>::Element *E = animations.find(p_anim);
  166. ERR_FAIL_COND_V_MSG(!E, 0, "Animation '" + String(p_anim) + "' doesn't exist.");
  167. return E->get().speed;
  168. }
  169. void SpriteFrames::set_animation_loop(const StringName &p_anim, bool p_loop) {
  170. Map<StringName, Anim>::Element *E = animations.find(p_anim);
  171. ERR_FAIL_COND_MSG(!E, "Animation '" + String(p_anim) + "' doesn't exist.");
  172. E->get().loop = p_loop;
  173. }
  174. bool SpriteFrames::get_animation_loop(const StringName &p_anim) const {
  175. const Map<StringName, Anim>::Element *E = animations.find(p_anim);
  176. ERR_FAIL_COND_V_MSG(!E, false, "Animation '" + String(p_anim) + "' doesn't exist.");
  177. return E->get().loop;
  178. }
  179. void SpriteFrames::_set_frames(const Array &p_frames) {
  180. clear_all();
  181. Map<StringName, Anim>::Element *E = animations.find(SceneStringNames::get_singleton()->_default);
  182. ERR_FAIL_COND(!E);
  183. E->get().frames.resize(p_frames.size());
  184. for (int i = 0; i < E->get().frames.size(); i++)
  185. E->get().frames.write[i] = p_frames[i];
  186. }
  187. Array SpriteFrames::_get_frames() const {
  188. return Array();
  189. }
  190. Array SpriteFrames::_get_animations() const {
  191. Array anims;
  192. for (Map<StringName, Anim>::Element *E = animations.front(); E; E = E->next()) {
  193. Dictionary d;
  194. d["name"] = E->key();
  195. d["speed"] = E->get().speed;
  196. d["loop"] = E->get().loop;
  197. Array frames;
  198. for (int i = 0; i < E->get().frames.size(); i++) {
  199. frames.push_back(E->get().frames[i]);
  200. }
  201. d["frames"] = frames;
  202. anims.push_back(d);
  203. }
  204. return anims;
  205. }
  206. void SpriteFrames::_set_animations(const Array &p_animations) {
  207. animations.clear();
  208. for (int i = 0; i < p_animations.size(); i++) {
  209. Dictionary d = p_animations[i];
  210. ERR_CONTINUE(!d.has("name"));
  211. ERR_CONTINUE(!d.has("speed"));
  212. ERR_CONTINUE(!d.has("loop"));
  213. ERR_CONTINUE(!d.has("frames"));
  214. Anim anim;
  215. anim.speed = d["speed"];
  216. anim.loop = d["loop"];
  217. Array frames = d["frames"];
  218. for (int j = 0; j < frames.size(); j++) {
  219. RES res = frames[j];
  220. anim.frames.push_back(res);
  221. }
  222. animations[d["name"]] = anim;
  223. }
  224. }
  225. void SpriteFrames::_bind_methods() {
  226. ClassDB::bind_method(D_METHOD("add_animation", "anim"), &SpriteFrames::add_animation);
  227. ClassDB::bind_method(D_METHOD("has_animation", "anim"), &SpriteFrames::has_animation);
  228. ClassDB::bind_method(D_METHOD("remove_animation", "anim"), &SpriteFrames::remove_animation);
  229. ClassDB::bind_method(D_METHOD("rename_animation", "anim", "newname"), &SpriteFrames::rename_animation);
  230. ClassDB::bind_method(D_METHOD("get_animation_names"), &SpriteFrames::get_animation_names);
  231. ClassDB::bind_method(D_METHOD("set_animation_speed", "anim", "speed"), &SpriteFrames::set_animation_speed);
  232. ClassDB::bind_method(D_METHOD("get_animation_speed", "anim"), &SpriteFrames::get_animation_speed);
  233. ClassDB::bind_method(D_METHOD("set_animation_loop", "anim", "loop"), &SpriteFrames::set_animation_loop);
  234. ClassDB::bind_method(D_METHOD("get_animation_loop", "anim"), &SpriteFrames::get_animation_loop);
  235. ClassDB::bind_method(D_METHOD("add_frame", "anim", "frame", "at_position"), &SpriteFrames::add_frame, DEFVAL(-1));
  236. ClassDB::bind_method(D_METHOD("get_frame_count", "anim"), &SpriteFrames::get_frame_count);
  237. ClassDB::bind_method(D_METHOD("get_frame", "anim", "idx"), &SpriteFrames::get_frame);
  238. ClassDB::bind_method(D_METHOD("set_frame", "anim", "idx", "txt"), &SpriteFrames::set_frame);
  239. ClassDB::bind_method(D_METHOD("remove_frame", "anim", "idx"), &SpriteFrames::remove_frame);
  240. ClassDB::bind_method(D_METHOD("clear", "anim"), &SpriteFrames::clear);
  241. ClassDB::bind_method(D_METHOD("clear_all"), &SpriteFrames::clear_all);
  242. ClassDB::bind_method(D_METHOD("_set_frames"), &SpriteFrames::_set_frames);
  243. ClassDB::bind_method(D_METHOD("_get_frames"), &SpriteFrames::_get_frames);
  244. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "frames", PROPERTY_HINT_NONE, "", 0), "_set_frames", "_get_frames"); //compatibility
  245. ClassDB::bind_method(D_METHOD("_set_animations"), &SpriteFrames::_set_animations);
  246. ClassDB::bind_method(D_METHOD("_get_animations"), &SpriteFrames::_get_animations);
  247. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "animations", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL), "_set_animations", "_get_animations"); //compatibility
  248. }
  249. SpriteFrames::SpriteFrames() {
  250. add_animation(SceneStringNames::get_singleton()->_default);
  251. }
  252. void AnimatedSprite::_validate_property(PropertyInfo &property) const {
  253. if (!frames.is_valid())
  254. return;
  255. if (property.name == "animation") {
  256. property.hint = PROPERTY_HINT_ENUM;
  257. List<StringName> names;
  258. frames->get_animation_list(&names);
  259. names.sort_custom<StringName::AlphCompare>();
  260. bool current_found = false;
  261. for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
  262. if (E->prev()) {
  263. property.hint_string += ",";
  264. }
  265. property.hint_string += String(E->get());
  266. if (animation == E->get()) {
  267. current_found = true;
  268. }
  269. }
  270. if (!current_found) {
  271. if (property.hint_string == String()) {
  272. property.hint_string = String(animation);
  273. } else {
  274. property.hint_string = String(animation) + "," + property.hint_string;
  275. }
  276. }
  277. }
  278. if (property.name == "frame") {
  279. property.hint = PROPERTY_HINT_RANGE;
  280. if (frames->has_animation(animation) && frames->get_frame_count(animation) > 1) {
  281. property.hint_string = "0," + itos(frames->get_frame_count(animation) - 1) + ",1";
  282. }
  283. property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS;
  284. }
  285. }
  286. void AnimatedSprite::_notification(int p_what) {
  287. switch (p_what) {
  288. case NOTIFICATION_INTERNAL_PROCESS: {
  289. if (frames.is_null())
  290. return;
  291. if (!frames->has_animation(animation))
  292. return;
  293. if (frame < 0)
  294. return;
  295. float speed = frames->get_animation_speed(animation) * speed_scale;
  296. if (speed == 0)
  297. return; //do nothing
  298. float remaining = get_process_delta_time();
  299. while (remaining) {
  300. if (timeout <= 0) {
  301. timeout = _get_frame_duration();
  302. int fc = frames->get_frame_count(animation);
  303. if ((!backwards && frame >= fc - 1) || (backwards && frame <= 0)) {
  304. if (frames->get_animation_loop(animation)) {
  305. if (backwards)
  306. frame = fc - 1;
  307. else
  308. frame = 0;
  309. emit_signal(SceneStringNames::get_singleton()->animation_finished);
  310. } else {
  311. if (backwards)
  312. frame = 0;
  313. else
  314. frame = fc - 1;
  315. if (!is_over) {
  316. is_over = true;
  317. emit_signal(SceneStringNames::get_singleton()->animation_finished);
  318. }
  319. }
  320. } else {
  321. if (backwards)
  322. frame--;
  323. else
  324. frame++;
  325. }
  326. update();
  327. _change_notify("frame");
  328. emit_signal(SceneStringNames::get_singleton()->frame_changed);
  329. }
  330. float to_process = MIN(timeout, remaining);
  331. remaining -= to_process;
  332. timeout -= to_process;
  333. }
  334. } break;
  335. case NOTIFICATION_DRAW: {
  336. if (frames.is_null())
  337. return;
  338. if (frame < 0)
  339. return;
  340. if (!frames->has_animation(animation))
  341. return;
  342. Ref<Texture> texture = frames->get_frame(animation, frame);
  343. if (texture.is_null())
  344. return;
  345. Ref<Texture> normal = frames->get_normal_frame(animation, frame);
  346. RID ci = get_canvas_item();
  347. Size2i s;
  348. s = texture->get_size();
  349. Point2 ofs = offset;
  350. if (centered)
  351. ofs -= s / 2;
  352. if (Engine::get_singleton()->get_use_pixel_snap()) {
  353. ofs = ofs.floor();
  354. }
  355. Rect2 dst_rect(ofs, s);
  356. if (hflip)
  357. dst_rect.size.x = -dst_rect.size.x;
  358. if (vflip)
  359. dst_rect.size.y = -dst_rect.size.y;
  360. texture->draw_rect_region(ci, dst_rect, Rect2(Vector2(), texture->get_size()), Color(1, 1, 1), false, normal);
  361. } break;
  362. }
  363. }
  364. void AnimatedSprite::set_sprite_frames(const Ref<SpriteFrames> &p_frames) {
  365. if (frames.is_valid())
  366. frames->disconnect("changed", this, "_res_changed");
  367. frames = p_frames;
  368. if (frames.is_valid())
  369. frames->connect("changed", this, "_res_changed");
  370. if (!frames.is_valid()) {
  371. frame = 0;
  372. } else {
  373. set_frame(frame);
  374. }
  375. _change_notify();
  376. _reset_timeout();
  377. update();
  378. update_configuration_warning();
  379. }
  380. Ref<SpriteFrames> AnimatedSprite::get_sprite_frames() const {
  381. return frames;
  382. }
  383. void AnimatedSprite::set_frame(int p_frame) {
  384. if (!frames.is_valid()) {
  385. return;
  386. }
  387. if (frames->has_animation(animation)) {
  388. int limit = frames->get_frame_count(animation);
  389. if (p_frame >= limit)
  390. p_frame = limit - 1;
  391. }
  392. if (p_frame < 0)
  393. p_frame = 0;
  394. if (frame == p_frame)
  395. return;
  396. frame = p_frame;
  397. _reset_timeout();
  398. update();
  399. _change_notify("frame");
  400. emit_signal(SceneStringNames::get_singleton()->frame_changed);
  401. }
  402. int AnimatedSprite::get_frame() const {
  403. return frame;
  404. }
  405. void AnimatedSprite::set_speed_scale(float p_speed_scale) {
  406. float elapsed = _get_frame_duration() - timeout;
  407. speed_scale = MAX(p_speed_scale, 0.0f);
  408. // We adapt the timeout so that the animation speed adapts as soon as the speed scale is changed
  409. _reset_timeout();
  410. timeout -= elapsed;
  411. }
  412. float AnimatedSprite::get_speed_scale() const {
  413. return speed_scale;
  414. }
  415. void AnimatedSprite::set_centered(bool p_center) {
  416. centered = p_center;
  417. update();
  418. item_rect_changed();
  419. }
  420. bool AnimatedSprite::is_centered() const {
  421. return centered;
  422. }
  423. void AnimatedSprite::set_offset(const Point2 &p_offset) {
  424. offset = p_offset;
  425. update();
  426. item_rect_changed();
  427. _change_notify("offset");
  428. }
  429. Point2 AnimatedSprite::get_offset() const {
  430. return offset;
  431. }
  432. void AnimatedSprite::set_flip_h(bool p_flip) {
  433. hflip = p_flip;
  434. update();
  435. }
  436. bool AnimatedSprite::is_flipped_h() const {
  437. return hflip;
  438. }
  439. void AnimatedSprite::set_flip_v(bool p_flip) {
  440. vflip = p_flip;
  441. update();
  442. }
  443. bool AnimatedSprite::is_flipped_v() const {
  444. return vflip;
  445. }
  446. void AnimatedSprite::_res_changed() {
  447. set_frame(frame);
  448. _change_notify("frame");
  449. _change_notify("animation");
  450. update();
  451. }
  452. void AnimatedSprite::_set_playing(bool p_playing) {
  453. if (playing == p_playing)
  454. return;
  455. playing = p_playing;
  456. _reset_timeout();
  457. set_process_internal(playing);
  458. }
  459. bool AnimatedSprite::_is_playing() const {
  460. return playing;
  461. }
  462. void AnimatedSprite::play(const StringName &p_animation, const bool p_backwards) {
  463. backwards = p_backwards;
  464. if (p_animation) {
  465. set_animation(p_animation);
  466. if (backwards && get_frame() == 0)
  467. set_frame(frames->get_frame_count(p_animation) - 1);
  468. }
  469. _set_playing(true);
  470. }
  471. void AnimatedSprite::stop() {
  472. _set_playing(false);
  473. }
  474. bool AnimatedSprite::is_playing() const {
  475. return playing;
  476. }
  477. float AnimatedSprite::_get_frame_duration() {
  478. if (frames.is_valid() && frames->has_animation(animation)) {
  479. float speed = frames->get_animation_speed(animation) * speed_scale;
  480. if (speed > 0) {
  481. return 1.0 / speed;
  482. }
  483. }
  484. return 0.0;
  485. }
  486. void AnimatedSprite::_reset_timeout() {
  487. if (!playing)
  488. return;
  489. timeout = _get_frame_duration();
  490. is_over = false;
  491. }
  492. void AnimatedSprite::set_animation(const StringName &p_animation) {
  493. ERR_FAIL_COND_MSG(frames == NULL, vformat("There is no animation with name '%s'.", p_animation));
  494. ERR_FAIL_COND_MSG(frames->get_animation_names().find(p_animation) == -1, vformat("There is no animation with name '%s'.", p_animation));
  495. if (animation == p_animation)
  496. return;
  497. animation = p_animation;
  498. _reset_timeout();
  499. set_frame(0);
  500. _change_notify();
  501. update();
  502. }
  503. StringName AnimatedSprite::get_animation() const {
  504. return animation;
  505. }
  506. String AnimatedSprite::get_configuration_warning() const {
  507. if (frames.is_null()) {
  508. return TTR("A SpriteFrames resource must be created or set in the \"Frames\" property in order for AnimatedSprite to display frames.");
  509. }
  510. return String();
  511. }
  512. void AnimatedSprite::_bind_methods() {
  513. ClassDB::bind_method(D_METHOD("set_sprite_frames", "sprite_frames"), &AnimatedSprite::set_sprite_frames);
  514. ClassDB::bind_method(D_METHOD("get_sprite_frames"), &AnimatedSprite::get_sprite_frames);
  515. ClassDB::bind_method(D_METHOD("set_animation", "animation"), &AnimatedSprite::set_animation);
  516. ClassDB::bind_method(D_METHOD("get_animation"), &AnimatedSprite::get_animation);
  517. ClassDB::bind_method(D_METHOD("_set_playing", "playing"), &AnimatedSprite::_set_playing);
  518. ClassDB::bind_method(D_METHOD("_is_playing"), &AnimatedSprite::_is_playing);
  519. ClassDB::bind_method(D_METHOD("play", "anim", "backwards"), &AnimatedSprite::play, DEFVAL(StringName()), DEFVAL(false));
  520. ClassDB::bind_method(D_METHOD("stop"), &AnimatedSprite::stop);
  521. ClassDB::bind_method(D_METHOD("is_playing"), &AnimatedSprite::is_playing);
  522. ClassDB::bind_method(D_METHOD("set_centered", "centered"), &AnimatedSprite::set_centered);
  523. ClassDB::bind_method(D_METHOD("is_centered"), &AnimatedSprite::is_centered);
  524. ClassDB::bind_method(D_METHOD("set_offset", "offset"), &AnimatedSprite::set_offset);
  525. ClassDB::bind_method(D_METHOD("get_offset"), &AnimatedSprite::get_offset);
  526. ClassDB::bind_method(D_METHOD("set_flip_h", "flip_h"), &AnimatedSprite::set_flip_h);
  527. ClassDB::bind_method(D_METHOD("is_flipped_h"), &AnimatedSprite::is_flipped_h);
  528. ClassDB::bind_method(D_METHOD("set_flip_v", "flip_v"), &AnimatedSprite::set_flip_v);
  529. ClassDB::bind_method(D_METHOD("is_flipped_v"), &AnimatedSprite::is_flipped_v);
  530. ClassDB::bind_method(D_METHOD("set_frame", "frame"), &AnimatedSprite::set_frame);
  531. ClassDB::bind_method(D_METHOD("get_frame"), &AnimatedSprite::get_frame);
  532. ClassDB::bind_method(D_METHOD("set_speed_scale", "speed_scale"), &AnimatedSprite::set_speed_scale);
  533. ClassDB::bind_method(D_METHOD("get_speed_scale"), &AnimatedSprite::get_speed_scale);
  534. ClassDB::bind_method(D_METHOD("_res_changed"), &AnimatedSprite::_res_changed);
  535. ADD_SIGNAL(MethodInfo("frame_changed"));
  536. ADD_SIGNAL(MethodInfo("animation_finished"));
  537. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "frames", PROPERTY_HINT_RESOURCE_TYPE, "SpriteFrames"), "set_sprite_frames", "get_sprite_frames");
  538. ADD_PROPERTY(PropertyInfo(Variant::STRING, "animation"), "set_animation", "get_animation");
  539. ADD_PROPERTY(PropertyInfo(Variant::INT, "frame"), "set_frame", "get_frame");
  540. ADD_PROPERTY(PropertyInfo(Variant::REAL, "speed_scale"), "set_speed_scale", "get_speed_scale");
  541. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "playing"), "_set_playing", "_is_playing");
  542. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "centered"), "set_centered", "is_centered");
  543. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "offset"), "set_offset", "get_offset");
  544. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_h"), "set_flip_h", "is_flipped_h");
  545. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_v"), "set_flip_v", "is_flipped_v");
  546. }
  547. AnimatedSprite::AnimatedSprite() {
  548. centered = true;
  549. hflip = false;
  550. vflip = false;
  551. frame = 0;
  552. speed_scale = 1.0f;
  553. playing = false;
  554. backwards = false;
  555. animation = "default";
  556. timeout = 0;
  557. is_over = false;
  558. }