forked from RealDeuce/OpenDoors
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathODWin.c
More file actions
319 lines (273 loc) · 10.2 KB
/
Copy pathODWin.c
File metadata and controls
319 lines (273 loc) · 10.2 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
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
/* OpenDoors Online Software Programming Toolkit
* (C) Copyright 1991 - 1999 by Brian Pirie.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*
* File: ODWin.c
*
* Description: Implements the od_window_...() functions for creating
* and removing text-mode windows.
*
* Revisions: Date Ver Who Change
* ---------------------------------------------------------------
* Oct 13, 1994 6.00 BP New file header format.
* Nov 01, 1994 6.00 BP Include stdlib.h for malloc prototype.
* Dec 09, 1994 6.00 BP Standardized coding style.
* Dec 12, 1994 6.00 BP Set od_error on window remove failure.
* Aug 19, 1995 6.00 BP 32-bit portability.
* Nov 16, 1995 6.00 BP Removed oddoor.h, added odcore.h.
* Dec 12, 1995 6.00 BP Added entry, exit and kernel macros.
* Dec 30, 1995 6.00 BP Added ODCALL for calling convention.
* Feb 19, 1996 6.00 BP Changed version number to 6.00.
* Mar 03, 1996 6.10 BP Begin version 6.10.
* Aug 10, 2003 6.23 SH *nix support
*/
#define BUILDING_OPENDOORS
#include <string.h>
#include <stdlib.h>
#include "OpenDoor.h"
#include "ODGen.h"
#include "ODCore.h"
#include "ODKrnl.h"
/* ----------------------------------------------------------------------------
* od_window_create()
*
* Creates a window on the screen, storing information on the original screen
* contents "under" the window in order to restore the screen after the window
* is removed. A window that is created with this function must be destroyed
* by od_window_remove() in order to free up memory that is allocated by this
* function.
*
* Parameters: nLeft - 1-based column number of left edge of window.
*
* nTop - 1-based row number of top edge of window.
*
* nRight - 1-based column number of right edge of window.
*
* nBottom - 1-based row number of bottom edge of window.
*
* pszTitle - Pointer to a string containing title for window.
* If this string is empty, no title is displayed.
*
* btBoarderCol - Colour of window boarder.
*
* btTitleCol - Colour of window title.
*
* btInsideCol - Colour of rest of window.
*
* nReserved - Should always be 0 for this version.
*
* Return: Pointer to window description buffer (which must later be
* passed to od_window_remove(), or NULL on failure.
*/
ODAPIDEF void * ODCALL od_window_create(INT nLeft, INT nTop, INT nRight,
INT nBottom, char *pszTitle, BYTE btBorderCol, BYTE btTitleCol,
BYTE btInsideCol, INT nReserved)
{
BYTE btLine;
BYTE btBetweenSize;
void *pBuffer;
BYTE btTitleSize;
BYTE btRemaining;
/* Log function entry if running in trace mode. */
TRACE(TRACE_API, "od_window_create()");
/* Ensure that OpenDoors has been initialized */
if(!bODInitialized) od_init();
OD_API_ENTRY();
nReserved &= 0x00;
btBetweenSize = (nRight - nLeft) - 1;
/* Setup od_box_chars appropriately. */
if(od_control.od_box_chars[BOX_BOTTOM]==0)
{
od_control.od_box_chars[BOX_BOTTOM] = od_control.od_box_chars[BOX_TOP];
}
if(od_control.od_box_chars[BOX_RIGHT]==0)
{
od_control.od_box_chars[BOX_RIGHT] = od_control.od_box_chars[BOX_LEFT];
}
/* Ensure that the current display mode can support the capabilities */
/* required to display and remove windows. */
if(!(od_control.user_ansi || od_control.user_avatar))
{
od_control.od_error = ERR_NOGRAPHICS;
OD_API_EXIT();
return(NULL);
}
/* Validate parameters. */
if(nLeft < 1 || nTop < 1 || nRight > 80 || nBottom > 25 || nRight-nLeft < 2
|| nBottom-nTop < 2)
{
od_control.od_error = ERR_PARAMETER;
OD_API_EXIT();
return(NULL);
}
/* Allocate a buffer large enough to hold all window information. */
if((pBuffer = malloc((nRight - nLeft + 1) * 2 + (nBottom - nTop + 1) * 160
+ 4)) == NULL)
{
od_control.od_error = ERR_MEMORY;
OD_API_EXIT();
return(NULL);
}
/* Store current contents of screen where window will be drawn. */
if(!od_gettext(nLeft, nTop, nRight, nBottom, (char *)pBuffer+4))
{
free(pBuffer);
/* Note: od_control.od_error code has been set by od_gettext(). */
OD_API_EXIT();
return(NULL);
}
/* Store window information in buffer. */
((char *)pBuffer)[0]=nLeft;
((char *)pBuffer)[1]=nTop;
((char *)pBuffer)[2]=nRight;
((char *)pBuffer)[3]=nBottom;
/* Determine number of characters of title to display. */
if(pszTitle==NULL)
{
btTitleSize = 0;
}
else
{
if((btTitleSize = strlen(pszTitle)) > (btBetweenSize - 4))
{
btTitleSize = btBetweenSize - 4;
}
}
/* Move to position of window's top corner, prepare to begin drawing the */
/* window. */
od_set_cursor(nTop,nLeft);
od_set_attrib(btBorderCol);
/* Display corner character. */
od_putch(od_control.od_box_chars[BOX_UPPERLEFT]);
/* If there is no title, display top line all in one piece. */
if(btTitleSize == 0)
{
/* Display top line. */
od_repeat(od_control.od_box_chars[BOX_TOP],btBetweenSize);
}
else
{
/* If there is a title, display the top line with a title centered in */
/* it. */
od_repeat(od_control.od_box_chars[BOX_TOP],btRemaining =
((btBetweenSize - btTitleSize - 2) / 2));
od_set_attrib(btTitleCol);
od_putch(' ');
od_disp(pszTitle,btTitleSize,TRUE);
od_putch(' ');
od_set_attrib(btBorderCol);
od_repeat(od_control.od_box_chars[BOX_TOP],
(BYTE)(btBetweenSize - btRemaining - btTitleSize - 2));
}
/* Display top right corner character. */
od_putch(od_control.od_box_chars[BOX_UPPERRIGHT]);
/* If AVATAR mode is available. */
if(od_control.user_avatar)
{
/* Display first left verticle line. */
od_set_cursor(nTop + 1, nLeft);
od_putch(od_control.od_box_chars[BOX_LEFT]);
/* Fill in center of window with AVATAR clear area control sequence. */
od_emulate(22);
od_emulate(12);
od_emulate(btInsideCol);
od_emulate((BYTE)((nBottom - nTop) - 1));
od_emulate(btBetweenSize);
od_set_attrib(btBorderCol);
od_set_cursor(nTop + 1 , nRight);
/* Display first right verticle line. */
od_putch(od_control.od_box_chars[BOX_RIGHT]);
/* Display remaining verticle lines. */
for(btLine=nTop+2;btLine<nBottom;++btLine)
{
/* Move to line start and display left line character. */
od_set_cursor(btLine,nLeft);
od_putch(od_control.od_box_chars[BOX_LEFT]);
/* Move to line start and display right line character. */
od_set_cursor(btLine,nRight);
od_putch(od_control.od_box_chars[BOX_RIGHT]);
}
}
/* If AVATAR mode is not available. */
else
{
/* Loop through middle lines of window. */
for(btLine=nTop+1;btLine<nBottom;++btLine)
{
/* Move to line start and display left line character. */
od_set_cursor(btLine,nLeft);
od_putch(od_control.od_box_chars[BOX_LEFT]);
/* Set window colour. */
od_set_attrib(btInsideCol);
/* display blank area between left and right vertical lines. */
od_repeat(' ',btBetweenSize);
/* Set border colour. */
od_set_attrib(btBorderCol);
/* Display right line. */
od_putch(od_control.od_box_chars[BOX_RIGHT]);
}
}
/* Display bottom border of window */
od_set_cursor(nBottom,nLeft);
od_putch(od_control.od_box_chars[BOX_LOWERLEFT]);
od_repeat(od_control.od_box_chars[BOX_BOTTOM],btBetweenSize);
od_putch(od_control.od_box_chars[BOX_LOWERRIGHT]);
/* Return a pointer to the window information buffer. */
OD_API_EXIT();
return(pBuffer);
}
/* ----------------------------------------------------------------------------
* od_window_remove()
*
* Removes window from the screen, restoring the screen contents that where
* in the window area when the window was first created.
*
* Parameters: pWinInfo - Pointer to buffer returned by od_window_create().
* This buffer is deallocated before od_window_remove()
* returns.
*
* Return: TRUE on success, or FALSE on failure.
*/
ODAPIDEF BOOL ODCALL od_window_remove(void *pWinInfo)
{
/* Log function entry if running in trace mode */
TRACE(TRACE_API, "od_window_remove()");
/* Ensure that OpenDoors has been initialized */
if(!bODInitialized) od_init();
OD_API_ENTRY();
if(pWinInfo == NULL)
{
/* Set error code and return with failure. */
od_control.od_error = ERR_PARAMETER;
OD_API_EXIT();
return(FALSE);
}
if(!od_puttext(((char *)pWinInfo)[0], ((char *)pWinInfo)[1], ((char *)pWinInfo)[2], ((char *)pWinInfo)[3], (char *)pWinInfo + 4))
{
/* Deallocate memory assigned to window information structure. */
free(pWinInfo);
/* Note: od_control.od_error code has been set by od_puttext(). */
/* Return with failure. */
OD_API_EXIT();
return(FALSE);
}
/* Deallocate memory assigned to window information structure. */
free(pWinInfo);
/* Return with success. */
OD_API_EXIT();
return(TRUE);
}