五子棋程序设计报告_第1页
五子棋程序设计报告_第2页
五子棋程序设计报告_第3页
五子棋程序设计报告_第4页
五子棋程序设计报告_第5页
已阅读5页,还剩13页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、五子棋程序设计报告 班 级:姓 名: 学 号:指导老师: 2012/1/07一、 课程设计题目与要求题目:网络五子棋游戏。功能要求:该软件应包括服务器端程序和客户端程序两个部分,要求实现的功能如下。客户端功能要求:(1) 友好的用户登录界面设计;(2) 登录服务器后,请求用户列表;(3) 相其他用户发出邀请,做游戏;(4) 当用户加入或离开时,客户端接受服务器发送的成员列表,更新用户列表;(5) 当用户开始游戏或游戏结束时,服务器通知客户端用户更新该用户状态,客户端接受该消息后,更新该用户状态;(6) 根据五子棋的游戏规则实现五子棋的游戏功能,包括游戏判断、画图等。服务器端功能要求:(1) 服

2、务器接受用户注册信息,服务器最多容纳64 个成员,成员信息包括:用户名、IP 地址、端口和状态,当服务器退出时,保存用户信息;(2) 当用户加入或退出,服务器向所有用户发送成员列表,通知客户端更新成员列表;(3) 当用户开始游戏或者结束游戏时,服务器通知其他用户更新该用户状态,通知客户端更新成员状态;(4) 和客户端一起维护游戏的进行,发送游戏信息。二、需求分析以及模型框架1. 五子棋游戏是一历史悠久,对抗性强,技巧性高的棋类游戏。而且我对五子棋有着独特的爱好,希望自己也可以编写出一款可以实现人机对战的五子棋游戏。把自己的思想付给电脑,让自己有些成就感,给自己继续努力的动力。借此次课程设计的机

3、会,把想法变成现实。而且五子棋不仅能增强思维能力,提高智力,而且富含哲理,有助于修身养性。五子棋既有现代休闲的明显特征“短、平、快”,又有古典哲学的高深学问“阴阳易理”;它既有简单易学的特性,为人民群众所喜闻乐见,又有深奥的技巧和高水平的国际性比赛;它的棋文化源渊流长,具有东方的神秘和西方的直观;既有“场”的概念,亦有“点”的连接。它是中西文化的交流点,是古今哲理的结晶。所以此次c+课程设计选择五子棋这个题目。2程序所实现的功能通过给电脑赋予人工智能,利用电脑运算速度快的特点,结合五子棋的游戏规则,给电脑设定固定的扫描方式,设定权值,使电脑能够选择最合适的落子点,然后调用加载已做好的棋盘棋子图

4、像,最终实现简单的人机对弈。3. 该游戏为普通玩家使用,只要连成五子即获胜.三、设计内容1 根据 所选题目,给出模块图主界面开始游戏重新开始游戏游戏结束落子判断输赢结束界面初始化棋盘初始化棋盘2 画出主程序及其主要模块的流程图游戏开始初始化棋盘点鼠标左键落子加载棋盘图片五子连珠?扫描棋盘,根据预设权值,选择最佳地点落子五子连珠?游戏结束加载棋子图片到棋盘加载棋子图片到棋盘是否是转1否四、相关截图:1、 开始游戏的时候,会根据提示来选择游模式。2、如果选的对手是电脑。则会提示是哪个级别的。初级、中级和高级。3、系统会根据你下棋子来判断来怎么下。4、在任何一方下到五个子的时候,系统会提示输赢,以及

5、下棋过程中有无悔棋,和总共下了几手。五、相关代码:1.Pente.h#if !defined(AFX_PENTE_H_9A01CC66_D589_11D1_92B0_000021003EA5_INCLUDED_)#define AFX_PENTE_H_9A01CC66_D589_11D1_92B0_000021003EA5_INCLUDED_#if _MSC_VER = 1000#pragma once#endif / _MSC_VER = 1000#ifndef _AFXWIN_H_#error include stdafx.h before including this PCH#endif

6、#include resource.h/ main symbols#define MODE_WITH_COMPUTER0#define MODE_2PLAYER1#define MODE_2PLAYER_NET2#define MODE_2PLAYER_MODEM3#define ID_TIMER_NET100#define MESSAGE_SIZE512/ CPenteApp:/ See Pente.cpp for the implementation of this class/class CPenteApp : public CWinApppublic:CPenteApp();/ Ove

7、rrides/ ClassWizard generated virtual function overrides/AFX_VIRTUAL(CPenteApp)public:virtual BOOL InitInstance();/AFX_VIRTUAL/ Implementation/AFX_MSG(CPenteApp)/ NOTE - the ClassWizard will add and remove member functions here./ DO NOT EDIT what you see in these blocks of generated code !/AFX_MSGDE

8、CLARE_MESSAGE_MAP();/AFX_INSERT_LOCATION/ Microsoft Developer Studio will insert additional declarations immediately before the previous line.#endif / !defined2. Pente.cpp :#include stdafx.h#include Pente.h#include PenteDlg.h#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE = _

