add infos in Modes and Secrets tabs
[neverball] / ball / st_over.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 "gui.h"
16 #include "set.h"
17 #include "game.h"
18 #include "level.h"
19 #include "audio.h"
20 #include "config.h"
21 #include "demo.h"
22 #include "st_shared.h"
23
24 #include "st_over.h"
25 #include "st_start.h"
26
27 /*---------------------------------------------------------------------------*/
28
29 static int over_enter(void)
30 {
31     int id;
32
33     if ((id = gui_label(0, _("GAME OVER"), GUI_LRG, GUI_ALL, gui_gry, gui_red)))
34     {
35         gui_layout(id, 0, 0);
36         gui_pulse(id, 1.2f);
37     }
38
39     audio_music_fade_out(2.0f);
40     audio_play(AUD_OVER, 1.f);
41
42     config_clr_grab();
43
44     return id;
45 }
46
47 static void over_timer(int id, float dt)
48 {
49     if (dt > 0.f && time_state() > 3.f)
50         goto_state(&st_start);
51
52     gui_timer(id, dt);
53     audio_timer(dt);
54 }
55
56 static int over_click(int b, int d)
57 {
58     return (b < 0 && d == 1) ? goto_state(&st_start) : 1;
59 }
60
61 static int over_buttn(int b, int d)
62 {
63     if (d)
64     {
65         if (config_tst_d(CONFIG_JOYSTICK_BUTTON_A, b) ||
66             config_tst_d(CONFIG_JOYSTICK_BUTTON_EXIT, b))
67             return goto_state(&st_start);
68     }
69     return 1;
70 }
71
72 /*---------------------------------------------------------------------------*/
73
74 struct state st_over = {
75     over_enter,
76     shared_leave,
77     shared_paint,
78     over_timer,
79     NULL,
80     NULL,
81     over_click,
82     NULL,
83     over_buttn,
84     1, 0
85 };