-
Notifications
You must be signed in to change notification settings - Fork 1
/
Basic.h
executable file
·142 lines (127 loc) · 2.51 KB
/
Basic.h
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
/* Function of Sound */
void sound(void)
{
int i,c=500;
while (c!=700)
{
sound(c);
c+=10;
delay(5);
nosound();
}
}
/* Functoin of Command */
void comman(int x,int y,int x1,int y1,int color)
{
setfillstyle(SOLID_FILL, color);
bar(x, y, x1, y1);
setcolor(15);
line(x,y,x1,y);
line(x,y,x,y1);
setcolor(0);
line(x+1,y1,x1,y1);
line(x1,y+1,x1,y1);
}
void comman1(int x,int y,int x1,int y1,int color)
{
setfillstyle(SOLID_FILL, color);
bar(x, y, x1, y1);
setcolor(0);
line(x,y,x1,y);
line(x,y,x,y1);
setcolor(15);
line(x,y1,x1,y1);
line(x1,y,x1,y1);
}
void comman2(int x,int y,int x1,int y1,int color)
{
setfillstyle(SOLID_FILL, color);
bar(x, y, x1, y1);
}
void comman3(int x,int y,int x1,int y1,int color)
{
setfillstyle(SOLID_FILL, color);
bar(x, y, x1, y1);
setcolor(0);
line(x,y,x1,y);
line(x,y,x,y1);
setcolor(0);
line(x,y1,x1,y1);
line(x1,y,x1,y1);
}
void press(int x,int y,int x1,int y1)
{
setcolor(0);
line(x,y,x1,y);
line(x,y,x,y1);
setcolor(15);
line(x,y1,x1,y1);
line(x1,y,x1,y1);
delay(300);
setcolor(15);
line(x,y,x1,y);
line(x,y,x,y1);
setcolor(0);
line(x,y1,x1,y1);
line(x1,y,x1,y1);
}
void press1(int x,int y,int x1,int y1)
{
setcolor(0);
line(x,y,x1,y);
line(x,y,x,y1);
setcolor(15);
line(x,y1,x1,y1);
line(x1,y,x1,y1);
}
void press2(int x,int y,int x1,int y1)
{
setcolor(15);
line(x,y,x1,y);
line(x,y,x,y1);
setcolor(0);
line(x+1,y1,x1,y1);
line(x1,y+1,x1,y1);
}
void desion2(void)
{
int c,r;
setcolor(15);
setfillstyle(SOLID_FILL,7);
bar(getmaxx()/2-210,getmaxy()/2-100,getmaxx()/2+210,getmaxy()/2+75);
setfillstyle(SOLID_FILL,3);
bar(getmaxx()/2-210,getmaxy()/2-98,getmaxx()/2+210,180);
setcolor(15);
line(getmaxx()/2-210,getmaxy()/2-100,getmaxx()/2+210,getmaxy()/2-100);
line(getmaxx()/2-210,getmaxy()/2-100,getmaxx()/2-210,getmaxy()/2+75);
setcolor(0);
line(getmaxx()/2-210,getmaxy()/2+75,getmaxx()/2+210,getmaxy()/2+75);
line(getmaxx()/2+210,getmaxy()/2-100,getmaxx()/2+210,getmaxy()/2+75);
setfillstyle(SOLID_FILL,14);
bar(145,214,205,260);
setcolor(0);
line(145,260,205,260);
line(144,260,175,214);
line(175,214,206,260);
setcolor(7);
c=143;r=174;
for (int i=0;i<30;i++)
{
line(c,260,r,214);
c--;r--;
}
c=176;r=207;
for (i=0;i<30;i++)
{
line(r,260,c,214);
c++;r++;
}
setcolor(0);
settextstyle(1,0,4);
outtextxy(173,222,"!");
}
void Flush(void)
{
_AH=0x0c;
geninterrupt(0x21);
}