aboutsummaryrefslogtreecommitdiff
path: root/animation.c
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-05-04 10:15:19 +1000
committerquou <quou@disroot.org>2023-05-04 10:15:19 +1000
commitc4ac81cffcf925963acb0c02584ab22626427a73 (patch)
tree7d6421405e53a92baada909355c5398f21e91864 /animation.c
parentc4ee81da673208fe7b3e3638692fd466acf61c3f (diff)
Add an animation system.
Diffstat (limited to 'animation.c')
-rw-r--r--animation.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/animation.c b/animation.c
new file mode 100644
index 0000000..6dbb08f
--- /dev/null
+++ b/animation.c
@@ -0,0 +1,50 @@
+#include "animation.h"
+
+static const Animation animations[] = {
+ /* animation_player_walk_left */
+ {
+ {
+ { 0, 16, 16, 16 },
+ { 16, 16, 16, 16 },
+ { 16, 16, 16, 16 },
+ { 0, 16, 16, 16 },
+ { 32, 16, 16, 16 },
+ { 32, 16, 16, 16 }
+ },
+ 6,
+ 3
+ },
+ /* animation_player_walk_right */
+ {
+ {
+ { 0, 0, 16, 16 },
+ { 16, 0, 16, 16 },
+ { 16, 0, 16, 16 },
+ { 0, 0, 16, 16 },
+ { 32, 0, 16, 16 },
+ { 32, 0, 16, 16 }
+ },
+ 6,
+ 3
+ },
+ /* animation_player_idle_left */
+ {
+ {
+ { 0, 16, 16, 16 },
+ },
+ 1,
+ 1
+ },
+ /* animation__player_idle_right */
+ {
+ {
+ { 0, 0, 16, 16 },
+ },
+ 1,
+ 1
+ },
+};
+
+const Animation* get_animation(Animation_ID id) {
+ return &animations[id];
+}