登录
首页 » Windows开发 » 一款接球游戏,游戏中使用DirectX 7,图形较为流畅,每秒高达50桢。具有较高的计算机人工智能.英文介绍:DX pong is a neat pong ga...

一款接球游戏,游戏中使用DirectX 7,图形较为流畅,每秒高达50桢。具有较高的计算机人工智能.英文介绍:DX pong is a neat pong ga...

于 2022-03-14 发布 文件大小:256.38 kB
0 173
下载积分: 2 下载次数: 1

代码说明:

一款接球游戏,游戏中使用DirectX 7,图形较为流畅,每秒高达50桢。具有较高的计算机人工智能.英文介绍:DX pong is a neat pong game that uses DirectX 7. I wrote it in just one day and the graphics are smooth - over 50 fps! There are sound FX too, but the best thing about the game is the computer AI. It doesn t simply chase the ball, it predicts the balls path even if it is going to bounce of several walls and moves accordingly. Clever AI doesn t mean it is impossible to beat - it means it acts like a human player making the game more fun. So - have fun!-DX pong is a neat pong game that uses DirectX 7. I wrote it in just one day and the graphics are smooth- over 50 fps! There are sound FX too, but the best thing about the game is the computer AI. It doesn t simply chase the ball, it predicts the balls path even if it is going to bounce of several walls and moves accordingly. Clever AI doesn t mean it is impossible to beat- it means it acts like a human player making the game more fun. So- have fun!

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 从相机的演示文稿和幻灯片的手识别和控制
    应用背景实时法根据肤色配方和Haar特征检测方面识别手势,然后跟踪轨迹的隐马尔可夫模型,并相应的手势识别。关键技术这个项目提供了一个实时的方法来识别手手势通过处理所捕获的视频的摄像头连接到计算机。这种方法开始检测手根据几个特点,如颜色,大小和形状,然后跟踪手的轨迹和手的变化分析位置,终于认识到相应的手势。此外,我们使用该系统在建筑的应用:第一个是与操作系统相连的演示控制器用户可以通过一定的控制来控制幻灯片的显示顺序手势,而第二个应用程序是一个照片浏览器,我们“手势图片浏览器”中,用户可以控制他手上的照片也用特殊的姿势来浏览在浏览器中的功能;
    2022-03-26 09:53:56下载
    积分:1
  • VC编写的多功能计算器,包含完整的源代码,具有常用计算器功能,向量计算功能,高等数学计算功能(行列式,根与系数关系,方程组求解),趣味运算(24点求解)。...
    VC编写的多功能计算器,包含完整的源代码,具有常用计算器功能,向量计算功能,高等数学计算功能(行列式,根与系数关系,方程组求解),趣味运算(24点求解)。-VC prepared multifunctional calculator, contains the complete source code, with a common calculator functions, vector computing, advanced mathematics calculation function (determinant, the relationship between the roots and coefficients, Equations), fun computing (24 points Solving).
    2022-05-15 23:21:55下载
    积分:1
  • java程序设计
    java程序设计-java programming
    2022-08-05 09:27:43下载
    积分:1
  • 最简单的学生成绩查询系统(vb文件) 用户名:xiaoran 密码:manyue...
    最简单的学生成绩查询系统(vb文件) 用户名:xiaoran 密码:manyue-the simplest student achievement Inquiry System (vb) Username : xiaoran Password : manyue
    2022-07-24 05:42:17下载
    积分:1
  • 获取windows用户帐户及密码 包括foxmail、outlook等
    获取windows用户帐户及密码 包括foxmail、outlook等
    2023-04-08 03:00:03下载
    积分:1
  • DSP_develop,这是关于DSP的资料,对DSP感兴趣的同同可以参考一下。...
    DSP_develop,这是关于DSP开发的资料,对DSP感兴趣的同同可以参考一下。-"DSP_develop" contains some materials on DSP development.If you are interested in DSP,you may consult it
    2022-12-20 11:05:03下载
    积分:1
  • Sichuan University ACM questions online magazine, a very valuable and worthy of...
    四川大学ACM竞赛在线试题集锦,非常有价值,值得收藏和学习,对你的编程能力有很大的提高-Sichuan University ACM questions online magazine, a very valuable and worthy of collection and study, you have the programming capabilities greatly improved
    2022-03-02 21:23:16下载
    积分:1
  • first part of the init () method to load the game all the necessary resources, i...
     ? 部分内容   首先我们在init()方法中加载所有游戏必要的资源,包括声音,鼠标事件的监听、背景等相关设置。利用addBomb()方法增加bomb的数量、初始位置及初始化颜色。再利用start()启动线程。线程调用run()方法,处理炸弹下降运动down()。Repaint()会在每一个单位时间调用paint()方法不断的刷新屏幕,paint()调用Bomb.addBomb()绘制炸弹。当游戏者按下鼠标,mousePress()事件激活,判断是否点中了炸弹。如果点中addScore()自动加1分。如果没有点中炸弹,炸弹继续下降,当撞到屏幕wasHitEarth()方法激活,其内调用death()方法,减少Denfenser.life生命点,同时audio.play()处理声音的播放,用以提示游戏者。当你的生命点数小于0时”Game Over”。-first part of the init () method to load the game all the necessary resources, including the voices of the mouse wiretapping, and other relevant background set. Use addBomb () method to increase the number of bomb, the initial location and initialization color. Reuse start () activated threads. Call threads run () method to deal with bomb dropped down Movement (). Hamas () in a unit time per call to paint () method is constantly refresh the screen, paint () call Bomb.addBomb () to draw bomb. When pressed mouse game, mousePress () activation of the incident to determine whether the point of the bomb. If the
    2022-05-20 07:56:26下载
    积分:1
  • Windows Mobile SP/PPC手机上操作联系人,SIM卡联系人,提醒,工作的封装类,使用简单。...
    Windows Mobile SP/PPC手机上操作联系人,SIM卡联系人,提醒,工作的封装类,使用简单。-Windows Mobile SP/PPC phone operator contact, SIM card contacts, reminders, work package categories, using a simple.
    2022-05-08 00:47:10下载
    积分:1
  • 一个鼠标自动执行函数,他将自动关闭自动点击!
    一个鼠标自动执行函数,他将自动关闭自动点击!-a mouse function automatically, he will automatically closing Click!
    2022-09-20 12:45:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载