-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodworko.java
47 lines (42 loc) · 1.27 KB
/
Podworko.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import greenfoot.*;
public class Podworko extends World
{
/**
* Konstruktor obiektów klasy Podworko.
*/
public Podworko()
{
super(25, 20, 32);
prepare();
dodajJedzenie();
//tworzymy ogordzenie(pasek na górze i dole) dodając obiekty do sceny przez pętle-for
for (int x=0; x<getWidth(); x ++ ) {
addObject(new Ogrodzenie(), x, 0);
addObject(new Ogrodzenie(), x, getHeight()-1);
}
//tworzymy granice(paski po bokach)
for (int y=0; y<getHeight(); y ++) {
addObject(new Ogrodzenie(), 0, y);
addObject(new Ogrodzenie(), getWidth()-1,y);
}
}
/**
* Dodajemy jabłko do naszego podwórka
*/
public void dodajJedzenie(){
Jedzenie jablko = new Jedzenie();
addObject(jablko,
Greenfoot.getRandomNumber(getWidth()-4)+2,
Greenfoot.getRandomNumber(getHeight()-4)+2);
}
/**
* Prepare the world for the start of the program. That is: create the initial
* objects and add them to the world.
*/
private void prepare()
{
Bohater bohater = new Bohater();
addObject(bohater, 3, 3);
bohater.setImage("hedgehog.png");
}
}