Add a new widget: a 'maybe' button :)
[neverball] / ball / st_goal.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 "levels.h"
22 #include "audio.h"
23 #include "config.h"
24 #include "demo.h"
25 #include "st_shared.h"
26
27 #include "st_goal.h"
28 #include "st_save.h"
29 #include "st_over.h"
30 #include "st_done.h"
31 #include "st_start.h"
32 #include "st_level.h"
33 #include "st_name.h"
34
35 /*---------------------------------------------------------------------------*/
36
37 #define GOAL_NEXT 2
38 #define GOAL_SAME 3
39 #define GOAL_SAVE 4
40 #define GOAL_BACK 5
41 #define GOAL_DONE 6
42 #define GOAL_NAME 7
43
44 static int balls_id;
45 static int coins_id;
46 static int score_id;
47
48 extern struct state st_goal_bis;
49
50 static int goal_action(int i)
51 {
52     audio_play(AUD_MENU, 1.0f);
53
54     switch (i)
55     {
56     case GOAL_BACK:
57         return goto_end_level();
58
59     case GOAL_SAVE:
60         return goto_save(&st_goal_bis, &st_goal_bis);
61
62     case GOAL_NAME:
63         return goto_name(&st_goal_bis, &st_goal_bis);
64         
65     case GOAL_DONE:
66         return goto_state(&st_done);
67         
68     case GOAL_NEXT:
69         level_next();
70         return goto_state(&st_level);
71
72     case GOAL_SAME:
73         return goto_state(&st_level);
74     }
75
76     return 1;
77 }
78
79 static int goal_init(int * gidp)
80 {
81     const struct level_game *lg = curr_lg();
82     int mode  = lg->mode;
83     int state = lg->state;
84     const struct level *l = lg->level;
85
86     int id, jd, kd;
87     int high;
88
89     high = (lg->time_rank < 3) || (lg->goal_rank < 3) || (lg->coin_rank < 3);
90
91     if ((id = gui_vstack(0)))
92     {
93         int gid;
94
95         if      (state == GAME_SPEC)
96             gid = gui_label(id, _("Special Goal"), GUI_MED, GUI_ALL, gui_yel, gui_yel);
97         else if (state == GAME_FALL)
98             gid = gui_label(id, _("Fall-out!"),    GUI_MED, GUI_ALL, gui_yel, gui_yel);
99         else if (state == GAME_TIME)
100             gid = gui_label(id, _("Time's Up!"),   GUI_MED, GUI_ALL, gui_yel, gui_yel);
101         else if (high)
102             gid = gui_label(id, _("New Record"),   GUI_MED, GUI_ALL, gui_grn, gui_grn);
103         else
104             gid = gui_label(id, _("GOAL"),         GUI_LRG, GUI_ALL, gui_blu, gui_grn);
105
106         gui_space(id);
107
108         if (mode == MODE_CHALLENGE && 
109                 (lg->state == GAME_GOAL || lg->state == GAME_SPEC || l->is_bonus))
110         {
111             int coins = lg->coins;
112             int score = lg->score - coins;
113             int balls = lg->balls - count_extra_balls(score, coins);
114             if ((jd = gui_hstack(id)))
115             {
116                 if ((kd = gui_harray(jd)))
117                 {
118                     balls_id = gui_count(kd,  100, GUI_MED, GUI_RGT);
119                     gui_label(kd, _("Balls"), GUI_SML, GUI_LFT, gui_wht, gui_wht);
120                 }
121                 if ((kd = gui_harray(jd)))
122                 {
123                     score_id = gui_count(kd, 1000, GUI_MED, GUI_RGT);
124                     gui_label(kd, _("Score"), GUI_SML, GUI_LFT, gui_wht, gui_wht);
125                 }
126                 if ((kd = gui_harray(jd)))
127                 {
128                     coins_id = gui_count(kd, 100, GUI_MED, GUI_RGT);
129                     gui_label(kd, _("Coins"), GUI_SML, GUI_LFT, gui_wht, gui_wht);
130                 }
131
132                 gui_set_count(balls_id, balls);
133                 gui_set_count(score_id, score);
134                 gui_set_count(coins_id, coins);
135             }
136         }
137         else
138         {
139             balls_id = score_id = coins_id = 0;
140         }
141         
142         if (state == GAME_GOAL)
143         {
144             gui_space(id);
145             if ((jd = gui_harray(id)))
146             {
147                 gui_most_coins(jd, 1);
148                 gui_best_times(jd, 1);
149             }
150         }
151
152         gui_space(id);
153
154         if ((jd = gui_harray(id)))
155         {
156             int nlid = 0;
157             int b = 0;
158             if (lg->win)
159                 gui_start(jd, _("Finish"),      GUI_SML, GOAL_DONE, 0);
160             else
161                 nlid = gui_maybe(jd, _("Next Level"),  GOAL_NEXT, lg->next_level != NULL);
162             
163             b = mode != MODE_CHALLENGE || 
164                     ((state == GAME_FALL || state == GAME_TIME) && !lg->dead && !l->is_bonus);
165             gui_maybe(jd, _("Retry Level"), GOAL_SAME, b);
166            
167             gui_maybe(jd, _("Save Replay"), GOAL_SAVE, demo_play_saved());
168
169             /* default is next if the next level is newly unkocked */
170             if (nlid != 0 && lg->unlock)
171                  gui_focus(nlid);
172         }
173
174         if (high)
175             gui_state(id, _("Change Player Name"),  GUI_SML, GOAL_NAME, 0);
176
177         gui_layout(id, 0, 0);
178         if (gidp) *gidp = gid;
179     }
180
181     if (state == GAME_GOAL)
182     {
183         set_most_coins(&l->coin_score, lg->coin_rank);
184         if (mode == MODE_CHALLENGE || mode == MODE_NORMAL)
185             set_best_times(&l->goal_score, lg->goal_rank, 1);
186         else
187             set_best_times(&l->time_score, lg->time_rank, 0);
188     }
189
190     config_clr_grab();
191
192     return id;
193 }
194
195 static int goal_enter(void)
196 {
197     int gid;
198     int r;
199     
200     r = goal_init(&gid);
201     
202     gui_pulse(gid, 1.2f);
203     audio_music_fade_out(2.0f);
204     return r; 
205 }
206
207 static int goal_bis_enter(void)
208 {
209     level_update_player_name();
210     return goal_init(NULL);
211 }
212
213 static void goal_timer(int id, float dt)
214 {
215     static float DT = 0.0f;
216
217     float gg[3] = { 0.0f, 9.8f, 0.0f };
218     float gf[3] = { 0.0f, -9.8f, 0.0f };
219     int state = curr_lg()->state;
220
221     DT += dt;
222
223     if (time_state() < 2.f)
224         game_step((state == GAME_GOAL || state == GAME_SPEC) ? gg : gf, dt, NULL);
225     
226     if (time_state() > 1.f && DT > 0.05f && coins_id != 0)
227     {
228         int coins = gui_value(coins_id);
229         if (coins > 0)
230         {
231             int score = gui_value(score_id);
232             int balls = gui_value(balls_id);
233
234             gui_set_count(coins_id, coins - 1);
235             gui_pulse(coins_id, 1.1f);
236             
237             gui_set_count(score_id, score + 1);
238             gui_pulse(score_id, 1.1f);
239             if ((score+1) % 100 == 0)
240             {
241                 gui_set_count(balls_id, balls + 1);
242                 gui_pulse(balls_id, 2.0f);
243                 audio_play(AUD_BALL, 1.0f);
244             }
245         }
246
247         DT = 0.0f;
248     }
249
250     gui_timer(id, dt);
251     audio_timer(dt);
252 }
253
254 static int goal_buttn(int b, int d)
255 {
256     if (d)
257     {
258         if (config_tst_d(CONFIG_JOYSTICK_BUTTON_A, b))
259             return goal_action(gui_token(gui_click()));
260         if (config_tst_d(CONFIG_JOYSTICK_BUTTON_EXIT, b))
261             return goal_action(GOAL_BACK);
262     }
263     return 1;
264 }
265
266 /*---------------------------------------------------------------------------*/
267
268 struct state st_goal = {
269     goal_enter,
270     shared_leave,
271     shared_paint,
272     goal_timer,
273     shared_point,
274     shared_stick,
275     shared_click,
276     NULL,
277     goal_buttn,
278     1, 0
279 };
280
281 struct state st_goal_bis = {
282     goal_bis_enter,
283     shared_leave,
284     shared_paint,
285     shared_timer,
286     shared_point,
287     shared_stick,
288     shared_click,
289     NULL,
290     goal_buttn,
291     1, 0
292 };