-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutility.c
265 lines (232 loc) · 5.58 KB
/
utility.c
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
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include "utility.h"
#include "souris.cc"
void color(int t,int f)
{
HANDLE H=GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(H,f*16+t);
}
void gotoxy(int x, int y)
{
HANDLE hConsoleOutput;
COORD dwCursorPosition;
//cout.flush();
dwCursorPosition.X = x;
dwCursorPosition.Y = y;
hConsoleOutput = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(hConsoleOutput,dwCursorPosition);
}
void textAttr(char Attr) {
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),Attr);
}
void textBackground(char Color) {
CONSOLE_SCREEN_BUFFER_INFO Info;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE),&Info);
textAttr((Color << 4)+(Info.wAttributes & 0x0F));
}
void textForeground(char Color) {
CONSOLE_SCREEN_BUFFER_INFO Info;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE),&Info);
textAttr((Info.wAttributes << 4)+(Color & 0x0F));
}
void curseur()
{
POINT pt;
BOOL bContinue = TRUE;
const SHORT Mask = 32768;
while (bContinue)
{
if (GetKeyState(VK_ESCAPE) & Mask)
bContinue = FALSE;
GetCursorPos(&pt);
if (GetKeyState(VK_UP) & Mask)
pt.y -= 5;
if (GetKeyState(VK_DOWN) & Mask)
pt.y += 5;
if (GetKeyState(VK_LEFT) & Mask)
pt.x -= 5;
if (GetKeyState(VK_RIGHT) & Mask)
pt.x += 5;
SetCursorPos(pt.x,pt.y);
printf("%d - %d", (int)pt.x,(int)pt.y);
//Sleep(50);
system("cls");
}
}
void welcomemsg()
{
int c;
char *ch = "Welcome To PaintIt in C \n\n\n Press Enter to Start ";
char *ca = "Cliquer Sur le boutton AGRANDIR";
char *ce = "Taper ENTRER pour de continuer";
char *cc = "\t\t\t\t\t\t";
char *t = ca;
gotoxy(40,15);
while(*t != '\0')
{
printf("%c",*t);
t++;
Sleep(100);
}
t = ce;
gotoxy(40,18);
while(*t != '\0')
{
printf("%c",*t);
t++;
Sleep(100);
}
do
{
c = getch();
//printf(" c = %d", c);
}while(c != 13);
system("cls");
t = cc;
gotoxy(25,18);
printf("Chargement :");
gotoxy(40,18);
color(0,14);
while(*t != '\0')
{
printf("%c",*t);
t++;
Sleep(500);
}
color(10,0);
t = ch;
gotoxy(45,20);
while(*t != '\0')
{
printf("%c",*t);
t++;
Sleep(100);
}
do
{
c = getch();
}while(c != 13);
system("cls"); // clear screen
}
void drawframe()
{
int i=0;
gotoxy(144,2);
color(0,15);
printf(" M E N U");
color(10,0);
gotoxy(140,3);
printf("__________________");
gotoxy(144,5);
printf("Couleurs");
gotoxy(144,6);
printf("________");
gotoxy(144,8);
color(0,8);
printf(" ");
color(10,0);
gotoxy(144,10);
color(0,9);
printf(" ");
color(10,0);
gotoxy(144,12);
color(0,10);
printf(" ");
color(10,0);
gotoxy(144,14);
color(0,11);
printf(" ");
color(10,0);
gotoxy(149,8);
color(0,12);
printf(" ");
color(10,0);
gotoxy(149,10);
color(0,13);
printf(" ");
color(10,0);
gotoxy(149,12);
color(0,14);
printf(" ");
color(10,0);
gotoxy(149,14);
color(0,15);
printf(" ");
color(10,0);
gotoxy(144,17);
printf("Pinceaux");
gotoxy(144,18);
printf("________");
gotoxy(144,20);
//color(0,10);
printf("*");
color(10,0);
gotoxy(149,20);
color(0,10);
printf(" ");
color(10,0);
gotoxy(144,25);
printf("________");
gotoxy(144,26);
printf("\\ Gomme \\");
gotoxy(145,27);
printf("________");
while(i<50)
{
gotoxy(140,i);
printf("%c", 219);
i++;
}
}
void paint()
{
static DMOUSE m; // the mouse handler
static int scolor = 10; // the selected color
static char schar = '*'; // the caracter to be printed
static int y,x;
mouse(&m); // exits when left button mouse clicked
x = m.coordinates.X; // the position of mouse click
y = m.coordinates.Y;
if(m.coordinates.X < 140) // if in the drawing section
{
gotoxy(m.coordinates.X, m.coordinates.Y); // move the cursor to the clicked position
if(schar == ' ')
color(0, scolor);
else
color(scolor, 0);
printf("%c", schar);
color(10,0);
}
else // in the color/palette section
{
if((x<148)&&(y == 8)) // the first color
scolor = 8;
if((x<148)&&(y == 10)) // the second color
scolor = 9;
if((x<148)&&(y == 12))
scolor = 10;
if((x<148)&&(y == 14))
scolor = 11;
if((x>148)&&(y == 8))
scolor = 12;
if((x>148)&&(y == 10))
scolor = 13;
if((x>148)&&(y == 12))
scolor = 14;
if((x>148)&&(y == 14))
scolor = 15;
if((x<148)&&(y == 20))
schar = '*';
if((x>148)&&(y == 20))
schar = ' ';
if((x>144)&&(y == 26))
scolor = 0;
if((x>144)&&(y == 25))
scolor = 0;
if((x>144)&&(y == 27))
scolor = 0;
}
}