• 大小: 0.17M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-27
  • 标签: java  bird  

资源简介

小鸟躲避障碍物,以及计分。

游戏规则:只要鼠标 不断点击,小鸟就向上飞,不要小鸟碰到障碍物 为赢

资源截图

代码片段和文件信息

package day06;

import java.awt.image.BufferedImage;

import javax.imageio.ImageIO;

public class bird {
BufferedImage image;// 创建图片数组
int x;
int y;
int width;
int height;
BufferedImage[] images;

double g;// 重力加速度
double t;// 两次运动的时间间隔
double v0;// 鸟的初始速度
double speed;// 鸟的当前速度
double s;// t时间鸟运动的距离

double alpha;// 鸟的倾角

int index;// 用于鸟的动画帧切换时的计数

int size;// 用于

public bird() throws Exception {

image = ImageIO.read(getClass().getResource(“0.png“));
width = image.getWidth();
height = image.getHeight();
x = 132;
y = 280;

images = new BufferedImage[8];// 创建一个能放置8张图片的数组

for (int i = 0; i < images.length; i++) {
images[i] = ImageIO.read(getClass().getResource(i + “.png“));

index = 0;
}
g = 5;
v0 = 20;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        301  2015-10-01 16:08  day06\.classpath

     文件        381  2015-10-01 16:08  day06\.project

     文件        629  2015-10-01 16:08  day06\.settings\org.eclipse.jdt.core.prefs

     文件       3157  2015-10-01 16:29  day06\0.png

     文件       3167  2015-10-01 16:30  day06\1.png

     文件       3159  2015-10-01 16:30  day06\2.png

     文件       3165  2015-10-01 16:30  day06\3.png

     文件       3157  2015-10-01 16:30  day06\4.png

     文件       3165  2015-10-01 16:30  day06\5.png

     文件       3159  2015-10-01 16:30  day06\6.png

     文件       3167  2015-10-01 16:30  day06\7.png

     文件       9226  2015-10-01 16:30  day06\bg.png

     文件       3157  2015-06-28 10:58  day06\bin\day06\0.png

     文件       3167  2015-06-29 19:39  day06\bin\day06\1.png

     文件       3159  2015-06-29 19:39  day06\bin\day06\2.png

     文件       3165  2015-06-29 19:39  day06\bin\day06\3.png

     文件       3157  2015-06-29 19:39  day06\bin\day06\4.png

     文件       3165  2015-06-29 19:39  day06\bin\day06\5.png

     文件       3159  2015-06-29 19:39  day06\bin\day06\6.png

     文件       3167  2015-06-29 19:39  day06\bin\day06\7.png

     文件       9226  2015-06-26 18:57  day06\bin\day06\bg.png

     文件       2524  2017-01-06 14:49  day06\bin\day06\bird.class

     文件       5588  2015-06-28 10:43  day06\bin\day06\column.png

     文件       8684  2015-07-03 17:46  day06\bin\day06\gameover.png

     文件       3567  2015-06-26 19:54  day06\bin\day06\ground.png

     文件       9600  2015-07-03 17:46  day06\bin\day06\start.png

     文件       1181  2017-01-06 14:42  day06\bin\day06\zhuzi.class

     文件        804  2017-01-06 14:42  day06\bin\day06\zlf.class

     文件       1096  2017-01-06 14:42  day06\bin\day06\zlfday03$1.class

     文件       3872  2017-01-06 14:42  day06\bin\day06\zlfday03.class

............此处省略30个文件信息

评论

共有 条评论