363bebdf9800026997bd2cda103711419425d7bf
[xboard.git] / winboard / wchat.c
1 /*\r
2  * Chat window (PV)\r
3  *\r
4  * Author: H.G.Muller (August 2009)\r
5  *\r
6  * ------------------------------------------------------------------------\r
7  *\r
8  * GNU XBoard is free software: you can redistribute it and/or modify\r
9  * it under the terms of the GNU General Public License as published by\r
10  * the Free Software Foundation, either version 3 of the License, or (at\r
11  * your option) any later version.\r
12  *\r
13  * GNU XBoard is distributed in the hope that it will be useful, but\r
14  * WITHOUT ANY WARRANTY; without even the implied warranty of\r
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
16  * General Public License for more details.\r
17  *\r
18  * You should have received a copy of the GNU General Public License\r
19  * along with this program. If not, see http://www.gnu.org/licenses/.  *\r
20  *\r
21  *------------------------------------------------------------------------\r
22  ** See the file ChangeLog for a revision history.  */\r
23 \r
24 #include "config.h"\r
25 \r
26 #include <windows.h> /* required for all Windows applications */\r
27 #include <richedit.h>\r
28 #include <stdio.h>\r
29 #include <stdlib.h>\r
30 #include <malloc.h>\r
31 #include <commdlg.h>\r
32 #include <dlgs.h>\r
33 \r
34 #include "common.h"\r
35 #include "frontend.h"\r
36 #include "winboard.h"\r
37 #include "backend.h"\r
38 \r
39 #include "wsnap.h"\r
40 \r
41 int chatCount;\r
42 extern char chatPartner[MAX_CHAT][MSG_SIZ];\r
43 HANDLE chatHandle[MAX_CHAT];\r
44 \r
45 void SendToICS P((char *s));\r
46 void ChatPopUp();\r
47 void ChatPopDown();\r
48 \r
49 /* Imports from backend.c */\r
50 extern int opponentKibitzes;\r
51 \r
52 /* Imports from winboard.c */\r
53 extern HWND ChatDialog;\r
54 \r
55 extern HINSTANCE hInst;\r
56 extern HWND hwndMain;\r
57 \r
58 extern WindowPlacement wpChat[MAX_CHAT];\r
59 \r
60 extern BoardSize boardSize;\r
61 \r
62 /* Module variables */\r
63 #define H_MARGIN            5\r
64 #define V_MARGIN            5\r
65 \r
66 // front end, although we might make GetWindowRect front end instead\r
67 static int GetControlWidth( HWND hDlg, int id )\r
68 {\r
69     RECT rc;\r
70 \r
71     GetWindowRect( GetDlgItem( hDlg, id ), &rc );\r
72 \r
73     return rc.right - rc.left;\r
74 }\r
75 \r
76 // front end?\r
77 static int GetControlHeight( HWND hDlg, int id )\r
78 {\r
79     RECT rc;\r
80 \r
81     GetWindowRect( GetDlgItem( hDlg, id ), &rc );\r
82 \r
83     return rc.bottom - rc.top;\r
84 }\r
85 \r
86 static void SetControlPos( HWND hDlg, int id, int x, int y, int width, int height )\r
87 {\r
88     HWND hControl = GetDlgItem( hDlg, id );\r
89 \r
90     SetWindowPos( hControl, HWND_TOP, x, y, width, height, SWP_NOZORDER );\r
91 }\r
92 \r
93 // Also here some of the size calculations should go to the back end, and their actual application to a front-end routine\r
94 static void ResizeWindowControls( HWND hDlg )\r
95 {\r
96     RECT rc;\r
97     int clientWidth;\r
98     int clientHeight;\r
99     int maxControlWidth;\r
100     int buttonWidth, buttonHeight;\r
101 \r
102     /* Initialize variables */\r
103     GetClientRect( hDlg, &rc );\r
104 \r
105     clientWidth = rc.right - rc.left;\r
106     clientHeight = rc.bottom - rc.top;\r
107 \r
108     maxControlWidth = clientWidth - 2*H_MARGIN;\r
109     buttonWidth  = GetControlWidth(hDlg, IDC_Send);\r
110     buttonHeight = GetControlHeight(hDlg, IDC_Send);\r
111 \r
112     /* Resize controls */\r
113     SetControlPos( hDlg, IDC_Clear, maxControlWidth+H_MARGIN-2*buttonWidth-5, V_MARGIN, buttonWidth, buttonHeight );\r
114     SetControlPos( hDlg, IDC_Send, maxControlWidth+H_MARGIN-buttonWidth, V_MARGIN, buttonWidth, buttonHeight );\r
115     SetControlPos( hDlg, IDC_ChatMemo, H_MARGIN, 2*V_MARGIN+buttonHeight, maxControlWidth, clientHeight-3*V_MARGIN-2*buttonHeight );\r
116     SetControlPos( hDlg, OPT_ChatInput, H_MARGIN, clientHeight-V_MARGIN-buttonHeight, maxControlWidth, buttonHeight );\r
117 \r
118 //    InvalidateRect( GetDlgItem(hDlg,IDC_EngineMemo1), NULL, FALSE );\r
119 //    InvalidateRect( GetDlgItem(hDlg,IDC_EngineMemo2), NULL, FALSE );\r
120 }\r
121 \r
122 // front end. Actual printing of PV lines into the output field\r
123 static void InsertIntoMemo( HANDLE hDlg, char * text )\r
124 {\r
125     HANDLE hMemo = GetDlgItem(hDlg, IDC_ChatMemo);\r
126 \r
127     SendMessage( hMemo, EM_SETSEL, 1000000, 1000000 );\r
128 \r
129     SendMessage( hMemo, EM_REPLACESEL, (WPARAM) FALSE, (LPARAM) text );\r
130     SendMessage( hMemo, EM_SCROLLCARET, 0, 0);\r
131 }\r
132 \r
133 // This seems pure front end\r
134 LRESULT CALLBACK ChatProc( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam )\r
135 {\r
136     static SnapData sd;\r
137     char buf[MSG_SIZ], mess[MSG_SIZ];\r
138     int partner = -1, i;\r
139 \r
140     for(i=0; i<MAX_CHAT; i++) if(hDlg == chatHandle[i]) { partner = i; break; }\r
141 \r
142     switch (message) {\r
143     case WM_INITDIALOG:\r
144         if(partner<0) {\r
145                 for(i=0; i<MAX_CHAT; i++) if(chatHandle[i] == NULL) { partner = i; break; }\r
146                 chatHandle[partner] = hDlg;\r
147                 sprintf(buf, "Chat Window %s", first.tidy);\r
148                 SetWindowText(hDlg, buf);\r
149         }\r
150         chatPartner[partner][0] = 0;\r
151 \r
152         return FALSE;\r
153 \r
154     case WM_COMMAND:\r
155         switch (LOWORD(wParam)) {\r
156 \r
157         case IDCANCEL:\r
158             chatHandle[partner] = 0;\r
159             chatPartner[partner][0] = 0;\r
160             ChatPopDown();\r
161             EndDialog(hDlg, TRUE);\r
162             break;\r
163 \r
164         case IDC_Clear:\r
165             SendMessage( GetDlgItem(hDlg, IDC_ChatMemo), WM_SETTEXT, 0, (LPARAM) "" );\r
166             break;\r
167 \r
168         case IDC_Change:\r
169             GetDlgItemText(hDlg, IDC_ChatPartner, chatPartner[partner], MSG_SIZ);\r
170             break;\r
171 \r
172         case IDC_Send:\r
173             GetDlgItemText(hDlg, OPT_ChatInput, mess, MSG_SIZ);\r
174             SetDlgItemText(hDlg, OPT_ChatInput, "");\r
175             // from here on it could be back-end\r
176             if(!strcmp("WHISPER", chatPartner[partner]))\r
177                 sprintf(buf, "whisper %s\n", mess); // WHISPER box uses "whisper" to send\r
178             else {\r
179                 if(!atoi(chatPartner[partner])) {\r
180                     sprintf(buf, "> %s\n", mess); // echo only tells to handle, not channel\r
181                 InsertIntoMemo(hDlg, buf);\r
182                 sprintf(buf, "xtell %s %s\n", chatPartner[partner], mess);\r
183                 } else\r
184                 sprintf(buf, "tell %s %s\n", chatPartner[partner], mess);\r
185             }\r
186             SendToICS(buf);\r
187             break;\r
188 \r
189         default:\r
190           break;\r
191         }\r
192 \r
193         break;\r
194 \r
195     case WM_CLOSE:\r
196         chatHandle[partner] = 0;\r
197         chatPartner[partner][0] = 0;\r
198         ChatPopDown();\r
199         EndDialog(hDlg, TRUE);\r
200         break;\r
201 \r
202     case WM_SIZE:\r
203         ResizeWindowControls( hDlg );\r
204         break;\r
205 \r
206     case WM_ENTERSIZEMOVE:\r
207         return OnEnterSizeMove( &sd, hDlg, wParam, lParam );\r
208 \r
209     case WM_SIZING:\r
210         return OnSizing( &sd, hDlg, wParam, lParam );\r
211 \r
212     case WM_MOVING:\r
213         return OnMoving( &sd, hDlg, wParam, lParam );\r
214 \r
215     case WM_EXITSIZEMOVE:\r
216         return OnExitSizeMove( &sd, hDlg, wParam, lParam );\r
217     }\r
218 \r
219     return FALSE;\r
220 }\r
221 \r
222 // front end\r
223 void ChatPopUp()\r
224 {\r
225   FARPROC lpProc;\r
226   \r
227   if(chatCount >= MAX_CHAT) return;\r
228 \r
229   CheckMenuItem(GetMenu(hwndMain), IDM_NewChat, MF_CHECKED);\r
230   chatCount++;\r
231 \r
232     lpProc = MakeProcInstance( (FARPROC) ChatProc, hInst );\r
233 \r
234     /* Note to self: dialog must have the WS_VISIBLE style set, otherwise it's not shown! */\r
235     CreateDialog( hInst, MAKEINTRESOURCE(DLG_Chat), hwndMain, (DLGPROC)lpProc );\r
236 \r
237     FreeProcInstance(lpProc);\r
238 \r
239 }\r
240 \r
241 // front end\r
242 void ChatPopDown()\r
243 {\r
244   if(--chatCount <= 0)\r
245         CheckMenuItem(GetMenu(hwndMain), IDM_NewChat, MF_UNCHECKED);\r
246 }\r
247 \r
248 \r
249 //------------------------ pure back-end routines -------------------------------\r
250 \r
251 void OutputChatMessage(int partner, char *text)\r
252 {\r
253         if(!chatHandle[partner]) return;\r
254 \r
255         InsertIntoMemo(chatHandle[partner], text);\r
256 }\r