source: src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject_atom.cpp@ e895f7

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since e895f7 was f115cc, checked in by Frederik Heber <heber@…>, 10 years ago

For GLMoleculeObject_atom element and position are only reset..() on hook'ed in draw().

  • similarly as with GLMoleculeObject_molecule, we check in draw() when need to reset..() and do it before the actual drawing. This speeds up a lot.
  • Property mode set to 100644
File size: 7.9 KB
RevLine 
[907636]1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
[0aa122]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/>.
[907636]22 */
23
24/*
25 * GLMoleculeObject_atom.cpp
26 *
27 * Created on: Aug 17, 2011
28 * Author: heber
29 */
30
31// include config.h
32#ifdef HAVE_CONFIG_H
33#include <config.h>
34#endif
35
36#include "GLMoleculeObject_atom.hpp"
37
38#include <Qt3D/qglscenenode.h>
39
40#include "CodePatterns/MemDebug.hpp"
41
42#include "CodePatterns/Assert.hpp"
[7188b1]43#include "CodePatterns/Log.hpp"
[02ce36]44#include "CodePatterns/Observer/Notification.hpp"
[907636]45
[2ad1ec]46#include "Atom/atom.hpp"
47#include "Bond/bond.hpp"
[7188b1]48#include "Descriptors/AtomIdDescriptor.hpp"
[3bdb6d]49#include "Element/element.hpp"
[907636]50#include "LinearAlgebra/Vector.hpp"
[2ad1ec]51#include "GLMoleculeObject_bond.hpp"
[7188b1]52#include "World.hpp"
[89b992]53#include "WorldTime.hpp"
[907636]54
[917659]55GLMoleculeObject_atom::GLMoleculeObject_atom(QGLSceneNode *mesh[], QObject *parent, const atomId_t _id) :
[bca99d]56 GLMoleculeObject(mesh, parent),
[917659]57 Observer(std::string("GLMoleculeObject_atom")+toString(_id)),
[f115cc]58 atomicid(_id),
59 uptodatePosition(false),
60 uptodateElement(false)
[7188b1]61{
62 // sign on as observer (obtain non-const instance before)
[917659]63 const atom *_atom = World::getInstance().getAtom(AtomById(atomicid));
64 if (_atom != NULL) {
65 _atom->signOn(this, AtomObservable::IndexChanged);
66 _atom->signOn(this, AtomObservable::PositionChanged);
67 _atom->signOn(this, AtomObservable::ElementChanged);
68 _atom->signOn(this, AtomObservable::BondsAdded);
69 } else {
70 ELOG(2, "Atom with id "+toString(atomicid)+" is already gone.");
71 }
[d53902]72 World::getInstance().signOn(this, World::SelectionChanged);
[7188b1]73
74 // set the object's id
75 resetProperties();
76
[917659]77 LOG(2, "INFO: Created sphere for atom " << atomicid << ".");
[7188b1]78
79 connect( this, SIGNAL(clicked()), this, SLOT(wasClicked()));
80}
81
[9c18e4]82GLMoleculeObject_atom::~GLMoleculeObject_atom()
83{
[917659]84 const atom *_atom = World::getInstance().getAtom(AtomById(atomicid));
85 if (_atom != NULL){
[c736fe]86 _atom->signOff(this, AtomObservable::IndexChanged);
87 _atom->signOff(this, AtomObservable::PositionChanged);
88 _atom->signOff(this, AtomObservable::ElementChanged);
89 _atom->signOff(this, AtomObservable::BondsAdded);
90 }
[d53902]91 World::getInstance().signOff(this, World::SelectionChanged);
[9c18e4]92}
93
[7188b1]94void GLMoleculeObject_atom::update(Observable *publisher)
95{
[57a770]96#ifdef LOG_OBSERVER
[917659]97 observerLog().addMessage() << "++ Update of Observer " << observerLog().getName(static_cast<Observer *>(this)) << " from atom "+toString(atomicid)+".";
[57a770]98#endif
[7188b1]99 resetProperties();
100}
101
102void GLMoleculeObject_atom::resetPosition()
[907636]103{
[917659]104 const atom *_atom = World::getInstance().getAtom(AtomById(atomicid));
105 if (_atom != NULL) {
106 const Vector Position = _atom->getPosition();
107 LOG(4, "INFO: GLMoleculeObject_atom::resetIndex() - new position is "+toString(Position)+".");
108 setPosition(QVector3D(Position[0], Position[1], Position[2]));
109 } else {
110 ELOG(2, "Atom with id "+toString(atomicid)+" is already gone.");
111 }
[f115cc]112 uptodatePosition = true;
[7188b1]113}
114
115void GLMoleculeObject_atom::resetElement()
116{
117 size_t elementno = 0;
[917659]118 const atom *_atom = World::getInstance().getAtom(AtomById(atomicid));
[c60665]119 const element *_type = NULL;
[917659]120 if (_atom != NULL) {
[c60665]121 _type = _atom->getType();
[7188b1]122 } else {
[917659]123 ELOG(2, "Atom with id "+toString(atomicid)+" is already gone.");
[7188b1]124 }
[c60665]125 if (_type != NULL) {
126 elementno = _type->getAtomicNumber();
127 } else { // if no element yet, set to hydrogen
128 elementno = 1;
129 }
130 LOG(4, "INFO: GLMoleculeObject_atom::resetIndex() - new element number is "+toString(elementno)+".");
131
132 // set materials
133 QGLMaterial *elementmaterial = getMaterial(elementno);
134 ASSERT(elementmaterial != NULL,
135 "GLMoleculeObject_atom::GLMoleculeObject_atom() - QGLMaterial ref from getter function is NULL.");
136 setMaterial(elementmaterial);
137
138 // set scale
139 double radius = 0.;
140 if (_type != NULL) {
141 radius = _type->getVanDerWaalsRadius();
142 } else {
143 radius = 0.5;
144 }
145 setScale( radius / 4. );
[f115cc]146
147 uptodateElement = true;
[7188b1]148}
149
150void GLMoleculeObject_atom::resetIndex()
151{
[30cd0d]152 int oldId = objectId();
[917659]153 LOG(4, "INFO: GLMoleculeObject_atom::resetIndex() - new index is "+toString(atomicid)+".");
154 setObjectId(atomicid);
[30cd0d]155
[917659]156 emit indexChanged(this, oldId, atomicid);
[7188b1]157}
158
159void GLMoleculeObject_atom::resetProperties()
160{
[907636]161 // set position
[7188b1]162 resetPosition();
[907636]163
[7188b1]164 // set element
165 resetElement();
[907636]166
167 // set the object's id
[7188b1]168 resetIndex();
[d53902]169
170 // selected?
[917659]171 setSelected(World::getInstance().isAtomSelected(atomicid));
[7188b1]172}
[907636]173
[f115cc]174void GLMoleculeObject_atom::draw(QGLPainter *painter, const QVector4D &cameraPlane)
175{
176 // hook to update prior to painting
177 if (!uptodatePosition)
178 resetPosition();
179 if (!uptodateElement)
180 resetElement();
181
182 // call old hook to do the actual paining
183 GLMoleculeObject::draw(painter, cameraPlane);
184}
185
[7188b1]186void GLMoleculeObject_atom::subjectKilled(Observable *publisher)
[c736fe]187{
[917659]188 // remove id such that we don't sign off accidentally from a different atom
189 const_cast<atomId_t &>(atomicid) = -1;
[c736fe]190}
[06ebf5]191
[7188b1]192void GLMoleculeObject_atom::recieveNotification(Observable *publisher, Notification_ptr notification)
193{
[917659]194 const atom *_atom = World::getInstance().getAtom(AtomById(atomicid));
[d53902]195 if (publisher == dynamic_cast<const Observable*>(_atom)){
196 // notofication from atom
[57a770]197#ifdef LOG_OBSERVER
[708277]198 observerLog().addMessage() << "++ Update of Observer "<< observerLog().getName(static_cast<Observer *>(this))
[d53902]199 << " received notification from atom " << _atom->getId() << " for channel "
200 << notification->getChannelNo() << ".";
[57a770]201#endif
[d53902]202 switch (notification->getChannelNo()) {
203 case AtomObservable::ElementChanged:
[f115cc]204 uptodateElement = false;
[d53902]205 break;
206 case AtomObservable::IndexChanged:
207 resetIndex();
208 break;
209 case AtomObservable::PositionChanged:
[f115cc]210 uptodatePosition = false;
[d53902]211 break;
212 case AtomObservable::BondsAdded:
[2ad1ec]213 {
[917659]214 const atom *_atom = World::getInstance().getAtom(AtomById(atomicid));
215 if (_atom != NULL) {
[f115cc]216 // make sure position is up-to-date
217 if (!uptodatePosition)
218 resetPosition();
[d53902]219 ASSERT(!_atom->getListOfBonds().empty(),
220 "GLMoleculeObject_atom::recieveNotification() - received BondsAdded but ListOfBonds is empty.");
[88c8ec]221 const bond::ptr _bond = *(_atom->getListOfBonds().rbegin());
[d53902]222 const GLMoleculeObject_bond::SideOfBond side = (_bond->leftatom == _atom) ?
223 GLMoleculeObject_bond::left : GLMoleculeObject_bond::right;
224 emit BondsInserted(_bond, side);
[917659]225 } else {
226 ELOG(2, "Atom with id "+toString(atomicid)+" is already gone.");
[d53902]227 }
[917659]228 break;
229 }
[d53902]230 default:
231 //setProperties();
232 break;
233 }
[89b992]234 }else if (static_cast<World *>(publisher) == World::getPointer()) {
[d53902]235 // notification from world
236#ifdef LOG_OBSERVER
[708277]237 observerLog().addMessage() << "++ Update of Observer "<< observerLog().getName(static_cast<Observer *>(this))
[d53902]238 << " received notification from world for channel "
239 << notification->getChannelNo() << ".";
240#endif
241 switch (notification->getChannelNo()) {
242 case World::SelectionChanged:
243 setSelected(World::getInstance().isSelected(_atom));
244 break;
245 default:
[2ad1ec]246 break;
[d53902]247 }
[7188b1]248 }
[06ebf5]249}
250
251void GLMoleculeObject_atom::wasClicked()
252{
[917659]253 LOG(4, "INFO: GLMoleculeObject_atom: atom " << atomicid << " has been clicked");
254 emit clicked(atomicid);
[907636]255}
Note: See TracBrowser for help on using the repository browser.