9、FILE_;#endif/ CPenteAppBEGIN_MESSAGE_MAP(CPenteApp, CWinApp)/AFX_MSG_MAP(CPenteApp)/ NOTE - the ClassWizard will add and remove mapping macros here./ DO NOT EDIT what you see in these blocks of generated code!/AFX_MSGON_COMMAND(ID_HELP, CWinApp:OnHelp)END_MESSAGE_MAP()/ CPenteApp constructionCPenteA

10、pp:CPenteApp()/ TODO: add construction code here,/ Place all significant initialization in InitInstance/ The one and only CPenteApp objectCPenteApp theApp;/ CPenteApp initializationBOOL CPenteApp:InitInstance()/ stardard initialization begin.AfxEnableControlContainer();/ Standard initialization/ If

11、you are not using these features and wish to reduce the size/ of your final executable, you should remove from the following/ the specific initialization routines you do not need.#ifdef _AFXDLLEnable3dControls();/ Call this when using MFC in a shared DLL#elseEnable3dControlsStatic();/ Call this when

12、 linking to MFC statically#endifSetRegistryKey(_T(MultiMediaGuid);CPenteDlg dlg;m_pMainWnd = &dlg;int nResponse = dlg.DoModal();if (nResponse = IDOK)/ TODO: Place code here to handle when the dialog is/ dismissed with OKelse if (nResponse = IDCANCEL)/ TODO: Place code here to handle when the dialog

13、is/ dismissed with Cancel/ Since the dialog has been closed, return FALSE so that we exit the/ application, rather than start the applications message pump.return FALSE;3.AboutDlg.h#if !defined(AFX_ABOUTDLG_H_701A5C62_DBBE_11D1_92B0_000021003EA5_INCLUDED_)#define AFX_ABOUTDLG_H_701A5C62_DBBE_11D1_92

14、B0_000021003EA5_INCLUDED_#if _MSC_VER = 1000#pragma once#endif / _MSC_VER = 1000/ AboutDlg.h : header file/ CAboutDlg dialogclass CAboutDlg : public CDialog/ Constructionpublic:CAboutDlg(CWnd* pParent = NULL); / standard constructor/ Dialog Data/AFX_DATA(CAboutDlg)enum IDD = IDD_ABOUTDLG ;/ NOTE: th

15、e ClassWizard will add data members here/AFX_DATA/ Overrides/ ClassWizard generated virtual function overrides/AFX_VIRTUAL(CAboutDlg)protected:virtual void DoDataExchange(CDataExchange* pDX); / DDX/DDV support/AFX_VIRTUAL/ Implementationprotected:/ Generated message map functions/AFX_MSG(CAboutDlg)v

16、irtual BOOL OnInitDialog();/AFX_MSGDECLARE_MESSAGE_MAP();/AFX_INSERT_LOCATION/ Microsoft Developer Studio will insert additional declarations immediately before the previous line.#endif / !defined4. AboutDlg.cpp : #include stdafx.h#include #include #include #include resource.h#include HelperAPI.h#in

17、clude Globalvar.h#include AboutDlg.h#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE = _FILE_;#endif/ CAboutDlg dialogCAboutDlg:CAboutDlg(CWnd* pParent /*=NULL*/): CDialog(:g_bChinese ? IDD_ABOUTDLG1 : IDD_ABOUTDLG, pParent)/AFX_DATA_INIT(CAboutDlg)/ NOTE: the ClassWizard will

18、 add member initialization here/AFX_DATA_INITvoid CAboutDlg:DoDataExchange(CDataExchange* pDX)CDialog:DoDataExchange(pDX);/AFX_DATA_MAP(CAboutDlg)/ NOTE: the ClassWizard will add DDX and DDV calls here/AFX_DATA_MAPBEGIN_MESSAGE_MAP(CAboutDlg, CDialog)/AFX_MSG_MAP(CAboutDlg)/AFX_MSG_MAPEND_MESSAGE_MA

19、P()/ CAboutDlg message handlersBOOL CAboutDlg:OnInitDialog() CDialog:OnInitDialog();HICON hIcon = AfxGetApp()-LoadIcon(IDR_MAINFRAME);SetIcon(hIcon, TRUE);/ Set big iconSetIcon(hIcon, FALSE);/ Set small iconCString str;/ fill memory infoMEMORYSTATUS MemStat;MemStat.dwLength = sizeof(MEMORYSTATUS);Gl

20、obalMemoryStatus(&MemStat);/ Total Physical memstr.Format(%lu KB, MemStat.dwTotalPhys / 1024L);SetDlgItemText(IDC_PHYSICAL_MEM, str);/ Free Physical memstr.Format(%lu KB, MemStat.dwAvailPhys / 1024L);SetDlgItemText(IDC_AVAIL_MEM, str);/ Free Virtual memstr.Format(%lu KB, MemStat.dwAvailVirtual / 102

21、4L);SetDlgItemText(IDC_AVAIL_VIRTUAL_MEM, str);/ fill CPU infoSYSTEM_INFO SysInfo;GetSystemInfo(&SysInfo);switch (SysInfo.dwProcessorType)case PROCESSOR_INTEL_486:str = Intel 80486;break;case PROCESSOR_INTEL_PENTIUM:str = Intel Pentium;break;default:str = ;break;SetDlgItemText(IDC_CPU, str);/ fill O

