实例介绍
1. 使用APPGAMEKIT游戏引擎,C++语言编写的UNO牌游戏。 2. 运行程序 文件目录下 Final/Template.exe 3. 运行代码 文件目录下 Template.sln 请使用VS2010打开 4. 打开Template.exe可能会弹框,按确定即可运行。 5. 游戏引擎为试用版,请不要用于商业用途。 7. 没有多少注释。 8. 当前版本为1.0,预计以后会加上的功能:challenge,电脑AI等。
【实例截图】
【核心代码】
UNO_-verson1.0__无challnege版本
└── UNO -verson1.0 无challnege版本
├── Card.cpp
├── Card.h
├── CardDepthManager.cpp
├── CardDepthManager.h
├── ChangeColorW10.cpp
├── ChangeColorW10.h
├── ClassDiagram1.cd
├── Core.cpp
├── Debug
│ ├── CL.read.1.tlog
│ ├── CL.write.1.tlog
│ ├── Core.obj
│ ├── RCa07428
│ ├── Template.exe.embed.manifest
│ ├── Template.exe.embed.manifest.res
│ ├── Template.lastbuildstate
│ ├── Template.log
│ ├── Template.unsuccessfulbuild
│ ├── Template_manifest.rc
│ ├── cl.command.1.tlog
│ ├── link.command.1.tlog
│ ├── link.read.1.tlog
│ ├── link.write.1.tlog
│ ├── rc.command.1.tlog
│ ├── rc.read.1.tlog
│ ├── rc.write.1.tlog
│ ├── template.obj
│ └── template.res
├── Final
│ ├── Template.exe
│ ├── images
│ │ ├── bg.jpg
│ │ ├── cards
│ │ │ ├── Blue0.png
│ │ │ ├── Blue1.png
│ │ │ ├── Blue2.png
│ │ │ ├── Blue3.png
│ │ │ ├── Blue4.png
│ │ │ ├── Blue5.png
│ │ │ ├── Blue6.png
│ │ │ ├── Blue7.png
│ │ │ ├── Blue8.png
│ │ │ ├── Blue9.png
│ │ │ ├── BlueDraw2.png
│ │ │ ├── BlueReverse.png
│ │ │ ├── BlueSkip.png
│ │ │ ├── Green0.png
│ │ │ ├── Green1.png
│ │ │ ├── Green2.png
│ │ │ ├── Green3.png
│ │ │ ├── Green4.png
│ │ │ ├── Green5.png
│ │ │ ├── Green6.png
│ │ │ ├── Green7.png
│ │ │ ├── Green8.png
│ │ │ ├── Green9.png
│ │ │ ├── GreenDraw2.png
│ │ │ ├── GreenReverse.png
│ │ │ ├── GreenSkip.png
│ │ │ ├── Red0.png
│ │ │ ├── Red1.png
│ │ │ ├── Red2.png
│ │ │ ├── Red3.png
│ │ │ ├── Red4.png
│ │ │ ├── Red5.png
│ │ │ ├── Red6.png
│ │ │ ├── Red7.png
│ │ │ ├── Red8.png
│ │ │ ├── Red9.png
│ │ │ ├── RedDraw2.png
│ │ │ ├── RedReverse.png
│ │ │ ├── RedSkip.png
│ │ │ ├── Wild.png
│ │ │ ├── WildDownPour1.png
│ │ │ ├── WildDownPour2.png
│ │ │ ├── WildDraw4.png
│ │ │ ├── Yellow0.png
│ │ │ ├── Yellow1.png
│ │ │ ├── Yellow2.png
│ │ │ ├── Yellow3.png
│ │ │ ├── Yellow4.png
│ │ │ ├── Yellow5.png
│ │ │ ├── Yellow6.png
│ │ │ ├── Yellow7.png
│ │ │ ├── Yellow8.png
│ │ │ ├── Yellow9.png
│ │ │ ├── YellowDraw2.png
│ │ │ ├── YellowReverse.png
│ │ │ ├── YellowSkip.png
│ │ │ └── backMod.png
│ │ └── others
│ │ ├── BtnUNO.png
│ │ ├── MsgUNO1.png
│ │ ├── MsgUNO2.png
│ │ ├── MsgUNO3.png
│ │ ├── MsgUNO4.png
│ │ ├── arrow_left.png
│ │ ├── num.png
│ │ ├── wlg10.png
│ │ ├── wlgblue.png
│ │ ├── wlggreen.png
│ │ ├── wlgred.png
│ │ └── wlgyellow.png
│ └── strings
│ └── ImagesName.txt
├── GameSurfaceView.cpp
├── GameSurfaceView.h
├── LinkedList.cpp
├── LinkedList.h
├── Person.cpp
├── Person.h
├── R.cpp
├── R.h
├── Release
│ ├── BackModManager.obj
│ ├── CL.read.1.tlog
│ ├── CL.write.1.tlog
│ ├── Card.obj
│ ├── CardDepthManager.obj
│ ├── ChangeColorW10.obj
│ ├── Core.obj
│ ├── GameSurfaceView.obj
│ ├── LinkedList.obj
│ ├── Person.obj
│ ├── R.obj
│ ├── Template.exe.intermediate.manifest
│ ├── Template.lastbuildstate
│ ├── Template.log
│ ├── Template.vcxprojResolveAssemblyReference.cache
│ ├── Template.write.1.tlog
│ ├── UNODesktop.obj
│ ├── UNORules.obj
│ ├── cl.command.1.tlog
│ ├── link-cvtres.read.1.tlog
│ ├── link-cvtres.write.1.tlog
│ ├── link.command.1.tlog
│ ├── link.read.1.tlog
│ ├── link.write.1.tlog
│ ├── mt.command.1.tlog
│ ├── mt.read.1.tlog
│ ├── mt.write.1.tlog
│ ├── rc.command.1.tlog
│ ├── rc.read.1.tlog
│ ├── rc.write.1.tlog
│ ├── spriteDeal.obj
│ ├── spriteManager.obj
│ ├── template.obj
│ └── template.res
├── Template.sdf
├── Template.sln
├── Template.suo
├── Template.vcproj
├── Template.vcxproj
├── Template.vcxproj.filters
├── Template.vcxproj.user
├── UNODesktop.cpp
├── UNODesktop.h
├── UNORules.cpp
├── UNORules.h
├── ipch
│ └── template-a18ca4db
│ └── template-57d87702.ipch
├── resource.h
├── spriteDeal.cpp
├── spriteDeal.h
├── spriteManager.cpp
├── spriteManager.h
├── template.cpp
├── template.h
├── template.ico
└── template.rc
10 directories, 162 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论