summaryrefslogtreecommitdiff
path: root/Plugins/voiceservice/commons.h
blob: ffdb622e40662d4e472b138839a187a121446a74 (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
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
/* 
Copyright (C) 2006 Ricardo Pescuma Domenecci

This is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

This 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
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with this file; see the file license.txt.  If
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  
*/


#ifndef __COMMONS_H__
# define __COMMONS_H__


#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <time.h>
#include <commctrl.h>


// Disable "...truncated to '255' characters in the debug information" warnings
#pragma warning(disable: 4786)

#include <vector>
using namespace std;



// Miranda headers
#define MIRANDA_VER 0x0800
#include <win2k.h>
#include <newpluginapi.h>
#include <m_system.h>
#include <m_system_cpp.h>
#include <m_protocols.h>
#include <m_protosvc.h>
#include <m_clist.h>
#include <m_clui.h>
#include <m_clc.h>
#include <m_contacts.h>
#include <m_langpack.h>
#include <m_database.h>
#include <m_options.h>
#include <m_utils.h>
#include <m_button.h>
#include <m_updater.h>
#include <m_popup.h>
#include <m_cluiframes.h>
#include <m_icolib.h>
#include <m_metacontacts.h>
#include <m_fontservice.h>
#include <m_skin.h>
#include <m_historyevents.h>
#include <portaudio.h>

#include "../utils/mir_memory.h"
#include "../utils/mir_icons.h"
#include "../utils/mir_options.h"
#include "../utils/mir_dbutils.h"
#include "../utils/utf8_helpers.h"

#include "m_voice.h"
#include "m_voiceservice.h"

#include "resource.h"
#include "options.h"
#include "frame.h"
#include "popup.h"


#define MODULE_NAME		"VoiceService"


// Global Variables
extern HINSTANCE hInst;
extern PLUGINLINK *pluginLink;


#define MAX_REGS(_A_) ( sizeof(_A_) / sizeof(_A_[0]) )


#define ACTION_CALL 0
#define ACTION_ANSWER 1
#define ACTION_HOLD 2
#define ACTION_DROP 3

#define NUM_STATES 6
#define NUM_FONTS NUM_STATES

#define AUTO_NOTHING 0
#define AUTO_ACCEPT 1
#define AUTO_DROP 2

extern HFONT fonts[NUM_FONTS];
extern COLORREF font_colors[NUM_FONTS];
extern int font_max_height;
extern COLORREF bkg_color;
extern HBRUSH bk_brush;




class VoiceProvider
{
public:
	TCHAR description[256];
	char name[256];
	char icon[256];
	int flags;
	bool is_protocol;

	VoiceProvider(const char *name, const TCHAR *description, int flags, const char *icon);
	~VoiceProvider();

	bool CanCall(const TCHAR *number);
	bool CanCall(HANDLE hContact, BOOL now = TRUE);
	void Call(HANDLE hContact, const TCHAR *number);

	bool CanHold();

	bool CanSendDTMF();

	HICON GetIcon();
	void ReleaseIcon(HICON hIcon);

private:
	bool canHold;
	HANDLE state_hook;
};


class VoiceCall 
{
public:
	VoiceProvider *module;
	char *id;					// Protocol especific ID for this call
	HANDLE hContact;
	TCHAR name[256];
	TCHAR number[256];
	TCHAR displayName[256];
	int state;
	DWORD end_time;
	bool incoming;
	bool secure;

	VoiceCall(VoiceProvider *module, const char *id);
	~VoiceCall();

	void AppendCallerID(HANDLE hContact, const TCHAR *name, const TCHAR *number);

	void SetState(int state);

	void Drop();
	void Answer();
	void Hold();

	bool CanDrop();
	bool CanAnswer();
	bool CanHold();

	bool CanSendDTMF();
	void SendDTMF(TCHAR c);

	bool IsFinished();

	void Notify(bool history = true, bool popup = true, bool sound = true, bool clist = true);
	void SetNewCallHWND(HWND hwnd);

private:
	HWND hwnd;
	bool clistBlinking;

	void RemoveNotifications();
	void CreateDisplayName();

};


extern OBJLIST<VoiceProvider> modules;
extern OBJLIST<VoiceCall> calls;

void Answer(VoiceCall *call);
bool CanCall(HANDLE hContact, BOOL now = TRUE);
bool CanCall(const TCHAR *number);
bool CanCallNumber();
VoiceCall * GetTalkingCall();
bool IsFinalState(int state);


// See if a protocol service exists
__inline static int ProtoServiceExists(const char *szModule,const char *szService)
{
	char str[MAXMODULELABELLENGTH];
	mir_snprintf(str, MAX_REGS(str), "%s%s", szModule, szService);
	return ServiceExists(str);
}


static TCHAR *lstrtrim(TCHAR *str)
{
	int len = lstrlen(str);

	int i;
	for(i = len - 1; i >= 0 && (str[i] == ' ' || str[i] == '\t'); --i) ;
	if (i < len - 1)
	{
		++i;
		str[i] = _T('\0');
		len = i;
	}

	for(i = 0; i < len && (str[i] == ' ' || str[i] == '\t'); ++i) ;
	if (i > 0)
		memmove(str, &str[i], (len - i + 1) * sizeof(TCHAR));

	return str;
}


static BOOL IsEmptyA(const char *str)
{
	return str == NULL || str[0] == 0;
}

static BOOL IsEmptyW(const WCHAR *str)
{
	return str == NULL || str[0] == 0;
}

#ifdef UNICODE
# define IsEmpty IsEmptyW
#else
# define IsEmpty IsEmptyA
#endif



#define ICON_SIZE 16

#define TIME_TO_SHOW_ENDED_CALL		5000 // ms


#define MS_VOICESERVICE_CLIST_DBLCLK "VoiceService/CList/RingingDblClk"

#define MS_VOICESERVICE_CM_CALL "VoiceService/ContactMenu/Call"
#define MS_VOICESERVICE_CM_ANSWER "VoiceService/ContactMenu/Answer"
#define MS_VOICESERVICE_CM_HOLD "VoiceService/ContactMenu/Hold"
#define MS_VOICESERVICE_CM_DROP "VoiceService/ContactMenu/Drop"



static struct {
	char *name;
	char *description;
} sounds[] = {
	{ "voice_started", "Started talking"},
	{ "voice_ringing", "Ringing"},
	{ "voice_calling", "Calling a contact"},
	{ "voice_holded", "Put a call on Hold"},
	{ "voice_ended", "End of call"},
	{ "voice_busy", "Busy signal"},
	{ "voice_dialpad", "Dialpad press"},
};

static TCHAR *stateTexts[] = {
	_T("Call from %s has started"),
	_T("Call from %s is ringing"),
	_T("Calling %s"),
	_T("Call from %s is on hold"),
	_T("Call from %s has ended"),
	_T("%s is busy"),
};

static TCHAR *popupTitles[] = {
	_T("Voice call started"),
	_T("Voice call ringing"),
	_T("Voice call"),
	_T("Voice call on hold"),
	_T("Voice call ended"),
	_T("Voice call busy"),
};

static TCHAR *stateNames[] = {
	_T("Talking"),
	_T("Ringing"),
	_T("Calling"),
	_T("On Hold"),
	_T("Ended"),
	_T("Busy"),
};

static TCHAR *actionNames[] = {
	_T("Make Voice Call"),
	_T("Answer Voice Call"),
	_T("Hold Voice Call"),
	_T("Drop Voice Call"),
};

static char *stateIcons[] = { 
	"vc_talking", 
	"vc_ringing", 
	"vc_calling", 
	"vc_on_hold", 
	"vc_ended", 
	"vc_busy" 
};

static char *actionIcons[] = {
	"vca_call", 
	"vca_answer" , 
	"vca_hold", 
	"vca_drop",
	"vc_main", 
	"vc_dialpad" 
};

static char *mainIcons[] = { 
	"vc_main", 
	"vc_dialpad",
	"vc_secure"
};




#endif // __COMMONS_H__