-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathISFPRadarScreen.cpp
More file actions
232 lines (187 loc) · 5.83 KB
/
Copy pathISFPRadarScreen.cpp
File metadata and controls
232 lines (187 loc) · 5.83 KB
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
#include "pch.h"
#include "ISFPRadarScreen.h"
#include "CESPlugIn.h"
#include <string>
extern CESPlugIn* pMyPlugIn;
static ULONG_PTR g_gdiPlusToken = 0;
static bool g_bGdiPlusStarted = false;
CISFPRadarScreen::CISFPRadarScreen(void)
: m_hBrush(NULL)
, m_nOpacity(100)
, m_bHasImage(false)
{
m_wszImagePath[0] = 0;
if (!g_bGdiPlusStarted)
{
Gdiplus::GdiplusStartupInput si;
si.GdiplusVersion = 1;
si.SuppressBackgroundThread = TRUE;
Gdiplus::GdiplusStartup(&g_gdiPlusToken, &si, NULL);
g_bGdiPlusStarted = true;
}
if (pMyPlugIn)
pMyPlugIn->RegisterScreen(this);
}
CISFPRadarScreen::~CISFPRadarScreen(void)
{
if (pMyPlugIn)
pMyPlugIn->UnregisterScreen(this);
ClearBackgroundImage();
}
void CISFPRadarScreen::OnRefresh(HDC hDC, int Phase)
{
if (Phase == REFRESH_PHASE_BACK_BITMAP && m_bHasImage && m_hBrush)
{
RECT rc = GetRadarArea();
FillRect(hDC, &rc, m_hBrush);
}
if (Phase == REFRESH_PHASE_AFTER_LISTS)
{
RECT radarArea = GetRadarArea();
RECT watermarkArea;
watermarkArea.left = radarArea.right - 400;
watermarkArea.top = radarArea.bottom - 130;
watermarkArea.right = radarArea.right - 120;
watermarkArea.bottom = radarArea.bottom - 80;
COLORREF oldTextColor = SetTextColor(hDC, RGB(200, 200, 200));
int oldBkMode = SetBkMode(hDC, TRANSPARENT);
HFONT hFont = CreateFontA(
20, 0, 0, 0, FW_BOLD, FALSE, FALSE, FALSE,
DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
DEFAULT_QUALITY, DEFAULT_PITCH | FF_SWISS, "Arial");
HFONT oldFont = (HFONT)SelectObject(hDC, hFont);
DrawTextA(hDC, "ISFP-eLink", -1, &watermarkArea, DT_RIGHT | DT_TOP | DT_SINGLELINE);
RECT line2Area = watermarkArea;
line2Area.top += 24;
line2Area.bottom += 24;
DrawTextA(hDC, "Powered by ISFP", -1, &line2Area, DT_RIGHT | DT_TOP | DT_SINGLELINE);
SelectObject(hDC, oldFont);
DeleteObject(hFont);
SetBkMode(hDC, oldBkMode);
SetTextColor(hDC, oldTextColor);
}
}
void CISFPRadarScreen::OnAsrContentToBeClosed(void)
{
delete this;
}
void CISFPRadarScreen::RegenerateBrush()
{
if (m_hBrush)
{
DeleteObject(m_hBrush);
m_hBrush = NULL;
}
m_bHasImage = false;
if (m_wszImagePath[0] == 0)
return;
Gdiplus::Bitmap gdiBmp(m_wszImagePath);
if (gdiBmp.GetLastStatus() != Gdiplus::Ok)
return;
UINT sw = gdiBmp.GetWidth();
UINT sh = gdiBmp.GetHeight();
if (sw == 0 || sh == 0)
return;
Gdiplus::BitmapData bd;
Gdiplus::Rect bdRc(0, 0, sw, sh);
if (gdiBmp.LockBits(&bdRc, Gdiplus::ImageLockModeRead, PixelFormat32bppARGB, &bd) != Gdiplus::Ok)
return;
RECT radarArea = GetRadarArea();
int nDstW = radarArea.right - radarArea.left;
int nDstH = radarArea.bottom - radarArea.top;
if (nDstW <= 0 || nDstH <= 0)
{
gdiBmp.UnlockBits(&bd);
return;
}
float fOp = m_nOpacity / 100.0f;
BYTE* pSrc = (BYTE*)bd.Scan0;
int nSrcStride = bd.Stride;
BITMAPINFO bmi = {};
bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
bmi.bmiHeader.biWidth = nDstW;
bmi.bmiHeader.biHeight = -nDstH;
bmi.bmiHeader.biPlanes = 1;
bmi.bmiHeader.biBitCount = 24;
bmi.bmiHeader.biCompression = BI_RGB;
void* pDstBits = NULL;
HDC hdcScreen = GetDC(NULL);
HBITMAP hDib = CreateDIBSection(hdcScreen, &bmi, DIB_RGB_COLORS, &pDstBits, NULL, 0);
ReleaseDC(NULL, hdcScreen);
if (!hDib || !pDstBits)
{
gdiBmp.UnlockBits(&bd);
return;
}
BYTE* pDst = (BYTE*)pDstBits;
int nDstStride = ((nDstW * 3 + 3) / 4) * 4;
for (int y = 0; y < nDstH; y++)
{
int srcY = y * (int)sh / nDstH;
if (srcY >= (int)sh) srcY = (int)sh - 1;
BYTE* pSrcRow = pSrc + srcY * nSrcStride;
BYTE* pDstRow = pDst + y * nDstStride;
for (int x = 0; x < nDstW; x++)
{
int srcX = x * (int)sw / nDstW;
if (srcX >= (int)sw) srcX = (int)sw - 1;
BYTE* pSrcPx = pSrcRow + srcX * 4;
pDstRow[x * 3 + 0] = (BYTE)(pSrcPx[0] * fOp);
pDstRow[x * 3 + 1] = (BYTE)(pSrcPx[1] * fOp);
pDstRow[x * 3 + 2] = (BYTE)(pSrcPx[2] * fOp);
}
}
gdiBmp.UnlockBits(&bd);
m_hBrush = CreatePatternBrush(hDib);
DeleteObject(hDib);
if (!m_hBrush)
return;
m_bHasImage = true;
}
void CISFPRadarScreen::SetBackgroundImage(const wchar_t* lpszPath)
{
if (!lpszPath || lpszPath[0] == 0)
return;
wcscpy_s(m_wszImagePath, MAX_PATH, lpszPath);
RegenerateBrush();
if (pMyPlugIn)
{
char szMsg[256];
if (m_bHasImage)
sprintf_s(szMsg, sizeof(szMsg), "Image loaded, opacity=%d%% (PatternBrush)", m_nOpacity);
else
sprintf_s(szMsg, sizeof(szMsg), "Failed to create pattern brush");
pMyPlugIn->DisplayUserMessage("ISFP-eLink", "Background", szMsg, 1, 0, 0, 0, 0);
}
CPosition ld, ru;
GetDisplayArea(&ld, &ru);
SetDisplayArea(ld, ru);
RequestRefresh();
}
void CISFPRadarScreen::SetBackgroundOpacity(int nOpacity)
{
if (nOpacity < 0) nOpacity = 0;
if (nOpacity > 100) nOpacity = 100;
m_nOpacity = nOpacity;
RegenerateBrush();
if (pMyPlugIn)
{
char szMsg[128];
sprintf_s(szMsg, sizeof(szMsg), "Opacity set to %d%%", m_nOpacity);
pMyPlugIn->DisplayUserMessage("ISFP-eLink", "Background", szMsg, 1, 0, 0, 0, 0);
}
CPosition ld, ru;
GetDisplayArea(&ld, &ru);
SetDisplayArea(ld, ru);
RequestRefresh();
}
void CISFPRadarScreen::ClearBackgroundImage()
{
if (m_hBrush)
{
DeleteObject(m_hBrush);
m_hBrush = NULL;
}
m_bHasImage = false;
m_wszImagePath[0] = 0;
}