File: game_options_sound_menu.cc

package info (click to toggle)
widelands 1%3A19%2Brepack-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 370,608 kB
  • ctags: 20,609
  • sloc: cpp: 108,404; ansic: 18,695; python: 5,155; sh: 487; xml: 460; makefile: 233
file content (133 lines) | stat: -rw-r--r-- 5,633 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
 * Copyright (C) 2007-2011 by the Widelands Development Team
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#include "wui/game_options_sound_menu.h"

#include "base/i18n.h"
#include "graphic/graphic.h"
#include "sound/sound_handler.h"

GameOptionsSoundMenu::GameOptionsSoundMenu(InteractiveGameBase& gb,
                                           UI::UniqueWindow::Registry& registry)
   : UI::UniqueWindow(&gb, "sound_options_menu", &registry, 160, 160, _("Sound Options")),
     ingame_music(this, Point(hmargin(), vmargin()), _("Enable Music")),
     ingame_sound(
        this, Point(hmargin(), vmargin() + kStateboxSize + vspacing()), _("Enable Sound Effects")),
     ingame_music_volume_label(this,
                               hmargin(),
                               vmargin() + 2 * (kStateboxSize + vspacing()) + vbigspacing(),
                               _("Music Volume")),
     ingame_music_volume(this,
                         hmargin(),
                         vmargin() + 2 * (kStateboxSize + vspacing()) + vbigspacing() +
                            1 * vspacing() + ingame_music_volume_label.get_h(),
                         get_inner_w() - 2 * hmargin(),
                         slideh(),
                         0,
                         g_sound_handler.get_max_volume(),
                         g_sound_handler.get_music_volume(),
                         g_gr->images().get("images/ui_basic/but1.png")),
     ingame_sound_volume_label(this,
                               hmargin(),
                               vmargin() + 2 * (kStateboxSize + vspacing()) + vbigspacing() +
                                  2 * vspacing() + slideh() + ingame_music_volume_label.get_h(),
                               _("Sound Effects Volume")),
     ingame_sound_volume(this,
                         hmargin(),
                         vmargin() + 2 * (kStateboxSize + vspacing()) + vbigspacing() +
                            3 * vspacing() + slideh() + ingame_music_volume_label.get_h() +
                            ingame_music_volume_label.get_h(),
                         get_inner_w() - 2 * hmargin(),
                         slideh(),
                         0,
                         g_sound_handler.get_max_volume(),
                         g_sound_handler.get_fx_volume(),
                         g_gr->images().get("images/ui_basic/but1.png")) {
	ingame_music.set_state(!g_sound_handler.get_disable_music());
	ingame_sound.set_state(!g_sound_handler.get_disable_fx());

	if (g_sound_handler.lock_audio_disabling_) {  //  disabling sound options
		ingame_music.set_enabled(false);
		ingame_sound.set_enabled(false);
		ingame_music_volume.set_enabled(false);
		ingame_sound_volume.set_enabled(false);
	} else {  // initial widget states
		ingame_music.set_state(!g_sound_handler.get_disable_music());
		ingame_sound.set_state(!g_sound_handler.get_disable_fx());
		ingame_music_volume.set_enabled(!g_sound_handler.get_disable_music());
		ingame_sound_volume.set_enabled(!g_sound_handler.get_disable_fx());
	}

	//  ready signals
	ingame_music.changedto.connect(
	   boost::bind(&GameOptionsSoundMenu::changed_ingame_music, this, _1));
	ingame_sound.changedto.connect(
	   boost::bind(&GameOptionsSoundMenu::changed_ingame_sound, this, _1));
	ingame_music_volume.changedto.connect(
	   boost::bind(&GameOptionsSoundMenu::music_volume_changed, this, _1));
	ingame_sound_volume.changedto.connect(
	   boost::bind(&GameOptionsSoundMenu::sound_volume_changed, this, _1));

	uint32_t boxes_width =
	   kStateboxSize + hspacing() + std::max(ingame_music.get_w(), ingame_sound.get_w());
	uint32_t labels_width =
	   std::max(ingame_music_volume_label.get_w(), ingame_sound_volume_label.get_w());

	set_inner_size(std::max(static_cast<uint32_t>(get_inner_w()),
	                        2 * hmargin() + std::max(boxes_width, labels_width)),
	               2 * vmargin() + 2 * (kStateboxSize + vspacing()) + vbigspacing() +
	                  3 * vspacing() + 2 * slideh() + ingame_music_volume_label.get_h() +
	                  ingame_music_volume_label.get_h());

	if (get_usedefaultpos())
		center_to_parent();
}

/**
 * \brief The music checkbox has been toggled.
 */
void GameOptionsSoundMenu::changed_ingame_music(bool on) {
	ingame_music_volume.set_enabled(on);
	g_sound_handler.set_disable_music(!on);
}

/**
 * \brief The FX checkbox has been toggled.
 */
void GameOptionsSoundMenu::changed_ingame_sound(bool on) {
	ingame_sound_volume.set_enabled(on);
	g_sound_handler.set_disable_fx(!on);
}

/**
 * \brief Callback for the music volume slider.
 *
 * \param value The new music volume.
 */
void GameOptionsSoundMenu::music_volume_changed(int32_t value) {
	g_sound_handler.set_music_volume(value);
}

/**
 * \brief Callback for the sound volume slider.
 *
 * \param value The new sound volume value.
 */
void GameOptionsSoundMenu::sound_volume_changed(int32_t value) {
	g_sound_handler.set_fx_volume(value);
}