source: molecuilder/src/World.cpp@ 0f55b2

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

Added a generic Iterator that can be used to iterate only over certain parts of an internal data structure

  • Property mode set to 100644
File size: 6.3 KB
RevLine 
[2e8296]1/*
2 * World.cpp
3 *
4 * Created on: Feb 3, 2010
5 * Author: crueger
6 */
7
8#include "World.hpp"
9
[d2d8f5]10#include "atom.hpp"
[120f8b]11#include "molecule.hpp"
12#include "periodentafel.hpp"
[86b917]13#include "Descriptors/AtomDescriptor.hpp"
[a5471c]14#include "Descriptors/AtomDescriptor_impl.hpp"
[14d898]15#include "Descriptors/MoleculeDescriptor.hpp"
16#include "Descriptors/MoleculeDescriptor_impl.hpp"
[5738177]17#include "Descriptors/SelectiveIterator_impl.hpp"
[5d4edf]18#include "Actions/ManipulateAtomsProcess.hpp"
[d2d8f5]19
[4c60ef]20#include "Patterns/Singleton_impl.hpp"
21
[d2d8f5]22using namespace std;
[42918b]23
[2e8296]24/******************************* getter and setter ************************/
[120f8b]25periodentafel *&World::getPeriode(){
[2e8296]26 return periode;
27}
28
[14d898]29// Atoms
30
[323177]31atom* World::getAtom(AtomDescriptor descriptor){
[86b917]32 return descriptor.find();
33}
34
[323177]35vector<atom*> World::getAllAtoms(AtomDescriptor descriptor){
[86b917]36 return descriptor.findAll();
37}
38
[bb89b9]39vector<atom*> World::getAllAtoms(){
40 return getAllAtoms(AllAtoms());
41}
42
[120f8b]43int World::numAtoms(){
44 return atoms.size();
45}
46
[14d898]47// Molecules
48
49molecule *World::getMolecule(MoleculeDescriptor descriptor){
50 return descriptor.find();
51}
52
53std::vector<molecule*> World::getAllMolecules(MoleculeDescriptor descriptor){
54 return descriptor.findAll();
55}
56
[120f8b]57int World::numMolecules(){
58 return molecules_deprecated->ListOfMolecules.size();
59}
60
[9ef76a]61/******************** Methods to change World state *********************/
62
[120f8b]63molecule* World::createMolecule(){
64 OBSERVE;
65 molecule *mol = NULL;
[8d9d38]66 mol = NewMolecule();
[a1a532]67 assert(!molecules.count(currMoleculeId));
[8d9d38]68 mol->setId(currMoleculeId++);
[2e6496]69 // store the molecule by ID
[8d9d38]70 molecules[mol->getId()] = mol;
[120f8b]71 mol->signOn(this);
72 return mol;
73}
74
[8d9d38]75void World::destroyMolecule(molecule* mol){
76 OBSERVE;
77 destroyMolecule(mol->getId());
78}
79
80void World::destroyMolecule(moleculeId_t id){
81 OBSERVE;
82 molecule *mol = molecules[id];
83 assert(mol);
84 DeleteMolecule(mol);
85 molecules.erase(id);
86}
87
[5d4edf]88
[7bfc19]89atom *World::createAtom(){
90 OBSERVE;
[3746aeb]91 atomId_t id = getNextAtomId();
92 atom *res = NewAtom(id);
[7bfc19]93 res->setWorld(this);
[2e6496]94 // store the atom by ID
[7bfc19]95 atoms[res->getId()] = res;
96 return res;
97}
98
99int World::registerAtom(atom *atom){
100 OBSERVE;
[3746aeb]101 atomId_t id = getNextAtomId();
102 atom->setId(id);
[7bfc19]103 atom->setWorld(this);
104 atoms[atom->getId()] = atom;
105 return atom->getId();
106}
107
108void World::destroyAtom(atom* atom){
109 OBSERVE;
110 int id = atom->getId();
111 destroyAtom(id);
112}
113
[8d9d38]114void World::destroyAtom(atomId_t id) {
[7bfc19]115 OBSERVE;
116 atom *atom = atoms[id];
117 assert(atom);
118 DeleteAtom(atom);
119 atoms.erase(id);
[3746aeb]120 releaseAtomId(id);
121}
122
123bool World::changeAtomId(atomId_t oldId, atomId_t newId, atom* target){
124 OBSERVE;
125 // in case this call did not originate from inside the atom, we redirect it,
126 // to also let it know that it has changed
127 if(!target){
128 target = atoms[oldId];
129 assert(target && "Atom with that ID not found");
130 return target->changeId(newId);
131 }
132 else{
133 if(reserveAtomId(newId)){
134 atoms.erase(oldId);
135 atoms.insert(pair<atomId_t,atom*>(newId,target));
136 return true;
137 }
138 else{
139 return false;
140 }
141 }
[7bfc19]142}
143
[5d4edf]144ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name,AtomDescriptor descr){
145 return new ManipulateAtomsProcess(op, descr,name,true);
146}
147
[bb89b9]148ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name){
149 return manipulateAtoms(op,name,AllAtoms());
150}
151
[9ef76a]152/********************* Internal Change methods for double Callback and Observer mechanism ********/
153
154void World::doManipulate(ManipulateAtomsProcess *proc){
155 proc->signOn(this);
156 {
157 OBSERVE;
158 proc->doManipulate(this);
159 }
160 proc->signOff(this);
161}
[3746aeb]162/******************************* IDManagement *****************************/
163
[f058ef]164// Atoms
165
[3746aeb]166atomId_t World::getNextAtomId(){
167 // see if we can reuse some Id
168 if(atomIdPool.empty()){
169 return currAtomId++;
170 }
171 else{
172 // we give out the first ID from the pool
173 atomId_t id = *(atomIdPool.begin());
174 atomIdPool.erase(id);
[4c60ef]175 return id;
[3746aeb]176 }
177}
178
179void World::releaseAtomId(atomId_t id){
180 atomIdPool.insert(id);
181 // defragmentation of the pool
182 set<atomId_t>::reverse_iterator iter;
183 // go through all Ids in the pool that lie immediately below the border
184 while(!atomIdPool.empty() && *(atomIdPool.rbegin())==(currAtomId-1)){
185 atomIdPool.erase(--currAtomId);
186 }
187}
[9ef76a]188
[3746aeb]189bool World::reserveAtomId(atomId_t id){
190 if(id>=currAtomId ){
191 // add all ids between the new one and current border as available
192 for(atomId_t pos=currAtomId; pos<id; ++pos){
193 atomIdPool.insert(pos);
194 }
195 currAtomId=id+1;
196 return true;
197 }
198 else if(atomIdPool.count(id)){
199 atomIdPool.erase(id);
200 return true;
201 }
202 else{
203 // this ID could not be reserved
204 return false;
205 }
206}
[f058ef]207
208// Molecules
209
[a5471c]210/******************************* Iterators ********************************/
211
[5738177]212// Build the AtomIterator from template
213CONSTRUCT_SELECTIVE_ITERATOR(atom*,World::AtomSet,AtomDescriptor);
214
[a5471c]215
216World::AtomIterator World::getAtomIter(AtomDescriptor descr){
[5738177]217 return AtomIterator(descr,atoms);
[a5471c]218}
[120f8b]219
[5738177]220World::AtomIterator World::atomEnd(){
221 return AtomIterator(AllAtoms(),atoms,atoms.end());
[5d4edf]222}
223
[5738177]224// build the MoleculeIterator from template
225CONSTRUCT_SELECTIVE_ITERATOR(molecule*,World::MoleculeSet,MoleculeDescriptor);
226
[14d898]227World::MoleculeIterator World::getMoleculeIter(MoleculeDescriptor descr){
[5738177]228 return MoleculeIterator(descr,molecules);
[14d898]229}
230
[5738177]231World::MoleculeIterator World::moleculeEnd(){
232 return MoleculeIterator(AllMolecules(),molecules,molecules.end());
[14d898]233}
234
[2e8296]235/******************************* Singleton Stuff **************************/
236
[323177]237World::World() :
[120f8b]238 periode(new periodentafel),
[a1a532]239 atoms(),
[98a2987]240 currAtomId(0),
241 molecules(),
242 currMoleculeId(0),
243 molecules_deprecated(new MoleculeListClass(this))
[b53a7e]244{
245 molecules_deprecated->signOn(this);
246}
[2e8296]247
248World::~World()
[120f8b]249{
[a0fcfb]250 molecules_deprecated->signOff(this);
[7bfc19]251 delete molecules_deprecated;
[120f8b]252 delete periode;
[8d9d38]253 MoleculeSet::iterator molIter;
254 for(molIter=molecules.begin();molIter!=molecules.end();++molIter){
255 DeleteMolecule((*molIter).second);
256 }
257 molecules.clear();
258 AtomSet::iterator atIter;
259 for(atIter=atoms.begin();atIter!=atoms.end();++atIter){
260 DeleteAtom((*atIter).second);
[7bfc19]261 }
262 atoms.clear();
[120f8b]263}
[2e8296]264
[4c60ef]265// Explicit instantiation of the singleton mechanism at this point
[2e8296]266
[4c60ef]267CONSTRUCT_SINGLETON(World)
[2e8296]268
269/******************************* deprecated Legacy Stuff ***********************/
270
[120f8b]271MoleculeListClass *&World::getMolecules() {
272 return molecules_deprecated;
[2e8296]273}
Note: See TracBrowser for help on using the repository browser.