Hackio-Credits.
[hackover2013-badge-firmware.git] / badge / jumpnrun / player.h
index 1b193b5..4277334 100644 (file)
@@ -7,10 +7,11 @@
 
 enum {
   // Do not collide with JUMPNRUN_MOVEABLE_* flags
-  JUMPNRUN_PLAYER_DEAD = 4
+  JUMPNRUN_PLAYER_DEAD = 128
 };
 
 enum {
+  JUMPNRUN_PLAYER_TICKS_PER_FRAME = 6,
   JUMPNRUN_PLAYER_FRAMES = 4
 };
 
@@ -21,7 +22,15 @@ typedef struct jumpnrun_player {
   uint8_t keys;
 } jumpnrun_player;
 
-void jumpnrun_player_spawn        (jumpnrun_player *self, vec2d spawn_pos, uint8_t lives);
-void jumpnrun_player_respawn      (jumpnrun_player *self, vec2d spawn_pos);
+void jumpnrun_player_spawn  (jumpnrun_player *self, vec2d spawn_pos, uint8_t lives);
+void jumpnrun_player_respawn(jumpnrun_player *self, vec2d spawn_pos);
+void jumpnrun_player_kill   (jumpnrun_player *self);
+void jumpnrun_player_despawn(jumpnrun_player *self);
+
+void jumpnrun_player_advance_animation(jumpnrun_player *self);
+
+static inline bool jumpnrun_player_alive(jumpnrun_player const *self) {
+  return (self->base.flags & (JUMPNRUN_PLAYER_DEAD | JUMPNRUN_MOVEABLE_DYING)) == 0;
+}
 
 #endif
This page took 0.039213 seconds and 4 git commands to generate.