Merged progression and putt-collisions
[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 #define DONE_NAME 2
35
36 /* Bread crumbs. */
37
38 static int new_name;
39 static int resume;
40
41 static int done_action(int i)
42 {
43     audio_play(AUD_MENU, 1.0f);
44
45     switch (i)
46     {
47     case DONE_OK:
48         return goto_state(&st_start);
49
50     case DONE_NAME:
51         new_name = 1;
52         return goto_name(&st_done, &st_done, 0);
53
54     case GUI_MOST_COINS:
55     case GUI_BEST_TIMES:
56     case GUI_UNLOCK_GOAL:
57         set_score_type(i);
58         resume = 1;
59         return goto_state(&st_done);
60     }
61     return 1;
62 }
63
64 static int done_enter(void)
65 {
66     const char *s1 = _("New Set Record");
67     const char *s2 = _("Set Complete");
68
69     int id, jd;
70
71     int high = progress_set_high();
72
73     if (new_name)
74     {
75         progress_rename();
76         new_name = 0;
77     }
78
79     if ((id = gui_vstack(0)))
80     {
81         int gid;
82
83         if (high)
84             gid = gui_label(id, s1, GUI_MED, GUI_ALL, gui_grn, gui_grn);
85         else
86             gid = gui_label(id, s2, GUI_MED, GUI_ALL, gui_blu, gui_grn);
87
88         gui_space(id);
89
90         if ((jd = gui_hstack(id)))
91             gui_score_board(jd, 1);
92
93         gui_space(id);
94
95         if ((jd = gui_harray(id)))
96         {
97             gui_start(jd, _("Select Level"), GUI_SML, DONE_OK, 0);
98
99             if (high)
100                 gui_state(jd, _("Change Name"), GUI_SML, DONE_NAME, 0);
101         }
102
103         if (!resume)
104             gui_pulse(gid, 1.2f);
105
106         gui_layout(id, 0, 0);
107     }
108
109     set_score_board(set_coin_score(curr_set()), progress_score_rank(),
110                     set_time_score(curr_set()), progress_times_rank(),
111                     set_time_score(curr_set()), progress_times_rank());
112
113     /* Reset hack. */
114     resume = 0;
115
116     return id;
117 }
118
119 static int done_buttn(int b, int d)
120 {
121     if (d)
122     {
123         if (config_tst_d(CONFIG_JOYSTICK_BUTTON_A, b))
124             return done_action(gui_token(gui_click()));
125         if (config_tst_d(CONFIG_JOYSTICK_BUTTON_EXIT, b))
126             return done_action(DONE_OK);
127     }
128     return 1;
129 }
130
131 /*---------------------------------------------------------------------------*/
132
133 struct state st_done = {
134     done_enter,
135     shared_leave,
136     shared_paint,
137     shared_timer,
138     shared_point,
139     shared_stick,
140     shared_angle,
141     shared_click,
142     NULL,
143     done_buttn,
144     1, 0
145 };