基于Java制作一个好玩的打飞机游戏

1.效果图

基于Java制作一个好玩的打飞机游戏_第1张图片

基于Java制作一个好玩的打飞机游戏_第2张图片

2.项目整体构造

基于Java制作一个好玩的打飞机游戏_第3张图片

3.主类代码展示

public class MyGameFrame  extends  Frame {
    
    Image   planeImg  = GameUtil.getImage("images/plane.png");
    Image   bg  = GameUtil.getImage("images/bg.jpg");
    
    Plane   plane = new Plane(planeImg,250,250);
    Shell[]   shells = new Shell[50];
    
    Explode   bao ;
    Date  startTime = new Date();
    Date  endTime;
    int period;   //游戏持续的时间
    
    //@Override
    public void paint(Graphics g) {        //自动被调用。  g相当于一只画笔
        Color   c =  g.getColor();
        g.drawImage(bg, 0, 0, null);
        
        plane.drawSelf(g);  //画飞机
        
        //画出所有的炮弹
        for(int i=0;i 
 

4.飞机类代码展示

public  void  drawSelf(Graphics  g){
        if(live){
                g.drawImage(img, (int)x,(int) y, null);
                
                if(left){
                    x -=speed;
                }
                if(right){
                    x += speed;
                }
                if(up){
                    y -=speed;    //y = y-speed;
                }
                if(down){
                    y += speed;
            }
        }else{
            
        }
        
        
        
    }
    
    public  Plane(Image  img, double x, double y){
        this.img = img;
        this.x = x;
        this.y = y;
        this.speed = 3;
        this.width = img.getWidth(null) ;
        this.height = img.getHeight(null);
        
    }
    
    //按下某个键,增加相应的方向
    public  void   addDirection(KeyEvent  e){
        switch (e.getKeyCode()) {
        case KeyEvent.VK_LEFT:
            left = true;
            break;
        case KeyEvent.VK_UP:
            up = true;
            break;
        case KeyEvent.VK_RIGHT:
            right = true;
            break;
        case KeyEvent.VK_DOWN:
            down = true;
            break;
        }
    }

5.炮弹类代码展示

public  Shell(){
        x = 200;
        y = 200;
        width=10;
        height = 10;
        speed = 3;
        degree = Math.random()*Math.PI*2;
    }
    
    public  void   draw(Graphics  g){
        Color   c =  g.getColor();
        g.setColor(Color.YELLOW);
        
        g.fillOval((int)x,(int) y, width, height);
        
        //炮弹沿着任意角度去飞
        x += speed*Math.cos(degree);
        y += speed*Math.sin(degree);
        
        
        if(x<0||x>Constant.GAME_WIDTH-width){
            degree  = Math.PI - degree;
        }
        
        if(y<30||y>Constant.GAME_HEIGHT-height){
            degree  = - degree;
        }

6.爆炸类代码展示

static {
        for (int i = 0; i < 16; i++) {
            imgs[i] = GameUtil.getImage("images/explode/e" + (i + 1) + ".gif");
            imgs[i].getWidth(null);
        }
    }

    int count;

    public void draw(Graphics g) {
        if (count <= 15) {
            g.drawImage(imgs[count], (int) x, (int) y, null);
            count++;
        }
    }

    public Explode(double x, double y) {
        this.x = x;
        this.y = y;
    }

到此这篇关于基于Java制作一个好玩的打飞机游戏的文章就介绍到这了,更多相关Java打飞机游戏内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(基于Java制作一个好玩的打飞机游戏)