source: molecuilder/src/World.hpp@ 9ef76a

Last change on this file since 9ef76a was 9ef76a, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added a mechanism that allows the world to track changes done by the manipulators

  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 * World.hpp
3 *
4 * Created on: Feb 3, 2010
5 * Author: crueger
6 */
7
8#ifndef WORLD_HPP_
9#define WORLD_HPP_
10
11#include <string>
12#include <map>
13#include <vector>
14#include <set>
15#include <boost/thread.hpp>
16#include <boost/shared_ptr.hpp>
17
18
19#include "Patterns/Observer.hpp"
20#include "Patterns/Cacheable.hpp"
21
22// forward declarations
23class periodentafel;
24class MoleculeListClass;
25class atom;
26class molecule;
27class AtomDescriptor;
28class AtomDescriptor_impl;
29class ManipulateAtomsProcess;
30
31class World : public Observable
32{
33friend class AtomDescriptor_impl;
34friend class AtomDescriptor;
35
36friend class ManipulateAtomsProcess;
37
38typedef std::map<int,atom*> AtomList;
39public:
40
41 /***** getter and setter *****/
42 // reference to pointer is used for legacy reason... reference will be removed latter to keep encapsulation of World object
43 periodentafel *&getPeriode();
44 atom* getAtom(AtomDescriptor descriptor);
45 std::vector<atom*> getAllAtoms(AtomDescriptor descriptor);
46 int numAtoms();
47 int numMolecules();
48
49 /***** Methods to work with the World *****/
50 molecule *createMolecule();
51
52 ManipulateAtomsProcess* manipulateAtoms(boost::function<void(atom*)>,std::string,AtomDescriptor);
53
54protected:
55 /**** Iterators to use internal data structures */
56 class AtomIterator {
57 public:
58 AtomIterator();
59 AtomIterator(AtomDescriptor, World*);
60 AtomIterator(const AtomIterator&);
61 AtomIterator& operator=(const AtomIterator&);
62 AtomIterator& operator++(); // prefix
63 AtomIterator operator++(int); // postfix with dummy parameter
64 bool operator==(const AtomIterator&);
65 bool operator==(const AtomList::iterator&);
66 bool operator!=(const AtomIterator&);
67 bool operator!=(const AtomList::iterator&);
68 atom* operator*();
69
70 int getCount();
71 protected:
72 void advanceState();
73 World* world;
74 AtomList::iterator state;
75 boost::shared_ptr<AtomDescriptor_impl> descr;
76 int index;
77 };
78
79 AtomIterator getAtomIter(AtomDescriptor descr);
80 AtomList::iterator atomEnd();
81
82 /******* Internal manipulation routines for double callback and Observer mechanism ******/
83 void doManipulate(ManipulateAtomsProcess *);
84
85private:
86 periodentafel *periode;
87 AtomList atoms;
88 std::set<molecule*> molecules;
89
90
91 /***** singleton Stuff *****/
92public:
93 static World* get();
94 static void destroy();
95 static World* reset();
96
97private:
98 World();
99 virtual ~World();
100
101 static World *theWorld;
102 // this mutex only saves the singleton pattern...
103 // use other mutexes to protect internal data as well
104 // this mutex handles access to the pointer, not to the object!!!
105 static boost::mutex worldLock;
106
107 /*****
108 * some legacy stuff that is include for now but will be removed later
109 *****/
110public:
111 MoleculeListClass *&getMolecules();
112
113 // functions used for the WorldContent template mechanism
114 void registerAtom(atom *theAtom);
115 void unregisterAtom(atom *theAtom);
116private:
117 // this function cleans up anything that cannot be cleaned while the lock is active
118 // at a later point all these cleanups have to be moved to the World Class so the deadlock and
119 // race condition can both be avoided.
120 void destroyLegacy();
121
122 MoleculeListClass *molecules_deprecated;
123
124 // this is needed to assign unique IDs to atoms... so far
125 // IDs are not assigned upon Atom creation, so we cannot query the ID
126 // during construction. By using the dummy ID we can make sure all atoms
127 // are actually stored in the map and don't overwrite each other.
128 int dummyId;
129};
130
131#endif /* WORLD_HPP_ */
Note: See TracBrowser for help on using the repository browser.