blob: 44e1e1191e8a01f94e9a76fc6cb915d9bc6287dc (
plain)
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
|
#ifndef EDITMANAGER_H_
#define EDITMANAGER_H_
#include "SharedPtr.h"
#include "Room.h"
#include "IdManager.h"
class Window;
class EditManager {
private:
IdManager idManager;
Window *window;
LevelObject *hoveredObject;
LevelObject *selectedObject;
Vertex hoveredVertex;
bool hasHoveredVertex;
bool lineOk(const Room &newRoom, const Line &l) const;
public:
EditManager(Window *window);
void redraw();
LevelObject* getHoveredObject() {
return hoveredObject;
}
void setSelectedObject(LevelObject *object) {
selectedObject = object;
}
LevelObject* getSelectedObject() {
return selectedObject;
}
bool addRoom(const Room &room);
Vertex* getHoveredVertex();
void setHoveredVertex(Vertex *v);
bool vertexOk(const Vertex &v, const Room *newRoom = NULL) const;
bool polygonOk(const Polygon &polygon) const;
};
#endif /*EDITMANAGER_H_*/
|