




版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
-
.z.
//headerfile
*include<iostream>
*include<cstdlib>
*include<ctime>
*include<windows.h>
*include<conio.h>
//defines
*defineKEY_UP0*E048
*defineKEY_DOWN0*E050
*defineKEY_LEFT0*E04B
*defineKEY_RIGHT0*E04D
*defineKEY_ESC0*001B
*defineKEY_1'1'
*defineKEY_2'2'
*defineKEY_3'3'
*defineGAME_MA*_WIDTH100
*defineGAME_MA*_HEIGHT100
//StringsResource
*defineSTR_GAMETITLE"ArrowKey:MoveCursorKey1:Open\
Key2:MarkKey3:OpenNeighbors"
*defineSTR_GAMEWIN"Congratulations!YouWin!Thankyouforplaying!\n"
*defineSTR_GAMEOVER"GameOver,thankyouforplaying!\n"
*defineSTR_GAMEEND"Presentedbyyzfy.PressESCtoe*it\n"
//-------------------------------------------------------------
//Baseclass
classCConsoleWnd
{
public:
staticintTe*tOut(constchar*);
staticintGoto*Y(int,int);
staticintCharOut(int,int,constint);
staticintTe*tOut(int,int,constchar*);
staticintGetKey();
public:
};
//{{//classCConsoleWnd
//
//intCConsoleWnd::GetKey()
//WaitforstandardinputandreturntheKeyCode
//
intCConsoleWnd::GetKey()
{
intnkey=getch(),nk=0;
if(nkey>=128||nkey==0)nk=getch();
returnnk>0"nkey*256+nk:nkey;
}
//
//intCConsoleWnd::Goto*Y(int*,inty)
//Movecursorto(*,y)
//OnlyConsoleApplication
//
intCConsoleWnd::Goto*Y(int*,inty)
{
COORDcd;
cd.*=*;cd.Y=y;
returnSetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),cd);
}
//
//intCConsoleWnd::Te*tOut(constchar*pstr)
//Outputastringatcurrentposition
//
intCConsoleWnd::Te*tOut(constchar*pstr)
{
for(;*pstr;++pstr)putchar(*pstr);
return0;
}
//
//intCConsoleWnd::CharOut(int*,inty,constintpstr)
//Outputacharat(*,y)
//
intCConsoleWnd::CharOut(int*,inty,constintpstr)
{
Goto*Y(*,y);
returnputchar(pstr);
}
//
//intCConsoleWnd::Te*tOut(constchar*pstr)
//Outputastringat(*,y)
//
intCConsoleWnd::Te*tOut(int*,inty,constchar*pstr)
{
Goto*Y(*,y);
returnTe*tOut(pstr);
}
//}}
//-------------------------------------------------------------
//Applicationclass
classCSLGame:publicCConsoleWnd
{
private:
private:
intcur*,curY;
intpoolWidth,poolHeight;
intbm_gamepool[GAME_MA*_HEIGHT+2][GAME_MA*_WIDTH+2];
public:
CSLGame():cur*(0),curY(0){poolWidth=poolHeight=0;}
intInitPool(int,int,int);
intMoveCursor(){returnCConsoleWnd::Goto*Y(cur*,curY);}
intDrawPool(int);
intWaitMessage();
intGetShowNum(int,int);
intTryOpen(int,int);
private:
intDFSShowNum(int,int);
private:
conststaticintGMARK_BOOM;
conststaticintGMARK_EMPTY;
conststaticintGMARK_MARK;
};
constintCSLGame::GMARK_BOOM=0*10;
constintCSLGame::GMARK_EMPTY=0*100;
constintCSLGame::GMARK_MARK=0*200;
//{{//classCSLGame:publicCConsoleWnd
//
//intCSLGame::InitPool(intWidth,intHeight,intnBoom)
//Initializethegamepool.
//IfWidth*Height<=nBoom,ornBoom<=0,
//orWidthandHeighte*ceedlimit,thenreturn1
//otherwisereturn0
//
intCSLGame::InitPool(intWidth,intHeight,intnBoom)
{
poolWidth=Width;poolHeight=Height;
if(nBoom<=0||nBoom>=Width*Height
||Width<=0||Width>GAME_MA*_WIDTH
||Height<=0||Height>GAME_MA*_HEIGHT
){
return1;
}
//zeromemory
for(inty=0;y<=Height+1;++y)
{
for(int*=0;*<=Width+1;++*)
{
bm_gamepool[y][*]=0;
}
}
//initseed
srand(time(NULL));
//initBooms
while(nBoom)
{
int*=rand()%Width+1,y=rand()%Height+1;
if(bm_gamepool[y][*]==0)
{
bm_gamepool[y][*]=GMARK_BOOM;
--nBoom;
}
}
//initcursorposition
cur*=curY=1;
MoveCursor();
return0;
}
//
//intCSLGame::DrawPool(intbDrawBoom=0)
//DrawgamepooltoConsolewindow
//
intCSLGame::DrawPool(intbDrawBoom=0)
{
for(inty=1;y<=poolHeight;++y)
{
CConsoleWnd::Goto*Y(1,y);
for(int*=1;*<=poolWidth;++*)
{
if(bm_gamepool[y][*]==0)
{
putchar('.');
}
elseif(bm_gamepool[y][*]==GMARK_EMPTY)
{
putchar('');
}
elseif(bm_gamepool[y][*]>0&&bm_gamepool[y][*]<=8)
{
putchar('0'+bm_gamepool[y][*]);
}
elseif(bDrawBoom==0&&(bm_gamepool[y][*]&GMARK_MARK))
{
putchar('*');
}
elseif(bm_gamepool[y][*]&GMARK_BOOM)
{
if(bDrawBoom)
putchar('*');
else
putchar('.');
}
}
}
return0;
}
//
//intCSLGame::GetShowNum(int*,inty)
//returnShowNumat(*,y)
//
intCSLGame::GetShowNum(int*,inty)
{
intnCount=0;
for(intY=-1;Y<=1;++Y)
for(int*=-1;*<=1;++*)
{
if(bm_gamepool[y+Y][*+*]&GMARK_BOOM)++nCount;
}
returnnCount;
}
//
//intCSLGame::TryOpen(int*,inty)
//Tryopen(*,y)andshowthenumber
//Ifthereisaboom,thenreturnEOF
//
intCSLGame::TryOpen(int*,inty)
{
intnRT=0;
if(bm_gamepool[y][*]&GMARK_BOOM)
{
nRT=EOF;
}
else
{
intnCount=GetShowNum(*,y);
if(nCount==0)
{
DFSShowNum(*,y);
}
elsebm_gamepool[y][*]=nCount;
}
returnnRT;
}
//
//intCSLGame::DFSShowNum(int*,inty)
//Privatefunction,noment
//
intCSLGame::DFSShowNum(int*,inty)
{
if((0<*&&*<=poolWidth)&&
(0<y&&y<=poolHeight)&&
(bm_gamepool[y][*]==0))
{
intnCount=GetShowNum(*,y);
if(nCount==0)
{
bm_gamepool[y][*]=GMARK_EMPTY;
for(intY=-1;Y<=1;++Y)
for(int*=-1;*<=1;++*)
{
DFSShowNum(*+*,y+Y);
}
}
elsebm_gamepool[y][*]=nCount;
}
return0;
}
//
//intCSLGame::WaitMessage()
//Gameloop,waitandprocessaninputmessage
//return:0:notend;1:Win;otherwise:Lose
//
intCSLGame::WaitMessage()
{
intnKey=CConsoleWnd::GetKey();
intnRT=0,nArrow=0;
switch(nKey)
{
caseKEY_UP:
{
if(curY>1)--curY;
nArrow=1;
}break;
caseKEY_DOWN:
{
if(curY<poolHeight)++curY;
nArrow=1;
}break;
caseKEY_LEFT:
{
if(cur*>1)--cur*;
nArrow=1;
}break;
caseKEY_RIGHT:
{
if(cur*<poolWidth)++cur*;
nArrow=1;
}break;
caseKEY_1:
{
nRT=TryOpen(cur*,curY);
}break;
caseKEY_2:
{
if((bm_gamepool[curY][cur*]
&~(GMARK_MARK|GMARK_BOOM))==0)
{
bm_gamepool[curY][cur*]^=GMARK_MARK;
}
}break;
caseKEY_3:
{
if(bm_gamepool[curY][cur*]&0*F)
{
intnb=bm_gamepool[curY][cur*]&0*F;
for(inty=-1;y<=1;++y)
for(int*=-1;*<=1;++*)
{
if(bm_gamepool[curY+y][cur*+*]&GMARK_MARK)
--nb;
}
if(nb==0)
{
for(inty=-1;y<=1;++y)
for(int*=-1;*<=1;++*)
{
if((bm_gamepool[curY+y][cur*+*]
&(0*F|GMARK_MARK))==0)
{
nRT|=TryOpen(cur*+*,curY+y);
}
}
}
}
}break;
caseKEY_ESC:
{
nRT=EOF;
}break;
}
if(nKey==KEY_1||nKey==KEY_3)
{
inty=1;
for(;y<=poolHeight;++y)
{
int*=1;
for(;*<=poolWidth;++*)
{
if(bm_gamepool[y][*]==0)break;
}
if(*<=poolWidth)break;
}
if(!(y<=poolHeight))
{
nRT=1;
}
}
if(nArrow==0)
{
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 跨域股權轉讓合同代持協議
- 住宅小區保潔承包合同
- 包裝設計師練習題(附參考答案)
- 四年級上冊數學口算比賽試題
- 大型工程項目建材采購合同范本
- 直播投屏操作指南
- 2024年8月份光學薄膜中的三角干涉區域計算標準
- 電子商務合同范本:淘寶專用
- 食品物流配送服務合同范本
- 班級管理小妙招分享會
- 2025重慶西南證券股份有限公司招聘45人筆試參考題庫附帶答案詳解
- 2025年4月自考15043中國近現代史綱要押題及答案
- 湖南省示范性高中2024-2025學年高二下學期2月聯考 物理試卷(含解析)
- 江蘇省淮安市洪澤區2024-2025學年七年級下學期3月調研地理試題(含答案)
- 辦公樓弱電系統設計方案
- 黃金卷02(廣州專用)-【贏在中考·黃金預測卷】2025年中考數學模擬卷(考試版)
- 2025-2030年班用帳篷項目投資價值分析報告
- 2025年國家糧食和物資儲備局垂直管理系統事業單位招聘701人歷年自考難、易點模擬試卷(共500題附帶答案詳解)
- 射線無損探傷合同范本
- 創意活動策劃方案及執行流程
- 中職高教版(2023)語文職業模塊-第五單元:走近大國工匠(一)展示國家工程-了解工匠貢獻【課件】
評論
0/150
提交評論