-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.hpp
57 lines (44 loc) · 1.34 KB
/
menu.hpp
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
#pragma once
//菜单初始化
void menu() {
//logo显示
IMAGE logo_img;
//getimage(&logo_img, _T("D:\\Tankfight_source\\resources\\image\\logo.bmp"), 433, 147);
loadimage(&logo_img, _T("image\\logo.bmp"), 433, 147);
putimage(110, 20, &logo_img);
//导航按钮实现
setlinecolor(WHITE);
setfillcolor(BLACK);
fillrectangle(230, 200, 310, 240);
settextstyle(25, 0, _T("宋体"));
outtextxy(240, 210, _T("说明"));
fillrectangle(350, 200, 430, 240);
outtextxy(360, 210, _T("开始"));
//玩法介绍图片生成
IMAGE illustrate_img;
loadimage(&illustrate_img, _T("image\\illustrate.jpg"), 300, 300);
//设置跳出循环条件
//int finished = 1;
//设置进入鼠标判定条件
while (true) {
MOUSEMSG mouse;
mouse = GetMouseMsg();
switch (mouse.uMsg) {
case WM_MOUSEMOVE:
if ((mouse.x > 230 && mouse.x < 310) && (mouse.y > 200 && mouse.y < 240)) {
putimage(150, 250, &illustrate_img);
}
else {
solidrectangle(150, 250, 450, 550);
}
break;
case WM_LBUTTONDOWN:
if ((mouse.x > 350 && mouse.x < 430) && (mouse.y > 200 && mouse.y < 240)) {
cleardevice();
/*finished = 0;
break;*/
return;
}
}
}
}