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
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* 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, 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 XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "ScreenSaver.h"
#include "guilib/GraphicContext.h"
#include "interfaces/generic/ScriptInvocationManager.h"
#include "settings/DisplaySettings.h"
#include "utils/AlarmClock.h"
#include "windowing/WindowingFactory.h"
// What sound does a python screensaver make?
#define SCRIPT_ALARM "sssssscreensaver"
#define SCRIPT_TIMEOUT 5 // seconds
namespace ADDON
{
CScreenSaver::CScreenSaver(const char *addonID)
: ADDON::CAddonDll<DllScreenSaver, ScreenSaver, SCR_PROPS>(AddonProps(addonID, ADDON_UNKNOWN, "", ""))
{
}
AddonPtr CScreenSaver::Clone() const
{
// Copy constructor is generated by compiler and calls parent copy constructor
return AddonPtr(new CScreenSaver(*this));
}
bool CScreenSaver::CreateScreenSaver()
{
if (CScriptInvocationManager::Get().HasLanguageInvoker(LibPath()))
{
// Don't allow a previously-scheduled alarm to kill our new screensaver
g_alarmClock.Stop(SCRIPT_ALARM, true);
if (!CScriptInvocationManager::Get().Stop(LibPath()))
CScriptInvocationManager::Get().ExecuteAsync(LibPath(), Clone());
return true;
}
// pass it the screen width,height
// and the name of the screensaver
int iWidth = g_graphicsContext.GetWidth();
int iHeight = g_graphicsContext.GetHeight();
m_pInfo = new SCR_PROPS;
#ifdef HAS_DX
m_pInfo->device = g_Windowing.Get3DDevice();
#else
m_pInfo->device = NULL;
#endif
m_pInfo->x = 0;
m_pInfo->y = 0;
m_pInfo->width = iWidth;
m_pInfo->height = iHeight;
m_pInfo->pixelRatio = g_graphicsContext.GetResInfo().fPixelRatio;
m_pInfo->name = strdup(Name().c_str());
m_pInfo->presets = strdup(CSpecialProtocol::TranslatePath(Path()).c_str());
m_pInfo->profile = strdup(CSpecialProtocol::TranslatePath(Profile()).c_str());
if (CAddonDll<DllScreenSaver, ScreenSaver, SCR_PROPS>::Create() == ADDON_STATUS_OK)
return true;
return false;
}
void CScreenSaver::Start()
{
// notify screen saver that they should start
if (Initialized()) m_pStruct->Start();
}
void CScreenSaver::Render()
{
// ask screensaver to render itself
if (Initialized()) m_pStruct->Render();
}
void CScreenSaver::GetInfo(SCR_INFO *info)
{
// get info from screensaver
if (Initialized()) m_pStruct->GetInfo(info);
}
void CScreenSaver::Destroy()
{
#ifdef HAS_PYTHON
if (URIUtils::HasExtension(LibPath(), ".py"))
{
g_alarmClock.Start(SCRIPT_ALARM, SCRIPT_TIMEOUT, "StopScript(" + LibPath() + ")", true, false);
return;
}
#endif
// Release what was allocated in method CScreenSaver::CreateScreenSaver.
if (m_pInfo)
{
free((void *) m_pInfo->name);
free((void *) m_pInfo->presets);
free((void *) m_pInfo->profile);
delete m_pInfo;
m_pInfo = NULL;
}
CAddonDll<DllScreenSaver, ScreenSaver, SCR_PROPS>::Destroy();
}
} /*namespace ADDON*/
|