代码拉取完成,页面将自动刷新
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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。