1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
5 | * Copyright (C) 2013 Frederik Heber. All rights reserved.
|
---|
6 | *
|
---|
7 | *
|
---|
8 | * This file is part of MoleCuilder.
|
---|
9 | *
|
---|
10 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
11 | * it under the terms of the GNU General Public License as published by
|
---|
12 | * the Free Software Foundation, either version 2 of the License, or
|
---|
13 | * (at your option) any later version.
|
---|
14 | *
|
---|
15 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
18 | * GNU General Public License for more details.
|
---|
19 | *
|
---|
20 | * You should have received a copy of the GNU General Public License
|
---|
21 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
22 | */
|
---|
23 |
|
---|
24 | /*
|
---|
25 | * GLWorldScene.cpp
|
---|
26 | *
|
---|
27 | * This is based on the Qt3D example "teaservice", specifically parts of teaservice.cpp.
|
---|
28 | *
|
---|
29 | * Created on: Aug 17, 2011
|
---|
30 | * Author: heber
|
---|
31 | */
|
---|
32 |
|
---|
33 | // include config.h
|
---|
34 | #ifdef HAVE_CONFIG_H
|
---|
35 | #include <config.h>
|
---|
36 | #endif
|
---|
37 |
|
---|
38 | #include "GLWorldScene.hpp"
|
---|
39 | #include <Qt3D/qglview.h>
|
---|
40 | #include <Qt3D/qglbuilder.h>
|
---|
41 | #include <Qt3D/qglscenenode.h>
|
---|
42 | #include <Qt3D/qglsphere.h>
|
---|
43 | #include <Qt3D/qglcylinder.h>
|
---|
44 |
|
---|
45 | #include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject.hpp"
|
---|
46 | #include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject_atom.hpp"
|
---|
47 | #include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject_bond.hpp"
|
---|
48 | #include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject_molecule.hpp"
|
---|
49 | #include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject_shape.hpp"
|
---|
50 |
|
---|
51 | #include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp"
|
---|
52 |
|
---|
53 | #include "CodePatterns/MemDebug.hpp"
|
---|
54 |
|
---|
55 | #include "CodePatterns/Log.hpp"
|
---|
56 |
|
---|
57 | #include "Actions/SelectionAction/Atoms/AtomByIdAction.hpp"
|
---|
58 | #include "Actions/SelectionAction/Atoms/NotAtomByIdAction.hpp"
|
---|
59 | #include "Actions/SelectionAction/Molecules/MoleculeByIdAction.hpp"
|
---|
60 | #include "Actions/SelectionAction/Molecules/NotMoleculeByIdAction.hpp"
|
---|
61 | #include "Atom/atom.hpp"
|
---|
62 | #include "Bond/bond.hpp"
|
---|
63 | #include "Descriptors/AtomIdDescriptor.hpp"
|
---|
64 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
---|
65 | #include "Helpers/helpers.hpp"
|
---|
66 | #include "Shapes/ShapeRegistry.hpp"
|
---|
67 | #include "molecule.hpp"
|
---|
68 | #include "World.hpp"
|
---|
69 |
|
---|
70 | #include <iostream>
|
---|
71 |
|
---|
72 | using namespace MoleCuilder;
|
---|
73 |
|
---|
74 | GLWorldScene::GLWorldScene(
|
---|
75 | QtObservedInstanceBoard * _board,
|
---|
76 | QObject *parent) :
|
---|
77 | QObject(parent),
|
---|
78 | selectionMode(SelectAtom),
|
---|
79 | board(_board)
|
---|
80 | {
|
---|
81 | int sphereDetails[] = {5, 3, 2, 0};
|
---|
82 | int cylinderDetails[] = {16, 8, 6, 3};
|
---|
83 | for (int i=0;i<GLMoleculeObject::DETAILTYPES_MAX;i++){
|
---|
84 | QGLBuilder emptyBuilder;
|
---|
85 | GLMoleculeObject::meshEmpty[i] = emptyBuilder.finalizedSceneNode();
|
---|
86 | QGLBuilder sphereBuilder;
|
---|
87 | sphereBuilder << QGLSphere(2.0, sphereDetails[i]);
|
---|
88 | GLMoleculeObject::meshSphere[i] = sphereBuilder.finalizedSceneNode();
|
---|
89 | GLMoleculeObject::meshSphere[i]->setOption(QGLSceneNode::CullBoundingBox, true);
|
---|
90 | QGLBuilder cylinderBuilder;
|
---|
91 | cylinderBuilder << QGLCylinder(.25,.25,1.0,cylinderDetails[i]);
|
---|
92 | GLMoleculeObject::meshCylinder[i] = cylinderBuilder.finalizedSceneNode();
|
---|
93 | GLMoleculeObject::meshCylinder[i]->setOption(QGLSceneNode::CullBoundingBox, true);
|
---|
94 | }
|
---|
95 | connect(board, SIGNAL(moleculeInserted(QtObservedMolecule::ptr)),
|
---|
96 | this, SLOT(moleculeSignOn(QtObservedMolecule::ptr)), Qt::DirectConnection);
|
---|
97 | connect(board, SIGNAL(moleculeRemoved(ObservedValue_Index_t)),
|
---|
98 | this, SLOT(moleculeSignOff(ObservedValue_Index_t)), Qt::DirectConnection);
|
---|
99 | connect(board, SIGNAL(atomInserted(QtObservedAtom::ptr)),
|
---|
100 | this, SLOT(atomInserted(QtObservedAtom::ptr)));
|
---|
101 | connect(board, SIGNAL(atomRemoved(ObservedValue_Index_t)),
|
---|
102 | this, SLOT(atomRemoved(ObservedValue_Index_t)));
|
---|
103 | connect(this, SIGNAL(insertMolecule(QtObservedMolecule::ptr)),
|
---|
104 | this, SLOT(moleculeInserted(QtObservedMolecule::ptr)) );
|
---|
105 | connect(this, SIGNAL(removeMolecule(QtObservedMolecule*)),
|
---|
106 | this, SLOT(moleculeRemoved(QtObservedMolecule*)) );
|
---|
107 |
|
---|
108 | // connect(this, SIGNAL(updated()), this, SLOT(update()));
|
---|
109 | }
|
---|
110 |
|
---|
111 | GLWorldScene::~GLWorldScene()
|
---|
112 | {
|
---|
113 | // remove all elements
|
---|
114 | GLMoleculeObject::cleanMaterialMap();
|
---|
115 | }
|
---|
116 |
|
---|
117 | void GLWorldScene::atomClicked(atomId_t no)
|
---|
118 | {
|
---|
119 | LOG(3, "INFO: GLMoleculeObject_molecule - atom " << no << " has been clicked.");
|
---|
120 | const atom * const Walker = const_cast<const World &>(World::getInstance()).
|
---|
121 | getAtom(AtomById(no));
|
---|
122 | ASSERT( Walker != NULL,
|
---|
123 | "GLWorldScene::atomClicked() - clicked atom has disappeared.");
|
---|
124 | if (selectionMode == SelectAtom){
|
---|
125 | if (!World::getInstance().isSelected(Walker))
|
---|
126 | SelectionAtomById(std::vector<atomId_t>(1,no));
|
---|
127 | else
|
---|
128 | SelectionNotAtomById(std::vector<atomId_t>(1,no));
|
---|
129 | }else if (selectionMode == SelectMolecule){
|
---|
130 | const molecule *mol = Walker->getMolecule();
|
---|
131 | ASSERT(mol, "Atom without molecule has been clicked.");
|
---|
132 | molids_t ids(1, mol->getId());
|
---|
133 | if (!World::getInstance().isSelected(mol))
|
---|
134 | SelectionMoleculeById(ids);
|
---|
135 | else
|
---|
136 | SelectionNotMoleculeById(ids);
|
---|
137 | }
|
---|
138 | emit clicked(no);
|
---|
139 | }
|
---|
140 |
|
---|
141 | void GLWorldScene::moleculeClicked(moleculeId_t no)
|
---|
142 | {
|
---|
143 | LOG(3, "INFO: GLMoleculeObject_molecule - mol " << no << " has been clicked.");
|
---|
144 | const molecule * const mol= const_cast<const World &>(World::getInstance()).
|
---|
145 | getMolecule(MoleculeById(no));
|
---|
146 | ASSERT(mol, "Atom without molecule has been clicked.");
|
---|
147 | molids_t ids(1, mol->getId());
|
---|
148 | if (!World::getInstance().isSelected(mol))
|
---|
149 | SelectionMoleculeById(ids);
|
---|
150 | else
|
---|
151 | SelectionNotMoleculeById(ids);
|
---|
152 | emit clicked(no);
|
---|
153 | }
|
---|
154 |
|
---|
155 | /** Prepares insertion of a general atom.
|
---|
156 | *
|
---|
157 | * This is called before the insertion into a molecule and thus before the
|
---|
158 | * insertion into the scene.
|
---|
159 | *
|
---|
160 | * @param _atom atom to insert
|
---|
161 | */
|
---|
162 | void GLWorldScene::atomInserted(QtObservedAtom::ptr _atom)
|
---|
163 | {
|
---|
164 | const ObservedValue_Index_t atomid = _atom->getIndex();
|
---|
165 | ASSERT( QtObservedAtomMap.find(atomid) == QtObservedAtomMap.end(),
|
---|
166 | "GLWorldScene::AtomInserted() - atom with id "+toString(_atom->getAtomIndex())
|
---|
167 | +" is already present in QtObservedAtomMap.");
|
---|
168 | QtObservedAtomMap[atomid] = _atom;
|
---|
169 | }
|
---|
170 |
|
---|
171 | /** Removes an general atom.
|
---|
172 | *
|
---|
173 | * This is called when the atom has been removed from the molecule.
|
---|
174 | *
|
---|
175 | * @param _atom atom to remove
|
---|
176 | */
|
---|
177 | void GLWorldScene::atomRemoved(ObservedValue_Index_t _atomid)
|
---|
178 | {
|
---|
179 | const QtObservedAtomMap_t::iterator eraseiter = QtObservedAtomMap.find(_atomid);
|
---|
180 | ASSERT( eraseiter != QtObservedAtomMap.end(),
|
---|
181 | "GLWorldScene::AtomRemoved() - atom with id "+toString(_atomid)
|
---|
182 | +" is not present in QtObservedAtomMap.");
|
---|
183 | QtObservedAtomMap.erase(eraseiter);
|
---|
184 | }
|
---|
185 |
|
---|
186 | /** Inserts an atom into the scene when molecule is present.
|
---|
187 | *
|
---|
188 | * @param _atom atom to insert
|
---|
189 | */
|
---|
190 | void GLWorldScene::moleculesAtomInserted(QtObservedAtom::ptr _atom, QtObservedMolecule * _mol)
|
---|
191 | {
|
---|
192 | const ObservedValue_Index_t atomid = _atom->getIndex();
|
---|
193 | // this ASSERT cannot work: The same molecule may get reassigned to a different
|
---|
194 | // molecule, when e.g. the time step changes (which triggers an update-molecules).
|
---|
195 | // The GUI is slow and may lack behind and thus get to execute the event
|
---|
196 | // moleculeAtomInserted when the change has been already been done.
|
---|
197 | // ASSERT( (atommol == NULL) || (_mol == atommol),
|
---|
198 | // "GLWorldScene::moleculesAtomInserted() - atom "+toString(atomid)
|
---|
199 | // +" claims to belong to QtObservedMolecule "+toString(atommol)
|
---|
200 | // +" but signal came from QtObservedMolecule "+toString(_mol)+".");
|
---|
201 | LOG(3, "INFO: GLWorldScene: Received signal atomInserted for atom " << _atom->getAtomIndex());
|
---|
202 | const ObservedValue_Index_t molid = _mol->getIndex();
|
---|
203 |
|
---|
204 | // check of molecule is already present
|
---|
205 | boost::recursive_mutex::scoped_lock lock(MoleculeinSceneMap_mutex);
|
---|
206 | const MoleculeNodeMap::iterator moliter = MoleculesinSceneMap.find(molid);
|
---|
207 | if (moliter != MoleculesinSceneMap.end()) {
|
---|
208 | const RemovedMoleculesMap_t::iterator emptyiter = EmptyMolecules.find(_mol);
|
---|
209 | if (emptyiter != EmptyMolecules.end())
|
---|
210 | EmptyMolecules.erase(emptyiter);
|
---|
211 | // check that it is the right molecule
|
---|
212 | QtObservedMolecule::ptr &checkmol = moliter->second->ObservedMolecule;
|
---|
213 | if (checkmol.get() == _mol) {
|
---|
214 | LOG(3, "INFO: GLWorldScene: Sending signal moleculesAtomInserted for atom "
|
---|
215 | << _atom->getAtomIndex());
|
---|
216 | QMetaObject::invokeMethod(moliter->second, // pointer to a QObject
|
---|
217 | "atomInserted", // member name (no parameters here)
|
---|
218 | Qt::QueuedConnection, // connection type
|
---|
219 | Q_ARG(QtObservedAtom::ptr, _atom)); // parameters
|
---|
220 | } else {
|
---|
221 | // relay atomRemoved to GLMoleculeObject_molecule in RemovedMolecules
|
---|
222 | // LOG(3, "INFO: GLWorldScene: Sending signal moleculesAtomInserted for atom "+toString(_atomid)
|
---|
223 | // +" to molecule in RemovedMolecules.");
|
---|
224 | // const RemovedMoleculesMap_t::iterator removedmoliter = RemovedMolecules.find(molid);
|
---|
225 | // ASSERT( removedmoliter != RemovedMolecules.end(),
|
---|
226 | // "GLWorldScene::moleculesAtomInserted() - signal from old mol "
|
---|
227 | // +toString(molid)+", but not present in RemovedMolecules");
|
---|
228 | // QMetaObject::invokeMethod(removedmoliter->second, // pointer to a QObject
|
---|
229 | // "atomInserted ", // member name (no parameters here)
|
---|
230 | // Qt::QueuedConnection, // connection type
|
---|
231 | // Q_ARG(QtObservedAtom::ptr, _atom)); // parameters
|
---|
232 | ASSERT( 0,
|
---|
233 | "GLWorldScene::moleculesAtomInserted() - would need to send atomInserted to already removed molecule.");
|
---|
234 | }
|
---|
235 | } else {
|
---|
236 | const RemovedMoleculesMap_t::iterator removedmoliter = RemovedMolecules.find(_mol);
|
---|
237 | if (removedmoliter != RemovedMolecules.end()) {
|
---|
238 | ASSERT( 0,
|
---|
239 | "GLWorldScene::moleculesAtomInserted() - would need to send atomInserted to already removed molecule.");
|
---|
240 | } else {
|
---|
241 | boost::recursive_mutex::scoped_lock lock(MoleculeMissedStateMap_mutex);
|
---|
242 | // only record missed state for molecule if (still) present but not instantiated
|
---|
243 | if (QtObservedMoleculeMap.count(molid)) {
|
---|
244 | // store signal for when it is instantiated
|
---|
245 | if (MoleculeMissedStateMap.count(molid) == 0)
|
---|
246 | MoleculeMissedStateMap.insert( std::make_pair(molid ,StateChangeMap_t()) );
|
---|
247 | MoleculeMissedStateMap[molid].insert( std::make_pair(atomid, atomInsertedState) );
|
---|
248 | ASSERT( QtObservedAtomMap[atomid] == _atom,
|
---|
249 | "GLWorldScene::moleculesAtomInserted() - atom "+toString(atomid)
|
---|
250 | +" inserted in molecule "+toString(_mol->getMolIndex())
|
---|
251 | +" which does not match atom in QtObservedAtomMap.");
|
---|
252 | LOG(3, "INFO: GLWorldScene: Placing atomInserted for atom " << _atom->getAtomIndex()
|
---|
253 | << " and molecule " << _mol->getMolIndex() << " into missed state map.");
|
---|
254 | }
|
---|
255 | }
|
---|
256 | }
|
---|
257 | }
|
---|
258 |
|
---|
259 | /** Removes an atom into the scene before molecule is present.
|
---|
260 | *
|
---|
261 | * @param _atomid atom to remove
|
---|
262 | */
|
---|
263 | void GLWorldScene::moleculesAtomRemoved(ObservedValue_Index_t _atomid, QtObservedMolecule * _mol)
|
---|
264 | {
|
---|
265 | LOG(3, "INFO: GLWorldScene: Received signal atomRemoved for atom "+toString(_atomid)+".");
|
---|
266 |
|
---|
267 | const ObservedValue_Index_t molid = _mol->getIndex();
|
---|
268 | // check of molecule is already present
|
---|
269 | boost::recursive_mutex::scoped_lock lock(MoleculeinSceneMap_mutex);
|
---|
270 | const MoleculeNodeMap::iterator moliter = MoleculesinSceneMap.find(molid);
|
---|
271 | if (moliter != MoleculesinSceneMap.end()) {
|
---|
272 | const QtObservedMolecule::ptr &checkmol = moliter->second->ObservedMolecule;
|
---|
273 | if (checkmol.get() == _mol) {
|
---|
274 | LOG(3, "INFO: GLWorldScene: Sending signal moleculesAtomRemoved for atom "+toString(_atomid)+".");
|
---|
275 | QMetaObject::invokeMethod(moliter->second, // pointer to a QObject
|
---|
276 | "atomRemoved", // member name (no parameters here)
|
---|
277 | Qt::QueuedConnection, // connection type
|
---|
278 | Q_ARG(ObservedValue_Index_t, _atomid)); // parameters
|
---|
279 | } else {
|
---|
280 | // relay atomRemoved to GLMoleculeObject_molecule in RemovedMolecules
|
---|
281 | LOG(3, "INFO: GLWorldScene: Sending signal moleculesAtomRemoved for atom "+toString(_atomid)
|
---|
282 | +" to molecule in RemovedMolecules.");
|
---|
283 | const RemovedMoleculesMap_t::iterator removedmoliter = RemovedMolecules.find(_mol);
|
---|
284 | ASSERT( removedmoliter != RemovedMolecules.end(),
|
---|
285 | "GLWorldScene::moleculesAtomRemoved() - signal from old molecule "
|
---|
286 | +toString(molid)+", but not present in RemovedMolecules");
|
---|
287 | #ifndef NDEBUG
|
---|
288 | const QtObservedMolecule::ptr &othercheckmol = removedmoliter->second->ObservedMolecule;
|
---|
289 | #endif
|
---|
290 | ASSERT( othercheckmol.get() == _mol,
|
---|
291 | "GLWorldScene::moleculesAtomRemoved() - signal from old molecule "
|
---|
292 | +toString(molid)+", but different one "+toString(othercheckmol)
|
---|
293 | +" present in RemovedMolecules.");
|
---|
294 | QMetaObject::invokeMethod(removedmoliter->second, // pointer to a QObject
|
---|
295 | "atomRemoved", // member name (no parameters here)
|
---|
296 | Qt::QueuedConnection, // connection type
|
---|
297 | Q_ARG(ObservedValue_Index_t, _atomid)); // parameters
|
---|
298 | }
|
---|
299 | } else {
|
---|
300 | const RemovedMoleculesMap_t::iterator removedmoliter = RemovedMolecules.find(_mol);
|
---|
301 | if (removedmoliter != RemovedMolecules.end()) {
|
---|
302 | ASSERT( removedmoliter != RemovedMolecules.end(),
|
---|
303 | "GLWorldScene::moleculesAtomRemoved() - signal from old molecule "
|
---|
304 | +toString(molid)+", but not present in RemovedMolecules");
|
---|
305 | #ifndef NDEBUG
|
---|
306 | const QtObservedMolecule::ptr &othercheckmol = removedmoliter->second->ObservedMolecule;
|
---|
307 | #endif
|
---|
308 | ASSERT( othercheckmol.get() == _mol,
|
---|
309 | "GLWorldScene::moleculesAtomRemoved() - signal from old molecule "
|
---|
310 | +toString(molid)+", but different one "+toString(othercheckmol)
|
---|
311 | +" present in RemovedMolecules.");
|
---|
312 | QMetaObject::invokeMethod(removedmoliter->second, // pointer to a QObject
|
---|
313 | "atomRemoved", // member name (no parameters here)
|
---|
314 | Qt::QueuedConnection, // connection type
|
---|
315 | Q_ARG(ObservedValue_Index_t, _atomid)); // parameters
|
---|
316 | } else {
|
---|
317 | boost::recursive_mutex::scoped_lock lock(MoleculeMissedStateMap_mutex);
|
---|
318 | // only record missed state for molecule if (still) present but not instantiated
|
---|
319 | if (QtObservedMoleculeMap.count(molid)) {
|
---|
320 | // store signal for when it is instantiated
|
---|
321 | if (MoleculeMissedStateMap.count(molid) == 0)
|
---|
322 | MoleculeMissedStateMap.insert( std::make_pair(molid, StateChangeMap_t()) );
|
---|
323 | MoleculeMissedStateMap[molid].insert( std::make_pair(_atomid, atomRemovedState) );
|
---|
324 | LOG(3, "INFO: GLWorldScene: Placing atomRemoved for atom " << _atomid
|
---|
325 | << " and molecule " << molid << " into missed state map.");
|
---|
326 | }
|
---|
327 | }
|
---|
328 | }
|
---|
329 | }
|
---|
330 |
|
---|
331 | void GLWorldScene::moleculeSignOn(QtObservedMolecule::ptr _mol)
|
---|
332 | {
|
---|
333 | // sign on to QtObservedMolecule to get atomInserted/..Removed signals from same
|
---|
334 | // source as GLMoleculeObject_molecule would
|
---|
335 | connect(_mol.get(), SIGNAL(atomInserted(QtObservedAtom::ptr, QtObservedMolecule *)),
|
---|
336 | this, SLOT(moleculesAtomInserted(QtObservedAtom::ptr, QtObservedMolecule *)) );
|
---|
337 | connect(_mol.get(), SIGNAL(atomRemoved(ObservedValue_Index_t, QtObservedMolecule *)),
|
---|
338 | this, SLOT(moleculesAtomRemoved(ObservedValue_Index_t, QtObservedMolecule *)) );
|
---|
339 | const ObservedValue_Index_t molid = _mol->getIndex();
|
---|
340 | ASSERT( QtObservedMoleculeMap.find(molid) == QtObservedMoleculeMap.end(),
|
---|
341 | "GLWorldScene::moleculeSignOn() - molecule with id "+toString(_mol->getMolIndex())
|
---|
342 | +" is already present in QtObservedMoleculeMap.");
|
---|
343 | QtObservedMoleculeMap[molid] = _mol;
|
---|
344 |
|
---|
345 | LOG(3, "INFO: GLWorldScene: Received signal moleculeSignOn for molecule " << _mol->getMolIndex());
|
---|
346 |
|
---|
347 | emit insertMolecule(_mol);
|
---|
348 | }
|
---|
349 |
|
---|
350 | void GLWorldScene::moleculeSignOff(ObservedValue_Index_t _id)
|
---|
351 | {
|
---|
352 | const QtObservedMoleculeMap_t::iterator eraseiter = QtObservedMoleculeMap.find(_id);
|
---|
353 | ASSERT( eraseiter != QtObservedMoleculeMap.end(),
|
---|
354 | "GLWorldScene::moleculeSignOff() - cannot find id "+toString(_id)+" in map.");
|
---|
355 | QtObservedMolecule * mol = eraseiter->second.get();
|
---|
356 | QtObservedMoleculeMap.erase(eraseiter);
|
---|
357 |
|
---|
358 | LOG(3, "INFO: GLWorldScene: Received signal moleculeSignOff for molecule " << mol->getMolIndex());
|
---|
359 |
|
---|
360 | emit removeMolecule(mol);
|
---|
361 | }
|
---|
362 |
|
---|
363 | /** Inserts a molecule into the scene.
|
---|
364 | *
|
---|
365 | * @param _mol molecule to insert
|
---|
366 | */
|
---|
367 | void GLWorldScene::moleculeInserted(QtObservedMolecule::ptr _mol)
|
---|
368 | {
|
---|
369 | ASSERT (_mol,
|
---|
370 | "GLWorldScene::moleculeInserted() - received shared_ptr for molecule is empty?");
|
---|
371 | const ObservedValue_Index_t molid = _mol->getIndex();
|
---|
372 | LOG(3, "INFO: GLWorldScene: Received signal moleculeInserted for molecule "
|
---|
373 | << _mol->getMolIndex());
|
---|
374 |
|
---|
375 | boost::recursive_mutex::scoped_lock lock(MoleculeinSceneMap_mutex);
|
---|
376 |
|
---|
377 | MoleculeNodeMap::const_iterator iter = MoleculesinSceneMap.find(molid);
|
---|
378 | ASSERT( iter == MoleculesinSceneMap.end(),
|
---|
379 | "GLWorldScene::moleculeInserted() - molecule's id "+toString(_mol->getMolIndex())
|
---|
380 | +" already present.");
|
---|
381 |
|
---|
382 | // add new object
|
---|
383 | LOG(1, "DEBUG: Adding GLMoleculeObject_molecule to id " << _mol->getMolIndex());
|
---|
384 | GLMoleculeObject_molecule *molObject =
|
---|
385 | new GLMoleculeObject_molecule(
|
---|
386 | GLMoleculeObject::meshEmpty,
|
---|
387 | this,
|
---|
388 | *board,
|
---|
389 | _mol);
|
---|
390 | ASSERT( molObject != NULL,
|
---|
391 | "GLWorldScene::moleculeInserted - could not create molecule object for "
|
---|
392 | +toString(_mol->getMolIndex()));
|
---|
393 | #ifndef NDEBUG
|
---|
394 | std::pair<MoleculeNodeMap::iterator, bool> inserter =
|
---|
395 | #endif
|
---|
396 | MoleculesinSceneMap.insert( make_pair(molid, molObject) );
|
---|
397 | ASSERT(inserter.second,
|
---|
398 | "GLWorldScene::moleculeInserted() - molecule "+toString(_mol->getMolIndex())
|
---|
399 | +" already present in scene.");
|
---|
400 |
|
---|
401 | // now handle all state changes that came up before the instantiation
|
---|
402 | if (MoleculeMissedStateMap.count(molid) != 0) {
|
---|
403 | // ASSERT( !MoleculeMissedStateMap[molid].empty(),
|
---|
404 | // "GLWorldScene::moleculeInserted() - we have an empty state change map for molecule with id "
|
---|
405 | // +toString(molid));
|
---|
406 | boost::recursive_mutex::scoped_lock lock(MoleculeMissedStateMap_mutex);
|
---|
407 | for (StateChangeMap_t::iterator iter = MoleculeMissedStateMap[molid].begin();
|
---|
408 | !MoleculeMissedStateMap[molid].empty();
|
---|
409 | iter = MoleculeMissedStateMap[molid].begin()) {
|
---|
410 | std::pair<StateChangeMap_t::iterator, StateChangeMap_t::iterator> rangeiter =
|
---|
411 | MoleculeMissedStateMap[molid].equal_range(iter->first);
|
---|
412 | const size_t StateCounts = std::distance(rangeiter.first, rangeiter.second);
|
---|
413 | if (StateCounts > 1) {
|
---|
414 | // more than one state change, have to combine
|
---|
415 | typedef std::map<StateChangeType, size_t> StateChangeAmounts_t;
|
---|
416 | StateChangeAmounts_t StateChangeAmounts;
|
---|
417 | for (StateChangeMap_t::const_iterator stateiter = rangeiter.first;
|
---|
418 | stateiter != rangeiter.second; ++stateiter)
|
---|
419 | ++StateChangeAmounts[stateiter->second];
|
---|
420 | ASSERT( StateChangeAmounts[atomInsertedState] >= StateChangeAmounts[atomRemovedState],
|
---|
421 | "GLWorldScene::moleculeInserted() - more atomRemoved states "
|
---|
422 | +toString(StateChangeAmounts[atomRemovedState])+" than atomInserted "
|
---|
423 | +toString(StateChangeAmounts[atomInsertedState])+" for atom "+toString(iter->first));
|
---|
424 | if (StateChangeAmounts[atomInsertedState] > StateChangeAmounts[atomRemovedState]) {
|
---|
425 | LOG(1, "INFO: invoking atomInserted for atom " << iter->first);
|
---|
426 | QMetaObject::invokeMethod(molObject, // pointer to a QObject
|
---|
427 | "atomInserted", // member name (no parameters here)
|
---|
428 | Qt::QueuedConnection, // connection type
|
---|
429 | Q_ARG(QtObservedAtom::ptr, QtObservedAtomMap[iter->first])); // parameters
|
---|
430 | } else {
|
---|
431 | LOG(1, "INFO: Atom " << iter->first << " has been inserted and removed already.");
|
---|
432 | }
|
---|
433 | // removed all state changes for this atom
|
---|
434 | MoleculeMissedStateMap[molid].erase(rangeiter.first, rangeiter.second);
|
---|
435 | } else {
|
---|
436 | // can only be an insertion
|
---|
437 | switch (rangeiter.first->second) {
|
---|
438 | case atomRemovedState:
|
---|
439 | ASSERT( 0,
|
---|
440 | "GLWorldScene::moleculeInserted() - atomRemoved state without atomInserted for atom "
|
---|
441 | +toString(iter->first));
|
---|
442 | break;
|
---|
443 | case atomInsertedState:
|
---|
444 | {
|
---|
445 | LOG(1, "INFO: invoking atomInserted for atom " << iter->first);
|
---|
446 | QMetaObject::invokeMethod(molObject, // pointer to a QObject
|
---|
447 | "atomInserted", // member name (no parameters here)
|
---|
448 | Qt::QueuedConnection, // connection type
|
---|
449 | Q_ARG(QtObservedAtom::ptr, QtObservedAtomMap[iter->first])); // parameters
|
---|
450 | break;
|
---|
451 | }
|
---|
452 | default:
|
---|
453 | ASSERT( 0,
|
---|
454 | "GLWorldScene::moleculeInserted() - there are unknown change states.");
|
---|
455 | break;
|
---|
456 | }
|
---|
457 | // removed state changes for this atom
|
---|
458 | MoleculeMissedStateMap[molid].erase(iter);
|
---|
459 | }
|
---|
460 | }
|
---|
461 | }
|
---|
462 |
|
---|
463 | connect (molObject, SIGNAL(changed()), this, SIGNAL(changed()));
|
---|
464 | connect (molObject, SIGNAL(changeOccured()), this, SIGNAL(changeOccured()));
|
---|
465 | connect (molObject, SIGNAL(atomClicked(atomId_t)), this, SLOT(atomClicked(atomId_t)));
|
---|
466 | connect (molObject, SIGNAL(moleculeClicked(moleculeId_t)), this, SLOT(moleculeClicked(moleculeId_t)));
|
---|
467 | connect (molObject, SIGNAL(moleculeEmptied(QtObservedMolecule::ptr)), this, SLOT(moleculeEmpty(QtObservedMolecule::ptr)));
|
---|
468 | connect (molObject, SIGNAL(selectionChanged()), this, SIGNAL(changed()));
|
---|
469 | connect (molObject, SIGNAL(selectionChanged()), this, SIGNAL(changed()));
|
---|
470 | connect (molObject, SIGNAL(hoverChanged(const atomId_t)), this, SIGNAL(hoverChanged(const atomId_t)));
|
---|
471 | connect (molObject, SIGNAL(hoverChanged(const moleculeId_t, int)), this, SIGNAL(hoverChanged(const moleculeId_t, int)));
|
---|
472 | connect (molObject, SIGNAL(hoverChanged(const moleculeId_t, int)), this, SIGNAL(hoverChanged(const moleculeId_t, int)));
|
---|
473 |
|
---|
474 | emit changed();
|
---|
475 | emit changeOccured();
|
---|
476 |
|
---|
477 | // remove state change map for the molecule
|
---|
478 | {
|
---|
479 | boost::recursive_mutex::scoped_lock lock(MoleculeMissedStateMap_mutex);
|
---|
480 | MoleculeMissedStateMap.erase(molid);
|
---|
481 | }
|
---|
482 | }
|
---|
483 |
|
---|
484 | /** Removes a molecule from the scene.
|
---|
485 | *
|
---|
486 | * @param _mol QtObservedMolecule instance of molecule to remove
|
---|
487 | */
|
---|
488 | void GLWorldScene::moleculeRemoved(QtObservedMolecule* _mol)
|
---|
489 | {
|
---|
490 | const ObservedValue_Index_t molid = _mol->getIndex();
|
---|
491 | LOG(3, "INFO: GLWorldScene: Received signal moleculeRemoved for molecule "+toString(molid)+".");
|
---|
492 |
|
---|
493 | boost::recursive_mutex::scoped_lock lock(MoleculeinSceneMap_mutex);
|
---|
494 |
|
---|
495 | MoleculeNodeMap::iterator iter = MoleculesinSceneMap.find(molid);
|
---|
496 | ASSERT ( iter != MoleculesinSceneMap.end(),
|
---|
497 | "GLWorldScene::moleculeRemoved() - to be removed molecule "+toString(_mol->getMolIndex())
|
---|
498 | +" is already gone.");
|
---|
499 | // check if it's already empty
|
---|
500 | const RemovedMoleculesMap_t::iterator emptyiter = EmptyMolecules.find(_mol);
|
---|
501 | if (emptyiter != EmptyMolecules.end()) {
|
---|
502 | LOG(1, "DEBUG: Removing empty GLMoleculeObject_molecule to id " << _mol->getMolIndex()
|
---|
503 | << " from scene.");
|
---|
504 | // it's already empty, remove it
|
---|
505 | ASSERT( emptyiter->second == iter->second,
|
---|
506 | "GLWorldScene::moleculeRemoved() - empty molecule "
|
---|
507 | +toString(emptyiter->second)+" and removed molecule "
|
---|
508 | +toString(iter->second)+" don't match.");
|
---|
509 | LOG(1, "DEBUG: Deleting already empty GLMoleculeObject_molecule to id " << _mol->getMolIndex());
|
---|
510 | GLMoleculeObject_molecule *molObject = emptyiter->second;
|
---|
511 | EmptyMolecules.erase(emptyiter);
|
---|
512 | molObject->disconnect();
|
---|
513 | delete molObject;
|
---|
514 |
|
---|
515 | emit changed();
|
---|
516 | emit changeOccured();
|
---|
517 | } else {
|
---|
518 | // otherwise note it as removal candidate
|
---|
519 | RemovedMolecules.insert( std::make_pair(_mol, iter->second) );
|
---|
520 | }
|
---|
521 | MoleculesinSceneMap.erase(iter);
|
---|
522 |
|
---|
523 | // remove any possible state changes left
|
---|
524 | {
|
---|
525 | boost::recursive_mutex::scoped_lock lock(MoleculeMissedStateMap_mutex);
|
---|
526 | MoleculeMissedStateMap.erase(molid);
|
---|
527 | }
|
---|
528 | }
|
---|
529 |
|
---|
530 | void GLWorldScene::moleculeEmpty(QtObservedMolecule::ptr _mol)
|
---|
531 | {
|
---|
532 | LOG(3, "INFO: GLWorldScene: Received signal moleculeEmpty for molecule "
|
---|
533 | +toString(_mol->getMolIndex())+".");
|
---|
534 |
|
---|
535 | boost::recursive_mutex::scoped_lock lock(MoleculeinSceneMap_mutex);
|
---|
536 |
|
---|
537 | const ObservedValue_Index_t molid = _mol->getIndex();
|
---|
538 | MoleculeNodeMap::iterator iter = MoleculesinSceneMap.find(molid);
|
---|
539 | if ( iter == MoleculesinSceneMap.end()) {
|
---|
540 | RemovedMoleculesMap_t::iterator removeiter = RemovedMolecules.find(_mol.get());
|
---|
541 | ASSERT ( removeiter != RemovedMolecules.end(),
|
---|
542 | "GLWorldScene::moleculeEmpty() - to be removed molecule "+toString(_mol->getMolIndex())
|
---|
543 | +" is neither in MoleculesinSceneMap, nor in RemovedMolecules.");
|
---|
544 | // it's noted for removal already, remove it
|
---|
545 | LOG(1, "DEBUG: Deleting empty GLMoleculeObject_molecule to id " << _mol->getMolIndex());
|
---|
546 | GLMoleculeObject_molecule *molObject = removeiter->second;
|
---|
547 | RemovedMolecules.erase(removeiter);
|
---|
548 | molObject->disconnect();
|
---|
549 | delete molObject;
|
---|
550 |
|
---|
551 | emit changed();
|
---|
552 | emit changeOccured();
|
---|
553 | } else {
|
---|
554 | // otherwise just note it as empty
|
---|
555 | EmptyMolecules.insert( std::make_pair(_mol.get(), iter->second) );
|
---|
556 | }
|
---|
557 |
|
---|
558 | // // remove any possible state changes left
|
---|
559 | // {
|
---|
560 | // boost::recursive_mutex::scoped_lock lock(MoleculeMissedStateMap_mutex);
|
---|
561 | // MoleculeMissedStateMap.erase(molid);
|
---|
562 | // }
|
---|
563 | }
|
---|
564 |
|
---|
565 | void GLWorldScene::moleculesVisibilityChanged(ObservedValue_Index_t _id, bool _visible)
|
---|
566 | {
|
---|
567 | boost::recursive_mutex::scoped_lock lock(MoleculeinSceneMap_mutex);
|
---|
568 | MoleculeNodeMap::iterator iter = MoleculesinSceneMap.find(_id);
|
---|
569 | ASSERT( iter != MoleculesinSceneMap.end(),
|
---|
570 | "GLWorldScene::moleculeInserted() - molecule's id "
|
---|
571 | +toString(board->getMoleculeIdToIndex(_id))+" is unknown.");
|
---|
572 |
|
---|
573 | GLMoleculeObject_molecule *molObject = iter->second;
|
---|
574 | molObject->setVisible(_visible);
|
---|
575 |
|
---|
576 | emit changed();
|
---|
577 | emit changeOccured();
|
---|
578 | }
|
---|
579 |
|
---|
580 | /** Adds a shape to the scene.
|
---|
581 | *
|
---|
582 | */
|
---|
583 | void GLWorldScene::addShape(const std::string &_name)
|
---|
584 | {
|
---|
585 | Shape * const shape = ShapeRegistry::getInstance().getByName(_name);
|
---|
586 | if (shape != NULL) {
|
---|
587 | GLMoleculeObject_shape *shapeObject = new GLMoleculeObject_shape(*shape, this);
|
---|
588 | ShapeNodeMap::iterator iter = ShapesinSceneMap.find(_name);
|
---|
589 | ASSERT(iter == ShapesinSceneMap.end(),
|
---|
590 | "GLWorldScene::addShape() - same shape "+_name+" added again.");
|
---|
591 | ShapesinSceneMap.insert( make_pair(_name, shapeObject) );
|
---|
592 | } else
|
---|
593 | ELOG(2, "GLWorldScene::addShape() - shape disappeared before we could draw it.");
|
---|
594 |
|
---|
595 | emit changed();
|
---|
596 | }
|
---|
597 |
|
---|
598 | void GLWorldScene::removeShape(const std::string &_name)
|
---|
599 | {
|
---|
600 | ShapeNodeMap::iterator iter = ShapesinSceneMap.find(_name);
|
---|
601 | ASSERT(iter != ShapesinSceneMap.end(),
|
---|
602 | "GLWorldScene::removeShape() - shape "+_name+" not in scene.");
|
---|
603 | ShapesinSceneMap.erase(iter);
|
---|
604 | delete(iter->second);
|
---|
605 |
|
---|
606 | emit changed();
|
---|
607 | }
|
---|
608 |
|
---|
609 | void GLWorldScene::updateSelectedShapes()
|
---|
610 | {
|
---|
611 | foreach (QObject *obj, children()) {
|
---|
612 | GLMoleculeObject_shape *shapeobj = qobject_cast<GLMoleculeObject_shape *>(obj);
|
---|
613 | if (shapeobj){
|
---|
614 | shapeobj->enable(ShapeRegistry::getInstance().isSelected(shapeobj->getShape()));
|
---|
615 | }
|
---|
616 | }
|
---|
617 |
|
---|
618 | emit changed();
|
---|
619 | }
|
---|
620 |
|
---|
621 | void GLWorldScene::initialize(QGLView *view, QGLPainter *painter) const
|
---|
622 | {
|
---|
623 | // Initialize all of the mesh objects that we have as children.
|
---|
624 | foreach (QObject *obj, children()) {
|
---|
625 | GLMoleculeObject *meshobj = qobject_cast<GLMoleculeObject *>(obj);
|
---|
626 | if (meshobj)
|
---|
627 | meshobj->initialize(view, painter);
|
---|
628 | }
|
---|
629 | }
|
---|
630 |
|
---|
631 | void GLWorldScene::draw(QGLPainter *painter, const QVector4D &cameraPlane) const
|
---|
632 | {
|
---|
633 | // Draw all of the mesh objects that we have as children.
|
---|
634 | foreach (QObject *obj, children()) {
|
---|
635 | GLMoleculeObject *meshobj = qobject_cast<GLMoleculeObject *>(obj);
|
---|
636 | if (meshobj)
|
---|
637 | meshobj->draw(painter, cameraPlane);
|
---|
638 | }
|
---|
639 | }
|
---|
640 |
|
---|
641 | void GLWorldScene::setSelectionMode(SelectionModeType mode)
|
---|
642 | {
|
---|
643 | selectionMode = mode;
|
---|
644 | // TODO send update to toolbar
|
---|
645 | }
|
---|
646 |
|
---|
647 | void GLWorldScene::setSelectionModeAtom()
|
---|
648 | {
|
---|
649 | setSelectionMode(SelectAtom);
|
---|
650 | }
|
---|
651 |
|
---|
652 | void GLWorldScene::setSelectionModeMolecule()
|
---|
653 | {
|
---|
654 | setSelectionMode(SelectMolecule);
|
---|
655 | }
|
---|
656 |
|
---|