demo_header_write() now writes the header. :-P
[neverball] / ball / levels.c
index 4be1b9e..1c9ccb1 100644 (file)
@@ -1,4 +1,4 @@
-/*   
+/*
  * Copyright (C) 2003 Robert Kooima
  *
  * NEVERBALL is  free software; you can redistribute  it and/or modify
@@ -34,7 +34,7 @@ static struct level_game current_level_game;
 
 int level_replay(const char *filename)
 {
-    return demo_replay_init(filename, &current_level_game); 
+    return demo_replay_init(filename, &current_level_game);
 }
 
 static struct level single_level; /* a level without set */
@@ -50,33 +50,37 @@ int level_play_go(void)
 
     lg->goal = (mode == MODE_PRACTICE) ? 0 : l->goal;
     lg->time = (mode == MODE_PRACTICE) ? 0 : l->time;
-    
+
     /* clear other fields */
     lg->state = GAME_NONE;
     lg->coins = 0;
     lg->timer = lg->time;
-    lg->coin_rank = lg->goal_rank = lg->time_rank = 
-           lg->score_rank = lg-> times_rank = 3;
-    lg->win = lg->dead = 0;
+    lg->coin_rank = lg->goal_rank = lg->time_rank =
+        lg->score_rank = lg->times_rank = 3;
+    lg->win = lg->dead = lg->unlock = 0;
     lg->next_level = NULL;
-    
+
     return demo_play_init(USER_REPLAY_FILE, l, lg);
 }
 
+/* Prepare to play a single level */
 
 void level_play_single(const char *filename)
-/* Prepare to play a single level */
 {
     struct level *l = &single_level;
+
     level_load(filename, l);
     level_play(l, MODE_SINGLE);
 }
 
-void level_play(const struct level *l, int m)
 /* Prepare to play a level sequence from the `i'th level */
+
+void level_play(const struct level *l, int m)
 {
-    struct level_game *lg = &current_level_game; 
-    memset(lg, 0, sizeof(struct level_game));
+    struct level_game *lg = &current_level_game;
+
+    memset(lg, 0, sizeof (struct level_game));
+
     lg->mode  = m;
     lg->level = l;
     lg->balls = 3;
@@ -84,7 +88,7 @@ void level_play(const struct level *l, int m)
 
 /*---------------------------------------------------------------------------*/
 
-const struct level_game * curr_lg(void)
+const struct level_game *curr_lg(void)
 {
     return &current_level_game;
 }
@@ -96,43 +100,45 @@ int count_extra_balls(int old_score, int coins)
     return sum / 100;
 }
 
-void level_stop(int state, int state_value, int clock, int coins)
 /* Stop the current playing level */
+
+void level_stop(int state, int state_value, int clock, int coins)
 {
-    struct level_game * lg = &current_level_game;
+    struct level_game *lg = &current_level_game;
     int mode = lg->mode;
-    int timer = (mode == MODE_PRACTICE || mode == MODE_SINGLE) ? clock : lg->time - clock;
+    int timer = (mode == MODE_PRACTICE
+                 || mode == MODE_SINGLE) ? clock : lg->time - clock;
 
     lg->state = state;
     lg->coins = coins;
     lg->timer = timer;
-    lg->state_value = state_value; 
-   
-    /* Performs challenge mode opperations */ 
+    lg->state_value = state_value;
+
+    /* Performs challenge mode opperations */
     if (mode == MODE_CHALLENGE)
     {
-       /* sum time */
-       lg->times += timer; 
-           
-       /* sum coins an earn extra balls */
-       if (state == GAME_GOAL)
-       {
-           lg->balls += count_extra_balls(lg->score, coins);
-           lg->score += coins;
-       }
-
-       /* lose ball and game */
-        if ((state == GAME_TIME || state == GAME_FALL) && !lg->level->is_bonus)
-       {
-           lg->balls--;
-           lg->dead = (lg->balls <= 0);
-       }
+        /* sum time */
+        lg->times += timer;
+
+        /* sum coins an earn extra balls */
+        if (state == GAME_GOAL || state == GAME_SPEC || lg->level->is_bonus)
+        {
+            lg->balls += count_extra_balls(lg->score, coins);
+            lg->score += coins;
+        }
+
+        /* lose ball and game */
+        else                    /* if ((state == GAME_TIME || state == GAME_FALL) && !lg->level->is_bonus) */
+        {
+            lg->dead = (lg->balls <= 0);
+            lg->balls--;
+        }
     }
-    
+
     /* Update high-scores and next level */
     set_finish_level(lg, config_simple_get_s(CONFIG_PLAYER));
 
-    /* stop demo recording */  
+    /* stop demo recording */
     demo_play_stop(lg);
 }