summaryrefslogtreecommitdiffstats
path: root/src/Data/Gate.h
blob: e8eee940a3d8e027ea9b82c23a65a3d42489951e (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
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
/*
 * Gate.h
 * 
 * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
 * 
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef ZOOMEDIT_DATA_GATE_H_
#define ZOOMEDIT_DATA_GATE_H_

#include <list>
#include <libxml++/nodes/element.h>

namespace ZoomEdit {
namespace Data {

class Triangle;

class Gate {
  private:
    std::list<Triangle*> triangles;
    xmlpp::Element *gateNode;
    
    Glib::ustring room1, room2;
    
    // Prevent shallow copy
    Gate(const Gate &o);
    Gate& operator=(const Gate &o);
    
  public:
    Gate(xmlpp::Element *node);
    virtual ~Gate();
    
    const std::list<Triangle*>& getTriangles() {
      return triangles;
    }
    
    Triangle* addTriangle();
    void removeTriangle(Triangle *t);
    
    const Glib::ustring& getRoom1() const {
      return room1;
    }
    
    void setRoom1(const Glib::ustring &room) {
      room1 = room;
      gateNode->set_attribute("room1", room);
    }
    
    const Glib::ustring& getRoom2() const {
      return room2;
    }
    
    void setRoom2(const Glib::ustring &room) {
      room2 = room;
      gateNode->set_attribute("room2", room);
    }
    
    xmlpp::Element* getNode() const {
      return gateNode;
    }
};

}
}

#endif /*ZOOMEDIT_DATA_GATE_H_*/