美文网首页
Prcessing课程(angry birds)

Prcessing课程(angry birds)

作者: 数据分析jacky | 来源:发表于2022-08-30 11:05 被阅读0次
    image.png
    // angry birds 
    
    
    class Bird {
        float x, y, xSpeed, ySpeed, rotation;
        boolean stopped = false;
        
        
        Bird(float xx, float yy) {
            x = xx;
            y =yy;
            
            xSpeed = (mouseX - x) /50.0;
            ySpeed = (mouseY -y) /50.0;
        }
        
        void update() {
            x += xSpeed;
            y += ySpeed;
            ySpeed += GRAV;
            
            if(y > 300) {
                xSpeed = ySpeed = 0;
                stopped = true;
            } else {
                rotation += ROTATE;
            }
        }
        
        void display() {
            translate(x,y);
            image(redImg, 0, 0, 64, 64);
            resetMatrix();
        }
    }
        
    String redUrl = "https://vignette.wikia.nocookie.net/p__/images/e/e2/Red_bird.png/revision/latest?cb=20150530184407&path-prefix=protagonist";
    
    PImage redImg = loadImage(redUrl);
    
    Bird red;
    float GRAV = .05;
    float ROTATE = 0.1;
    
    void setup() {
        size(600,400);
        imageMode(CENTER);
        red = new Bird(width/2, 300);
    }
    
    void draw() {
        background(128, 196, 255);
        
        fill(0,128,0);
        noStroke();
        rect(0, 300, width, 200);
        
        red.update();
        red.display();
        
        drawTrajectory();
    }
    
    void mousePressed() {
        red = new Bird(width/2, 300);
    }
    
    void drawTrajectory() {
        Bird tb = new Bird(width/2, 300);
        stroke(0, 128);
        
        while(!tb.stopped) {
            float oldX = tb.x;
            float oldY = tb.y;
            
            tb.update();
            
            line(oldX, oldY, tb.x, tb.y);
        }
        
        noStroke();
        fill(0, 64);
        ellipse(tb.x, tb.y, 30, 30);
    }
    
    
    

    相关文章

      网友评论

          本文标题:Prcessing课程(angry birds)

          本文链接:https://www.haomeiwen.com/subject/dghdnrtx.html