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
|
/*
Weather Protocol plugin for Miranda IM
Copyright (C) 2005-2011 Boris Krasnovskiy All Rights Reserved
Copyright (C) 2002-2005 Calvin Che
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; version 2
of the License.
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, see <http://www.gnu.org/licenses/>.
*/
/*
Main file for the Weather Protocol, includes loading, unloading,
upgrading, support for plugin uninsaller, and anything that doesn't
belong to any other file.
*/
#include "weather.h"
//============ GLOBAL VARIABLES ============
WIDATALIST *WIHead;
WIDATALIST *WITail;
HINSTANCE hInst;
HWND hPopupWindow;
HANDLE hHookWeatherUpdated;
HANDLE hHookWeatherError;
static HANDLE hHooks[9];
HANDLE hDataWindowList;
HANDLE hWindowList;
int hLangpack;
HANDLE hUpdateMutex;
unsigned status;
unsigned old_status;
UINT_PTR timerId;
int hLangpack;
MYOPTIONS opt;
// check if weather is currently updating
BOOL ThreadRunning;
// variable to determine if module loaded
BOOL ModuleLoaded;
struct MM_INTERFACE mmi;
struct UTF8_INTERFACE utfi;
PLUGINLINK *pluginLink;
// plugin info
// VER = version, AUTH = author, defined in weather.h
static const PLUGININFOEX pluginInfoEx =
{
sizeof(PLUGININFOEX),
#ifdef _WIN64
"Weather Protocol x64",
#else
"Weather Protocol",
#endif
__VERSION_DWORD,
"Retrieve weather information and display them in your contact list",
AUTH,
"borkra@miranda-im.org",
"(c) 2002-2005 NoName, 2005-2010 Boris Krasnovskiy",
"http://addons.miranda-im.org/details.php?action=viewfile&id=2322",
UNICODE_AWARE,
0,
MIID_WEATHER
};
__declspec(dllexport) const PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
if (mirandaVersion < PLUGIN_MAKE_VERSION(0,8,0,0)) {
MessageBox(NULL, "Weather Protocol requires Miranda 0.8.0.0 or later to run.", "Weather Protocol", MB_OK|MB_ICONERROR|MB_APPLMODAL);
return NULL;
}
// if Miranda version is higher than 0.7.0
else
return &pluginInfoEx;
}
// MirandaPluginInterfaces - returns the protocol interface to the core
static const MUUID interfaces[] = {MIID_PROTOCOL, MIID_LAST};
__declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
{
return interfaces;
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
switch(fdwReason)
{
case DLL_PROCESS_ATTACH:
hInst = hinstDLL;
DisableThreadLibraryCalls(hinstDLL);
break;
}
return TRUE;
}
int WeatherShutdown(WPARAM wParam,LPARAM lParam)
{
KillTimer(NULL, timerId); // kill update timer
SaveOptions(); // save options once more
status = ID_STATUS_OFFLINE; // set status to offline
CallService(MS_NETLIB_SHUTDOWN, (WPARAM)hNetlibHttp, 0);
WindowList_Broadcast(hWindowList, WM_CLOSE, 0, 0);
WindowList_Broadcast(hDataWindowList, WM_CLOSE, 0, 0);
SendMessage(hWndSetup, WM_CLOSE, 0, 0);
return 0;
}
// update some settings/db values for new version
// lastver = dword value for the last version made by PLUGIN_MAKE_VERSION
void Upgrade(DWORD lastver)
{
// for version below v0.3.2.3, remove the "TriggerText" setting
if (lastver < PLUGIN_MAKE_VERSION(0,3,2,3))
DBDeleteContactSetting(NULL, WEATHERPROTONAME, "TriggerText");
if (lastver < PLUGIN_MAKE_VERSION(0,3,3,13))
DBDeleteContactSetting(NULL, "KnownModules", "Weather");
DBWriteContactSettingDword(NULL, WEATHERPROTONAME, "Version", __VERSION_DWORD);
}
// weather protocol initialization function
// run after the event ME_SYSTEM_MODULESLOADED occurs
int WeatherInit(WPARAM wParam,LPARAM lParam)
{
// initialize netlib
NetlibInit();
InitIcons();
InitMwin();
// load weather menu items
AddMenuItems();
// timer for the first update
timerId = SetTimer(NULL, 0, 5000, (TIMERPROC)timerProc2); // first update is 5 sec after load
// weather user detail
hHooks[0] = HookEvent(ME_USERINFO_INITIALISE, UserInfoInit);
hDataWindowList = (HANDLE)CallService(MS_UTILS_ALLOCWINDOWLIST,0,0);
hWindowList = (HANDLE)CallService(MS_UTILS_ALLOCWINDOWLIST,0,0);
return 0;
}
// update some settings/db values for new version, this one is for contact
// lastver = dword value for the last version made by PLUGIN_MAKE_VERSION
// hContact = current contact
void UpgradeContact(DWORD lastver, HANDLE hContact)
{
// for version below v0.3.2.3, suppress online notifications for all weather contacts
if (lastver < PLUGIN_MAKE_VERSION(0,3,2,3))
{
DBWriteContactSettingDword(hContact, "Ignore", "Mask", 8);
DBWriteContactSettingDword(hContact, "Ignore", "Mask1", 8);
}
}
//============ MISC FUNCTIONS ============
// initialize the global variables at startup
void InitVar()
{
// setup the linklist for weather update list
UpdateListTail = NULL;
UpdateListHead = NULL;
// other settings
timerId=0;
opt.DefStn = NULL;
ModuleLoaded = FALSE;
}
// unload function
int __declspec(dllexport) Unload(void)
{
unsigned i;
DestroyMwin();
DestroyWindow(hPopupWindow);
for (i = sizeof(hHooks)/sizeof(HANDLE); i--; )
UnhookEvent(hHooks[i]);
DestroyHookableEvent(hHookWeatherUpdated);
DestroyHookableEvent(hHookWeatherError);
DestroyServices();
NetlibHttpDisconnect();
Netlib_CloseHandle(hNetlibUser);
DestroyUpdateList();
DestroyOptions();
DestroyWIList(); // unload all ini data from memory
CloseHandle(hUpdateMutex);
return 0;
}
int __declspec(dllexport) Load(PLUGINLINK *link)
{
PROTOCOLDESCRIPTOR pd = {0};
char SvcFunc[100];
DWORD lastver;
pluginLink = link;
mir_getMMI(&mmi);
mir_getUTFI(&utfi);
mir_getLP(&pluginInfoEx);
// initialize global variables
InitVar();
InitUniConv();
// load options and set defaults
LoadOptions();
// upgrade check
// I only support version check and upgrade for my own version, so check if the author is my name
if (strstr(AUTH, "NoName") != NULL)
{
lastver = DBGetContactSettingDword(NULL, WEATHERPROTONAME, "Version", PLUGIN_MAKE_VERSION(0,3,1,8));
if (lastver < __VERSION_DWORD) Upgrade(lastver);
}
else // if it is not my build, ignore upgrade procedure
lastver = PLUGIN_MAKE_VERSION(255,255,255,255);
// reset the weather data at startup for individual contacts
EraseAllInfo(lastver);
// load weather update data
LoadWIData(TRUE);
// set status to online if "Do not display weather condition as protocol status" is enabled
old_status = status = ID_STATUS_OFFLINE;
// add an event on weather update and error
hHookWeatherUpdated = CreateHookableEvent(ME_WEATHER_UPDATED);
hHookWeatherError = CreateHookableEvent(ME_WEATHER_ERROR);
// initialize options and network
hHooks[1] = HookEvent(ME_OPT_INITIALISE, OptInit);
hHooks[2] = HookEvent(ME_SYSTEM_MODULESLOADED, WeatherInit);
hHooks[3] = HookEvent(ME_DB_CONTACT_DELETED, ContactDeleted);
hHooks[4] = HookEvent(ME_CLIST_DOUBLECLICKED, BriefInfo);
hHooks[5] = HookEvent(ME_WEATHER_UPDATED, WeatherPopup);
hHooks[6] = HookEvent(ME_WEATHER_ERROR, WeatherError);
hHooks[7] = HookEvent(ME_SYSTEM_PRESHUTDOWN, WeatherShutdown);
hHooks[8] = HookEvent(ME_CLIST_PREBUILDCONTACTMENU, BuildContactMenu);
hUpdateMutex = CreateMutex(NULL, FALSE, NULL);
// register weather protocol
pd.cbSize = sizeof(pd);
pd.szName = WEATHERPROTONAME;
pd.type = PROTOTYPE_PROTOCOL;
CallService(MS_PROTO_REGISTERMODULE,0,(LPARAM)&pd);
// initialize weather protocol services
InitServices();
// add our modules to the KnownModules list
DBWriteContactSettingString(NULL, "KnownModules", "Weather Protocol", "Weather,WeatherCondition,Current");
// add sound event
SkinAddNewSound("weatherupdated", Translate("Weather Condition Changed"), "");
SkinAddNewSound("weatheralert", Translate("Weather Alert Issued"), "");
// window needed for popup commands
strcpy(SvcFunc, WEATHERPROTONAME);
strcat(SvcFunc, "_PopupWindow");
hPopupWindow = CreateWindowEx(WS_EX_TOOLWINDOW,"static",SvcFunc,0,CW_USEDEFAULT,CW_USEDEFAULT,
CW_USEDEFAULT,CW_USEDEFAULT,HWND_DESKTOP,NULL,hInst,NULL);
SetWindowLongPtr(hPopupWindow, GWLP_WNDPROC, (LONG_PTR)PopupWndProc);
return 0;
}
|