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 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
/*
* KMix -- KDE's full featured mini mixer
*
*
* Copyright (C) 1996-2004 Christian Esken <esken@kde.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library 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 "core/volume.h"
#include "kmix_debug.h"
// for operator<<()
#include <iostream>
#include <klocalizedstring.h>
// This value is the number of steps to take the volume from minimum to maximum.
// It applies to changing the volume by hot key, or by the mouse wheel over the
// system tray icon. For consistency, it is also used as the page step for
// volume sliders (clicking in the blank area on each side of the slider, or
// the PgUp/PgDown keys when the slider has focus). The slider single step
// (dragging the slider, or using the arrow keys) is not changed from the default
// of 1, which gives one hardware volume step.
//
// The default set here is 5% which means 20 steps. It can be changed by the
// "Volume Step" option in the KMix settings.
static float s_volumeStepDivisor = (100.0/5);
static Volume::ChannelMask channelMask[] =
{
Volume::MLEFT, Volume::MRIGHT, Volume::MCENTER,
Volume::MWOOFER,
Volume::MSURROUNDLEFT, Volume::MSURROUNDRIGHT,
Volume::MREARSIDELEFT, Volume::MREARSIDERIGHT,
Volume::MREARCENTER
};
QString Volume::channelNameReadable(Volume::ChannelID id)
{
switch (id)
{
case LEFT: return (i18nc("Channel name", "Left"));
case RIGHT: return (i18nc("Channel name", "Right"));
case CENTER: return (i18nc("Channel name", "Center"));
case WOOFER: return (i18nc("Channel name", "Subwoofer"));
case SURROUNDLEFT: return (i18nc("Channel name", "Surround Left"));
case SURROUNDRIGHT: return (i18nc("Channel name", "Surround Right"));
case REARSIDELEFT: return (i18nc("Channel name", "Side Left"));
case REARSIDERIGHT: return (i18nc("Channel name", "Side Right"));
case REARCENTER: return (i18nc("Channel name", "Rear Center"));
default: qCWarning(KMIX_LOG) << "called for unknown ID" << id;
return (i18nc("Channel name", "Unknown"));
}
}
QString Volume::channelNameForPersistence(Volume::ChannelID id)
{
switch (id)
{
case LEFT: return ("volumeL");
case RIGHT: return ("volumeR");
case CENTER: return ("volumeCenter");
case WOOFER: return ("volumeWoofer");
case SURROUNDLEFT: return ("volumeSurroundL");
case SURROUNDRIGHT: return ("volumeSurroundR");
case REARSIDELEFT: return ("volumeSideL");
case REARSIDERIGHT: return ("volumeSideR");
case REARCENTER: return ("volumeRearCenter");
default: qCWarning(KMIX_LOG) << "called for unknown ID" << id;
return ("unknown");
}
}
// Forbidden/private. Only here because if there is no CaptureVolume we need the values initialized
// And also QMap requires it.
Volume::Volume()
: _chmask(MNONE)
, _minVolume(0)
, _maxVolume(0)
, _hasSwitch(false)
, _switchActivated(false)
, _switchType(None)
, _isCapture(false)
{
}
/**
* Do not use. Only implicitely required for QMap.
*
* @deprecated Do not use
*/
VolumeChannel::VolumeChannel()
: volume(0)
, chid(Volume::NOCHANNEL)
{
}
VolumeChannel::VolumeChannel(Volume::ChannelID c)
: volume(0)
, chid(c)
{
}
Volume::Volume(long maxVolume, long minVolume, bool hasSwitch, bool isCapture )
{
init(Volume::MNONE, maxVolume, minVolume, hasSwitch, isCapture );
}
/**
* @deprecated
*/
void Volume::addVolumeChannels(Volume::ChannelMask chmask)
{
for ( Volume::ChannelID chid=Volume::CHIDMIN; chid<= Volume::CHIDMAX; )
{
if ( chmask & channelMask[chid] )
{
addVolumeChannel(VolumeChannel(chid));
}
chid = static_cast<Volume::ChannelID>(1+static_cast<int>(chid));
} // for all channels
}
void Volume::addVolumeChannel(VolumeChannel vc)
{
_volumesL.insert(vc.chid, vc);
// Add the corresponding "muted version" of the channel.
// VolumeChannel* zeroChannel = new VolumeChannel(vc.chid);
// zeroChannel->volume = 0;
// _volumesMuted.insert(zeroChannel->chid, *zeroChannel); // TODO remove _volumesMuted
}
void Volume::init( Volume::ChannelMask chmask, long maxVolume, long minVolume, bool hasSwitch, bool isCapture)
{
_chmask = chmask;
_maxVolume = maxVolume;
_minVolume = minVolume;
_hasSwitch = hasSwitch;
_isCapture = isCapture;
//_muted = false;
// Presume that the switch is active. This will always work:
// a) Physical switches will be updated after start from the hardware.
// b) Emulated virtual/switches will not receive updates from the hardware, so they shouldn't disable the channels.
_switchActivated = true;
}
QMap<Volume::ChannelID, VolumeChannel> Volume::getVolumesWhenActive() const
{
return _volumesL;
}
QMap<Volume::ChannelID, VolumeChannel> Volume::getVolumes() const
{
return _volumesL;
}
/**
* Returns the absolute change to do one "step" for this volume.
*
* This is similar to a page step in a slider, namely a fixed percentage
* of the range.
* One step is the percentage given by 100/VOLUME_STEP_DIVISOR.
* The default divisor is 20, so the default change is 5% of the volumeSpan().
*
* This method guarantees a minimum absolute change of 1, zero is never returned.
*
* It is NOT verified, that such a volume change would actually be possible.
* You might hit the upper or lower bounds of the volume range.
*
* @param decrease @c true if you want a volume step that decreases the volume by one page step
* @return The volume step. It will be negative if you have used decrease==true
*/
long Volume::volumeStep(bool decrease) const
{
long inc = qRound(volumeSpan()/s_volumeStepDivisor);
if (inc==0) inc = 1;
if (decrease) inc = -inc;
return (inc);
}
/* static */ void Volume::setVolumeStep(int percent)
{
if (percent<=0 || percent>=100) return;
s_volumeStepDivisor = 100.0/percent;
qDebug() << "percent" << percent << "-> divisor" << s_volumeStepDivisor;
}
// @ compatibility
void Volume::setAllVolumes(long vol)
{
long int finalVol = volrange(vol);
QMap<Volume::ChannelID, VolumeChannel>::iterator it = _volumesL.begin();
while (it != _volumesL.end())
{
it.value().volume = finalVol;
//it.value().unmutedVolume= finalVol;
++it;
}
}
void Volume::changeAllVolumes( long step )
{
QMap<Volume::ChannelID, VolumeChannel>::iterator it = _volumesL.begin();
while (it != _volumesL.end())
{
long int finalVol = volrange(it.value().volume + step);
it.value().volume = finalVol;
// it.value().unmutedVolume= finalVol;
++it;
}
}
/**
* Sets the volume for the given Channel
* @ compatibility
*/
void Volume::setVolume( Volume::ChannelID chid, long vol)
{
QMap<Volume::ChannelID, VolumeChannel>::iterator it = _volumesL.find(chid);
if ( it != _volumesL.end())
{
it.value().volume = vol;
//it.value().unmutedVolume = vol;
}
}
/**
* Copy the volume elements contained in v to this Volume object.
*/
// void Volume::setVolume(const Volume &v)
// {
// foreach (VolumeChannel vc, _volumesL )
// {
// Volume::ChannelID chid = vc.chid;
// v.getVolumes()[chid].volume = vc.volume;
// //v.getVolumes()[chid].unmutedVolume = vc.volume;
// }
// }
void Volume::setSwitch( bool active )
{
_switchActivated = active;
// if ( isCapture() )
// return;
//
// for playback volumes we will not only do the switch, but also set the volume to 0
// QMap<Volume::ChannelID, VolumeChannel>::iterator it = _volumesL.begin();
// if ( active )
// {
// while (it != _volumesL.end())
// {
// VolumeChannel& vc = it.value();
// vc.volume = vc.unmutedVolume;
// ++it;
// }
// }
// else
// {
// while (it != _volumesL.end())
// {
// VolumeChannel& vc = it.value();
// vc.unmutedVolume = vc.volume;
// vc.volume = 0;
// ++it;
// }
// }
}
/**
* Returns the volume of the given channel.
*/
long Volume::getVolume(Volume::ChannelID chid) const
{
return _volumesL.value(chid).volume;
}
/**
* Returns the volume of the given channel. If this Volume is inactive (switched off), 0 is returned.
*/
long Volume::getVolumeForGUI(Volume::ChannelID chid) const
{
if (! isSwitchActivated() )
return 0;
return _volumesL.value(chid).volume;
}
qreal Volume::getAvgVolume(Volume::ChannelMask chmask) const
{
int avgVolumeCounter = 0;
long long sumOfActiveVolumes = 0;
foreach (VolumeChannel vc, _volumesL )
{
if (channelMask[vc.chid] & chmask )
{
sumOfActiveVolumes += vc.volume;
++avgVolumeCounter;
}
}
if (avgVolumeCounter != 0) {
qreal sumOfActiveVolumesQreal = sumOfActiveVolumes;
sumOfActiveVolumesQreal /= avgVolumeCounter;
return sumOfActiveVolumesQreal;
}
else
return 0;
}
int Volume::getAvgVolumePercent(Volume::ChannelMask chmask) const
{
qreal volume = getAvgVolume(chmask);
// min=-100, max=200 => volSpan = 301
// volume = -50 => volShiftedToZero = -50+min = 50
qreal volSpan = volumeSpan();
qreal volShiftedToZero = volume - _minVolume;
qreal percentReal = ( volSpan == 0 ) ? 0 : ( 100 * volShiftedToZero ) / ( volSpan - 1);
int percent = qRound(percentReal);
//qCDebug(KMIX_LOG) << "volSpan=" << volSpan << ", volume=" << volume << ", volShiftedToPositive=" << volShiftedToZero << ", percent=" << percent;
return percent;
}
/**
* returns a "sane" volume level. This means, it is a volume level inside the
* valid bounds
*/
long Volume::volrange( long vol )
{
if ( vol < _minVolume ) {
return _minVolume;
}
else if ( vol < _maxVolume ) {
return vol;
}
else {
return _maxVolume;
}
}
std::ostream& operator<<(std::ostream& os, const Volume& vol) {
os << "(";
bool first = true;
foreach ( const VolumeChannel vc, vol.getVolumes() )
{
if ( !first ) os << ",";
else first = false;
os << vc.volume;
} // all channels
os << ")";
os << " [" << vol._minVolume << "-" << vol._maxVolume;
if ( vol._switchActivated ) { os << " : switch active ]"; } else { os << " : switch inactive ]"; }
return os;
}
QDebug operator<<(QDebug os, const Volume& vol) {
os << "(";
bool first = true;
foreach ( VolumeChannel vc, vol.getVolumes() )
{
if ( !first ) os << ",";
else first = false;
os << vc.volume;
} // all channels
os << ")";
os << " [" << vol._minVolume << "-" << vol._maxVolume;
if ( vol._switchActivated ) { os << " : switch active ]"; } else { os << " : switch inactive ]"; }
return os;
}
|