二维游戏编程基础

二维游戏编程基础

ID:40449145

大小:4.41 MB

页数:81页

时间:2019-08-02

二维游戏编程基础_第1页
二维游戏编程基础_第2页
二维游戏编程基础_第3页
二维游戏编程基础_第4页
二维游戏编程基础_第5页
资源描述:

《二维游戏编程基础》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、2D游戏编程基础浙江大学软件学院梁秀波Email:liangxb@cst.zju.edu.cn主要内容二维游戏简单框架图像文件结构(以BMP为例)图像显示(例程)典型图像操作典型的图像特效原理二维游戏(例程)课程目标理解图像概念图像操作的实现简单的图像特效简单的二维游戏1.初始化2.进入游戏循环3.查询用户输入状态4.执行游戏逻辑和AI判断5.绘制图像6.循环7.退出游戏循环的基本步骤1.初始化2.进入游戏循环3.查询用户输入状态4.执行游戏逻辑和AI判断5.绘制图像6.循环7.退出游戏循环的基本步骤Demo:Airplane演示GameRunGameInitGameMen

2、uGameRestartGameExitGameStarting//definesforgameloopstates#defineGAME_INIT1//thegameisinitializing#defineGAME_MENU2//thegameisinthemenu#defineGAME_STARTING3//thegameisabouttorun#defineGAME_RUN4//thegameisnowrunning#defineGAME_RESTART5//thegameisgoingtorestart#defineGAME_EXIT6//thegameisexi

3、ting//gameglobalsintgame_state=GAME_INIT;//startoffinthisstateInterror=0;//usedtosenderrorsbacktoOS//mainbeginshereVoidmain(){//implementationofmaingameloopWhile(game_state!=GAME_EXIT){//implementationofmaingameloopswitch(game_state){caseGAME_INIT://thegameisinitializing{//allocateallmemor

4、yandresourcesInit();game_state=GAME_MENU;}break;caseGAME_MENU://thegameisinthemenu{//callthemainmenufunctionandletitswitchstatesgame_state=Menu();//note:wecouldforceaRUNstatehere}break;caseGAME_STARTING://thegameisabouttorun{//thisstateisoptional,butusuallyusedtosetthingsupright//beforethe

5、gameisrunyoumightdoalittlemorehousekeepingSetup_For_Run();//switchtorunstategame_state=GAME_RUN;}break;caseGAME_RUN://thegameisnowrunning{//thissectioncontainstheentiregamelogicloopClear();//clearthedisplayGet_Input();//gettheinputDo_Logic();//performlogicandAIRender_Frame();//displaythene

6、xtframeofanimationWait();//synchronizethedisplay//theonlywaythatstatecanbechangedisthruuserinteraction//intheinputsectionorbymaybelosingthegame.}break;caseGAME_RESTART://thegameisrestarting{//thissectionisacleanupstateusedtofixupanylooseends//beforerunningagainFixup();//switchstatesbacktot

7、hemenugame_state=GAME_MENU;}break;caseGAME_EXIT://thegameisexiting{//ifthegameisinthisstatethenit’stimetobail,killeverything//andcrossyourfingersRelease_And_Cleanup();error=0;//settheerrorwordtowhatever//note:wedonothavetoswitchstatessincewearealreadyinthissta

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。