Added Menu::get_parent()
[supertux.git] / src / options_menu.cpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2004 Tobas Glaesser <tobi.web@gmx.de>
5 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
6 //
7 //  This program is free software; you can redistribute it and/or
8 //  modify it under the terms of the GNU General Public License
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 //
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 #include <config.h>
21
22 #include "profile_menu.hpp"
23 #include "options_menu.hpp"
24 #include "gui/menu.hpp"
25 #include "audio/sound_manager.hpp"
26 #include "control/joystickkeyboardcontroller.hpp"
27 #include "main.hpp"
28 #include "gettext.hpp"
29 #include "gameconfig.hpp"
30
31 Menu* options_menu   = 0;
32
33 enum OptionsMenuIDs {
34   MNID_FULLSCREEN,
35   MNID_SOUND,
36   MNID_MUSIC
37 };
38
39 class LanguageMenu : public Menu
40 {
41 public:
42   LanguageMenu() {
43     add_label(_("Language"));
44     add_hl();
45     add_entry(0, std::string("(")+_("auto-detect language")+")");
46     add_entry(1, "English");
47
48     int mnid = 10;    
49     std::set<std::string> languages = dictionary_manager.get_languages();
50     for (std::set<std::string>::iterator i = languages.begin(); i != languages.end(); i++) {
51       std::string locale_name = *i;
52       TinyGetText::LanguageDef ldef = TinyGetText::get_language_def(locale_name);
53       std::string locale_fullname = locale_name;
54       if (std::string(ldef.code) == locale_name) {
55         locale_fullname = ldef.name;
56       }
57       add_entry(mnid++, locale_fullname);
58     } 
59
60     add_hl();
61     add_back(_("Back"));
62   }
63
64   virtual void menu_action(MenuItem* item) {
65     if (item->id == 0) {
66       config->locale = "";
67       dictionary_manager.set_language(config->locale);
68       config->save();
69       Menu::set_current(0);
70     }
71     else if (item->id == 1) {
72       config->locale = "en";
73       dictionary_manager.set_language(config->locale);
74       config->save();
75       Menu::set_current(0);
76     }
77     int mnid = 10;    
78     std::set<std::string> languages = dictionary_manager.get_languages();
79     for (std::set<std::string>::iterator i = languages.begin(); i != languages.end(); i++) {
80       std::string locale_name = *i;
81       if (item->id == mnid++) {
82         config->locale = locale_name;
83         dictionary_manager.set_language(config->locale);
84         config->save();
85         Menu::set_current(0);
86       }
87     }
88   }
89 };
90
91
92 class OptionsMenu : public Menu
93 {
94 public:
95   OptionsMenu();
96   virtual ~OptionsMenu();
97
98   virtual void menu_action(MenuItem* item);
99
100 protected:
101   std::auto_ptr<LanguageMenu> language_menu;
102   
103 };
104
105 OptionsMenu::OptionsMenu()
106 {
107   language_menu.reset(new LanguageMenu());
108
109   add_label(_("Options"));
110   add_hl();
111   
112   // FIXME: Implement me: if (get_parent() == main_menu)
113     add_submenu(_("Change Profile"), get_profile_menu());
114
115   add_submenu(_("Select Language"), language_menu.get());
116   add_toggle(MNID_FULLSCREEN,_("Fullscreen"), config->use_fullscreen);
117   if (sound_manager->is_audio_enabled()) {
118     add_toggle(MNID_SOUND, _("Sound"), config->sound_enabled);
119     add_toggle(MNID_MUSIC, _("Music"), config->music_enabled);
120   } else {
121     add_deactive(MNID_SOUND, _("Sound (disabled)"));
122     add_deactive(MNID_SOUND, _("Music (disabled)"));
123   }
124   add_submenu(_("Setup Keyboard"), main_controller->get_key_options_menu());
125   add_submenu(_("Setup Joystick"),main_controller->get_joystick_options_menu());
126   add_hl();
127   add_back(_("Back"));
128 }
129
130 OptionsMenu::~OptionsMenu()
131 {
132 }
133
134 void
135 OptionsMenu::menu_action(MenuItem* item)
136 {
137   switch (item->id) {
138     case MNID_FULLSCREEN:
139       if(config->use_fullscreen != options_menu->is_toggled(MNID_FULLSCREEN)) {
140         config->use_fullscreen = !config->use_fullscreen;
141         init_video();
142         config->save();
143       }
144       break;
145     case MNID_SOUND:
146       if(config->sound_enabled != options_menu->is_toggled(MNID_SOUND)) {
147         config->sound_enabled = !config->sound_enabled;
148         sound_manager->enable_sound(config->sound_enabled);
149         config->save();
150       }
151       break;
152     case MNID_MUSIC:
153       if(config->music_enabled != options_menu->is_toggled(MNID_MUSIC)) {
154         config->music_enabled = !config->music_enabled;
155         sound_manager->enable_music(config->music_enabled);
156         config->save();
157       }
158       break;
159     default:
160       break;
161   }
162 }
163
164 Menu* get_options_menu()
165 {
166   //static OptionsMenu menu;
167   options_menu = new OptionsMenu();
168   return options_menu;
169 }
170
171 void free_options_menu()
172 {
173   delete options_menu;
174   options_menu = 0;
175 }