-
Notifications
You must be signed in to change notification settings - Fork 0
/
myconio.cpp
351 lines (312 loc) · 10.9 KB
/
myconio.cpp
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
342
343
344
345
346
347
348
349
350
351
// Nom du fichier : myconio.cpp
// Auteur : [email protected]
// Version : Novembre 2004
// Objectif : remédier à l'absence de certaines fonctions conio sous DevC++
/* Remarques :
- Ce fichier est inclus par myconio.h.
- Au sein d'un fichier source seule la directive « #include <myconio.h> »
est nécessaire. Elle remplace « #include <conio.h> »... La directive
« #include <conio.cpp> » est inutile.
- Pour obtenir des informations sur les fonctions de la bibliothèque window
(wincon, winbase) utilisés dans ce fichier,
il faut consulter « http://www.msdn.microsoft.com/library/default.asp ».
*/
#ifndef _MYCONIO_C_
#define _MYCONIO_C_
void _setcursortype(int type)
{
CONSOLE_CURSOR_INFO Info;
Info.bVisible = TRUE;
if (type == _NOCURSOR) Info.bVisible = FALSE;
else if (type == _SOLIDCURSOR) Info.dwSize = 90 ;
else if (type == _NORMALCURSOR) Info.dwSize = 1;
SetConsoleCursorInfo (GetStdHandle (STD_OUTPUT_HANDLE), &Info);
}
char *cgets(char *str)
{
int i=2 ;
while((str[i]=MYgetch()) != '\r')
{
switch(str[i])
{
case '\b' : if(i<=2) break ; // pas de caractère à effacer
printf("\b \b") ;
i -- ;
break ;
case 0 :
case -32 : MYgetch() ; // lire le 2ème caractère des codes étendus
case 9 : // ne pas tenir compte de la touche [TAB]
case 27 : break ; // ne pas tenir compte de la touche [ESC]
default : if(i<=str[0])
putch(str[i++]) ;
}
}
str[i] = 0 ;
str[1] = i - 2 ;
return str + 2 ;
}
void clreol()
{
COORD coord = {wherex() - 1 , wherey() - 1};
DWORD dwWritten;
HANDLE hScreen=GetStdHandle(STD_OUTPUT_HANDLE) ;
CONSOLE_SCREEN_BUFFER_INFO Info;
if(GetConsoleScreenBufferInfo(hScreen, &Info))
{
FillConsoleOutputCharacter (hScreen, ' ', Info.dwSize.X-coord.X, coord,
&dwWritten);
FillConsoleOutputAttribute (hScreen, Info.wAttributes,
Info.dwSize.X-coord.X, coord, &dwWritten);
gotoxy (coord.X, coord.Y) ;
}
}
void clrscr(void) // efface l'écran
{
// Première solution : OK !
COORD coord = { 0, 0 } ; // coord.X = 0; coord.Y = 0;
DWORD dwWritten, dwSize ;
HANDLE hScreen=GetStdHandle(STD_OUTPUT_HANDLE) ;
CONSOLE_SCREEN_BUFFER_INFO Info;
if(GetConsoleScreenBufferInfo(hScreen, &Info))
{
dwSize = Info.dwSize.X * Info.dwSize.Y ;
FillConsoleOutputCharacter (hScreen, ' ', dwSize, coord, &dwWritten);
FillConsoleOutputAttribute (hScreen, Info.wAttributes, dwSize, coord,
&dwWritten);
gotoxy (1, 1);
}
/* Seconde solution : moins efficace - nécessite plus de temps
- ne prend pas en compte les couleurs */
/*
system("cls") ;
*/
}
int cputs(const char *str) {
return ((printf ("%s\n", str)==EOF)?EOF:(int)*(str+strlen(str)-1)) ;
}
void delline()
{
int y=wherey() ;
HANDLE hScreen = GetStdHandle(STD_OUTPUT_HANDLE) ;
CONSOLE_SCREEN_BUFFER_INFO Info ;
GetConsoleScreenBufferInfo(hScreen, &Info) ;
{
COORD dwBufferSize={Info.dwSize.X, Info.dwSize.Y - y} ;
COORD dwBufferCoord={0, 0} ;
CHAR_INFO Buffer[dwBufferSize.Y][dwBufferSize.X] ;
SMALL_RECT ReadRegion[2] ;
ReadRegion[0].Left = 0 ;
ReadRegion[0].Right = Info.dwSize.X-1 ;
ReadRegion[0].Top = y ;
ReadRegion[0].Bottom = Info.dwSize.Y-1 ;
ReadConsoleOutput(hScreen, (CHAR_INFO*)Buffer, dwBufferSize,
dwBufferCoord, ReadRegion) ;
ReadRegion[0].Top = y-1 ;
ReadRegion[0].Bottom = Info.dwSize.Y-2 ;
WriteConsoleOutput(hScreen, (CHAR_INFO*)Buffer, dwBufferSize,
dwBufferCoord, ReadRegion) ;
}
}
int MYgetch(void)
{
char Temp[3] ;
int Ret=getch() ;
if (Ret==0x0D) gets(Temp) ;
/* Si la touche choisie par l'utilisateur est <CR> alors
« FlushConsoleInputBuffer » ne fonctionne pas d'où l'astuce avec gets. */
else FlushConsoleInputBuffer(GetStdHandle(STD_INPUT_HANDLE)) ;
/* « fflush(stdin) ; » ne fonctionne pas ! Sans effet apparent ! */
return Ret ;
}
int MYgetche(void)
{
char Temp[3] ;
int Ret=getche() ;
if (Ret==0x0D) gets(Temp) ;
else FlushConsoleInputBuffer(GetStdHandle(STD_INPUT_HANDLE)) ;
return Ret ;
}
//#define getch MYgetch // permet de remplacer getch (conio, mingw) par MYgetch
//#define getche MYgetche
int Gettext(int left, int top, int right, int bottom, void *destin)
{
int ValueReturn, x, y ;
HANDLE hScreen = GetStdHandle(STD_OUTPUT_HANDLE) ;
COORD dwBufferSize={right-left+1, bottom-top+1} ;
COORD dwBufferCoord={0,0} ;
CHAR_INFO Buffer[dwBufferSize.Y][dwBufferSize.X] ;
SMALL_RECT ReadRegion[2] ;
ReadRegion[0].Left = left-1 ;
ReadRegion[0].Right = right-1 ;
ReadRegion[0].Top = top-1 ;
ReadRegion[0].Bottom = bottom-1 ;
ValueReturn=ReadConsoleOutput(hScreen, (CHAR_INFO*) Buffer, dwBufferSize,
dwBufferCoord, ReadRegion) ;
for (x=0 ; x<dwBufferSize.X ; x++)
{
for (y=0 ; y<dwBufferSize.Y ; y++)
{
*((char*)destin+(2*(dwBufferSize.X*y+x)))=Buffer[y][x].Char.AsciiChar ;
*((char*)destin+(2*(dwBufferSize.X*y+x)+1))=Buffer[y][x].Attributes ;
}
}
return ValueReturn ;
}
void gettextInfo(struct text_info *_r)
{
CONSOLE_SCREEN_BUFFER_INFO Info;
GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &Info);
_r->winleft = Info.srWindow.Left ;
_r->winright = Info.srWindow.Right ;
_r->wintop = Info.srWindow.Top ;
_r->winbottom = Info.srWindow.Bottom ;
_r->attribute = Info.wAttributes ;
_r->normattr = LIGHTGRAY | (BLACK<<4) ;
_r->currmode = C40 ;
_r->screenheight = Info.dwSize.Y ;
_r->screenwidth = Info.dwSize.X ;
_r->curx = wherex () ;
_r->cury = wherey () ;
}
void gotoxy(int x, int y) {
COORD c ;
c.X = x - 1;
c.Y = y - 1;
SetConsoleCursorPosition (GetStdHandle(STD_OUTPUT_HANDLE), c);
}
void highvideo() {
CONSOLE_SCREEN_BUFFER_INFO Info ;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &Info) ;
textattr(Info.wAttributes | 0x08);
}
void insline()
{
int y=wherey() ;
HANDLE hScreen = GetStdHandle(STD_OUTPUT_HANDLE) ;
CONSOLE_SCREEN_BUFFER_INFO Info ;
GetConsoleScreenBufferInfo(hScreen, &Info) ;
{
COORD dwBufferSize={Info.dwSize.X, Info.dwSize.Y - y} ;
COORD dwBufferCoord={0,0} ;
COORD coord={0, y-1} ; // pour FillConsoleOutputCharacter
CHAR_INFO Buffer[dwBufferSize.Y][dwBufferSize.X] ;
DWORD dwWritten;
SMALL_RECT ReadRegion[2] ;
ReadRegion[0].Left = 0 ;
ReadRegion[0].Right = Info.dwSize.X-1 ;
ReadRegion[0].Top = y-1 ;
ReadRegion[0].Bottom = Info.dwSize.Y-2 ;
ReadConsoleOutput(hScreen, (CHAR_INFO*)Buffer, dwBufferSize, dwBufferCoord, ReadRegion) ;
ReadRegion[0].Top = y ;
ReadRegion[0].Bottom = Info.dwSize.Y-1 ;
WriteConsoleOutput(hScreen, (CHAR_INFO*)Buffer, dwBufferSize, dwBufferCoord, ReadRegion) ;
FillConsoleOutputCharacter (hScreen, ' ', Info.dwSize.X, coord, &dwWritten); // Effacer ligne
FillConsoleOutputAttribute (hScreen, Info.wAttributes, Info.dwSize.X, coord, &dwWritten);
}
}
void lowvideo() {
CONSOLE_SCREEN_BUFFER_INFO Info ;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &Info) ;
textattr(Info.wAttributes & 0xF7);
}
int movetext(int left, int top, int right, int bottom, int destleft, int desttop)
{
// int ValueReturn, x, y ;
HANDLE hScreen = GetStdHandle(STD_OUTPUT_HANDLE) ;
COORD dwBufferSize={right-left+1, bottom-top+1} ;
COORD dwBufferCoord={0,0} ;
CHAR_INFO Buffer[dwBufferSize.Y][dwBufferSize.X] ;
SMALL_RECT ReadRegion[2] ;
ReadRegion[0].Left = left-1 ;
ReadRegion[0].Right = right-1 ;
ReadRegion[0].Top = top-1 ;
ReadRegion[0].Bottom = bottom-1 ;
ReadConsoleOutput(hScreen, (CHAR_INFO*) Buffer, dwBufferSize, dwBufferCoord,
ReadRegion) ;
ReadRegion[0].Left = destleft-1 ;
ReadRegion[0].Right = destleft-1+(dwBufferSize.X-1) ;
ReadRegion[0].Top = desttop-1 ;
ReadRegion[0].Bottom = desttop-1+(dwBufferSize.Y-1) ;
return WriteConsoleOutput(hScreen, (CHAR_INFO*) Buffer, dwBufferSize,
dwBufferCoord, ReadRegion) ;
}
void normvideo() {
textattr(0x07) ; // LIGHTGRAY
}
int puttext(int left, int top, int right, int bottom, void *source)
{
int x, y ;
HANDLE hScreen = GetStdHandle(STD_OUTPUT_HANDLE) ;
COORD dwBufferSize={right-left+1, bottom-top+1} ;
COORD dwBufferCoord={0,0} ;
CHAR_INFO Buffer[dwBufferSize.Y][dwBufferSize.X] ;
SMALL_RECT ReadRegion[2] ;
ReadRegion[0].Left = left-1 ;
ReadRegion[0].Right = right-1 ;
ReadRegion[0].Top = top-1 ;
ReadRegion[0].Bottom = bottom-1 ;
for (x=0 ; x<dwBufferSize.X ; x++)
{
for (y=0 ; y<dwBufferSize.Y ; y++)
{
Buffer[y][x].Char.AsciiChar = *((char*)source+(2*(dwBufferSize.X*y+x))) ;
Buffer[y][x].Attributes = *((char*)source+(2*(dwBufferSize.X*y+x)+1)) ;
}
}
return WriteConsoleOutput(hScreen, (CHAR_INFO*) Buffer, dwBufferSize,
dwBufferCoord, ReadRegion) ;
}
void textattr(int _attr) {
SetConsoleTextAttribute (GetStdHandle(STD_OUTPUT_HANDLE), _attr);
}
void textbackground(int _color) {
CONSOLE_SCREEN_BUFFER_INFO Info ;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &Info) ;
textattr((Info.wAttributes & 0x0F) | (_color<<4));
}
void textcolor(int _color) {
CONSOLE_SCREEN_BUFFER_INFO Info ;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &Info) ;
textattr((Info.wAttributes & 0xF0) | _color);
}
int wherex() {
CONSOLE_SCREEN_BUFFER_INFO Info;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &Info);
return Info.dwCursorPosition.X + 1 ;
}
int wherey() {
CONSOLE_SCREEN_BUFFER_INFO Info;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &Info);
return Info.dwCursorPosition.Y + 1 ;
}
void MYclrwin(int left, int top, int right, int bottom)
// efface une zone de l'écran
{
int i ;
COORD dwCoord = {0, 0} ;
COORD dwSize = {(right-left+1),(bottom-top+1)} ;
HANDLE hScreen=GetStdHandle(STD_OUTPUT_HANDLE) ;
CHAR_INFO Buffer[dwSize.X*dwSize.Y] ;
SMALL_RECT Region[2] ;
CONSOLE_SCREEN_BUFFER_INFO Info;
if(GetConsoleScreenBufferInfo(hScreen, &Info))
{
for(i=0 ; i < dwSize.X*dwSize.Y ; i++)
{
Buffer[i].Char.AsciiChar=' ' ;
Buffer[i].Attributes = Info.wAttributes ;
}
Region[0].Left = left-1 ;
Region[0].Right = right-1 ;
Region[0].Top = top-1 ;
Region[0].Bottom = bottom-1 ;
WriteConsoleOutput(hScreen, (CHAR_INFO*) Buffer, dwSize, dwCoord, Region) ;
gotoxy (left, top);
}
}
void MYwindow(int left, int top, int right, int bottom)
{
SMALL_RECT R = {left, top, right, bottom } ;
SetConsoleWindowInfo (GetStdHandle(STD_OUTPUT_HANDLE), TRUE, &R);
}
#endif //_MYCONIO_C_