Neue Gegnertypen: Schlange, Spirale.
authorWintermute <wintermute@hannover.ccc.de>
Mon, 14 Oct 2013 17:31:36 +0000 (19:31 +0200)
committerWintermute <wintermute@hannover.ccc.de>
Mon, 14 Oct 2013 17:31:36 +0000 (19:31 +0200)
Makefile
badge/jumpnrun/enemies.c
badge/jumpnrun/enemies.h
badge/jumpnrun/smb.lv
badge/main.c
core/ssp/ssp.c
core/ssp/ssp.h
mock/tools/level-converter.cc

index cfb6e30..7c8a681 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -24,6 +24,7 @@ DEBUGBUILD = FALSE
 # IDE Flags (Keeps various IDEs happy)\r
 ##########################################################################\r
 \r
+#OPTDEFINES = -D __NEWLIB__ -DR0KET\r
 OPTDEFINES = -D __NEWLIB__ -DHOB_REV2\r
 ##########################################################################\r
 # Project-specific files \r
@@ -47,6 +48,9 @@ SRCS += \
   dataflash/diskio.c \\r
   dataflash/at45db041d.c\r
 \r
+SRCS += \\r
+  funk/nrf24l01p.c\r
+\r
 SRCS += \\r
   project/commands.c\r
 \r
index 3cdd7cf..dfcc439 100644 (file)
@@ -26,6 +26,24 @@ static badge_sprite const anim_kaninchen[] = {
   { 7, 5, (uint8_t const *) "\x60\x30\xbe\x31\x01" }
 };
 
