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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
/* ResidualVM - A 3D game interpreter
*
* ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the AUTHORS
* file distributed with this source distribution.
*
* 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 "engines/grim/registry.h"
#include "audio/mixer.h"
#include "common/config-manager.h"
namespace Grim {
Registry *g_registry = nullptr;
// SpewOnError
// GrimLastSet
// JoystickEnabled
// MovementMode
// SpeechMode
// GammaCorrection, Gamma
// GrimDeveloper
// SfxVolume
// MusicVolume
// VoiceVolume
// TextSpeed
// VoiceEffects
// LastSavedGame
// good_times
void Registry::Value::setString(const Common::String &str) {
_val._str = str;
_type = Registry::String;
}
void Registry::Value::setInt(int num) {
_val._num = num;
_type = Registry::Integer;
}
void Registry::Value::setBool(bool val) {
_val._bool = val;
_type = Registry::Boolean;
}
const Common::String &Registry::Value::getString() const {
assert(_type == Registry::String);
return _val._str;
}
int Registry::Value::getInt() const {
if (_type == Registry::Integer)
return _val._num;
if (_type == Registry::Boolean)
return _val._bool;
return atoi(_val._str.c_str());
}
bool Registry::Value::getBool() const {
if (_type == Registry::Boolean)
return _val._bool;
if (_type == Registry::Integer)
return _val._num;
if (_val._str.equalsIgnoreCase("true"))
return true;
return false;
}
Registry::ValueType Registry::Value::getType() const {
return _type;
}
Registry::Registry() :
_dirty(true) {
// Default settings for GRIM
ConfMan.registerDefault("subtitles", true);
ConfMan.registerDefault("talkspeed", 179);
ConfMan.registerDefault("game_devel_mode", false);
// Read settings
_spewOnError.setString(ConfMan.get("spew_on_error"));
_dataPath.setString(ConfMan.get("path"));
_savePath.setString(ConfMan.get("savepath"));
_develMode.setBool(ConfMan.getBool("game_devel_mode"));
_lastSet.setString(ConfMan.get("last_set"));
_musicVolume.setInt(convertVolumeFromMixer(ConfMan.getInt("music_volume")));
_sfxVolume.setInt(convertVolumeFromMixer(ConfMan.getInt("sfx_volume")));
_voiceVolume.setInt(convertVolumeFromMixer(ConfMan.getInt("speech_volume")));
_lastSavedGame.setString(ConfMan.get("last_saved_game"));
_gamma.setInt(ConfMan.getInt("gamma"));
_textSpeed.setInt(convertTalkSpeedFromGUI(ConfMan.getInt("talkspeed")));
_speechMode.setInt(convertSpeechModeFromGUI(ConfMan.getBool("subtitles"), ConfMan.getBool("speech_mute")));
// These can't be set as bool because the scripts do a check against "TRUE" and "FALSE".
// Right, they do string comparisons. doh!
_voiceEffects.setString(ConfMan.get("voice_effects"));
_movement.setString(ConfMan.get("movement"));
_joystick.setString(ConfMan.get("joystick"));
_transcript.setString(ConfMan.get("transcript"));
}
Registry::Value &Registry::value(const Common::String &key) {
if (scumm_stricmp("good_times", key.c_str()) == 0 || scumm_stricmp("GrimDeveloper", key.c_str()) == 0) {
return _develMode;
} else if (scumm_stricmp("GrimDataDir", key.c_str()) == 0) {
return _dataPath;
} else if (scumm_stricmp("savepath", key.c_str()) == 0) {
return _savePath;
} else if (scumm_stricmp("GrimLastSet", key.c_str()) == 0) {
return _lastSet;
} else if (scumm_stricmp("MusicVolume", key.c_str()) == 0) {
return _musicVolume;
} else if (scumm_stricmp("SfxVolume", key.c_str()) == 0) {
return _sfxVolume;
} else if (scumm_stricmp("VoiceVolume", key.c_str()) == 0) {
return _voiceVolume;
} else if (scumm_stricmp("LastSavedGame", key.c_str()) == 0) {
return _lastSavedGame;
} else if (scumm_stricmp("Gamma", key.c_str()) == 0 || scumm_stricmp("GammaCorrection", key.c_str()) == 0) {
return _gamma;
} else if (scumm_stricmp("VoiceEffects", key.c_str()) == 0) {
return _voiceEffects;
} else if (scumm_stricmp("TextSpeed", key.c_str()) == 0) {
return _textSpeed;
} else if (scumm_stricmp("TextMode", key.c_str()) == 0 || scumm_stricmp("SpeechMode", key.c_str()) == 0) {
return _speechMode;
} else if (scumm_stricmp("MovementMode", key.c_str()) == 0) {
return _movement;
} else if (scumm_stricmp("JoystickEnabled", key.c_str()) == 0) {
return _joystick;
} else if (scumm_stricmp("SpewOnError", key.c_str()) == 0) {
return _spewOnError;
} else if (scumm_stricmp("Transcript", key.c_str()) == 0) {
return _transcript;
}
assert(0);
}
const Registry::Value &Registry::value(const Common::String &key) const {
if (scumm_stricmp("good_times", key.c_str()) == 0 || scumm_stricmp("GrimDeveloper", key.c_str()) == 0) {
return _develMode;
} else if (scumm_stricmp("GrimDataDir", key.c_str()) == 0) {
return _dataPath;
} else if (scumm_stricmp("savepath", key.c_str()) == 0) {
return _savePath;
} else if (scumm_stricmp("GrimLastSet", key.c_str()) == 0) {
return _lastSet;
} else if (scumm_stricmp("MusicVolume", key.c_str()) == 0) {
return _musicVolume;
} else if (scumm_stricmp("SfxVolume", key.c_str()) == 0) {
return _sfxVolume;
} else if (scumm_stricmp("VoiceVolume", key.c_str()) == 0) {
return _voiceVolume;
} else if (scumm_stricmp("LastSavedGame", key.c_str()) == 0) {
return _lastSavedGame;
} else if (scumm_stricmp("Gamma", key.c_str()) == 0 || scumm_stricmp("GammaCorrection", key.c_str()) == 0) {
return _gamma;
} else if (scumm_stricmp("VoiceEffects", key.c_str()) == 0) {
return _voiceEffects;
} else if (scumm_stricmp("TextSpeed", key.c_str()) == 0) {
return _textSpeed;
} else if (scumm_stricmp("TextMode", key.c_str()) == 0 || scumm_stricmp("SpeechMode", key.c_str()) == 0) {
return _speechMode;
} else if (scumm_stricmp("MovementMode", key.c_str()) == 0) {
return _movement;
} else if (scumm_stricmp("JoystickEnabled", key.c_str()) == 0) {
return _joystick;
} else if (scumm_stricmp("SpewOnError", key.c_str()) == 0) {
return _spewOnError;
} else if (scumm_stricmp("Transcript", key.c_str()) == 0) {
return _transcript;
}
assert(0);
}
const Common::String &Registry::getString(const Common::String &key) const {
return value(key).getString();
}
int Registry::getInt(const Common::String &key) const {
return value(key).getInt();
}
bool Registry::getBool(const Common::String &key) const {
return value(key).getBool();
}
void Registry::setString(const Common::String &key, const Common::String &val) {
_dirty = true;
value(key).setString(val);
}
void Registry::setInt(const Common::String &key, int val) {
_dirty = true;
value(key).setInt(val);
}
void Registry::setBool(const Common::String &key, bool val) {
_dirty = true;
value(key).setBool(val);
}
Registry::ValueType Registry::getValueType(const Common::String &key) const {
return value(key).getType();
}
void Registry::save() {
if (!_dirty)
return;
ConfMan.set("spew_on_error", _spewOnError.getString());
ConfMan.set("path", _dataPath.getString());
ConfMan.set("savepath", _savePath.getString());
ConfMan.set("last_set", _lastSet.getString());
ConfMan.setBool("game_devel_mode", _develMode.getBool());
ConfMan.setInt("music_volume", convertVolumeToMixer(_musicVolume.getInt()));
ConfMan.setInt("sfx_volume", convertVolumeToMixer(_sfxVolume.getInt()));
ConfMan.setInt("speech_volume", convertVolumeToMixer(_voiceVolume.getInt()));
ConfMan.set("last_saved_game", _lastSavedGame.getString());
ConfMan.setInt("gamma", _gamma.getInt());
ConfMan.setInt("talkspeed", convertTalkSpeedToGUI(_textSpeed.getInt()));
ConfMan.setBool("subtitles", convertSubtitlesToGUI(_speechMode.getInt()));
ConfMan.setBool("speech_mute", convertSpeechMuteToGUI(_speechMode.getInt()));
ConfMan.set("movement", _movement.getString());
ConfMan.set("joystick", _joystick.getString());
ConfMan.set("voice_effects", _voiceEffects.getString());
ConfMan.set("transcript", _transcript.getString());
_dirty = false;
}
uint Registry::convertVolumeToMixer(uint grimVolume) {
return CLIP<uint>(grimVolume * 2, 0, Audio::Mixer::kMaxMixerVolume);
}
uint Registry::convertVolumeFromMixer(uint volume) {
return CLIP<uint>(volume / 2, 0, 127);
}
uint Registry::convertTalkSpeedToGUI(uint talkspeed) {
return CLIP<uint>(talkspeed * 255 / 10, 0, 255);
}
uint Registry::convertTalkSpeedFromGUI(uint talkspeed) {
return CLIP<uint>(talkspeed * 10 / 255, 1, 10);
}
bool Registry::convertSubtitlesToGUI(uint speechmode) {
return speechmode == 1 || speechmode == 3;
}
bool Registry::convertSpeechMuteToGUI(uint speechmode) {
return speechmode == 1;
}
uint Registry::convertSpeechModeFromGUI(bool subtitles, bool speechMute) {
if (!subtitles && !speechMute) // Speech only
return 2;
else if (subtitles && !speechMute) // Speech and subtitles
return 3;
else if (subtitles && speechMute) // Subtitles only
return 1;
else
warning("Wrong configuration: Both subtitles and speech are off. Assuming subtitles only");
return 1;
}
} // end of namespace Grim
|