JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
bump version to 0.5.8
[vor.git] / sprite.h
index 7df8631..d67b655 100644 (file)
--- a/sprite.h
+++ b/sprite.h
@@ -1,5 +1,5 @@
-#ifndef VOR_SHAPE_H
-#define VOR_SHAPE_H
+#ifndef VOR_SPRITE_H
+#define VOR_SPRITE_H
 
 #include <SDL.h>
 #include <inttypes.h>
@@ -8,12 +8,14 @@ typedef struct sprite Sprite;
 
 #define SPRITE(x) ((Sprite *) (x))
 
-#define BASE_SPRITE 0
-#define SHIP_SPRITE 1
-#define ROCK_SPRITE 2
+#define BASE 0
+#define SHIP 1
+#define ROCK 2
+#define N_TYPES 3
 
 struct sprite {
-       uint8_t type;
+       int8_t type;
+       int8_t flags;
        Sprite *next;
        float x, y;
        float dx, dy;
@@ -21,19 +23,40 @@ struct sprite {
        int w, h;
        int mask_w;
        uint32_t *mask;
+       uint32_t area;
 };
 
-void get_shape(Sprite *s);
-int collide(Sprite *r, Sprite *s);
-int pixel_collide(Sprite *s, int x, int y);
+// flags
+#define MOVE 1
+#define DRAW 2
+#define COLLIDE 4
 
+#define COLLIDES(sprite) ((sprite)->flags & COLLIDE)
+
+extern Sprite *free_sprites[N_TYPES];  // lists of free sprites, by type.
+
+void do_collision(Sprite *a, Sprite *b);
+void collisions(void);
+
+void init_sprites(void);
+void reset_sprites(void);
+void add_sprite(Sprite *s);
+void move_sprite(Sprite *s);
+void move_sprites(void);
+
+Sprite * pixel_collides(float x, float y);
+void load_sprite(Sprite *sprite, char *filename);
+
+float sprite_mass(Sprite *s);
+void bounce(Sprite *a, Sprite *b);
 
 
 // extended sprites
 
 struct ship {
        // core sprite fields
-       uint8_t sprite_type;
+       int8_t sprite_type;
+       int8_t flags;
        struct ship *next;
        float x, y;
        float dx, dy;
@@ -41,6 +64,7 @@ struct ship {
        int w, h;
        int mask_w;
        uint32_t *mask;
+       uint32_t area;
        // SHIP extras
        int lives;
        int jets;
@@ -48,7 +72,8 @@ struct ship {
 
 struct rock {
        // core sprite fields
-       uint8_t sprite_type;
+       int8_t sprite_type;
+       int8_t flags;
        struct rock *next;
        float x, y;
        float dx, dy;
@@ -56,11 +81,39 @@ struct rock {
        int w, h;
        int mask_w;
        uint32_t *mask;
+       uint32_t area;
        // ROCK extras
        int type;
+       int life;
 };
 
-SDL_Surface *load_image(char *filename);
-void load_sprite(Sprite *sprite, char *filename);
 
-#endif // VOR_SHAPE_H
+
+static inline void
+insert_sprite(Sprite **head, Sprite *s)
+{
+       s->next = *head;
+       *head = s;
+}
+
+
+static inline Sprite *
+remove_sprite(Sprite **head)
+{
+       Sprite *s = *head;
+       *head = s->next;
+       return s;
+}
+
+
+static inline void
+draw_sprite(Sprite *s)
+{
+       SDL_Rect dest;
+       if(s->flags & DRAW) {
+               dest.x = s->x; dest.y = s->y;
+               SDL_BlitSurface(s->image, NULL, surf_screen, &dest);
+       }
+}
+
+#endif // VOR_SPRITE_H