+static badge_sprite const anim_snake[] = {
+  { 10, 6, (uint8_t const *) "\x10\x86\x83\x30\x04\x83\xa2\x0f" },
+  { 10, 6, (uint8_t const *) "\x10\x86\x83\x20\x0c\xc1\xa2\x0f" },
+  { 10, 6, (uint8_t const *) "\x10\x86\x83\x20\x08\x82\xe0\x0f" },
+  { 10, 6, (uint8_t const *) "\x10\x86\x83\x20\x08\x86\xe1\x0f" }
+};
+
+static badge_sprite const anim_spiral[] = {
+  { 10, 10, (uint8_t const *) "\xff\x07\xd8\x6f\xa1\xb5\xf6\x1a\xe8\xbf\x00\xfe\x0f" },
+  { 10, 10, (uint8_t const *) "\xff\x07\xd8\x6f\xa1\xb5\xd6\xda\x69\xb0\x7f\x02\x0c" },
+  { 10, 10, (uint8_t const *) "\xff\x07\xd8\x6f\xa1\xb5\xd6\x5a\x6a\xaf\x81\xfe\x0b" },
+  { 10, 10, (uint8_t const *) "\xff\x07\xd8\x4f\x61\x35\xd5\x55\x54\x5f\x01\xfd\x07" },
+  { 10, 10, (uint8_t const *) "\xff\x07\xd0\x7f\x81\xf5\xd6\x5a\x68\xbf\x01\xfe\x0f" },
+  { 10, 10, (uint8_t const *) "\x03\xe4\xdf\x60\xb9\xb5\xd6\x5a\x68\xbf\x01\xfe\x0f" },
+  { 10, 10, (uint8_t const *) "\xfd\x17\x58\x6f\xa5\xb5\xd6\x5a\x68\xbf\x01\xfe\x0f" },
+  { 10, 10, (uint8_t const *) "\xfe\x0b\xa8\xaf\xa2\xba\xca\x6a\x28\xbf\x01\xfe\x0f" }
+};
+
 static void enemy_animation_advance(jumpnrun_enemy *enemy) {
   ++enemy->base.tick_minor;
   if(enemy->base.tick_minor == enemy->type->animation_ticks_per_frame) {
@@ -39,11 +57,11 @@ static void enemy_animation_advance(jumpnrun_enemy *enemy) {
 }
 
 void jumpnrun_process_enemy(jumpnrun_enemy                   *self,
-                           badge_framebuffer                *fb,
-                           struct jumpnrun_game_state       *state,
-                           struct jumpnrun_level            *lv,
-                           struct jumpnrun_tile_range const *visible_tiles,
-                           vec2d                            *player_inertia_mod) {
+                            badge_framebuffer                *fb,
+                            struct jumpnrun_game_state       *state,
+                            struct jumpnrun_level            *lv,
+                            struct jumpnrun_tile_range const *visible_tiles,
+                            vec2d                            *player_inertia_mod) {
   int const spawn_margin = 1 + self->type->animation_frames[self->base.anim_frame].width;
 
   if(self->flags & JUMPNRUN_ENEMY_SPAWNED) {
@@ -55,11 +73,11 @@ void jumpnrun_process_enemy(jumpnrun_enemy                   *self,
       self->type->game_tick(self, state, lv, visible_tiles, player_inertia_mod);
 
       if(fb) {
-       badge_framebuffer_blt(fb,
-                             fixed_point_cast_int(rectangle_left(enemy_box(self))) - state->left,
-                             fixed_point_cast_int(rectangle_top (enemy_box(self))),
-                             enemy_sprite(self),
-                             enemy_render_flags(self));
+        badge_framebuffer_blt(fb,
+                              fixed_point_cast_int(rectangle_left(enemy_box(self))) - state->left,
+                              fixed_point_cast_int(rectangle_top (enemy_box(self))),
+                              enemy_sprite(self),
+                              enemy_render_flags(self));
       }
     }
   } else if(self->flags & JUMPNRUN_ENEMY_UNAVAILABLE) { 
@@ -68,9 +86,9 @@ void jumpnrun_process_enemy(jumpnrun_enemy                   *self,
       self->flags &= ~JUMPNRUN_ENEMY_UNAVAILABLE;
     }
   } else if((fixed_point_gt(self->spawn_pos.x, FIXED_POINT(state->left                       - spawn_margin, 0)) &&
-            fixed_point_lt(self->spawn_pos.x, FIXED_POINT(state->left - spawn_margin / 2, 0))) ||
-           (fixed_point_lt(self->spawn_pos.x, FIXED_POINT(state->left + BADGE_DISPLAY_WIDTH + spawn_margin, 0)) &&
-            fixed_point_gt(self->spawn_pos.x, FIXED_POINT(state->left + BADGE_DISPLAY_WIDTH, 0)))) {
+             fixed_point_lt(self->spawn_pos.x, FIXED_POINT(state->left - spawn_margin / 2, 0))) ||
+            (fixed_point_lt(self->spawn_pos.x, FIXED_POINT(state->left + BADGE_DISPLAY_WIDTH + spawn_margin, 0)) &&
+             fixed_point_gt(self->spawn_pos.x, FIXED_POINT(state->left + BADGE_DISPLAY_WIDTH, 0)))) {
     // enemy unspawned, available and in spawn zone.
     self->flags               |= JUMPNRUN_ENEMY_SPAWNED | JUMPNRUN_ENEMY_UNAVAILABLE;
     self->base.current_box     = rectangle_new(self->spawn_pos, self->type->extent);
@@ -83,16 +101,16 @@ void jumpnrun_process_enemy(jumpnrun_enemy                   *self,
 }
 
 void enemy_collision_tiles_bounce_horiz(jumpnrun_enemy            *self,
-                                       vec2d                     *desired_position,
-                                       jumpnrun_level            *lv,
-                                       jumpnrun_tile_range const *visible_tiles) {
+                                        vec2d                     *desired_position,
+                                        jumpnrun_level            *lv,
+                                        jumpnrun_tile_range const *visible_tiles) {
   vec2d inertia_mod = self->base.inertia;
 
   collisions_tiles_displace(desired_position,
-                           &self->base,
-                           lv,
-                           visible_tiles,
-                           &inertia_mod);
+                            &self->base,
+                            lv,
+                            visible_tiles,
+                            &inertia_mod);
 
   if(fixed_point_ne(inertia_mod.x, self->base.inertia.x)) {
     self->base.inertia.x = fixed_point_neg(self->base.inertia.x);
@@ -100,8 +118,8 @@ void enemy_collision_tiles_bounce_horiz(jumpnrun_enemy            *self,
 }
 
 void enemy_collision_player_jumpable(jumpnrun_enemy      *self,
-                                    jumpnrun_game_state *state,
-                                    vec2d               *player_inertia_mod)
+                                     jumpnrun_game_state *state,
+                                     vec2d               *player_inertia_mod)
 {
   rectangle rect_self = enemy_hitbox(self);
 
@@ -116,11 +134,11 @@ void enemy_collision_player_jumpable(jumpnrun_enemy      *self,
   }
 }
 
-void enemy_tick_cat(jumpnrun_enemy            *self,
-                   jumpnrun_game_state       *state,
-                   jumpnrun_level            *lv,
-                   jumpnrun_tile_range const *visible_tiles,
-                   vec2d                     *player_inertia_mod) {
+void enemy_tick_straight_ahead(jumpnrun_enemy            *self,
+                               jumpnrun_game_state       *state,
+                               jumpnrun_level            *lv,
+                               jumpnrun_tile_range const *visible_tiles,
+                               vec2d                     *player_inertia_mod) {
   int screenpos = fixed_point_cast_int(rectangle_left(&self->base.current_box));
 
   if(screenpos + JUMPNRUN_MAX_SPAWN_MARGIN <  state->left ||
@@ -138,44 +156,111 @@ void enemy_tick_cat(jumpnrun_enemy            *self,
   enemy_animation_advance(self);
 }
 
+void enemy_collision_tiles_pass_through(struct jumpnrun_enemy             *self,
+                                       vec2d                             *desired_position,
+                                       struct jumpnrun_level             *lv,
+                                       struct jumpnrun_tile_range  const *visible_tiles) {
+  (void) self;
+  (void) desired_position;
+  (void) lv;
+  (void) visible_tiles;
+  return;
+}
+
+void enemy_collision_player_deadly(struct jumpnrun_enemy      *self,
+                                  struct jumpnrun_game_state *state,
+                                  vec2d                      *player_inertia_mod) {
+  (void) player_inertia_mod;
+
+  rectangle rect_self = enemy_hitbox(self);
+
+  if(rectangle_intersect(&rect_self, &state->player.current_box)) {
+    state->status = JUMPNRUN_DEAD;
+  }
+}
+
+void enemy_tick_swing_up_and_down(struct jumpnrun_enemy            *self,
+                                 struct jumpnrun_game_state       *state,
+                                 struct jumpnrun_level            *lv,
+                                 struct jumpnrun_tile_range const *visible_tiles,
+                                 vec2d                            *player_inertia_mod) {
+  int screenpos = fixed_point_cast_int(rectangle_left(&self->base.current_box));
+
+  if(screenpos + JUMPNRUN_MAX_SPAWN_MARGIN <  state->left ||
+     screenpos                             >= state->left + BADGE_DISPLAY_WIDTH + JUMPNRUN_MAX_SPAWN_MARGIN) {
+    return;
+  }
+
+  self->base.inertia.y = fixed_point_add(self->base.inertia.y, 
+                                        fixed_point_mul(FIXED_POINT(0, 5),
+                                                        fixed_point_sub(self->spawn_pos.y,
+                                                                        self->base.current_box.pos.y)));
+
+  jumpnrun_passive_movement(&self->base.inertia);
+
+  vec2d new_pos = vec2d_add(enemy_position(self), self->base.inertia);
+  self->type->collision_tiles(self, &new_pos, lv, visible_tiles);
+  self->type->collision_player(self, state, player_inertia_mod);
+  rectangle_move_to(&self->base.current_box, new_pos);
+
+  enemy_animation_advance(self);
+}
+
 jumpnrun_enemy_type const jumpnrun_enemy_type_data[JUMPNRUN_ENEMY_TYPE_COUNT] = {
-  { 16, ARRAY_SIZE(anim_cat), anim_cat,
-    { 
-      FIXED_INT_I(8), FIXED_INT_I(5)
-    }, {
-      { FIXED_INT_I(0), FIXED_INT_I(0) },
-      { FIXED_INT_I(8), FIXED_INT_I(5) }
-    }, {
-      FIXED_POINT_I(0, -100), FIXED_INT_I(0)
-    },
-    enemy_collision_tiles_bounce_horiz,
-    enemy_collision_player_jumpable,
-    enemy_tick_cat
+  {
+    .animation_ticks_per_frame = 16,
+    .animation_length          = ARRAY_SIZE(anim_cat),
+    .animation_frames          = anim_cat,
+    .extent                    = { FIXED_INT_I(8), FIXED_INT_I(5) },
+    .hitbox                    = { { FIXED_INT_I(1), FIXED_INT_I(2) },
+                                   { FIXED_INT_I(6), FIXED_INT_I(3) } },
+    .spawn_inertia             = { FIXED_POINT_I(0, -100), FIXED_INT_I(0) },
+    .collision_tiles           = enemy_collision_tiles_bounce_horiz,
+    .collision_player          = enemy_collision_player_jumpable,
+    .game_tick                 = enemy_tick_straight_ahead
+  }, {
+    .animation_ticks_per_frame = 12,
+    .animation_length          = ARRAY_SIZE(anim_mushroom),
+    .animation_frames          = anim_mushroom,
+    .extent                    = { FIXED_INT_I(7), FIXED_INT_I(7) },
+    .hitbox                    = { { FIXED_INT_I(1), FIXED_INT_I(1) },
+                                   { FIXED_INT_I(5), FIXED_INT_I(4) } },
+    .spawn_inertia             = { FIXED_POINT_I(0, -50), FIXED_INT_I(0) },
+    .collision_tiles           = enemy_collision_tiles_bounce_horiz,
+    .collision_player          = enemy_collision_player_jumpable,
+    .game_tick                 = enemy_tick_straight_ahead
+  }, {
+    .animation_ticks_per_frame = 9,
+    .animation_length          = ARRAY_SIZE(anim_kaninchen),
+    .animation_frames          = anim_kaninchen,
+    .extent                    = { FIXED_INT_I(7), FIXED_INT_I(5) },
+    .hitbox                    = { { FIXED_INT_I(1), FIXED_INT_I(2) },
+                                   { FIXED_INT_I(5), FIXED_INT_I(3) } },
+    .spawn_inertia             = { FIXED_POINT_I(0, -80), FIXED_POINT_I(0, 0) },
+    .collision_tiles           = enemy_collision_tiles_bounce_horiz,
+    .collision_player          = enemy_collision_player_jumpable,
+    .game_tick                 = enemy_tick_straight_ahead
   }, {
-    12, ARRAY_SIZE(anim_mushroom), anim_mushroom,
-    { 
-      FIXED_INT_I(7), FIXED_INT_I(7)
-    }, {
-      { FIXED_INT_I(0), FIXED_INT_I(0) },
-      { FIXED_INT_I(7), FIXED_INT_I(7) }
-    }, {
-      FIXED_POINT_I(0, -50), FIXED_INT_I(0)
-    },
-    enemy_collision_tiles_bounce_horiz,
-    enemy_collision_player_jumpable,
-    enemy_tick_cat
+    .animation_ticks_per_frame = 6,
+    .animation_length          = ARRAY_SIZE(anim_snake),
+    .animation_frames          = anim_snake,
+    .extent                    = { FIXED_INT_I(10), FIXED_INT_I(6) },
+    .hitbox                    = { { FIXED_INT_I(1), FIXED_INT_I(4) },
+                                  { FIXED_INT_I(8), FIXED_INT_I(2) } },    
+    .spawn_inertia             = { FIXED_POINT_I(0, -150), FIXED_INT_I(0) },
+    .collision_tiles           = enemy_collision_tiles_bounce_horiz,
+    .collision_player          = enemy_collision_player_jumpable,
+    .game_tick                 = enemy_tick_straight_ahead
   }, {
-    9, ARRAY_SIZE(anim_kaninchen), anim_kaninchen,
-    {
-      FIXED_INT_I(7), FIXED_INT_I(5)
-    }, {
-      { FIXED_INT_I(1), FIXED_INT_I(2) },
-      { FIXED_INT_I(6), FIXED_INT_I(3) }
-    }, {
-      FIXED_POINT_I(0, -80), FIXED_POINT_I(0, 0)
-    },
-    enemy_collision_tiles_bounce_horiz,
-    enemy_collision_player_jumpable,
-    enemy_tick_cat
+    .animation_ticks_per_frame = 6,
+    .animation_length          = ARRAY_SIZE(anim_spiral),
+    .animation_frames          = anim_spiral,
+    .extent                    = { FIXED_INT_I(10), FIXED_INT_I(10) },
+    .hitbox                    = { { FIXED_INT_I(1), FIXED_INT_I(1) },
+                                  { FIXED_INT_I(8), FIXED_INT_I(8) } },    
+    .spawn_inertia             = { FIXED_INT_I(0), FIXED_POINT_I(0, 200) },
+    .collision_tiles           = enemy_collision_tiles_pass_through,
+    .collision_player          = enemy_collision_player_deadly,
+    .game_tick                 = enemy_tick_swing_up_and_down
   }
 };
index 64348cb..ecb2b4e 100644 (file)
@@ -58,7 +58,9 @@ enum {
 enum {
   JUMPNRUN_ENEMY_TYPE_CAT,
   JUMPNRUN_ENEMY_TYPE_MUSHROOM,
-  JUMPNRUN_ENEMY_TYPE_KANINCHEN,
+  JUMPNRUN_ENEMY_TYPE_BUNNY,
+  JUMPNRUN_ENEMY_TYPE_SNAKE,
+  JUMPNRUN_ENEMY_TYPE_SPIRAL,
 
   JUMPNRUN_ENEMY_TYPE_COUNT
 };
index 18af4d8..12e84a0 100644 (file)
@@ -1,6 +1,6 @@
 
 
-                                                                                                                                                                                                    ##
+                                                                    @                                                                                                                               ##
                                                                                C  C                                                                                                                  #
                      ?                                                         ########   ###?              ?           ###    #??#                                                        ##        #
                                                                                                                                                                                           ###        #
@@ -9,7 +9,7 @@
                ?   #?#?#                     01         01                  #?#              #     ##    ?  ?  ?     #          ##      #  #          ##  #            ##?#            ######        #    ###
                                      01      23         23                                                                             ##  ##        ###  ##                          #######        #   #####
    P                       01        23      23         23                                                M                           ###  ###      ####  ###     01              01 ########   D    #   #####
-                     K     23        23C     23   C C   23                                      C C              C C      C C  C C   ####  ####    #####  ####    23         C C  23#########        #   #####
+                     S     23        23B     23   B B   23                                      C C              C C      C C  C C   ####  ####    #####  ####    23         C C  23#########        #   #####
 ####################################################################  ###############   ################################################################  #####################################################                 #########
 
 [tiles]
@@ -26,4 +26,6 @@ D doc
 [enemies]
 C cat
 M mushroom
-K kaninchen
+B bunny
+S snake
+@ spiral
index 93a243c..4e878f5 100644 (file)
@@ -65,6 +65,7 @@
 #include "drivers/fatfs/ff.h"
 
 #include "badge/pinconfig.h"
+#include <funk/nrf24l01p.h>
 
 #ifdef R0KET
 
@@ -204,10 +205,13 @@ int main(void)
 #endif
 
   /*
+  nrf_init();
+
   for(uint8_t i = 1; ; ++i) {
     badge_framebuffer fb = { { { 0 } } };
 
     fb.data[2][86] = 0xff;
+    fb.data[3][87] = nrf_read_reg(R_CONFIG);
     fb.data[4][86] = 0xff;
     for(uint8_t j = 0; j < i; j += 3) {
       fb.data[3][j / 3] = 0xff;
@@ -218,6 +222,7 @@ int main(void)
     systickDelay(200);
   }
   */
+
   {
     //    f_mkfs(0, 1, 0);
     badge_framebuffer fb;
index e1f31e2..de2910e 100644 (file)
@@ -236,7 +236,7 @@ void sspInit (uint8_t portNum, sspClockPolarity_t polarity, sspClockPhase_t phas
                 Block length of the data buffer
 */
 /**************************************************************************/
-void sspSend (uint8_t portNum, uint8_t *buf, uint32_t length)
+void sspSend (uint8_t portNum, uint8_t const *buf, uint32_t length)
 {
   uint32_t i;
   uint8_t Dummy = Dummy;
@@ -295,3 +295,27 @@ void sspReceive(uint8_t portNum, uint8_t *buf, uint32_t length)
   return; 
 }
 
+void sspSendReceive(uint8_t portNum, uint8_t *buf, uint32_t length)
+{
+  uint32_t i;
+  uint8_t Dummy = Dummy;
+
+  if (portNum == 0)
+    {
+      for (i = 0; i < length; i++)
+       {
+         /* Move on only if NOT busy and TX FIFO not full. */
+         while ((SSP_SSP0SR & (SSP_SSP0SR_TNF_NOTFULL | SSP_SSP0SR_BSY_BUSY)) != SSP_SSP0SR_TNF_NOTFULL);
+         SSP_SSP0DR = *buf;
+  
+         while ( (SSP_SSP0SR & (SSP_SSP0SR_BSY_BUSY|SSP_SSP0SR_RNE_NOTEMPTY)) != SSP_SSP0SR_RNE_NOTEMPTY );
+         /* Whenever a byte is written, MISO FIFO counter increments, Clear FIFO 
+      on MISO. Otherwise, when SSP0Receive() is called, previous data byte
+      is left in the FIFO. */
+         *buf = SSP_SSP0DR;
+         buf++;
+       }
+    }
+
+  return; 
+}
index 3deab4e..3c4a4e8 100644 (file)
@@ -79,7 +79,8 @@ sspClockPhase_t;
 
 extern void SSP_IRQHandler (void);
 void sspInit (uint8_t portNum, sspClockPolarity_t polarity, sspClockPhase_t phase);
-void sspSend (uint8_t portNum, uint8_t *buf, uint32_t length);
+void sspSend (uint8_t portNum, uint8_t const *buf, uint32_t length);
 void sspReceive (uint8_t portNum, uint8_t *buf, uint32_t length);
+void sspSendReceive(uint8_t portNum, uint8_t *buf, uint32_t length);
 
 #endif
index 922d090..49faf7b 100644 (file)
@@ -42,7 +42,10 @@ namespace jnrcpp {
       enemies.add
         ("cat"      , JUMPNRUN_ENEMY_TYPE_CAT      )
         ("mushroom" , JUMPNRUN_ENEMY_TYPE_MUSHROOM )
-       ("kaninchen", JUMPNRUN_ENEMY_TYPE_KANINCHEN)
+       ("bunny"    , JUMPNRUN_ENEMY_TYPE_BUNNY    )
+       ("kaninchen", JUMPNRUN_ENEMY_TYPE_BUNNY    ) // legacy
+       ("snake"    , JUMPNRUN_ENEMY_TYPE_SNAKE    )
+       ("spiral"   , JUMPNRUN_ENEMY_TYPE_SPIRAL   )
         ;
     }
 
This page took 0.107757 seconds and 4 git commands to generate.