[c67518] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[5aaa43] | 5 | * Copyright (C) 2013 Frederik Heber. All rights reserved.
|
---|
[94d5ac6] | 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/>.
|
---|
[c67518] | 22 | */
|
---|
| 23 |
|
---|
| 24 | /*
|
---|
| 25 | * GLMoleculeObject_molecule.cpp
|
---|
| 26 | *
|
---|
| 27 | * Created on: Mar 30, 2012
|
---|
| 28 | * Author: ankele
|
---|
| 29 | */
|
---|
| 30 |
|
---|
| 31 |
|
---|
| 32 |
|
---|
| 33 |
|
---|
| 34 |
|
---|
| 35 | // include config.h
|
---|
| 36 | #ifdef HAVE_CONFIG_H
|
---|
| 37 | #include <config.h>
|
---|
| 38 | #endif
|
---|
| 39 |
|
---|
| 40 | #include "GLMoleculeObject_molecule.hpp"
|
---|
| 41 |
|
---|
| 42 | #include <Qt3D/qglscenenode.h>
|
---|
[34e7fdb] | 43 | #include <Qt3D/qglbuilder.h>
|
---|
[c67518] | 44 |
|
---|
| 45 | #include "CodePatterns/MemDebug.hpp"
|
---|
| 46 |
|
---|
[6c16a0] | 47 | #include <boost/assign.hpp>
|
---|
| 48 |
|
---|
[c67518] | 49 | #include "CodePatterns/Assert.hpp"
|
---|
| 50 | #include "CodePatterns/Log.hpp"
|
---|
| 51 | #include "CodePatterns/Observer/Notification.hpp"
|
---|
[856d05] | 52 | #include "CodePatterns/Observer/ObserverLog.hpp"
|
---|
[c67518] | 53 |
|
---|
| 54 | #include "Atom/atom.hpp"
|
---|
| 55 | #include "molecule.hpp"
|
---|
| 56 | #include "Descriptors/AtomIdDescriptor.hpp"
|
---|
[704d59] | 57 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
---|
[c67518] | 58 | #include "Element/element.hpp"
|
---|
| 59 | #include "LinearAlgebra/Vector.hpp"
|
---|
[34e7fdb] | 60 | #include "LinkedCell/PointCloudAdaptor.hpp"
|
---|
| 61 | #include "LinkedCell/linkedcell.hpp"
|
---|
| 62 | #include "Tesselation/tesselation.hpp"
|
---|
| 63 | #include "Tesselation/BoundaryLineSet.hpp"
|
---|
| 64 | #include "Tesselation/BoundaryTriangleSet.hpp"
|
---|
| 65 | #include "Tesselation/CandidateForTesselation.hpp"
|
---|
| 66 | #include "Atom/TesselPoint.hpp"
|
---|
[c67518] | 67 | #include "World.hpp"
|
---|
| 68 |
|
---|
[6c16a0] | 69 | using namespace boost::assign;
|
---|
| 70 |
|
---|
[8c001a] | 71 | #include "GLMoleculeObject_atom.hpp"
|
---|
| 72 |
|
---|
[6c16a0] | 73 | static Observable::channels_t getAtomsChannels()
|
---|
[34e7fdb] | 74 | {
|
---|
[6c16a0] | 75 | Observable::channels_t channels;
|
---|
| 76 | channels += molecule::AtomInserted, molecule::AtomRemoved;
|
---|
| 77 | return channels;
|
---|
| 78 | }
|
---|
[34e7fdb] | 79 |
|
---|
[6c16a0] | 80 | static Observable::channels_t getAllAtomicChangesChannels()
|
---|
| 81 | {
|
---|
| 82 | Observable::channels_t channels;
|
---|
| 83 | channels += molecule::AtomInserted, molecule::AtomRemoved, molecule::AtomMoved;
|
---|
| 84 | return channels;
|
---|
| 85 | }
|
---|
[34e7fdb] | 86 |
|
---|
[6c16a0] | 87 | // static instances
|
---|
| 88 | const Observable::channels_t GLMoleculeObject_molecule::AtomsChannels(getAtomsChannels());
|
---|
| 89 | const Observable::channels_t GLMoleculeObject_molecule::HullChannels(getAllAtomicChangesChannels());
|
---|
| 90 | const Observable::channels_t GLMoleculeObject_molecule::BoundingBoxChannels(getAllAtomicChangesChannels());
|
---|
| 91 | const Observable::channels_t GLMoleculeObject_molecule::IndexChannels(1, molecule::IndexChanged);
|
---|
[34e7fdb] | 92 |
|
---|
[6c16a0] | 93 | static QGLSceneNode *createMoleculeMesh(const QGeometryData &_geo)
|
---|
| 94 | {
|
---|
[34e7fdb] | 95 | // Build a mesh from the geometry.
|
---|
| 96 | QGLBuilder builder;
|
---|
[6c16a0] | 97 | builder.addTriangles(_geo);
|
---|
[34e7fdb] | 98 | QGLSceneNode *mesh = builder.finalizedSceneNode();
|
---|
| 99 | return mesh;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
[6c16a0] | 102 | GLMoleculeObject_molecule::GLMoleculeObject_molecule(QObject *parent, const moleculeId_t _molid) :
|
---|
| 103 | GLMoleculeObject((QGLSceneNode *)NULL, parent),
|
---|
| 104 | Observer(std::string("GLMoleculeObject_molecule")+toString(_molid)),
|
---|
| 105 | owner(NULL),
|
---|
| 106 | molref(getMolecule(_molid)),
|
---|
| 107 | /* We must not use boost::cref(this) as "this" has not been properly constructed and seemingly
|
---|
| 108 | * boost::cref tries to do some magic to grasp the inheritance hierarchy which fails because
|
---|
| 109 | * the class has not been fully constructed yet. "This" itself seems to be working fine.
|
---|
| 110 | */
|
---|
| 111 | MolIndexUpdater(
|
---|
| 112 | boost::bind(&GLMoleculeObject_molecule::updateIndex, this)
|
---|
| 113 | ),
|
---|
| 114 | TesselationHullUpdater(
|
---|
| 115 | boost::bind(&GLMoleculeObject_molecule::updateTesselationHull, this)
|
---|
| 116 | ),
|
---|
| 117 | IsSelectedUpdater(
|
---|
| 118 | boost::bind(&GLMoleculeObject_molecule::updateIsSelected, this)
|
---|
| 119 | ),
|
---|
| 120 | BoundingBoxUpdater(
|
---|
| 121 | boost::bind(&GLMoleculeObject_molecule::updateBoundingBox, this)
|
---|
| 122 | ),
|
---|
| 123 | PresentAtomsUpdater(
|
---|
| 124 | boost::bind(&GLMoleculeObject_molecule::updateAtoms, this)
|
---|
| 125 | ),
|
---|
| 126 | MolIndex(
|
---|
| 127 | molref,
|
---|
| 128 | MolIndexUpdater,
|
---|
| 129 | "MoleculeIndex_"+toString(_molid),
|
---|
| 130 | _molid,
|
---|
| 131 | IndexChannels),
|
---|
| 132 | TesselationHull(
|
---|
| 133 | molref,
|
---|
| 134 | TesselationHullUpdater,
|
---|
| 135 | "MoleculeTesselationHull_"+toString(_molid),
|
---|
| 136 | HullChannels),
|
---|
| 137 | isSelected(
|
---|
| 138 | const_cast<const World * const>(World::getPointer()),
|
---|
| 139 | IsSelectedUpdater,
|
---|
| 140 | "MoleculeBoundingBox_"+toString(_molid),
|
---|
| 141 | updateIsSelected(),
|
---|
| 142 | BoundingBoxChannels),
|
---|
| 143 | BoundingBox(
|
---|
| 144 | molref,
|
---|
| 145 | BoundingBoxUpdater,
|
---|
| 146 | "MoleculeBoundingBox_"+toString(_molid),
|
---|
| 147 | updateBoundingBox(),
|
---|
| 148 | BoundingBoxChannels),
|
---|
| 149 | PresentAtoms(
|
---|
| 150 | molref,
|
---|
| 151 | PresentAtomsUpdater,
|
---|
| 152 | "MoleculeAtoms_"+toString(_molid),
|
---|
| 153 | updateAtoms(),
|
---|
| 154 | AtomsChannels),
|
---|
[704d59] | 155 | hoverAtomId(-1)
|
---|
[34e7fdb] | 156 | {
|
---|
[6c16a0] | 157 | setObjectId(_molid);
|
---|
[34e7fdb] | 158 | setMaterial(getMaterial(1));
|
---|
| 159 |
|
---|
| 160 | // initially, atoms and bonds should be visible
|
---|
| 161 | m_visible = false;
|
---|
| 162 |
|
---|
[2b596f] | 163 | connect (this, SIGNAL(hoverChanged(GLMoleculeObject *)), this, SLOT(hoverChangedSignalled(GLMoleculeObject *)));
|
---|
| 164 | connect (this, SIGNAL(hoverChanged(GLMoleculeObject *)), this, SIGNAL(changed()));
|
---|
[6c16a0] | 165 | connect (this, SIGNAL(TesselationHullChanged()), this, SLOT(resetTesselationHull()), Qt::QueuedConnection);
|
---|
| 166 | connect (this, SIGNAL(BoundingBoxChanged()), this, SLOT(resetBoundingBox()), Qt::QueuedConnection);
|
---|
| 167 | connect (this, SIGNAL(IsSelectedChanged()), this, SLOT(resetIsSelected()), Qt::QueuedConnection);
|
---|
| 168 | connect (this, SIGNAL(IdChanged()), this, SLOT(resetIndex()), Qt::QueuedConnection);
|
---|
| 169 | connect (this, SIGNAL(AtomInserted(const atomId_t)), this, SLOT(atomInserted(const atomId_t)), Qt::QueuedConnection);
|
---|
| 170 | connect (this, SIGNAL(AtomInserted(const atomId_t)), this, SLOT(resetAtoms()), Qt::QueuedConnection);
|
---|
| 171 | connect (this, SIGNAL(AtomRemoved(const atomId_t)), this, SLOT(resetAtoms()), Qt::QueuedConnection);
|
---|
| 172 | connect (this, SIGNAL(AtomRemoved(const atomId_t)), this, SLOT(atomRemoved(const atomId_t)), Qt::QueuedConnection);
|
---|
[9a7ef9] | 173 |
|
---|
| 174 | connect( this, SIGNAL(clicked()), this, SLOT(wasClicked()));
|
---|
[34e7fdb] | 175 | }
|
---|
| 176 |
|
---|
[6c16a0] | 177 | GLMoleculeObject_molecule::GLMoleculeObject_molecule(QGLSceneNode *mesh[], QObject *parent, const moleculeId_t _molid) :
|
---|
[bca99d] | 178 | GLMoleculeObject(mesh, parent),
|
---|
[6c16a0] | 179 | Observer(std::string("GLMoleculeObject_molecule")+toString(_molid)),
|
---|
| 180 | owner(NULL),
|
---|
| 181 | molref(getMolecule(_molid)),
|
---|
| 182 | /* We must not use boost::cref(this) as "this" has not been properly constructed and seemingly
|
---|
| 183 | * boost::cref tries to do some magic to grasp the inheritance hierarchy which fails because
|
---|
| 184 | * the class has not been fully constructed yet. "This" itself seems to be working fine.
|
---|
| 185 | */
|
---|
| 186 | MolIndexUpdater(
|
---|
| 187 | boost::bind(&GLMoleculeObject_molecule::updateIndex, this)
|
---|
| 188 | ),
|
---|
| 189 | TesselationHullUpdater(
|
---|
| 190 | boost::bind(&GLMoleculeObject_molecule::updateTesselationHull, this)
|
---|
| 191 | ),
|
---|
| 192 | IsSelectedUpdater(
|
---|
| 193 | boost::bind(&GLMoleculeObject_molecule::updateIsSelected, this)
|
---|
| 194 | ),
|
---|
| 195 | BoundingBoxUpdater(
|
---|
| 196 | boost::bind(&GLMoleculeObject_molecule::updateBoundingBox, this)
|
---|
| 197 | ),
|
---|
| 198 | PresentAtomsUpdater(
|
---|
| 199 | boost::bind(&GLMoleculeObject_molecule::updateAtoms, this)
|
---|
| 200 | ),
|
---|
| 201 | MolIndex(
|
---|
| 202 | molref,
|
---|
| 203 | MolIndexUpdater,
|
---|
| 204 | "MoleculeIndex_"+toString(_molid),
|
---|
| 205 | _molid,
|
---|
| 206 | IndexChannels),
|
---|
| 207 | TesselationHull(
|
---|
| 208 | molref,
|
---|
| 209 | TesselationHullUpdater,
|
---|
| 210 | "MoleculeTesselationHull_"+toString(_molid),
|
---|
| 211 | HullChannels),
|
---|
| 212 | isSelected(
|
---|
| 213 | const_cast<const World * const>(World::getPointer()),
|
---|
| 214 | IsSelectedUpdater,
|
---|
| 215 | "MoleculeBoundingBox_"+toString(_molid),
|
---|
| 216 | updateIsSelected(),
|
---|
| 217 | BoundingBoxChannels),
|
---|
| 218 | BoundingBox(
|
---|
| 219 | molref,
|
---|
| 220 | BoundingBoxUpdater,
|
---|
| 221 | "MoleculeBoundingBox_"+toString(_molid),
|
---|
| 222 | updateBoundingBox(),
|
---|
| 223 | BoundingBoxChannels),
|
---|
| 224 | PresentAtoms(
|
---|
| 225 | molref,
|
---|
| 226 | PresentAtomsUpdater,
|
---|
| 227 | "MoleculeAtoms_"+toString(_molid),
|
---|
| 228 | atoms_t(),
|
---|
| 229 | AtomsChannels),
|
---|
[704d59] | 230 | hoverAtomId(-1)
|
---|
[c67518] | 231 | {
|
---|
[6c16a0] | 232 | setObjectId(_molid);
|
---|
[3b229e] | 233 | setMaterial(getMaterial(1));
|
---|
[8c001a] | 234 |
|
---|
[739ee9] | 235 | // initially, atoms and bonds should be visible
|
---|
| 236 | m_visible = false;
|
---|
| 237 |
|
---|
[2b596f] | 238 | connect (this, SIGNAL(hoverChanged(GLMoleculeObject *)), this, SLOT(hoverChangedSignalled(GLMoleculeObject *)));
|
---|
| 239 | connect (this, SIGNAL(hoverChanged(GLMoleculeObject *)), this, SIGNAL(changed()));
|
---|
[6c16a0] | 240 | connect (this, SIGNAL(TesselationHullChanged()), this, SLOT(resetTesselationHull()), Qt::QueuedConnection);
|
---|
| 241 | connect (this, SIGNAL(BoundingBoxChanged()), this, SLOT(resetBoundingBox()), Qt::QueuedConnection);
|
---|
| 242 | connect (this, SIGNAL(IsSelectedChanged()), this, SLOT(resetIsSelected()), Qt::QueuedConnection);
|
---|
| 243 | connect (this, SIGNAL(IdChanged()), this, SLOT(resetIndex()), Qt::QueuedConnection);
|
---|
| 244 | connect (this, SIGNAL(AtomInserted(const atomId_t)), this, SLOT(atomInserted(const atomId_t)), Qt::QueuedConnection);
|
---|
| 245 | connect (this, SIGNAL(AtomInserted(const atomId_t)), this, SLOT(resetAtoms()), Qt::QueuedConnection);
|
---|
| 246 | connect (this, SIGNAL(AtomRemoved(const atomId_t)), this, SLOT(resetAtoms()), Qt::QueuedConnection);
|
---|
| 247 | connect (this, SIGNAL(AtomRemoved(const atomId_t)), this, SLOT(atomRemoved(const atomId_t)), Qt::QueuedConnection);
|
---|
[9a7ef9] | 248 |
|
---|
| 249 | connect( this, SIGNAL(clicked()), this, SLOT(wasClicked()));
|
---|
[c67518] | 250 | }
|
---|
| 251 |
|
---|
| 252 | GLMoleculeObject_molecule::~GLMoleculeObject_molecule()
|
---|
| 253 | {
|
---|
[6c16a0] | 254 | deactivateObserver();
|
---|
| 255 | }
|
---|
| 256 |
|
---|
| 257 | void GLMoleculeObject_molecule::deactivateObserver()
|
---|
| 258 | {
|
---|
| 259 | if (owner != NULL) {
|
---|
| 260 | owner->signOff(this, molecule::AtomInserted);
|
---|
| 261 | owner->signOff(this, molecule::AtomRemoved);
|
---|
| 262 | owner->signOff(this, molecule::AtomMoved);
|
---|
| 263 | owner->signOff(this, molecule::IndexChanged);
|
---|
| 264 | /*_atom->signOff(this, AtomObservable::IndexChanged);
|
---|
| 265 | _atom->signOff(this, AtomObservable::PositionChanged);
|
---|
| 266 | _atom->signOff(this, AtomObservable::ElementChanged);
|
---|
| 267 | _atom->signOff(this, AtomObservable::BondsAdded);*/
|
---|
| 268 | World::getInstance().signOff(this, World::SelectionChanged);
|
---|
| 269 | owner = NULL;
|
---|
[34e7fdb] | 270 | }
|
---|
[c67518] | 271 | }
|
---|
| 272 |
|
---|
[73b13c] | 273 | void GLMoleculeObject_molecule::activateObserver()
|
---|
| 274 | {
|
---|
| 275 | // sign on as observer (obtain non-const instance before)
|
---|
[6c16a0] | 276 | const molecule * const _molecule = getMolecule(MolIndex.get());
|
---|
[73b13c] | 277 | if (_molecule != NULL) {
|
---|
[6c16a0] | 278 | owner = static_cast<const Observable *>(_molecule);
|
---|
| 279 | owner->signOn(this, molecule::AtomInserted);
|
---|
| 280 | owner->signOn(this, molecule::AtomRemoved);
|
---|
| 281 | owner->signOn(this, molecule::AtomMoved);
|
---|
| 282 | owner->signOn(this, molecule::IndexChanged);
|
---|
| 283 | /*molref->signOn(this, AtomObservable::IndexChanged);
|
---|
| 284 | molref->signOn(this, AtomObservable::PositionChanged);
|
---|
| 285 | molref->signOn(this, AtomObservable::ElementChanged);
|
---|
| 286 | molref->signOn(this, AtomObservable::BondsAdded);*/
|
---|
| 287 | World::getInstance().signOn(this, World::SelectionChanged);
|
---|
[73b13c] | 288 | } else {
|
---|
[6c16a0] | 289 | ELOG(1, "GLMoleculeObject_molecule() - added null object for not present mol id " << MolIndex.get());
|
---|
[73b13c] | 290 | }
|
---|
[6c16a0] | 291 |
|
---|
[73b13c] | 292 | }
|
---|
| 293 |
|
---|
[8c001a] | 294 | void GLMoleculeObject_molecule::addAtomBonds(
|
---|
| 295 | const bond::ptr &_bond,
|
---|
| 296 | const GLMoleculeObject_bond::SideOfBond _side
|
---|
| 297 | )
|
---|
| 298 | {
|
---|
| 299 | bool bond_present = false;
|
---|
| 300 | const BondIds ids = getBondIds(_bond, _side);
|
---|
| 301 | // check whether bond is not present already
|
---|
| 302 | bond_present = BondsinSceneMap.count(ids);
|
---|
| 303 | if (!bond_present)
|
---|
[6c16a0] | 304 | bondInserted(ids.first, ids.second, _side);
|
---|
[8c001a] | 305 | else {
|
---|
| 306 | BondsinSceneMap[ids]->resetPosition();
|
---|
| 307 | BondsinSceneMap[ids]->resetWidth();
|
---|
| 308 | }
|
---|
| 309 | }
|
---|
| 310 |
|
---|
| 311 | void GLMoleculeObject_molecule::addAtomBonds(
|
---|
| 312 | const atom *_atom)
|
---|
| 313 | {
|
---|
| 314 | const bool atom_present = AtomsinSceneMap.count(_atom->getId());
|
---|
| 315 | const BondList &bondlist = _atom->getListOfBonds();
|
---|
| 316 | for (BondList::const_iterator bonditer = bondlist.begin();
|
---|
| 317 | (bonditer != bondlist.end()) && atom_present;
|
---|
| 318 | ++bonditer) {
|
---|
| 319 | const bond::ptr _bond = *bonditer;
|
---|
| 320 | // check if OtherAtom's sphere is already present
|
---|
| 321 | const atom *OtherAtom = _bond->GetOtherAtom(_atom);
|
---|
| 322 | const bool otheratom_present = AtomsinSceneMap.count(OtherAtom->getId());
|
---|
| 323 | if (otheratom_present && atom_present) {
|
---|
| 324 | const GLMoleculeObject_bond::SideOfBond side = (_bond->leftatom == _atom) ?
|
---|
| 325 | GLMoleculeObject_bond::left : GLMoleculeObject_bond::right;
|
---|
| 326 | const GLMoleculeObject_bond::SideOfBond otherside = (_bond->leftatom == _atom) ?
|
---|
| 327 | GLMoleculeObject_bond::right : GLMoleculeObject_bond::left;
|
---|
| 328 | addAtomBonds(_bond, side);
|
---|
| 329 | addAtomBonds(_bond, otherside);
|
---|
| 330 | }
|
---|
| 331 | }
|
---|
| 332 | }
|
---|
| 333 |
|
---|
[6c16a0] | 334 | QGeometryData GLMoleculeObject_molecule::updateTesselationHull() const
|
---|
| 335 | {
|
---|
| 336 | QGeometryData geo;
|
---|
| 337 |
|
---|
| 338 | const molecule * const molref = getMolecule(MolIndex.get());
|
---|
| 339 | if (molref == NULL) {
|
---|
| 340 | ELOG(1, "Could not createMoleculeMesh, molecule with id " << MolIndex.get() << " already gone.");
|
---|
| 341 | return geo;
|
---|
| 342 | }
|
---|
| 343 | double minradius = 2.; // TODO: set to maximum bond length value
|
---|
| 344 | LOG(3, "DEBUG: Molecule fits into sphere of radius " << minradius);
|
---|
| 345 | // check minimum bond radius in molecule
|
---|
| 346 | double minlength = std::numeric_limits<double>::max();
|
---|
| 347 | for (molecule::const_iterator iter = molref->begin();
|
---|
| 348 | iter != molref->end(); ++iter) {
|
---|
| 349 | const BondList &ListOfBonds = (*iter)->getListOfBonds();
|
---|
| 350 | for (BondList::const_iterator bonditer = ListOfBonds.begin();
|
---|
| 351 | bonditer != ListOfBonds.end(); ++bonditer) {
|
---|
| 352 | const double bond_distance = (*bonditer)->GetDistance();
|
---|
| 353 | minlength = std::min(bond_distance, minlength);
|
---|
| 354 | }
|
---|
| 355 | }
|
---|
| 356 | minradius = std::max( std::max(minradius, minlength), 1.);
|
---|
| 357 |
|
---|
| 358 | // we need at least three points for tesselation
|
---|
| 359 | if (molref->getAtomCount() >= 3) {
|
---|
| 360 | // Tesselate the points.
|
---|
| 361 | Tesselation T;
|
---|
| 362 | PointCloudAdaptor<molecule> cloud(const_cast<molecule *>(molref), molref->getName());
|
---|
| 363 | T(cloud, minradius);
|
---|
| 364 |
|
---|
| 365 | // Fill the points into a Qt geometry.
|
---|
| 366 | LinkedCell_deprecated LinkedList(cloud, minradius);
|
---|
| 367 | std::map<int, int> indices;
|
---|
| 368 | std::map<int, Vector> normals;
|
---|
| 369 | int index = 0;
|
---|
| 370 | for (PointMap::const_iterator piter = T.PointsOnBoundary.begin();
|
---|
| 371 | piter != T.PointsOnBoundary.end(); ++piter) {
|
---|
| 372 | const Vector &point = piter->second->getPosition();
|
---|
| 373 | // add data to the primitive
|
---|
| 374 | geo.appendVertex(QVector3D(point[0], point[1], point[2]));
|
---|
| 375 | Vector normalvector;
|
---|
| 376 | for (LineMap::const_iterator lineiter = piter->second->lines.begin();
|
---|
| 377 | lineiter != piter->second->lines.end(); ++lineiter)
|
---|
| 378 | for (TriangleMap::const_iterator triangleiter = lineiter->second->triangles.begin();
|
---|
| 379 | triangleiter != lineiter->second->triangles.end(); ++triangleiter)
|
---|
| 380 | normalvector +=
|
---|
| 381 | triangleiter->second->NormalVector;
|
---|
| 382 | normalvector.Normalize();
|
---|
| 383 | geo.appendNormal(QVector3D(normalvector[0], normalvector[1], normalvector[2]));
|
---|
| 384 | geo.appendColor(QColor(1, 1, 1, 1));
|
---|
| 385 | geo.appendTexCoord(QVector2D(0, 0));
|
---|
| 386 | indices.insert( std::make_pair( piter->second->getNr(), index++));
|
---|
| 387 | }
|
---|
| 388 |
|
---|
| 389 | // Fill the tesselated triangles into the geometry.
|
---|
| 390 | for (TriangleMap::const_iterator runner = T.TrianglesOnBoundary.begin();
|
---|
| 391 | runner != T.TrianglesOnBoundary.end(); runner++) {
|
---|
| 392 | int v[3];
|
---|
| 393 | for (size_t i=0; i<3; ++i)
|
---|
| 394 | v[i] = runner->second->endpoints[i]->getNr();
|
---|
| 395 |
|
---|
| 396 | // Sort the vertices so the triangle is clockwise (relative to the normal vector).
|
---|
| 397 | Vector cross = T.PointsOnBoundary[v[1]]->getPosition() - T.PointsOnBoundary[v[0]]->getPosition();
|
---|
| 398 | cross.VectorProduct(T.PointsOnBoundary[v[2]]->getPosition() - T.PointsOnBoundary[v[0]]->getPosition());
|
---|
| 399 | if (cross.ScalarProduct(runner->second->NormalVector) > 0)
|
---|
| 400 | geo.appendIndices(indices[v[0]], indices[v[1]], indices[v[2]]);
|
---|
| 401 | else
|
---|
| 402 | geo.appendIndices(indices[v[0]], indices[v[2]], indices[v[1]]);
|
---|
| 403 | }
|
---|
| 404 | }
|
---|
| 405 |
|
---|
| 406 | return geo;
|
---|
| 407 | }
|
---|
| 408 |
|
---|
| 409 | bool GLMoleculeObject_molecule::updateIsSelected() const
|
---|
| 410 | {
|
---|
| 411 | return const_cast<const World &>(World::getInstance()).isMoleculeSelected(MolIndex.get());
|
---|
| 412 | }
|
---|
| 413 |
|
---|
| 414 | GLMoleculeObject_molecule::BoundingBoxInfo GLMoleculeObject_molecule::updateBoundingBox() const
|
---|
| 415 | {
|
---|
| 416 | BoundingBoxInfo info;
|
---|
| 417 | const molecule * const _molecule = getMolecule(MolIndex.get());
|
---|
| 418 | if (_molecule != NULL) {
|
---|
| 419 | Shape shape = _molecule->getBoundingSphere();
|
---|
| 420 | info.position = shape.getCenter();
|
---|
| 421 | info.radius = shape.getRadius();
|
---|
| 422 | } else
|
---|
| 423 | ELOG(2, "GLMoleculeObject_molecule cannot updateBoundingBox, molecule with "
|
---|
| 424 | << MolIndex.get() << " has disappeared.");
|
---|
| 425 | return info;
|
---|
| 426 | }
|
---|
| 427 |
|
---|
| 428 | GLMoleculeObject_molecule::atoms_t GLMoleculeObject_molecule::updateAtoms()
|
---|
| 429 | {
|
---|
| 430 | const molecule * const mol = getMolecule(MolIndex.get());
|
---|
| 431 | const atomId_t id = mol->lastChanged()->getId();
|
---|
| 432 | if (mol->containsAtom(id))
|
---|
| 433 | DisplayedAtoms.insert(id);
|
---|
| 434 | else
|
---|
| 435 | DisplayedAtoms.erase(id);
|
---|
| 436 | return DisplayedAtoms;
|
---|
| 437 | }
|
---|
| 438 |
|
---|
| 439 | moleculeId_t GLMoleculeObject_molecule::updateIndex() const
|
---|
[d6203a] | 440 | {
|
---|
[6c16a0] | 441 | const molecule * const mol = World::getInstance().lastChanged<molecule>();
|
---|
| 442 | if (mol != NULL) {
|
---|
| 443 | return mol->getId();
|
---|
[704d59] | 444 | }
|
---|
[6c16a0] | 445 | return (moleculeId_t)-1;
|
---|
| 446 | }
|
---|
| 447 |
|
---|
| 448 | void GLMoleculeObject_molecule::resetTesselationHull()
|
---|
| 449 | {
|
---|
| 450 | if (!TesselationHull.isValid())
|
---|
| 451 | updateMesh(createMoleculeMesh(*TesselationHull));
|
---|
| 452 | }
|
---|
| 453 |
|
---|
| 454 | void GLMoleculeObject_molecule::resetIsSelected()
|
---|
| 455 | {
|
---|
| 456 | setSelected(isSelected.get());
|
---|
| 457 | }
|
---|
| 458 |
|
---|
| 459 | void GLMoleculeObject_molecule::resetBoundingBox()
|
---|
| 460 | {
|
---|
| 461 | BoundingBoxInfo info = BoundingBox.get();
|
---|
| 462 | setPosition(QVector3D(info.position[0], info.position[1], info.position[2]));
|
---|
| 463 | setScale(info.radius + 0.3); // getBoundingSphere() only sees atoms as points, so make the box a bit bigger
|
---|
| 464 | }
|
---|
| 465 |
|
---|
| 466 | void GLMoleculeObject_molecule::resetAtoms()
|
---|
| 467 | {
|
---|
| 468 | const atoms_t atoms = PresentAtoms.get();
|
---|
| 469 | std::vector<atomId_t> InsertedAtoms;
|
---|
| 470 | std::vector<atomId_t> RemovedAtoms;
|
---|
| 471 | // obtain all newly inserted and removed atoms
|
---|
| 472 | std::set_difference(
|
---|
| 473 | atoms.begin(), atoms.end(),
|
---|
| 474 | DisplayedAtoms.begin(), DisplayedAtoms.end(),
|
---|
| 475 | std::back_inserter(InsertedAtoms));
|
---|
| 476 | std::set_difference(
|
---|
| 477 | DisplayedAtoms.begin(), DisplayedAtoms.end(),
|
---|
| 478 | atoms.begin(), atoms.end(),
|
---|
| 479 | std::back_inserter(RemovedAtoms));
|
---|
| 480 | // remove the atoms
|
---|
| 481 | std::for_each(RemovedAtoms.begin(), RemovedAtoms.end(),
|
---|
| 482 | boost::bind(&GLMoleculeObject_molecule::atomRemoved, this, _1));
|
---|
| 483 | // insert the atoms
|
---|
| 484 | std::for_each(InsertedAtoms.begin(), InsertedAtoms.end(),
|
---|
| 485 | boost::bind(&GLMoleculeObject_molecule::atomInserted, this, _1));
|
---|
| 486 |
|
---|
| 487 | emit changed();
|
---|
| 488 | }
|
---|
| 489 |
|
---|
| 490 | void GLMoleculeObject_molecule::resetIndex()
|
---|
| 491 | {
|
---|
| 492 | const atomId_t newId = MolIndex.get();
|
---|
| 493 | const size_t oldId = objectId();
|
---|
| 494 | ASSERT( newId != oldId,
|
---|
| 495 | "GLMoleculeObject_molecule::resetIndex() - index "+toString(newId)+" did not change.");
|
---|
| 496 | LOG(4, "INFO: GLMoleculeObject_molecule: new index is "+toString(newId)+".");
|
---|
| 497 | setObjectId(newId);
|
---|
| 498 |
|
---|
| 499 | emit indexChanged(this, oldId, newId);
|
---|
[d6203a] | 500 | }
|
---|
| 501 |
|
---|
[c67518] | 502 | void GLMoleculeObject_molecule::update(Observable *publisher)
|
---|
| 503 | {
|
---|
| 504 | #ifdef LOG_OBSERVER
|
---|
[a2a2f7] | 505 | const molecule *_mol = static_cast<molecule *>(publisher);
|
---|
| 506 | observerLog().addMessage() << "++ Update of Observer " << observerLog().getName(static_cast<Observer *>(this)) << " from molecule "+toString(_mol->getId())+".";
|
---|
[c67518] | 507 | #endif
|
---|
| 508 | }
|
---|
| 509 |
|
---|
| 510 | void GLMoleculeObject_molecule::subjectKilled(Observable *publisher)
|
---|
[34e7fdb] | 511 | {
|
---|
[6c16a0] | 512 | deactivateObserver();
|
---|
[34e7fdb] | 513 | }
|
---|
[c67518] | 514 |
|
---|
| 515 | void GLMoleculeObject_molecule::recieveNotification(Observable *publisher, Notification_ptr notification)
|
---|
| 516 | {
|
---|
[6c16a0] | 517 | const molecule * const _molecule = getMolecule(MolIndex.get());
|
---|
[c67518] | 518 | if (publisher == dynamic_cast<const Observable*>(_molecule)){
|
---|
| 519 | // notofication from atom
|
---|
| 520 | #ifdef LOG_OBSERVER
|
---|
[708277] | 521 | observerLog().addMessage() << "++ Update of Observer "<< observerLog().getName(static_cast<Observer *>(this))
|
---|
[c67518] | 522 | << " received notification from molecule " << _molecule->getId() << " for channel "
|
---|
| 523 | << notification->getChannelNo() << ".";
|
---|
| 524 | #endif
|
---|
[8c001a] | 525 | switch (notification->getChannelNo()) {
|
---|
| 526 | case molecule::AtomInserted:
|
---|
| 527 | {
|
---|
| 528 | const atomId_t _id = _molecule->lastChanged()->getId();
|
---|
| 529 | #ifdef LOG_OBSERVER
|
---|
| 530 | observerLog().addMessage() << "++ Observer " << observerLog().getName(static_cast<Observer *>(this)) << " received notification that atom "+toString(_id)+" has been inserted.";
|
---|
| 531 | #endif
|
---|
[6c16a0] | 532 | emit AtomInserted(_id);
|
---|
| 533 | emit TesselationHullChanged();
|
---|
| 534 | emit BoundingBoxChanged();
|
---|
[8c001a] | 535 | break;
|
---|
| 536 | }
|
---|
| 537 | case World::AtomRemoved:
|
---|
| 538 | {
|
---|
| 539 | const atomId_t _id = _molecule->lastChanged()->getId();
|
---|
| 540 | #ifdef LOG_OBSERVER
|
---|
| 541 | observerLog().addMessage() << "++ Observer " << observerLog().getName(static_cast<Observer *>(this)) << " received notification that atom "+toString(_id)+" has been removed.";
|
---|
| 542 | #endif
|
---|
[6c16a0] | 543 | emit AtomRemoved(_id);
|
---|
| 544 | emit TesselationHullChanged();
|
---|
| 545 | emit BoundingBoxChanged();
|
---|
[8c001a] | 546 | break;
|
---|
| 547 | }
|
---|
[7b5984] | 548 | case molecule::AtomMoved:
|
---|
| 549 | {
|
---|
| 550 | #ifdef LOG_OBSERVER
|
---|
[2b596f] | 551 | const atomId_t _id = _molecule->lastChanged()->getId();
|
---|
[7b5984] | 552 | observerLog().addMessage() << "++ Observer " << observerLog().getName(static_cast<Observer *>(this)) << " received notification that atom "+toString(_id)+" has been inserted.";
|
---|
| 553 | #endif
|
---|
[6c16a0] | 554 | emit TesselationHullChanged();
|
---|
| 555 | emit BoundingBoxChanged();
|
---|
| 556 | break;
|
---|
| 557 | }
|
---|
| 558 | case molecule::IndexChanged:
|
---|
| 559 | {
|
---|
| 560 | #ifdef LOG_OBSERVER
|
---|
| 561 | const atomId_t _id = _molecule->lastChanged()->getId();
|
---|
| 562 | observerLog().addMessage() << "++ Observer " << observerLog().getName(static_cast<Observer *>(this)) << " received notification that atom "+toString(_id)+"'s index has changed.";
|
---|
| 563 | #endif
|
---|
| 564 | emit IdChanged();
|
---|
[7b5984] | 565 | break;
|
---|
| 566 | }
|
---|
[8c001a] | 567 | default:
|
---|
| 568 | break;
|
---|
| 569 | }
|
---|
[c67518] | 570 | }else{
|
---|
| 571 | // notification from world
|
---|
| 572 | #ifdef LOG_OBSERVER
|
---|
[708277] | 573 | observerLog().addMessage() << "++ Update of Observer "<< observerLog().getName(static_cast<Observer *>(this))
|
---|
[c67518] | 574 | << " received notification from world for channel "
|
---|
| 575 | << notification->getChannelNo() << ".";
|
---|
| 576 | #endif
|
---|
| 577 | switch (notification->getChannelNo()) {
|
---|
| 578 | case World::SelectionChanged:
|
---|
[6c16a0] | 579 | emit IsSelectedChanged();
|
---|
[c67518] | 580 | break;
|
---|
| 581 | default:
|
---|
| 582 | break;
|
---|
| 583 | }
|
---|
| 584 | }
|
---|
| 585 | }
|
---|
| 586 |
|
---|
[8c001a] | 587 | void GLMoleculeObject_molecule::initialize(QGLView *view, QGLPainter *painter)
|
---|
| 588 | {
|
---|
| 589 | // Initialize all of the mesh objects that we have as children.
|
---|
[2b596f] | 590 | if (m_visible) {
|
---|
| 591 | GLMoleculeObject::initialize(view, painter);
|
---|
| 592 | } else {
|
---|
[8c001a] | 593 | foreach (QObject *obj, children()) {
|
---|
| 594 | GLMoleculeObject *meshobj = qobject_cast<GLMoleculeObject *>(obj);
|
---|
| 595 | if (meshobj)
|
---|
| 596 | meshobj->initialize(view, painter);
|
---|
| 597 | }
|
---|
[2b596f] | 598 | }
|
---|
[8c001a] | 599 | }
|
---|
| 600 |
|
---|
| 601 | void GLMoleculeObject_molecule::draw(QGLPainter *painter, const QVector4D &cameraPlane)
|
---|
| 602 | {
|
---|
[739ee9] | 603 | // draw either molecule's mesh or all atoms and bonds
|
---|
| 604 | if (m_visible) {
|
---|
[6c16a0] | 605 | resetTesselationHull();
|
---|
[7b5984] | 606 |
|
---|
[34e7fdb] | 607 | painter->modelViewMatrix().push();
|
---|
| 608 |
|
---|
| 609 | // Apply the material and effect to the painter.
|
---|
| 610 | QGLMaterial *material;
|
---|
| 611 | if (m_hovering)
|
---|
| 612 | material = m_hoverMaterial;
|
---|
| 613 | else if (m_selected)
|
---|
| 614 | material = m_selectionMaterial;
|
---|
| 615 | else
|
---|
| 616 | material = m_material;
|
---|
| 617 |
|
---|
| 618 | ASSERT(material, "GLMoleculeObject::draw: chosen material is NULL");
|
---|
| 619 |
|
---|
| 620 | painter->setColor(material->diffuseColor());
|
---|
| 621 | painter->setFaceMaterial(QGL::AllFaces, material);
|
---|
| 622 | if (m_effect)
|
---|
| 623 | painter->setUserEffect(m_effect);
|
---|
| 624 | else
|
---|
| 625 | painter->setStandardEffect(QGL::LitMaterial);
|
---|
| 626 |
|
---|
| 627 | // Mark the object for object picking purposes.
|
---|
| 628 | int prevObjectId = painter->objectPickId();
|
---|
| 629 | if (m_objectId != -1)
|
---|
| 630 | painter->setObjectPickId(m_objectId);
|
---|
| 631 |
|
---|
| 632 | m_mesh[0]->draw(painter);
|
---|
| 633 |
|
---|
| 634 | // Turn off the user effect, if present.
|
---|
| 635 | if (m_effect)
|
---|
| 636 | painter->setStandardEffect(QGL::LitMaterial);
|
---|
| 637 |
|
---|
| 638 | // Revert to the previous object identifier.
|
---|
| 639 | painter->setObjectPickId(prevObjectId);
|
---|
| 640 |
|
---|
| 641 | // Restore the modelview matrix.
|
---|
| 642 | painter->modelViewMatrix().pop();
|
---|
| 643 |
|
---|
| 644 | // GLMoleculeObject::draw(painter, cameraPlane);
|
---|
[739ee9] | 645 | } else {
|
---|
| 646 | // Draw all of the mesh objects that we have as children.
|
---|
| 647 | foreach (QObject *obj, children()) {
|
---|
| 648 | GLMoleculeObject *meshobj = qobject_cast<GLMoleculeObject *>(obj);
|
---|
| 649 | if (meshobj)
|
---|
| 650 | meshobj->draw(painter, cameraPlane);
|
---|
| 651 | }
|
---|
[2b596f] | 652 |
|
---|
| 653 | // update bounding box prior to selection
|
---|
[6c16a0] | 654 | resetBoundingBox();
|
---|
[2b596f] | 655 |
|
---|
| 656 | painter->modelViewMatrix().push();
|
---|
| 657 | painter->modelViewMatrix().translate(m_position);
|
---|
| 658 | if (m_rotationAngle != 0.0f)
|
---|
| 659 | painter->modelViewMatrix().rotate(m_rotationAngle, m_rotationVector);
|
---|
[f47efd4] | 660 | if ((m_scaleX != 1.0f) || (m_scaleY != 1.0f) || (m_scaleZ != 1.0f))
|
---|
| 661 | painter->modelViewMatrix().scale(m_scaleX, m_scaleY, m_scaleZ);
|
---|
[2b596f] | 662 |
|
---|
| 663 | // Draw a box around the mesh, if selected.
|
---|
| 664 | if (m_selected)
|
---|
| 665 | drawSelectionBox(painter);
|
---|
| 666 |
|
---|
| 667 | // Restore the modelview matrix.
|
---|
| 668 | painter->modelViewMatrix().pop();
|
---|
[739ee9] | 669 | }
|
---|
[8c001a] | 670 | }
|
---|
| 671 |
|
---|
| 672 | /** Adds an atom of this molecule to the scene.
|
---|
| 673 | *
|
---|
| 674 | * @param _atom atom to add
|
---|
| 675 | */
|
---|
[2f76d2] | 676 | void GLMoleculeObject_molecule::atomInserted(const atomId_t _id)
|
---|
[8c001a] | 677 | {
|
---|
[9c259e] | 678 | LOG(3, "INFO: GLMoleculeObject_molecule: Received signal atomInserted for atom "+toString(_id)+".");
|
---|
| 679 |
|
---|
[8923ad8] | 680 | GLMoleculeObject_atom *atomObject = new GLMoleculeObject_atom(GLMoleculeObject::meshSphere, this, _id);
|
---|
| 681 | ASSERT( atomObject != NULL,
|
---|
| 682 | "GLMoleculeObject_molecule::atomInserted - could not create atom object for "+toString(_id));
|
---|
| 683 | AtomNodeMap::iterator iter = AtomsinSceneMap.find(_id);
|
---|
| 684 | ASSERT(iter == AtomsinSceneMap.end(),
|
---|
| 685 | "GLMoleculeObject_molecule::atomInserted - same atom with id "+toString(_id)+" added again.");
|
---|
| 686 | AtomsinSceneMap.insert( make_pair(_id, atomObject) );
|
---|
| 687 |
|
---|
| 688 | qRegisterMetaType<atomId_t>("atomId_t");
|
---|
| 689 | qRegisterMetaType<bond::ptr>("bond::ptr");
|
---|
| 690 | qRegisterMetaType<GLMoleculeObject_bond::SideOfBond>("GLMoleculeObject_bond::SideOfBond");
|
---|
| 691 | connect (atomObject, SIGNAL(clicked(atomId_t)), this, SIGNAL(atomClicked(atomId_t)));
|
---|
| 692 | connect (atomObject, SIGNAL(changed()), this, SIGNAL(changed()));
|
---|
| 693 | connect (atomObject, SIGNAL(hoverChanged(GLMoleculeObject *)), this, SIGNAL(changed()));
|
---|
| 694 | connect (atomObject, SIGNAL(hoverChanged(GLMoleculeObject *)), this, SLOT(hoverChangedSignalled(GLMoleculeObject *)));
|
---|
| 695 | connect (atomObject, SIGNAL(selectionChanged()), this, SIGNAL(changed()));
|
---|
[6c16a0] | 696 | connect (atomObject, SIGNAL(BondsChanged(const atomId_t, const atomId_t, const GLMoleculeObject_bond::SideOfBond)), this, SLOT(bondInserted(const atomId_t, const atomId_t, const GLMoleculeObject_bond::SideOfBond)));
|
---|
| 697 | connect (atomObject, SIGNAL(BondsRemoved(const atomId_t, const atomId_t)), this, SLOT(bondRemoved(const atomId_t, const atomId_t)));
|
---|
| 698 | connect (atomObject, SIGNAL(indexChanged(GLMoleculeObject_atom*, const atomId_t, const atomId_t)), this, SLOT(changeAtomId(GLMoleculeObject_atom*, const atomId_t, const atomId_t)));
|
---|
[8923ad8] | 699 |
|
---|
| 700 | if (m_objectId == -1)
|
---|
| 701 | setObjectId(_id);
|
---|
[8c001a] | 702 |
|
---|
[52cd7b] | 703 | // add all bonds
|
---|
[f01769] | 704 | const atom * const Walker = const_cast<const World &>(World::getInstance()).
|
---|
| 705 | getAtom(AtomById(_id));
|
---|
[704d59] | 706 | if (Walker != NULL)
|
---|
| 707 | addAtomBonds(Walker);
|
---|
| 708 | else
|
---|
| 709 | ELOG(1, "GLMoleculeObject_atom disappeared while about to add bonds.");
|
---|
[52cd7b] | 710 |
|
---|
[8c001a] | 711 | emit changeOccured();
|
---|
| 712 | }
|
---|
| 713 |
|
---|
| 714 | /** Removes an atom of this molecule from the scene.
|
---|
| 715 | *
|
---|
| 716 | * We just the id as the atom might have already been destroyed.
|
---|
| 717 | *
|
---|
| 718 | * @param _id id of atom to remove
|
---|
| 719 | */
|
---|
[2f76d2] | 720 | void GLMoleculeObject_molecule::atomRemoved(const atomId_t _id)
|
---|
[8c001a] | 721 | {
|
---|
[9c259e] | 722 | LOG(3, "INFO: GLMoleculeObject_molecule: Received signal atomRemoved for atom "+toString(_id)+".");
|
---|
[8c001a] | 723 | // bonds are removed by signal coming from ~bond
|
---|
[2b596f] | 724 |
|
---|
[704d59] | 725 | if ((unsigned int)m_objectId == _id)
|
---|
[2b596f] | 726 | setObjectId(-1);
|
---|
| 727 |
|
---|
[8c001a] | 728 | // remove atoms
|
---|
| 729 | AtomNodeMap::iterator iter = AtomsinSceneMap.find(_id);
|
---|
| 730 | ASSERT(iter != AtomsinSceneMap.end(),
|
---|
[73b13c] | 731 | "GLMoleculeObject_molecule::atomRemoved() - atom "+toString(_id)+" not on display.");
|
---|
[8c001a] | 732 | GLMoleculeObject_atom *atomObject = iter->second;
|
---|
| 733 | AtomsinSceneMap.erase(iter);
|
---|
[704d59] | 734 | atomObject->disconnect();
|
---|
[8c001a] | 735 | delete atomObject;
|
---|
| 736 |
|
---|
| 737 | emit changeOccured();
|
---|
| 738 | }
|
---|
| 739 |
|
---|
| 740 | void GLMoleculeObject_molecule::hoverChangedSignalled(GLMoleculeObject *ob)
|
---|
| 741 | {
|
---|
| 742 | // Find the atom, ob corresponds to.
|
---|
[704d59] | 743 | hoverAtomId = -1;
|
---|
[8c001a] | 744 | GLMoleculeObject_atom *atomObject = dynamic_cast<GLMoleculeObject_atom *>(ob);
|
---|
| 745 | if (atomObject){
|
---|
| 746 | for (AtomNodeMap::iterator iter = AtomsinSceneMap.begin();iter != AtomsinSceneMap.end(); ++ iter){
|
---|
| 747 | if (iter->second == atomObject)
|
---|
[704d59] | 748 | hoverAtomId = iter->first;
|
---|
[8c001a] | 749 | }
|
---|
| 750 |
|
---|
[2b596f] | 751 | // Propagate signal.
|
---|
[704d59] | 752 | emit hoverChanged(hoverAtomId);
|
---|
[2b596f] | 753 | } else {
|
---|
| 754 | // Find the atom, ob corresponds to.
|
---|
| 755 | GLMoleculeObject_molecule *moleculeObject = dynamic_cast<GLMoleculeObject_molecule *>(ob);
|
---|
| 756 | if (moleculeObject == this){
|
---|
| 757 | // Propagate signal.
|
---|
[6c16a0] | 758 | emit hoverChanged(MolIndex.get(), 0);
|
---|
[2b596f] | 759 | }
|
---|
| 760 | }
|
---|
[8c001a] | 761 | }
|
---|
| 762 |
|
---|
| 763 |
|
---|
| 764 | /** Helper function to get bond ids in the correct order for BondNodeMap.
|
---|
| 765 | *
|
---|
| 766 | * \return pair of ids in correct order.
|
---|
| 767 | */
|
---|
| 768 | GLMoleculeObject_molecule::BondIds GLMoleculeObject_molecule::getBondIds(
|
---|
| 769 | const bond::ptr _bond,
|
---|
| 770 | const enum GLMoleculeObject_bond::SideOfBond _side)
|
---|
| 771 | {
|
---|
| 772 | BondIds ids;
|
---|
| 773 | switch (_side) {
|
---|
| 774 | case GLMoleculeObject_bond::left:
|
---|
| 775 | ids = std::make_pair(_bond->leftatom->getId(), _bond->rightatom->getId());
|
---|
| 776 | break;
|
---|
| 777 | case GLMoleculeObject_bond::right:
|
---|
| 778 | ids = std::make_pair(_bond->rightatom->getId(), _bond->leftatom->getId());
|
---|
| 779 | break;
|
---|
| 780 | }
|
---|
| 781 | return ids;
|
---|
| 782 | }
|
---|
| 783 |
|
---|
| 784 | /** Adds a bond to the scene.
|
---|
| 785 | *
|
---|
| 786 | * @param _bond bond to add
|
---|
| 787 | * @param side which side of the bond (left or right)
|
---|
| 788 | */
|
---|
[6c16a0] | 789 | void GLMoleculeObject_molecule::bondInserted(
|
---|
| 790 | const atomId_t _left, const atomId_t _right,
|
---|
| 791 | const enum GLMoleculeObject_bond::SideOfBond _side)
|
---|
[8c001a] | 792 | {
|
---|
[6c16a0] | 793 | LOG(3, "INFO: GLWorldScene::bondInserted() - Adding bond "+toString(_left)
|
---|
| 794 | +toString(_right)+".");
|
---|
[8c001a] | 795 | //LOG(4, "INFO: Currently present bonds " << BondsinSceneMap << ".");
|
---|
| 796 |
|
---|
[6c16a0] | 797 | const BondIds ids( std::make_pair(_left, _right) );
|
---|
[8c001a] | 798 | BondNodeMap::iterator iter = BondsinSceneMap.find(ids);
|
---|
| 799 | if (iter == BondsinSceneMap.end()) {
|
---|
| 800 | GLMoleculeObject_bond * bondObject =
|
---|
[009e2e2] | 801 | new GLMoleculeObject_bond(GLMoleculeObject::meshCylinder, this, ids, _side);
|
---|
[8c001a] | 802 | connect (
|
---|
| 803 | bondObject, SIGNAL(BondRemoved(const atomId_t, const atomId_t)),
|
---|
| 804 | this, SLOT(bondRemoved(const atomId_t, const atomId_t)));
|
---|
| 805 | connect (bondObject, SIGNAL(changed()), this, SIGNAL(changed()));
|
---|
| 806 | BondsinSceneMap.insert( make_pair(ids, bondObject) );
|
---|
| 807 | // BondIdsinSceneMap.insert( Leftids );
|
---|
| 808 | } else {
|
---|
| 809 | iter->second->resetPosition();
|
---|
| 810 | iter->second->resetWidth();
|
---|
| 811 | }
|
---|
| 812 | emit changeOccured();
|
---|
| 813 | }
|
---|
| 814 |
|
---|
| 815 | /** Removes a bond from the scene.
|
---|
| 816 | *
|
---|
| 817 | * @param _bond bond to remove
|
---|
| 818 | */
|
---|
| 819 | void GLMoleculeObject_molecule::bondRemoved(const atomId_t leftnr, const atomId_t rightnr)
|
---|
| 820 | {
|
---|
| 821 | LOG(3, "INFO: GLWorldScene::bondRemoved() - Removing bond between "+toString(leftnr)+" and "+toString(rightnr)+".");
|
---|
| 822 | {
|
---|
| 823 | // left bond
|
---|
| 824 | const BondIds Leftids( make_pair(leftnr, rightnr) );
|
---|
| 825 | BondNodeMap::iterator leftiter = BondsinSceneMap.find( Leftids );
|
---|
| 826 | ASSERT(leftiter != BondsinSceneMap.end(),
|
---|
| 827 | "GLWorldScene::bondRemoved() - bond "+toString(leftnr)+"-"
|
---|
| 828 | +toString(rightnr)+" not on display.");
|
---|
| 829 | GLMoleculeObject_bond *bondObject = leftiter->second;
|
---|
| 830 | bondObject->disconnect();
|
---|
| 831 | BondsinSceneMap.erase(leftiter);
|
---|
| 832 | delete bondObject; // is done by signal from bond itself
|
---|
| 833 | //LOG(4, "INFO: Still present bonds " << BondsinSceneMap << ".");
|
---|
| 834 | }
|
---|
| 835 |
|
---|
| 836 | emit changeOccured();
|
---|
| 837 | }
|
---|
| 838 |
|
---|
[34e7fdb] | 839 | void GLMoleculeObject_molecule::setVisible(bool value)
|
---|
| 840 | {
|
---|
| 841 | // first update the mesh if we are going to be visible now
|
---|
| 842 | if (value)
|
---|
[7b5984] | 843 | updateTesselationHull();
|
---|
[34e7fdb] | 844 | // then emit onward
|
---|
| 845 | GLMoleculeObject::setVisible(value);
|
---|
| 846 | }
|
---|
| 847 |
|
---|
[8c001a] | 848 | std::ostream &operator<<(std::ostream &ost, const GLMoleculeObject_molecule::BondIds &t)
|
---|
| 849 | {
|
---|
| 850 | ost << t.first << "," << t.second;
|
---|
| 851 | return ost;
|
---|
| 852 | }
|
---|
[34e7fdb] | 853 |
|
---|
[9a7ef9] | 854 | void GLMoleculeObject_molecule::wasClicked()
|
---|
| 855 | {
|
---|
[6c16a0] | 856 | LOG(4, "INFO: GLMoleculeObject_molecule: atom " << MolIndex.get() << " has been clicked");
|
---|
| 857 | emit moleculeClicked(MolIndex.get());
|
---|
[9a7ef9] | 858 | }
|
---|
[8d3ee6] | 859 |
|
---|
[6c16a0] | 860 | void GLMoleculeObject_molecule::changeAtomId(
|
---|
| 861 | GLMoleculeObject_atom *ob,
|
---|
| 862 | const atomId_t oldId,
|
---|
| 863 | const atomId_t newId)
|
---|
[8d3ee6] | 864 | {
|
---|
| 865 | LOG(3, "INFO: GLMoleculeObject_molecule - change atom id " << oldId << " to " << newId << ".");
|
---|
| 866 |
|
---|
| 867 | // Remove from map.
|
---|
| 868 | AtomNodeMap::iterator iter = AtomsinSceneMap.find(oldId);
|
---|
| 869 | ASSERT(iter != AtomsinSceneMap.end(),
|
---|
| 870 | "GLMoleculeObject_molecule::changeAtomId() - atom with old id "+toString(oldId)+" not on display.");
|
---|
| 871 | ASSERT(iter->second == ob,
|
---|
| 872 | "GLMoleculeObject_molecule::changeAtomId() - atom with id "
|
---|
| 873 | +toString(oldId)+" does not match with object in AtomsinSceneMap.");
|
---|
| 874 | AtomsinSceneMap.erase(iter);
|
---|
| 875 |
|
---|
| 876 | // Reinsert with new id.
|
---|
| 877 | {
|
---|
| 878 | AtomNodeMap::iterator iter = AtomsinSceneMap.find(newId);
|
---|
| 879 | ASSERT(iter == AtomsinSceneMap.end(),
|
---|
| 880 | "GLMoleculeObject_molecule::changeAtomId() - atom with new id "+toString(newId)+" already known.");
|
---|
| 881 | }
|
---|
| 882 | AtomsinSceneMap.insert( make_pair(newId, ob) );
|
---|
| 883 | }
|
---|
[6c16a0] | 884 |
|
---|
| 885 | const molecule * const GLMoleculeObject_molecule::getMolecule(const moleculeId_t _id)
|
---|
| 886 | {
|
---|
| 887 | const molecule * const mol = const_cast<const World &>(World::getInstance()).
|
---|
| 888 | getMolecule(MoleculeById(_id));
|
---|
| 889 | return mol;
|
---|
| 890 | }
|
---|