summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM/chat/message.cpp
blob: 0a7f56b594e4da4ce81e3f7f28c955fbf2ee9b50 (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
338
339
340
341
/*
astyle --force-indent=tab=4 --brackets=linux --indent-switches
		--pad=oper --one-line=keep-blocks  --unpad=paren

Chat module plugin for Miranda IM

Copyright (C) 2003 Jörgen Persson

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
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

$Id: message.c 10402 2009-07-24 00:35:21Z silvercircle $
*/

#include "../src/commonheaders.h"
#include <math.h>

static int RTFColorToIndex(int *pIndex, int iCol, SESSION_INFO* si)
{
	int i;
	MODULEINFO * pMod = MM_FindModule(si->pszModule);

	for (i = 0; i < pMod->nColorCount ; i++)
		if (pIndex[i] == iCol)
			return i;

	return -1;
}

static void CreateColorMap(char* Text, int *pIndex, SESSION_INFO* si)
{
	char *p1, *p2, *pEnd;
	int iIndex = 1;

	static const char* lpszFmt = "\\red%[^ \x5b\\]\\green%[^ \x5b\\]\\blue%[^ \x5b;];";
	char szRed[10], szGreen[10], szBlue[10];

	p1 = strstr(Text, "\\colortbl");
	if (!p1)
		return;

	pEnd = strchr(p1, '}');
	p2 = strstr(p1, "\\red");

	while (p2 && p2 < pEnd) {
		if (sscanf(p2, lpszFmt, &szRed, &szGreen, &szBlue) > 0) {
			int i;
			MODULEINFO * pMod = MM_FindModule(si->pszModule);
			for (i = 0; i < pMod->nColorCount ; i ++)
				if (pMod->crColors[i] == RGB(atoi(szRed), atoi(szGreen), atoi(szBlue)))
					pIndex[i] = iIndex;
		}
		iIndex++;
		p1 = p2;
		p1 ++;
		p2 = strstr(p1, "\\red");
	}
}

static int ReadInteger(const char* p, int* result)
{
	char temp[10];
	int i = 0;
	while (isdigit(*p) && i < 9)
		temp[i++] = *p++;
	temp[i] = 0;

	if (result != NULL)
		*result = atoi(temp);

	return i;
}

TCHAR* Chat_DoRtfToTags(char* pszText, SESSION_INFO* si)
{
	char *p1;
	int*  pIndex;
	int i, iRemoveChars, cp = CP_ACP;
	char InsertThis[50];
	BOOL bJustRemovedRTF = TRUE;
	BOOL bTextHasStarted = FALSE;
	TCHAR *ptszResult; //, *d;
	int iUcMode = 0;

	if (!pszText)
		return FALSE;

	// create an index of colors in the module and map them to
	// corresponding colors in the RTF color table
	pIndex = (int *)mir_alloc(sizeof(int) * MM_FindModule(si->pszModule)->nColorCount);
	for (i = 0; i < MM_FindModule(si->pszModule)->nColorCount ; i++)
		pIndex[i] = -1;

	CreateColorMap(pszText, pIndex, si);

	// scan the file for rtf commands and remove or parse them
	p1 = strstr(pszText, "\\pard");
	if (p1 == NULL) {
		mir_free(pIndex);
		return FALSE;
	}

	p1 += 5;

	MoveMemory(pszText, p1, lstrlenA(p1) + 1);
	p1 = pszText;

	// iterate through all characters, if rtf control character found then take action
	while (*p1 != '\0') {
		InsertThis[0] = 0;
		iRemoveChars = 0;

		switch (*p1) {
			case '\\':
				if (!memcmp(p1, "\\cf", 3)) {   // foreground color
					int iCol, iInd;
					iRemoveChars = 3 + ReadInteger(p1 + 3, &iCol);
					iInd = RTFColorToIndex(pIndex, iCol, si);
					bJustRemovedRTF = TRUE;

					if (bTextHasStarted || iInd >= 0)
						mir_snprintf(InsertThis, SIZEOF(InsertThis), (iInd >= 0) ? "%%c%02u" : "%%C", iInd);
				} else if (!memcmp(p1, "\\highlight", 10)) {  //background color
					int iCol, iInd;
					iRemoveChars = 10 + ReadInteger(p1 + 10, &iCol);
					iInd = RTFColorToIndex(pIndex, iCol, si);
					bJustRemovedRTF = TRUE;

					if (bTextHasStarted || iInd >= 0)
						mir_snprintf(InsertThis, SIZEOF(InsertThis), (iInd >= 0) ? "%%f%02u" : "%%F", iInd);
				} else if (!memcmp(p1, "\\lang", 5)) {  // language id
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iRemoveChars = 5 + ReadInteger(p1 + 5, NULL);
				} else if (!memcmp(p1, "\\par", 4)) {  // newline
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iRemoveChars = 4;
					strcpy(InsertThis, "\n");
				} else if (!memcmp(p1, "\\endash", 7)) {
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iRemoveChars = 7;
					strcpy(InsertThis, "\xE2\x80\x93");
				} else if (!memcmp(p1, "\\emdash", 7)) {
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iRemoveChars = 7;
					strcpy(InsertThis, "\xE2\x80\x94");
				} else if (!memcmp(p1, "\\bullet", 7)) {
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iRemoveChars = 7;
					strcpy(InsertThis, "\xE2\x80\xA2");
				} else if (!memcmp(p1, "\\line", 5)) {  // newline
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iRemoveChars = 5;
					strcpy(InsertThis, "\n");
				} else if (!memcmp(p1, "\\b", 2)) {  //bold
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iRemoveChars = (p1[2] != '0') ? 2 : 3;
					strcpy(InsertThis, (p1[2] != '0') ? "%b" : "%B");
				} else if (!memcmp(p1, "\\i", 2)) {  // italics
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iRemoveChars = (p1[2] != '0') ? 2 : 3;
					strcpy(InsertThis, (p1[2] != '0') ? "%i" : "%I");
				} else if (!memcmp(p1, "\\uc", 3)) {  // number of Unicode chars
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iUcMode = p1[3] - '0';
					iRemoveChars = 4;
				} else if (!memcmp(p1, "\\ul", 3)) {  // underlined
					bTextHasStarted = bJustRemovedRTF = TRUE;
					if (p1[3] == 'n')
						iRemoveChars = 7;
					else if (p1[3] == '0')
						iRemoveChars = 4;
					else
						iRemoveChars = 3;
					mir_snprintf(InsertThis, SIZEOF(InsertThis), (p1[3] != '0' && p1[3] != 'n') ? "%%u" : "%%U");
				} else if (p1[1] == 'f' && isdigit(p1[2])) {   // unicode char
					bTextHasStarted = bJustRemovedRTF = TRUE;
					iRemoveChars = 2 + ReadInteger(p1 + 2, NULL);
				} else if (p1[1] == '\\' ||  p1[1] == '{' || p1[1] == '}') {  // escaped characters
					bTextHasStarted = TRUE;
					bJustRemovedRTF = FALSE;
					iRemoveChars = 2;
					mir_snprintf(InsertThis, SIZEOF(InsertThis), "%c", p1[1]);
				} else if (p1[1] == '~') {  // non-breaking space
					bTextHasStarted = TRUE;
					bJustRemovedRTF = FALSE;
					iRemoveChars = 2;
					strcpy(InsertThis, "\xC2\xA0");
				}


				else if (!memcmp(p1, "\\tab",4)) { // tab
					bTextHasStarted = TRUE;
					bJustRemovedRTF = TRUE;
					iRemoveChars = 4;
					strcpy(InsertThis, "\x09");
				}
				else if (!memcmp(p1, "\\ldblquote",10)) {
					bTextHasStarted = TRUE;
					bJustRemovedRTF = TRUE;
					iRemoveChars = 10;
					strcpy(InsertThis, "\xe2\x80\x9c");
				}
				else if (!memcmp(p1, "\\rdblquote",10)) {
					bTextHasStarted = TRUE;
					bJustRemovedRTF = TRUE;
					iRemoveChars = 10;
					strcpy(InsertThis, "\xe2\x80\x9d");
				}
				else if (!memcmp(p1, "\\lquote",7)) {
					bTextHasStarted = TRUE;
					bJustRemovedRTF = TRUE;
					iRemoveChars = 7;
					strcpy(InsertThis, "\xE2\x80\x98");
				}
				else if (!memcmp(p1, "\\rquote",7)) {
					bTextHasStarted = TRUE;
					bJustRemovedRTF = TRUE;
					iRemoveChars = 7;
					strcpy(InsertThis, "\xE2\x80\x99");
				}

				 else if (p1[1] == '\'') {  // special character
					char tmp[4], *p3 = tmp;
					bTextHasStarted = TRUE;
					bJustRemovedRTF = FALSE;
					if (p1[2] != ' ' && p1[2] != '\\') {
						*p3++ = p1[2];
						iRemoveChars = 3;
						if (p1[3] != ' ' && p1[3] != '\\') {
							*p3++ = p1[3];
							iRemoveChars++;
						}
						*p3 = 0;
						sscanf(tmp, "%x", InsertThis);

						InsertThis[1] = 0;
					} else iRemoveChars = 2;
				} else if (bJustRemovedRTF) {  // remove unknown RTF command
					int j = 1;
					bJustRemovedRTF = TRUE;
					while (p1[j] != ' ' && p1[j] != '\\' && p1[j] != '\0')
						j++;
					iRemoveChars = j;
				}
				break;

			case '{': // other RTF control characters
			case '}':
				iRemoveChars = 1;
				break;

			case '\r': case '\n':
				bTextHasStarted = TRUE;
				bJustRemovedRTF = FALSE;
				iRemoveChars = 1;
				break;

			case '%': // escape chat -> protocol control character
				bTextHasStarted = TRUE;
				bJustRemovedRTF = FALSE;
				iRemoveChars = 1;
				strcpy(InsertThis, "%%");
				break;
			case ' ': // remove spaces following a RTF command
				if (bJustRemovedRTF)
					iRemoveChars = 1;
				bJustRemovedRTF = FALSE;
				bTextHasStarted = TRUE;
				break;

			default: // other text that should not be touched
				bTextHasStarted = TRUE;
				bJustRemovedRTF = FALSE;
				break;
		}

		// move the memory and paste in new commands instead of the old RTF
		if (InsertThis[0] || iRemoveChars) {
			MoveMemory(p1 + lstrlenA(InsertThis) , p1 + iRemoveChars, lstrlenA(p1) - iRemoveChars + 1);
			CopyMemory(p1, InsertThis, lstrlenA(InsertThis));
			p1 += lstrlenA(InsertThis);
		} else p1++;
	}

	mir_free(pIndex);
	ptszResult = M->utf8_decodeW(pszText);
	return ptszResult;
}

static DWORD CALLBACK Chat_Message_StreamCallback(DWORD_PTR dwCookie, LPBYTE pbBuff, LONG cb, LONG * pcb)
{
	static DWORD dwRead;
	char ** ppText = (char **) dwCookie;

	if (*ppText == NULL) {
		*ppText = (char *)mir_alloc(cb + 1);
		memcpy(*ppText, pbBuff, cb);
		(*ppText)[cb] = 0;
		*pcb = cb;
		dwRead = cb;
	} else {
		char  *p = (char *)mir_alloc(dwRead + cb + 1);
		memcpy(p, *ppText, dwRead);
		memcpy(p + dwRead, pbBuff, cb);
		p[dwRead + cb] = 0;
		mir_free(*ppText);
		*ppText = p;
		*pcb = cb;
		dwRead += cb;
	}
	return 0;
}

char* Chat_Message_GetFromStream(HWND hwndDlg, SESSION_INFO* si)
{
	EDITSTREAM stream;
	char* pszText = NULL;
	DWORD dwFlags;

	if (hwndDlg == 0 || si == 0)
		return NULL;

	ZeroMemory(&stream, sizeof(stream));
	stream.pfnCallback = Chat_Message_StreamCallback;
	stream.dwCookie = (DWORD_PTR) & pszText; // pass pointer to pointer

	dwFlags = SF_RTFNOOBJS | SFF_PLAINRTF | SF_USECODEPAGE | (CP_UTF8 << 16);
	SendMessage(GetDlgItem(hwndDlg, IDC_CHAT_MESSAGE), EM_STREAMOUT, dwFlags, (LPARAM) & stream);
	return pszText; // pszText contains the text
}