-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathowca.h
83 lines (60 loc) · 2.23 KB
/
owca.h
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#ifndef OWCA_H_
#define OWCA_H_
#include "zwierze.h"
class Owca : public Zwierze
{
private:
static const char icon = 'O';
static const int sila = 4;
static const int inicjatywa = 4;
const std::string nazwa = "Owca";
public:
Owca(char ikona, int sila, int inicjatywa, int x, int y, Swiat * swiat) : Zwierze(ikona, sila, inicjatywa, x, y, swiat)
{
gatunek = &nazwa;
}
Owca(char ikona, int x, int y, Swiat * swiat) : Zwierze(ikona, sila, inicjatywa, x, y, swiat)
{
gatunek = &nazwa;
}
Owca(int x, int y, Swiat * swiat) : Zwierze(icon, sila, inicjatywa, x, y, swiat)
{
gatunek = &nazwa;
}
Owca(Swiat * swiat) : Zwierze(icon, sila, inicjatywa, swiat)
{
gatunek = &nazwa;
}
// Nie ma potrzeby definiowania żadnych wlasnych konstruktorow kopiujacych, destruktorow itp
// Pamiec jest statyczna
void kolizja() override
{
int prev_x = x;
int prev_y = y;
int _timeout = 0;
Organizm * result;
do
{
result = swiat -> isfree(this);
x += (rand() % 3) - 1;
y += (rand() % 3) - 1;
// w razie wpadniecia w petle nieskonczoną, bo metoda canSpawn() zadziala zle
if (_timeout++ > 200)
{
x = prev_x;
y = prev_y;
return;
}
} while (outOfworld(x, y) || (x == prev_x && y == prev_y) || (result != nullptr && result -> getKrolestwo() == zwierze_t));
std::cout << "Narodzila sie nowa Owca!\n";
new Owca(this -> x, this -> y, swiat);
x = prev_x;
y = prev_y;
}
Organizm * kolizja(Organizm * inny) override
{
// Nie ma specyfikacji
return nullptr;
}
};
#endif