blob: de8bb33c80d4b03d51596084b78493fbdc98e95b (
plain)
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
|
/*
* Copyright (C) 2017-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "DiscSettings.h"
#include "Settings.h"
#include "dialogs/GUIDialogKaiToast.h"
#include "lib/Setting.h"
#include "messaging/helpers/DialogOKHelper.h"
#include "utils/Variant.h"
#include "utils/log.h"
#include <string>
#include <libbluray/bluray-version.h>
#include <libbluray/bluray.h>
using namespace KODI::MESSAGING;
CDiscSettings& CDiscSettings::GetInstance()
{
static CDiscSettings sDiscSettings;
return sDiscSettings;
}
void CDiscSettings::OnSettingChanged(const std::shared_ptr<const CSetting>& setting)
{
#if (BLURAY_VERSION >= BLURAY_VERSION_CODE(1,0,1))
if (setting == NULL)
return;
const std::string &settingId = setting->GetId();
if (settingId == CSettings::SETTING_DISC_PLAYBACK)
{
int mode = std::static_pointer_cast<const CSettingInt>(setting)->GetValue();
if (mode == BD_PLAYBACK_DISC_MENU)
{
bool bdjWorking = false;
BLURAY* bd = bd_init();
const BLURAY_DISC_INFO* info = bd_get_disc_info(bd);
if (!info->libjvm_detected)
CLog::Log(LOGDEBUG, "DiscSettings - Could not load the java vm.");
else if (!info->bdj_handled)
CLog::Log(LOGDEBUG, "DiscSettings - Could not load the libbluray.jar.");
else
bdjWorking = true;
bd_close(bd);
if (!bdjWorking)
HELPERS::ShowOKDialogText(CVariant{ 29803 }, CVariant{ 29804 });
}
}
#endif
}
|