人工智能课件第三次课.ppt
- 【下载声明】
1. 本站全部试题类文档,若标题没写含答案,则无答案;标题注明含答案的文档,主观题也可能无答案。请谨慎下单,一旦售出,不予退换。
2. 本站全部PPT文档均不含视频和音频,PPT中出现的音频或视频标识(或文字)仅表示流程,实际无音频或视频文件。请谨慎下单,一旦售出,不予退换。
3. 本页资料《人工智能课件第三次课.ppt》由用户(晟晟文业)主动上传,其收益全归该用户。163文库仅提供信息存储空间,仅对该用户上传内容的表现方式做保护处理,对上传内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!
4. 请根据预览情况,自愿下载本文。本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
5. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007及以上版本和PDF阅读器,压缩文件请下载最新的WinRAR软件解压。
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 人工智能 课件 第三次
- 资源描述:
-
1、运动模式Pattern Movemento The computer-controlled characters move according to some predefined pattern that makes it appear as though they are performing complex, thought-out maneuvers. 计算机控制的人物按照某种预定的运动模式移动,好像他们执行复杂的、预先想好的策略执行。 circle、square、zigzag、curve标准算法Standard Algorithmo The standard pattern move
2、ment algorithm uses lists or arrays of encoded instructions, or control instructions, that tell the computer-controlled character how to move each step through the game loop. 标准运动模式算法用预先编好的指令或控制指令存于列表或数组,能够指导计算机控制的人物如何在游戏循环中移动每一步。 控制指令数据结构 control instructions data structureControlData double turnRi
3、ght; /右转 double turnLeft; /左转 double stepForward; /前进 double stepBackward; /后退变量说明turnRight, turnLeft /the number of degrees 角度stepForward, stepBackward /the number of distance units or tiled 长度模式初始化Pattern initializationPattern0.turnRight=0;Pattern0.turnLeft=0;Pattern0.stepForward=2;Pattern0.stepBa
4、ckward=0;处理模式数组Processing the pattern arrayVoid GameLoop(void) Object.orientation+=PatternCurrentIndex.turnRight; Object.orientation-=PatternCurrentIndex.turnLeft; Object.x+=PatternCurrentIndex.stepForward; Object.x-=PatternCurrentIndex.stepBackward; CurrentIndex+; 基于方块的模式运动Pattern Movement in tile-
5、based environmentso Paths will be made up of line segments. 路径是由一些线段组成。o Each line is only a segment of the overall pattern. 每一条线段是整个运动模式的一部分。初始化路径数组Initialize path arraysVoid InitializePathArrays(void) int i; for(i=0; ikMaxPathLength; i+) pathRowi=-1; pathColi=-1; Calculate line segmentVoid ai_Enti
6、ty:BuildPathSegment(void) int i; int nextCol=col; int nextRow=row; int deltaRow=endRow-row; int deltaCol=endCol-col; int stepCol; int stepRow; int currentStep; int fraction; int i;for(i=0;ikMaxPathLength;i+) if(pathRowi=-1)&(pathColi=-1) currentStep=i; break; if(deltaRow0) stepRow=-1; else stepRow=1
7、;if(deltaCol=kMaxPathLength) return;if(deltaColdeltaRow) fraction=deltaRow*2-deltaCol; while(nextCol!=endCol) if(fraction=0) nextRow+=stepRow; fraction=fraction-deltaCol; nextCol=nextCol+stepCol; fraction=fraction+deltaRow; pathRowcurrentStep=nextRow; pathColcurrentStep=nextCol; currentStep+; if(cur
展开阅读全文