-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWirtualnySwiat.h
45 lines (34 loc) · 1.18 KB
/
WirtualnySwiat.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
#ifndef WIRTUALNY_SWIAT_H_
#define WIRTUALNY_SWIAT_H_
#include "canva.h"
#include <vector>
#include <fstream>
using std::ostream;
using std::ofstream;
class Organizm;
class Swiat : public Canvas
{
private:
int iloscOrganizmow;
int tura;
std::vector<Organizm*> organizmy;
void rysujSwiat(ostream & out = std::cout) const;
void sortujOrganizmy();
public:
Swiat(int size_x, int size_y, char background, char border);
Swiat();
Swiat(const Swiat&);
~Swiat();
bool wykonajTure();
void drawEntity(char * icon, int x, int y);
bool append(Organizm * nastepnyOrganizm);
bool remove(Organizm * ten_organizm);
Organizm * isfree(Organizm * organizm);
void _toFile(ostream & os);
bool save();
bool load();
int getXsize() {return size_x;}
int getYsize() {return size_y;}
int getTura() {return tura;}
};
#endif