ball/util: add a space between "back" and "prev"
[neverball] / ball / progress.h
index 6ebf951..bd15585 100644 (file)
@@ -1,23 +1,61 @@
-/*
- *  Copyright (C) 2008  Neverball contributors
- *
- *  This  program is  free software;  you can  redistribute  it and/or
- *  modify it  under the  terms of the  GNU General Public  License as
- *  published by the Free Software Foundation; either version 2 of the
- *  License, or (at your option) any later version.
- *
- *  This program  is distributed in the  hope that it  will be useful,
- *  but  WITHOUT ANY WARRANTY;  without even  the implied  warranty of
- *  MERCHANTABILITY or FITNESS FOR  A PARTICULAR PURPOSE.  See the GNU
- *  General Public License for more details.
- *
- *  You should have received a  copy of the GNU General Public License
- *  along  with this  program;  if  not, write  to  the Free  Software
- *  Foundation,  Inc.,   59  Temple  Place,  Suite   330,  Boston,  MA
- *  02111-1307 USA
- */
-
 #ifndef PROGRESS_H
 #define PROGRESS_H
 
+/*---------------------------------------------------------------------------*/
+
+void progress_init(int);
+
+int  progress_play(int level);
+void progress_step(void);
+void progress_stat(int status);
+void progress_stop(void);
+void progress_exit(void);
+
+int  progress_next_avail(void);
+int  progress_next(void);
+int  progress_same_avail(void);
+int  progress_same(void);
+
+void progress_rename(int);
+
+int  progress_replay(const char *);
+
+int  progress_dead(void);
+int  progress_done(void);
+
+int  progress_lvl_high(void);
+int  progress_set_high(void);
+
+int  curr_level(void);
+int  curr_balls(void);
+int  curr_score(void);
+int  curr_mode (void);
+int  curr_bonus(void);
+int  curr_goal (void);
+
+int  progress_time_rank(void);
+int  progress_goal_rank(void);
+int  progress_coin_rank(void);
+
+int  progress_times_rank(void);
+int  progress_score_rank(void);
+
+int  progress_reward_ball(int);
+
+/*---------------------------------------------------------------------------*/
+
+enum
+{
+    MODE_NONE = 0,
+
+    MODE_CHALLENGE,
+    MODE_NORMAL,
+
+    MODE_MAX
+};
+
+const char *mode_to_str(int, int);
+
+/*---------------------------------------------------------------------------*/
+
 #endif