资源描述:
《基于linux环境下扫雷应用程序》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、《网络操作系统》报告(应用程序开发)题目:基于linux平台GCC环境下扫雷应用程序开发姓名:李磊学院:理学院专业:网络工程班级:092学号:18870902112012年01月01日基于Linux平台GCC环境下扫雷应用程序开发1应用程序功能通过模拟windows系统中的扫雷应用程序,在linux平台gcc环境下实现C语言扫雷应用程序。2硬件平台内存2.0G,硬盘320G,CPUPentium4以上PC机一台3软件平台3.1操作系统平台linuxcygwin环境3.2应用软件平台(黑体小四号)VisualC++6.0或
2、其他C语言编译程序,linuxcygwin环境,GCC编译条件3.3应用程序//headerfile#include#include#include#include#include//defines#defineKEY_UP0xE048#defineKEY_DOWN0xE050#defineKEY_LEFT0xE04B#defineKEY_RIGHT0xE04D#defineKEY_ESC0x001B#defineKEY_1'1'
3、#defineKEY_2'2'#defineKEY_3'3'#defineGAME_MAX_WIDTH100#defineGAME_MAX_HEIGHT100//StringsResource#defineSTR_GAMETITLE"程序说明:数字键1打开数字键2标记数字键3打开附近盒子"#defineSTR_GAMEWIN"亲,祝贺你赢了哦,再接再厉哦!"#defineSTR_GAMEOVER"亲,你咋那么笨呢?挂了吧!"#defineSTR_GAMEEND"亲,按ESC键退出程序"//---------
4、----------------------------------------------------//BaseclassclassCConsoleWnd{public:staticintTextOut(constchar*);staticintGotoXY(int,int);staticintCharOut(int,int,constint);staticintTextOut(int,int,constchar*);staticintGetKey();public:};//{{//classCConsoleWnd/
5、///intCConsoleWnd::GetKey()//WaitforstandardinputandreturntheKeyCode//intCConsoleWnd::GetKey(){intnkey=getch(),nk=0;if(nkey>=128
6、
7、nkey==0)nk=getch();returnnk>0?nkey*256+nk:nkey;}////intCConsoleWnd::GotoXY(intx,inty)//Movecursorto(x,y)//OnlyConsoleApplication//int
8、CConsoleWnd::GotoXY(intx,inty){COORDcd;cd.X=x;cd.Y=y;returnSetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),cd);}////intCConsoleWnd::TextOut(constchar*pstr)//Outputastringatcurrentposition//intCConsoleWnd::TextOut(constchar*pstr){for(;*pstr;++pstr)putchar
9、(*pstr);return0;}////intCConsoleWnd::CharOut(intx,inty,constintpstr)//Outputacharat(x,y)//intCConsoleWnd::CharOut(intx,inty,constintpstr){GotoXY(x,y);returnputchar(pstr);}////intCConsoleWnd::TextOut(constchar*pstr)//Outputastringat(x,y)//intCConsoleWnd::TextOut(i
10、ntx,inty,constchar*pstr){GotoXY(x,y);returnTextOut(pstr);}//}}//-------------------------------------------------------------//ApplicationclassclassCSLGame:pub