-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWatorApp.cpp
executable file
·267 lines (225 loc) · 8.38 KB
/
WatorApp.cpp
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
/*
WorldOfWator
Copyright 2009 Ingo Berg
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 3 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "stdafx.h"
#include <cstdio>
#include <cassert>
#include "wuParameter.h"
#include "WatorApp.h"
#include "WatorDlg.h"
#include "WatorWnd.h"
// multiple monitor support
#define COMPILE_MULTIMON_STUBS
#include <multimon.h>
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
//-------------------------------------------------------------------------------------------
//
// Wator Screensaver (Version 1.01)
// (C) 2005 Ingo Berg
//
// ingo_berg {at} gmx {dot} de
//
//-------------------------------------------------------------------------------------------
BOOL CALLBACK MonitorEnumCallback(HMONITOR a_hMonitor,
HDC a_hdcMonitor,
LPRECT a_lpRect,
LPARAM a_dwData)
{
std::vector<RECT> *pVec = (std::vector<RECT>*)a_dwData;
pVec->push_back(*a_lpRect);
return TRUE;
}
//--------------------------------------------------------------------------
// CWatorSaverApp
BEGIN_MESSAGE_MAP(CWatorSaverApp, CWinApp)
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()
//--------------------------------------------------------------------------
// CWatorSaverApp-Erstellung
CWatorSaverApp::CWatorSaverApp()
:m_hWnd(0)
, m_Mode(smVOID)
, m_vpWator()
, m_iNumScreens(0)
, m_vScreens()
{
}
//--------------------------------------------------------------------------
CWatorSaverApp::~CWatorSaverApp()
{
for (unsigned i = 0; i < m_vpWator.size(); ++i)
{
delete m_vpWator[i];
}
m_vpWator.clear();
// _CrtDumpMemoryLeaks();
}
//--------------------------------------------------------------------------
// Das einzige wahre CWatorSaverApp-Objekt. Kaufen Sie keine billigen
// Fälschungen!
CWatorSaverApp theApp;
//--------------------------------------------------------------------------
// CWatorSaverApp Initialisierung
BOOL CWatorSaverApp::InitInstance()
{
SetRegistryKey(_T("Wator screen saver"));
CWinApp::InitInstance();
BOOL bRet(FALSE);
try
{
switch (SaverInit())
{
case smPREVIEW:
{
ASSERT(m_hWnd);
CRect rect;
CWnd *pParentWin = CWnd::FromHandle(m_hWnd);
pParentWin->GetClientRect(&rect);
// Create the saver window
ASSERT(m_vpWator.size() == 0);
CWatorGL *pWator = new CWatorGL(640, 480);
pWator->Create(NULL,
WS_VISIBLE | WS_CHILD,
rect,
pParentWin,
NULL);
m_vpWator.push_back(pWator);
// Set the application main window
m_pMainWnd = pWator;
bRet = TRUE;
}
break;
// Create the saver window and show the screensaver
case smSAVER:
{
m_iNumScreens = ::GetSystemMetrics(SM_CMONITORS);
BOOL bMultScreen = AfxGetApp()->GetProfileInt(CWatorSaverDlg::m_szConfig,
_T("MultScreen"),
FALSE);
if (!bMultScreen)
{
int w = ::GetSystemMetrics(SM_CXSCREEN),
h = ::GetSystemMetrics(SM_CYSCREEN);
CRect rect(0, 0, w, h);
// Create an insatnce for each screen
CWatorGL *pWator = new CWatorGL;
pWator->Create(rect);
m_vpWator.push_back(pWator);
m_pMainWnd = pWator;
}
else
{
for (int i = 0; i < m_iNumScreens; ++i)
{
// Get the Rectangles for each screen
EnumDisplayMonitors(NULL,
NULL,
MonitorEnumCallback,
(LPARAM)(&m_vScreens));
// Create an insatnce for each screen
CWatorGL *pWator = new CWatorGL;
pWator->Create(m_vScreens[i]);
m_vpWator.push_back(pWator);
m_pMainWnd = pWator;
} // for all screens
}
bRet = TRUE;
}
break;
case smCONFIG:
{
CWatorSaverDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
dlg.StoreConfig();
}
else if (nResponse == IDCANCEL)
{
}
// Da das Dialogfeld geschlossen wurde, FALSE zurückliefern, so dass wir die
// Anwendung verlassen, anstatt das Nachrichtensystem der Anwendung zu starten.
bRet = FALSE;
}
break;
default:
MessageBox(NULL, _T("internal error"), _T("screen saver"), MB_ICONERROR | MB_OK);
bRet = FALSE;
}
}
catch (utils::wruntime_error &e)
{
MessageBox(NULL, e.message().c_str(), _T("screen saver"), MB_ICONERROR | MB_OK);
}
catch (std::exception &)
{
MessageBox(NULL, _T("unexpected exception"), _T("screen saver"), MB_ICONERROR | MB_OK);
}
catch (...)
{
MessageBox(NULL, _T("internal error"), _T("screen saver"), MB_ICONERROR | MB_OK);
}
return bRet;
}
#pragma warning(disable:4312) // reinterpret_cast: Konvertierung von int in größeren Typ "HWND"
//-------------------------------------------------------------------------------------------
CWatorSaverApp::ESaverMode CWatorSaverApp::SaverInit()
{
// Check command line parameters
wu::Parameter ¶m(wu::Parameter::GetInst());
if (param.GetArgc() == 1)
{
m_Mode = smCONFIG;
m_hWnd = NULL;
}
else
{
// Pop up configuration dialog
// Parameters:
// "/C" - GetForegroundWindow() shall be parent
// "/C ####" - decimal interpretation of #### shall be parent
// none - NULL should be the parent
if (param.IsOpt(_T("C")))
{
m_Mode = smCONFIG;
int iVal(0);
if (std::swscanf(param.GetOpt(_T("C")).c_str(), _T("%d"), &iVal) == 1)
{
m_hWnd = reinterpret_cast<HWND>(iVal);
}
}
// Run as a full screen saver
// command line parameter:
// "/S" - run full screen
if (param.IsOpt(_T("S")))
{
m_Mode = smSAVER;
}
// Run a preview
if (param.IsOpt(_T("P"))) // || param.IsOpt("l"))
{
m_Mode = smPREVIEW;
int iVal(0);
if (std::swscanf(param.GetOpt(_T("p")).c_str(), _T("%d"), &iVal) == 1)
m_hWnd = reinterpret_cast<HWND>(iVal);
// ::MessageBox(NULL, GetCommandLine(), NULL, MB_OK);
}
} // if argc!=1
return m_Mode;
}
#pragma warning(default:4312)