22、S infoOSVERSIONINFO OsInfo;OsInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);if (GetVersionEx(&OsInfo)/ platformswitch (OsInfo.dwPlatformId)case VER_PLATFORM_WIN32_WINDOWS:str = Windows 95;break;case VER_PLATFORM_WIN32_NT:str = Windows NT;break;default:str = ;break;SetDlgItemText(IDC_OS, str);/ ver

23、sion and languagechar szVer512;GetWindowsVersion(LPSTR)szVer);str.Format(%ld.%ld, %s, OsInfo.dwMajorVersion, OsInfo.dwMinorVersion, szVer);SetDlgItemText(IDC_VERSION, str);/ fill disk informationchar szWindowsPath_MAX_PATH;GetWindowsDirectory(szWindowsPath, _MAX_PATH);ULARGE_INTEGER TotalNumberOfByt

24、es, TotalNumberOfFreeBytes;GetDiskFreeSpaceEx(LPSTR)szWindowsPath,NULL,&TotalNumberOfBytes,&TotalNumberOfFreeBytes);/ total spacestr.Format(%lu KB, TotalNumberOfBytes.QuadPart / 1024L);SetDlgItemText(IDC_TOTAL_SPACE, str);/ free spacestr.Format(%lu KB, TotalNumberOfFreeBytes.QuadPart / 1024L);SetDlg

25、ItemText(IDC_FREE_SPACE, str); PlaySound(IDSOUND_WELCOME); return TRUE; / return TRUE unless you set the focus to a control / EXCEPTION: OCX Property Pages should return FALSE5. BestDlg.cpp : implementation file/#include stdafx.h#include Pente.h#include Globalvar.h#include BestDlg.h#ifdef _DEBUG#def

26、ine new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE = _FILE_;#endif/ CBestDlg dialogCBestDlg:CBestDlg(CWnd* pParent /*=NULL*/): CDialog(:g_bChinese ? IDD_BEST1 : IDD_BEST)/AFX_DATA_INIT(CBestDlg)/ NOTE: the ClassWizard will add member initialization here/AFX_DATA_INITvoid CBestDlg:DoDataExchange(

27、CDataExchange* pDX)CDialog:DoDataExchange(pDX);/AFX_DATA_MAP(CBestDlg)/ NOTE: the ClassWizard will add DDX and DDV calls here/AFX_DATA_MAPBEGIN_MESSAGE_MAP(CBestDlg, CDialog)/AFX_MSG_MAP(CBestDlg)ON_BN_CLICKED(IDC_RESTARTCOUNT, OnRestartcount)/AFX_MSG_MAPEND_MESSAGE_MAP()/ CBestDlg message handlersB

28、OOL CBestDlg:OnInitDialog() CDialog:OnInitDialog();m_hIcon = AfxGetApp()-LoadIcon(IDR_MAINFRAME);SetIcon(m_hIcon, TRUE);/ Set big iconSetIcon(m_hIcon, FALSE);/ Set small iconName1Edit().SetWindowText(g_strName1);Name2Edit().SetWindowText(g_strName2);Name3Edit().SetWindowText(g_strName3);char str4; w

29、sprintf(str,%d,g_nTime1);Time1Edit().SetWindowText(str);wsprintf(str,%d,g_nTime2);Time2Edit().SetWindowText(str);wsprintf(str,%d,g_nTime3);Time3Edit().SetWindowText(str);return TRUE; / return TRUE unless you set the focus to a control / EXCEPTION: OCX Property Pages should return FALSEvoid CBestDlg:

30、OnRestartcount() g_strName1 = Anonymous;g_strName2 = Anonymous;g_strName3 = Anonymous;g_nTime1 = 225;g_nTime2 = 225;g_nTime3 = 225;Name1Edit().SetWindowText(g_strName1);Name2Edit().SetWindowText(g_strName2);Name3Edit().SetWindowText(g_strName3);Time1Edit().SetWindowText(225);Time2Edit().SetWindowTex

31、t(225);Time3Edit().SetWindowText(225);6. #if !defined(AFX_BESTDLG_H_0740A355_D3AB_11D1_A77A_444553540000_INCLUDED_)#define AFX_BESTDLG_H_0740A355_D3AB_11D1_A77A_444553540000_INCLUDED_#if _MSC_VER = 1000#pragma once#endif / _MSC_VER = 1000/ BestDlg.h : header file/ CBestDlg dialogclass CBestDlg : pub

32、lic CDialog/ Constructionpublic:CBestDlg(CWnd* pParent = NULL); / standard constructor/ Dialog Data/AFX_DATA(CBestDlg)enum IDD = IDD_BEST ;/ NOTE: the ClassWizard will add data members here/AFX_DATAHICON m_hIcon;/ Overrides/ ClassWizard generated virtual function overrides/AFX_VIRTUAL(CBestDlg)protected:virtua

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论