加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Crab.java 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
sakura 提交于 2021-04-29 16:38 . crab.java
import greenfoot.*;
/**
* This class defines a crab. Crabs live on the beach.
*/
public class Crab extends Actor
{
GreenfootImage image1 = new GreenfootImage("crab.png");
GreenfootImage image2 = new GreenfootImage("crab2.png");
int count = 0;
public Crab(){
setImage(image1);
}
public void act()
{
keyControl();
atEdge();
eat();
move(2);
siwtchImage();
}
public void siwtchImage() {
if (getImage() == image1){
setImage(image2);
} else {
setImage(image1);
}
}
public void keyControl(){
int d = Greenfoot.getRandomNumber(10);
if (Greenfoot.isKeyDown("left")){
turn(-d);
move(2);
}
if (Greenfoot.isKeyDown("right")){
turn(d);
move(2);
}
}
public void atEdge(){
int d = Greenfoot.getRandomNumber(30);
if (isAtEdge()){
turn(d-15);
}
}
public void eat(){
if (isTouching(Worm.class)){
Greenfoot.playSound("slurp.wav");
removeTouching(Worm.class);
count++;
World w = getWorld();
GreenfootImage bj = w.getBackground();
Font font = bj.getFont();
font = font.deriveFont(100);
bj.setFont(font);
bj.setColor(Color.GREEN);
w.showText("吃虫数:"+ count ,50,40);
if (count == 5 ) {
bj.drawString("成功!",170,280);
Greenfoot.stop();
}
}
}// Add your action code here
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化