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 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: LGPL-2.1-or-later
* See LICENSES/README.md for more information.
*/
/*!
* @file StereoscopicsManager.cpp
* @brief This class acts as container for stereoscopic related functions
*/
#include "StereoscopicsManager.h"
#include "Application.h"
#include "GUIComponent.h"
#include "GUIInfoManager.h"
#include "GUIUserMessages.h"
#include "ServiceBroker.h"
#include "cores/DataCacheCore.h"
#include "dialogs/GUIDialogKaiToast.h"
#include "dialogs/GUIDialogSelect.h"
#include "guilib/GUIWindowManager.h"
#include "guilib/LocalizeStrings.h"
#include "input/Key.h"
#include "messaging/ApplicationMessenger.h"
#include "rendering/RenderSystem.h"
#include "settings/AdvancedSettings.h"
#include "settings/Settings.h"
#include "settings/SettingsComponent.h"
#include "settings/lib/Setting.h"
#include "settings/lib/SettingsManager.h"
#include "utils/RegExp.h"
#include "utils/StringUtils.h"
#include "utils/Variant.h"
#include "utils/log.h"
#include <stdlib.h>
using namespace KODI::MESSAGING;
struct StereoModeMap
{
const char* name;
RENDER_STEREO_MODE mode;
};
static const struct StereoModeMap VideoModeToGuiModeMap[] =
{
{ "mono", RENDER_STEREO_MODE_OFF },
{ "left_right", RENDER_STEREO_MODE_SPLIT_VERTICAL },
{ "right_left", RENDER_STEREO_MODE_SPLIT_VERTICAL },
{ "top_bottom", RENDER_STEREO_MODE_SPLIT_HORIZONTAL },
{ "bottom_top", RENDER_STEREO_MODE_SPLIT_HORIZONTAL },
{ "checkerboard_rl", RENDER_STEREO_MODE_CHECKERBOARD },
{ "checkerboard_lr", RENDER_STEREO_MODE_CHECKERBOARD },
{ "row_interleaved_rl", RENDER_STEREO_MODE_INTERLACED },
{ "row_interleaved_lr", RENDER_STEREO_MODE_INTERLACED },
{ "col_interleaved_rl", RENDER_STEREO_MODE_OFF }, // unsupported
{ "col_interleaved_lr", RENDER_STEREO_MODE_OFF }, // unsupported
{ "anaglyph_cyan_red", RENDER_STEREO_MODE_ANAGLYPH_RED_CYAN },
{ "anaglyph_green_magenta", RENDER_STEREO_MODE_ANAGLYPH_GREEN_MAGENTA },
{ "anaglyph_yellow_blue", RENDER_STEREO_MODE_ANAGLYPH_YELLOW_BLUE },
{ "block_lr", RENDER_STEREO_MODE_OFF }, // unsupported
{ "block_rl", RENDER_STEREO_MODE_OFF }, // unsupported
{}
};
static const struct StereoModeMap StringToGuiModeMap[] =
{
{ "off", RENDER_STEREO_MODE_OFF },
{ "split_vertical", RENDER_STEREO_MODE_SPLIT_VERTICAL },
{ "side_by_side", RENDER_STEREO_MODE_SPLIT_VERTICAL }, // alias
{ "sbs", RENDER_STEREO_MODE_SPLIT_VERTICAL }, // alias
{ "split_horizontal", RENDER_STEREO_MODE_SPLIT_HORIZONTAL },
{ "over_under", RENDER_STEREO_MODE_SPLIT_HORIZONTAL }, // alias
{ "tab", RENDER_STEREO_MODE_SPLIT_HORIZONTAL }, // alias
{ "row_interleaved", RENDER_STEREO_MODE_INTERLACED },
{ "interlaced", RENDER_STEREO_MODE_INTERLACED }, // alias
{ "checkerboard", RENDER_STEREO_MODE_CHECKERBOARD },
{ "anaglyph_cyan_red", RENDER_STEREO_MODE_ANAGLYPH_RED_CYAN },
{ "anaglyph_green_magenta", RENDER_STEREO_MODE_ANAGLYPH_GREEN_MAGENTA },
{ "anaglyph_yellow_blue", RENDER_STEREO_MODE_ANAGLYPH_YELLOW_BLUE },
{ "hardware_based", RENDER_STEREO_MODE_HARDWAREBASED },
{ "monoscopic", RENDER_STEREO_MODE_MONO },
{}
};
CStereoscopicsManager::CStereoscopicsManager()
{
m_settings = CServiceBroker::GetSettingsComponent()->GetSettings();
m_stereoModeSetByUser = RENDER_STEREO_MODE_UNDEFINED;
m_lastStereoModeSetByUser = RENDER_STEREO_MODE_UNDEFINED;
//! @todo Move this to Initialize() to avoid potential problems in ctor
std::set<std::string> settingSet{
CSettings::SETTING_VIDEOSCREEN_STEREOSCOPICMODE
};
m_settings->GetSettingsManager()->RegisterCallback(this, settingSet);
}
CStereoscopicsManager::~CStereoscopicsManager(void)
{
m_settings->GetSettingsManager()->UnregisterCallback(this);
}
void CStereoscopicsManager::Initialize()
{
// turn off stereo mode on XBMC startup
SetStereoMode(RENDER_STEREO_MODE_OFF);
}
RENDER_STEREO_MODE CStereoscopicsManager::GetStereoMode(void) const
{
return static_cast<RENDER_STEREO_MODE>(m_settings->GetInt(CSettings::SETTING_VIDEOSCREEN_STEREOSCOPICMODE));
}
void CStereoscopicsManager::SetStereoModeByUser(const RENDER_STEREO_MODE &mode)
{
// only update last user mode if desired mode is different from current
if (mode != m_stereoModeSetByUser)
m_lastStereoModeSetByUser = m_stereoModeSetByUser;
m_stereoModeSetByUser = mode;
SetStereoMode(mode);
}
void CStereoscopicsManager::SetStereoMode(const RENDER_STEREO_MODE &mode)
{
RENDER_STEREO_MODE currentMode = GetStereoMode();
RENDER_STEREO_MODE applyMode = mode;
// resolve automatic mode before applying
if (mode == RENDER_STEREO_MODE_AUTO)
applyMode = GetStereoModeOfPlayingVideo();
if (applyMode != currentMode && applyMode >= RENDER_STEREO_MODE_OFF)
{
if (CServiceBroker::GetRenderSystem()->SupportsStereo(applyMode))
m_settings->SetInt(CSettings::SETTING_VIDEOSCREEN_STEREOSCOPICMODE, applyMode);
}
}
RENDER_STEREO_MODE CStereoscopicsManager::GetNextSupportedStereoMode(const RENDER_STEREO_MODE ¤tMode, int step) const
{
RENDER_STEREO_MODE mode = currentMode;
do
{
mode = static_cast<RENDER_STEREO_MODE>((mode + step) % RENDER_STEREO_MODE_COUNT);
if (CServiceBroker::GetRenderSystem()->SupportsStereo(mode))
break;
} while (mode != currentMode);
return mode;
}
std::string CStereoscopicsManager::DetectStereoModeByString(const std::string &needle) const
{
std::string stereoMode;
const std::string& searchString(needle);
CRegExp re(true);
if (!re.RegComp(CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_stereoscopicregex_3d.c_str()))
{
CLog::Log(LOGERROR, "%s: Invalid RegExp for matching 3d content:'%s'", __FUNCTION__, CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_stereoscopicregex_3d.c_str());
return stereoMode;
}
if (re.RegFind(searchString) == -1)
return stereoMode; // no match found for 3d content, assume mono mode
if (!re.RegComp(CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_stereoscopicregex_sbs.c_str()))
{
CLog::Log(LOGERROR, "%s: Invalid RegExp for matching 3d SBS content:'%s'", __FUNCTION__, CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_stereoscopicregex_sbs.c_str());
return stereoMode;
}
if (re.RegFind(searchString) > -1)
{
stereoMode = "left_right";
return stereoMode;
}
if (!re.RegComp(CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_stereoscopicregex_tab.c_str()))
{
CLog::Log(LOGERROR, "%s: Invalid RegExp for matching 3d TAB content:'%s'", __FUNCTION__, CServiceBroker::GetSettingsComponent()->GetAdvancedSettings()->m_stereoscopicregex_tab.c_str());
return stereoMode;
}
if (re.RegFind(searchString) > -1)
stereoMode = "top_bottom";
return stereoMode;
}
RENDER_STEREO_MODE CStereoscopicsManager::GetStereoModeByUserChoice() const
{
RENDER_STEREO_MODE mode = GetStereoMode();
// if no stereo mode is set already, suggest mode of current video by preselecting it
if (mode == RENDER_STEREO_MODE_OFF)
mode = GetStereoModeOfPlayingVideo();
CGUIDialogSelect* pDlgSelect = CServiceBroker::GetGUI()->GetWindowManager().GetWindow<CGUIDialogSelect>(WINDOW_DIALOG_SELECT);
pDlgSelect->Reset();
// "Select stereoscopic 3D mode"
pDlgSelect->SetHeading(CVariant{g_localizeStrings.Get(36528)});
// prepare selectable stereo modes
std::vector<RENDER_STEREO_MODE> selectableModes;
for (int i = RENDER_STEREO_MODE_OFF; i < RENDER_STEREO_MODE_COUNT; i++)
{
RENDER_STEREO_MODE selectableMode = static_cast<RENDER_STEREO_MODE>(i);
if (CServiceBroker::GetRenderSystem()->SupportsStereo(selectableMode))
{
selectableModes.push_back(selectableMode);
std::string label = GetLabelForStereoMode((RENDER_STEREO_MODE) i);
pDlgSelect->Add( label );
if (mode == selectableMode)
pDlgSelect->SetSelected( label );
}
// inject AUTO pseudo mode after OFF
if (i == RENDER_STEREO_MODE_OFF)
{
selectableModes.push_back(RENDER_STEREO_MODE_AUTO);
pDlgSelect->Add(GetLabelForStereoMode(RENDER_STEREO_MODE_AUTO));
}
}
pDlgSelect->Open();
int iItem = pDlgSelect->GetSelectedItem();
if (iItem > -1 && pDlgSelect->IsConfirmed())
mode = selectableModes[iItem];
else
mode = GetStereoMode();
return mode;
}
RENDER_STEREO_MODE CStereoscopicsManager::GetStereoModeOfPlayingVideo(void) const
{
RENDER_STEREO_MODE mode = RENDER_STEREO_MODE_OFF;
std::string playerMode = GetVideoStereoMode();
if (!playerMode.empty())
{
int convertedMode = ConvertVideoToGuiStereoMode(playerMode);
if (convertedMode > -1)
mode = static_cast<RENDER_STEREO_MODE>(convertedMode);
}
CLog::Log(LOGDEBUG, "StereoscopicsManager: autodetected stereo mode for movie mode %s is: %s", playerMode.c_str(), ConvertGuiStereoModeToString(mode));
return mode;
}
std::string CStereoscopicsManager::GetLabelForStereoMode(const RENDER_STEREO_MODE &mode) const
{
int msgId;
switch(mode) {
case RENDER_STEREO_MODE_AUTO:
msgId = 36532;
break;
case RENDER_STEREO_MODE_ANAGLYPH_YELLOW_BLUE:
msgId = 36510;
break;
case RENDER_STEREO_MODE_INTERLACED:
msgId = 36507;
break;
case RENDER_STEREO_MODE_CHECKERBOARD:
msgId = 36511;
break;
case RENDER_STEREO_MODE_HARDWAREBASED:
msgId = 36508;
break;
case RENDER_STEREO_MODE_MONO:
msgId = 36509;
break;
default:
msgId = 36502 + mode;
}
return g_localizeStrings.Get(msgId);
}
RENDER_STEREO_MODE CStereoscopicsManager::GetPreferredPlaybackMode(void) const
{
return static_cast<RENDER_STEREO_MODE>(m_settings->GetInt(CSettings::SETTING_VIDEOSCREEN_PREFEREDSTEREOSCOPICMODE));
}
int CStereoscopicsManager::ConvertVideoToGuiStereoMode(const std::string &mode)
{
size_t i = 0;
while (VideoModeToGuiModeMap[i].name)
{
if (mode == VideoModeToGuiModeMap[i].name)
return VideoModeToGuiModeMap[i].mode;
i++;
}
return -1;
}
int CStereoscopicsManager::ConvertStringToGuiStereoMode(const std::string &mode)
{
size_t i = 0;
while (StringToGuiModeMap[i].name)
{
if (mode == StringToGuiModeMap[i].name)
return StringToGuiModeMap[i].mode;
i++;
}
return ConvertVideoToGuiStereoMode(mode);
}
const char* CStereoscopicsManager::ConvertGuiStereoModeToString(const RENDER_STEREO_MODE &mode)
{
size_t i = 0;
while (StringToGuiModeMap[i].name)
{
if (StringToGuiModeMap[i].mode == mode)
return StringToGuiModeMap[i].name;
i++;
}
return "";
}
std::string CStereoscopicsManager::NormalizeStereoMode(const std::string &mode)
{
if (!mode.empty() && mode != "mono")
{
int guiMode = ConvertStringToGuiStereoMode(mode);
if (guiMode > -1)
return ConvertGuiStereoModeToString((RENDER_STEREO_MODE) guiMode);
else
return mode;
}
return "mono";
}
CAction CStereoscopicsManager::ConvertActionCommandToAction(const std::string &command, const std::string ¶meter)
{
std::string cmd = command;
std::string para = parameter;
StringUtils::ToLower(cmd);
StringUtils::ToLower(para);
if (cmd == "setstereomode")
{
int actionId = -1;
if (para == "next")
actionId = ACTION_STEREOMODE_NEXT;
else if (para == "previous")
actionId = ACTION_STEREOMODE_PREVIOUS;
else if (para == "toggle")
actionId = ACTION_STEREOMODE_TOGGLE;
else if (para == "select")
actionId = ACTION_STEREOMODE_SELECT;
else if (para == "tomono")
actionId = ACTION_STEREOMODE_TOMONO;
// already have a valid actionID return it
if (actionId > -1)
return CAction(actionId);
// still no valid action ID, check if parameter is a supported stereomode
if (ConvertStringToGuiStereoMode(para) > -1)
return CAction(ACTION_STEREOMODE_SET, para);
}
return CAction(ACTION_NONE);
}
void CStereoscopicsManager::OnSettingChanged(const std::shared_ptr<const CSetting>& setting)
{
if (setting == NULL)
return;
const std::string &settingId = setting->GetId();
if (settingId == CSettings::SETTING_VIDEOSCREEN_STEREOSCOPICMODE)
{
RENDER_STEREO_MODE mode = GetStereoMode();
CLog::Log(LOGDEBUG, "StereoscopicsManager: stereo mode setting changed to %s", ConvertGuiStereoModeToString(mode));
ApplyStereoMode(mode);
}
}
bool CStereoscopicsManager::OnMessage(CGUIMessage &message)
{
switch (message.GetMessage())
{
case GUI_MSG_PLAYBACK_STOPPED:
case GUI_MSG_PLAYLISTPLAYER_STOPPED:
OnPlaybackStopped();
break;
}
return false;
}
bool CStereoscopicsManager::OnAction(const CAction &action)
{
RENDER_STEREO_MODE mode = GetStereoMode();
if (action.GetID() == ACTION_STEREOMODE_NEXT)
{
SetStereoModeByUser(GetNextSupportedStereoMode(mode));
return true;
}
else if (action.GetID() == ACTION_STEREOMODE_PREVIOUS)
{
SetStereoModeByUser(GetNextSupportedStereoMode(mode, RENDER_STEREO_MODE_COUNT - 1));
return true;
}
else if (action.GetID() == ACTION_STEREOMODE_TOGGLE)
{
if (mode == RENDER_STEREO_MODE_OFF)
{
RENDER_STEREO_MODE targetMode = GetPreferredPlaybackMode();
// if user selected a specific mode before, make sure to
// switch back into that mode on toggle.
if (m_stereoModeSetByUser != RENDER_STEREO_MODE_UNDEFINED)
{
// if user mode is set to OFF, he manually turned it off before. In this case use the last user applied mode
if (m_stereoModeSetByUser != RENDER_STEREO_MODE_OFF)
targetMode = m_stereoModeSetByUser;
else if (m_lastStereoModeSetByUser != RENDER_STEREO_MODE_UNDEFINED && m_lastStereoModeSetByUser != RENDER_STEREO_MODE_OFF)
targetMode = m_lastStereoModeSetByUser;
}
SetStereoModeByUser(targetMode);
}
else
{
SetStereoModeByUser(RENDER_STEREO_MODE_OFF);
}
return true;
}
else if (action.GetID() == ACTION_STEREOMODE_SELECT)
{
SetStereoModeByUser(GetStereoModeByUserChoice());
return true;
}
else if (action.GetID() == ACTION_STEREOMODE_TOMONO)
{
if (mode == RENDER_STEREO_MODE_MONO)
{
RENDER_STEREO_MODE targetMode = GetPreferredPlaybackMode();
// if we have an old userdefined stereomode, use that one as toggle target
if (m_stereoModeSetByUser != RENDER_STEREO_MODE_UNDEFINED)
{
// if user mode is set to OFF, he manually turned it off before. In this case use the last user applied mode
if (m_stereoModeSetByUser != RENDER_STEREO_MODE_OFF && m_stereoModeSetByUser != mode)
targetMode = m_stereoModeSetByUser;
else if (m_lastStereoModeSetByUser != RENDER_STEREO_MODE_UNDEFINED && m_lastStereoModeSetByUser != RENDER_STEREO_MODE_OFF && m_lastStereoModeSetByUser != mode)
targetMode = m_lastStereoModeSetByUser;
}
SetStereoModeByUser(targetMode);
}
else
{
SetStereoModeByUser(RENDER_STEREO_MODE_MONO);
}
return true;
}
else if (action.GetID() == ACTION_STEREOMODE_SET)
{
int stereoMode = ConvertStringToGuiStereoMode(action.GetName());
if (stereoMode > -1)
SetStereoModeByUser(static_cast<RENDER_STEREO_MODE>(stereoMode));
return true;
}
return false;
}
void CStereoscopicsManager::ApplyStereoMode(const RENDER_STEREO_MODE &mode, bool notify)
{
RENDER_STEREO_MODE currentMode = CServiceBroker::GetWinSystem()->GetGfxContext().GetStereoMode();
CLog::Log(LOGDEBUG, "StereoscopicsManager::ApplyStereoMode: trying to apply stereo mode. Current: %s | Target: %s", ConvertGuiStereoModeToString(currentMode), ConvertGuiStereoModeToString(mode));
if (currentMode != mode)
{
CServiceBroker::GetWinSystem()->GetGfxContext().SetStereoMode(mode);
CLog::Log(LOGDEBUG, "StereoscopicsManager: stereo mode changed to %s", ConvertGuiStereoModeToString(mode));
if (notify)
CGUIDialogKaiToast::QueueNotification(CGUIDialogKaiToast::Info, g_localizeStrings.Get(36501), GetLabelForStereoMode(mode));
}
}
std::string CStereoscopicsManager::GetVideoStereoMode() const
{
std::string playerMode;
if (g_application.GetAppPlayer().IsPlaying())
playerMode = CServiceBroker::GetDataCacheCore().GetVideoStereoMode();
return playerMode;
}
bool CStereoscopicsManager::IsVideoStereoscopic() const
{
std::string mode = GetVideoStereoMode();
return !mode.empty() && mode != "mono";
}
void CStereoscopicsManager::OnStreamChange()
{
STEREOSCOPIC_PLAYBACK_MODE playbackMode = static_cast<STEREOSCOPIC_PLAYBACK_MODE>(m_settings->GetInt(CSettings::SETTING_VIDEOPLAYER_STEREOSCOPICPLAYBACKMODE));
RENDER_STEREO_MODE mode = GetStereoMode();
// early return if playback mode should be ignored and we're in no stereoscopic mode right now
if (playbackMode == STEREOSCOPIC_PLAYBACK_MODE_IGNORE && mode == RENDER_STEREO_MODE_OFF)
return;
if (!CStereoscopicsManager::IsVideoStereoscopic())
{
// exit stereo mode if started item is not stereoscopic
// and if user prefers to stop 3D playback when movie is finished
if (mode != RENDER_STEREO_MODE_OFF && m_settings->GetBool(CSettings::SETTING_VIDEOPLAYER_QUITSTEREOMODEONSTOP))
SetStereoMode(RENDER_STEREO_MODE_OFF);
return;
}
// if we're not in stereomode yet, restore previously selected stereo mode in case it was user selected
if (m_stereoModeSetByUser != RENDER_STEREO_MODE_UNDEFINED)
{
SetStereoMode(m_stereoModeSetByUser);
return;
}
RENDER_STEREO_MODE preferred = GetPreferredPlaybackMode();
RENDER_STEREO_MODE playing = GetStereoModeOfPlayingVideo();
if (mode != RENDER_STEREO_MODE_OFF)
{
// don't change mode if user selected to not exit stereomode on playback stop
// users selecting this option usually have to manually switch their TV into 3D mode
// and would be annoyed by having to switch TV modes when next movies comes up
// @todo probably add a new setting for just this behavior
if (m_settings->GetBool(CSettings::SETTING_VIDEOPLAYER_QUITSTEREOMODEONSTOP) == false)
return;
// only change to new stereo mode if not yet in preferred stereo mode
if (mode == preferred || (preferred == RENDER_STEREO_MODE_AUTO && mode == playing))
return;
}
switch (playbackMode)
{
case STEREOSCOPIC_PLAYBACK_MODE_ASK: // Ask
{
CApplicationMessenger::GetInstance().SendMsg(TMSG_MEDIA_PAUSE);
CGUIDialogSelect* pDlgSelect = CServiceBroker::GetGUI()->GetWindowManager().GetWindow<CGUIDialogSelect>(WINDOW_DIALOG_SELECT);
pDlgSelect->Reset();
pDlgSelect->SetHeading(CVariant{g_localizeStrings.Get(36527)});
int idx_playing = -1;
// add choices
int idx_preferred = pDlgSelect->Add(g_localizeStrings.Get(36524) // preferred
+ " ("
+ GetLabelForStereoMode(preferred)
+ ")");
int idx_mono = pDlgSelect->Add(GetLabelForStereoMode(RENDER_STEREO_MODE_MONO)); // mono / 2d
if (playing != RENDER_STEREO_MODE_OFF && playing != preferred && preferred != RENDER_STEREO_MODE_AUTO && CServiceBroker::GetRenderSystem()->SupportsStereo(playing)) // same as movie
idx_playing = pDlgSelect->Add(g_localizeStrings.Get(36532)
+ " ("
+ GetLabelForStereoMode(playing)
+ ")");
int idx_select = pDlgSelect->Add( g_localizeStrings.Get(36531) ); // other / select
pDlgSelect->Open();
if (pDlgSelect->IsConfirmed())
{
int iItem = pDlgSelect->GetSelectedItem();
if (iItem == idx_preferred) mode = preferred;
else if (iItem == idx_mono) mode = RENDER_STEREO_MODE_MONO;
else if (iItem == idx_playing) mode = RENDER_STEREO_MODE_AUTO;
else if (iItem == idx_select) mode = GetStereoModeByUserChoice();
SetStereoModeByUser(mode);
}
CApplicationMessenger::GetInstance().SendMsg(TMSG_MEDIA_UNPAUSE);
}
break;
case STEREOSCOPIC_PLAYBACK_MODE_PREFERRED: // Stereoscopic
SetStereoMode(preferred);
break;
case 2: // Mono
SetStereoMode(RENDER_STEREO_MODE_MONO);
break;
default:
break;
}
}
void CStereoscopicsManager::OnPlaybackStopped(void)
{
RENDER_STEREO_MODE mode = GetStereoMode();
if (m_settings->GetBool(CSettings::SETTING_VIDEOPLAYER_QUITSTEREOMODEONSTOP) && mode != RENDER_STEREO_MODE_OFF)
SetStereoMode(RENDER_STEREO_MODE_OFF);
// reset user modes on playback end to start over new on next playback and not end up in a probably unwanted mode
if (m_stereoModeSetByUser != RENDER_STEREO_MODE_OFF)
m_lastStereoModeSetByUser = m_stereoModeSetByUser;
m_stereoModeSetByUser = RENDER_STEREO_MODE_UNDEFINED;
}
|