Merge 'progress' branch.
[neverball] / ball / st_done.c
1 /*
2  * Copyright (C) 2003 Robert Kooima
3  *
4  * NEVERBALL is  free software; you can redistribute  it and/or modify
5  * it under the  terms of the GNU General  Public License as published
6  * by the Free  Software Foundation; either version 2  of the License,
7  * or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT  ANY  WARRANTY;  without   even  the  implied  warranty  of
11  * MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU
12  * General Public License for more details.
13  */
14
15 #include <string.h>
16
17 #include "gui.h"
18 #include "set.h"
19 #include "game.h"
20 #include "util.h"
21 #include "demo.h"
22 #include "progress.h"
23 #include "audio.h"
24 #include "config.h"
25 #include "st_shared.h"
26
27 #include "st_done.h"
28 #include "st_start.h"
29 #include "st_name.h"
30
31 /*---------------------------------------------------------------------------*/
32
33 #define DONE_OK   1
34
35 /* Bread crumbs. */
36
37 static int new_name;
38 static int resume;
39
40 static int done_action(int i)
41 {
42     audio_play(AUD_MENU, 1.0f);
43
44     switch (i)
45     {
46     case DONE_OK:
47         return goto_state(&st_start);
48
49     case GUI_NAME:
50         new_name = 1;
51         return goto_name(&st_done, &st_done, 0);
52
53     case GUI_MOST_COINS:
54     case GUI_BEST_TIMES:
55     case GUI_UNLOCK_GOAL:
56         gui_score_set(i);
57         resume = 1;
58         return goto_state(&st_done);
59     }
60     return 1;
61 }
62
63 static int done_enter(void)
64 {
65     const char *s1 = _("New Set Record");
66     const char *s2 = _("Set Complete");
67
68     int id, jd;
69
70     int high = progress_set_high();
71
72     if (new_name)
73     {
74         progress_rename(1);
75         new_name = 0;
76     }
77
78     if ((id = gui_vstack(0)))
79     {
80         int gid;
81
82         if (high)
83             gid = gui_label(id, s1, GUI_MED, GUI_ALL, gui_grn, gui_grn);
84         else
85             gid = gui_label(id, s2, GUI_MED, GUI_ALL, gui_blu, gui_grn);
86
87         gui_space(id);
88
89         if ((jd = gui_hstack(id)))
90             gui_score_board(jd, 1, high);
91
92         gui_space(id);
93
94         gui_start(id, _("Select Level"), GUI_SML, DONE_OK, 0);
95
96         if (!resume)
97             gui_pulse(gid, 1.2f);
98
99         gui_layout(id, 0, 0);
100     }
101
102     set_score_board(set_coin_score(curr_set()), progress_score_rank(),
103                     set_time_score(curr_set()), progress_times_rank(),
104                     set_time_score(curr_set()), progress_times_rank());
105
106     /* Reset hack. */
107     resume = 0;
108
109     return id;
110 }
111
112 static int done_keybd(int c, int d)
113 {
114     if (d && config_tst_d(CONFIG_KEY_SCORE_NEXT, c))
115         return done_action(gui_score_next(gui_score_get()));
116
117     return 1;
118 }
119
120 static int done_buttn(int b, int d)
121 {
122     if (d)
123     {
124         if (config_tst_d(CONFIG_JOYSTICK_BUTTON_A, b))
125             return done_action(gui_token(gui_click()));
126         if (config_tst_d(CONFIG_JOYSTICK_BUTTON_EXIT, b))
127             return done_action(DONE_OK);
128     }
129     return 1;
130 }
131
132 /*---------------------------------------------------------------------------*/
133
134 struct state st_done = {
135     done_enter,
136     shared_leave,
137     shared_paint,
138     shared_timer,
139     shared_point,
140     shared_stick,
141     shared_angle,
142     shared_click,
143     done_keybd,
144     done_buttn,
145     1, 0
146 };