d65aa7d102f9163fe7a09d94b3a8fd508da910f0
[supertux.git] / src / supertux / menu / options_menu.cpp
1 //  SuperTux
2 //  Copyright (C) 2004 Tobas Glaesser <tobi.web@gmx.de>
3 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #include "supertux/menu/options_menu.hpp"
19
20 #include "audio/sound_manager.hpp"
21 #include "gui/menu_manager.hpp"
22 #include "supertux/gameconfig.hpp"
23 #include "supertux/menu/joystick_menu.hpp"
24 #include "supertux/menu/keyboard_menu.hpp"
25 #include "supertux/menu/language_menu.hpp"
26 #include "supertux/menu/menu_storage.hpp"
27 #include "supertux/menu/profile_menu.hpp"
28 #include "util/string_util.hpp"
29 #include "video/renderer.hpp"
30
31 #include <algorithm>
32 #include <sstream>
33 #include <stdio.h>
34
35 enum OptionsMenuIDs {
36   MNID_FULLSCREEN,
37   MNID_FULLSCREEN_RESOLUTION,
38   MNID_MAGNIFICATION,
39   MNID_ASPECTRATIO,
40   MNID_PROFILES,
41   MNID_SOUND,
42   MNID_MUSIC
43 };
44
45 OptionsMenu::OptionsMenu() :
46   language_menu()
47 {
48   language_menu.reset(new LanguageMenu());
49
50   add_label(_("Options"));
51   add_hl();
52
53   // Language change should only be possible in the main menu, since elsewhere it might not always work fully
54   // FIXME: Implement me: if (get_parent() == main_menu)
55   add_submenu(_("Select Language"), language_menu.get())
56     ->set_help(_("Select a different language to display text in"));
57
58   add_submenu(_("Select Profile"), MenuStorage::get_profile_menu())
59     ->set_help(_("Select a profile to play with"));
60
61   add_toggle(MNID_PROFILES, _("Profile on Startup"), g_config->sound_enabled)
62     ->set_help(_("Select your profile immediately after start-up"));
63   
64   add_toggle(MNID_FULLSCREEN,_("Fullscreen"), g_config->use_fullscreen)
65     ->set_help(_("Fill the entire screen"));
66
67   MenuItem* fullscreen_res = add_string_select(MNID_FULLSCREEN_RESOLUTION, _("Resolution"));
68   fullscreen_res->set_help(_("Determine the resolution used in fullscreen mode (you must toggle fullscreen to complete the change)"));
69
70   MenuItem* magnification = add_string_select(MNID_MAGNIFICATION, _("Magnification"));
71   magnification->set_help(_("Change the magnification of the game area"));
72
73   // These values go from screen:640/projection:1600 to
74   // screen:1600/projection:640 (i.e. 640, 800, 1024, 1280, 1600)
75   magnification->list.push_back(_("auto"));
76   magnification->list.push_back("40%");
77   magnification->list.push_back("50%");
78   magnification->list.push_back("62.5%");
79   magnification->list.push_back("80%");
80   magnification->list.push_back("100%");
81   magnification->list.push_back("125%");
82   magnification->list.push_back("160%");
83   magnification->list.push_back("200%");
84   magnification->list.push_back("250%");
85   if (g_config->magnification != 0.0f) //auto
86   {
87     std::ostringstream out;
88     out << (g_config->magnification*100) << "%";
89     std::string magn = out.str();
90     size_t count = 0;
91     for (std::vector<std::string>::iterator i = magnification->list.begin(); i != magnification->list.end(); ++i)
92     {
93       if (*i == magn)
94       {
95         magnification->selected = count;
96         magn.clear();
97         break;
98       }
99       
100       ++count;
101     }
102     if (!magn.empty()) //magnification not in our list but accept anyway
103     {
104       magnification->selected = magnification->list.size();
105       magnification->list.push_back(magn);
106     }
107   }
108   
109   int display_mode_count = SDL_GetNumDisplayModes(0);
110   for(int i = 0; i < display_mode_count; ++i)
111   {
112     SDL_DisplayMode mode;
113     int ret = SDL_GetDisplayMode(0, i, &mode);
114     if (ret != 0)
115     {
116       log_warning << "failed to get display mode: " << SDL_GetError() << std::endl;
117     }
118     else
119     {
120       std::ostringstream out;
121       out << mode.w << "x" << mode.h << "@" << mode.refresh_rate;
122       fullscreen_res->list.push_back(out.str());
123     }
124   }
125
126   std::ostringstream out;
127   out << g_config->fullscreen_size.width << "x" << g_config->fullscreen_size.height << "@" << g_config->fullscreen_refresh_rate;
128   std::string fllscrn_sz = out.str();
129   size_t cnt = 0;
130   for (std::vector<std::string>::iterator i = fullscreen_res->list.begin(); i != fullscreen_res->list.end(); ++i) 
131   {
132     if (*i == fllscrn_sz)
133     {
134       fllscrn_sz.clear();
135       fullscreen_res->selected = cnt;
136       break;
137     }
138     ++cnt;
139   }
140   if (!fllscrn_sz.empty())
141   {
142     fullscreen_res->selected = fullscreen_res->list.size();
143     fullscreen_res->list.push_back(fllscrn_sz);
144   }
145
146   MenuItem* aspect = add_string_select(MNID_ASPECTRATIO, _("Aspect Ratio"));
147   aspect->set_help(_("Adjust the aspect ratio"));
148   
149   aspect->list.push_back(_("auto"));
150   aspect->list.push_back("5:4");
151   aspect->list.push_back("4:3");
152   aspect->list.push_back("16:10");
153   aspect->list.push_back("16:9");
154   aspect->list.push_back("1368:768");
155
156   if (g_config->aspect_size != Size(0, 0))
157   {
158     std::ostringstream out;
159     out << g_config->aspect_size.width << ":" << g_config->aspect_size.height;
160     std::string aspect_ratio = out.str();
161     size_t cnt = 0;
162     for(std::vector<std::string>::iterator i = aspect->list.begin(); i != aspect->list.end(); ++i)
163     {
164       if(*i == aspect_ratio)
165       {
166         aspect_ratio.clear();
167         aspect->selected = cnt;
168         break;
169       }
170       ++cnt;
171     }
172
173     if (!aspect_ratio.empty())
174     {
175       aspect->selected = aspect->list.size();
176       aspect->list.push_back(aspect_ratio);
177     }
178   }
179   
180   if (sound_manager->is_audio_enabled()) {
181     add_toggle(MNID_SOUND, _("Sound"), g_config->sound_enabled)
182       ->set_help(_("Disable all sound effects"));
183     add_toggle(MNID_MUSIC, _("Music"), g_config->music_enabled)
184       ->set_help(_("Disable all music"));
185   } else {
186     add_inactive(MNID_SOUND, _("Sound (disabled)"));
187     add_inactive(MNID_MUSIC, _("Music (disabled)"));
188   }
189   
190   add_submenu(_("Setup Keyboard"), MenuStorage::get_key_options_menu())
191     ->set_help(_("Configure key-action mappings"));
192
193   add_submenu(_("Setup Joystick"), MenuStorage::get_joystick_options_menu())
194     ->set_help(_("Configure joystick control-action mappings"));
195   add_hl();
196   add_back(_("Back"));
197 }
198
199 OptionsMenu::~OptionsMenu()
200 {
201 }
202
203 void
204 OptionsMenu::menu_action(MenuItem* item)
205 {
206   switch (item->id) {
207     case MNID_ASPECTRATIO:
208       {
209         if (item->list[item->selected] == _("auto"))
210         {
211           g_config->aspect_size = Size(0, 0); // Magic values
212           Renderer::instance()->apply_config();
213           MenuManager::recalc_pos();
214         }
215         else if (sscanf(item->list[item->selected].c_str(), "%d:%d",
216                         &g_config->aspect_size.width, &g_config->aspect_size.height) == 2)
217         {
218           Renderer::instance()->apply_config();
219           MenuManager::recalc_pos();
220         }
221         else
222         {
223           assert(!"This must not be reached");
224         }
225       }
226       break;
227
228     case MNID_MAGNIFICATION:
229       if (item->list[item->selected] == _("auto"))
230       {
231         g_config->magnification = 0.0f; // Magic value 
232       }
233       else if(sscanf(item->list[item->selected].c_str(), "%f", &g_config->magnification) == 1)
234       {
235         g_config->magnification /= 100.0f;
236       }
237       Renderer::instance()->apply_config();
238       MenuManager::recalc_pos();
239       break;
240
241     case MNID_FULLSCREEN_RESOLUTION:
242       {
243         int width;
244         int height;
245         int refresh_rate;
246         if(sscanf(item->list[item->selected].c_str(), "%dx%d@%d",
247                   &width, &height, &refresh_rate) == 3)
248         {
249           // do nothing, changes are only applied when toggling fullscreen mode
250           g_config->fullscreen_size.width = width;
251           g_config->fullscreen_size.height = height;
252           g_config->fullscreen_refresh_rate = refresh_rate;
253         }
254       }      
255       break;
256
257     case MNID_FULLSCREEN:
258       if(g_config->use_fullscreen != is_toggled(MNID_FULLSCREEN)) {
259         g_config->use_fullscreen = !g_config->use_fullscreen;
260         Renderer::instance()->apply_config();
261         MenuManager::recalc_pos();
262         g_config->save();
263       }
264       break;
265
266     case MNID_SOUND:
267       if(g_config->sound_enabled != is_toggled(MNID_SOUND)) {
268         g_config->sound_enabled = !g_config->sound_enabled;
269         sound_manager->enable_sound(g_config->sound_enabled);
270         g_config->save();
271       }
272       break;
273
274     case MNID_MUSIC:
275       if(g_config->music_enabled != is_toggled(MNID_MUSIC)) {
276         g_config->music_enabled = !g_config->music_enabled;
277         sound_manager->enable_music(g_config->music_enabled);
278         g_config->save();
279       }
280       break;
281
282     default:
283       break;
284   }
285 }
286
287 void
288 OptionsMenu::check_menu()
289 {
290 }
291
292 /* EOF */