Ignore:
Timestamp:
Apr 6, 2012, 11:57:21 AM (13 years ago)
Author:
Frederik Heber <heber@…>
Branches:
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
Children:
343a4b
Parents:
69643a
git-author:
Michael Ankele <ankele@…> (03/29/12 11:35:47)
git-committer:
Frederik Heber <heber@…> (04/06/12 11:57:21)
Message:

GL: track atoms changing position

Location:
src/UIElements/Views/Qt4/Qt3D
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject.cpp

    r69643a r8a77ac  
    5353   m_objectId = -1;
    5454   m_hovering = false;
     55   m_selected = false;
    5556   m_material = 0;
    5657   m_hoverMaterial = 0;
     
    6970   m_objectId = -1;
    7071   m_hovering = false;
     72   m_selected = false;
    7173   m_material = 0;
    7274   m_hoverMaterial = 0;
     
    100102   if (m_hovering)
    101103       material = m_hoverMaterial;
     104   else if (m_selected)
     105       material = m_selectionMaterial;
    102106   else
    103107       material = m_material;
     
    119123   else
    120124       m_mesh->draw(painter);
     125
     126   QVector3DArray array;
     127   qreal radius = 0.3f;
     128   array.append(-radius, -radius, -radius); array.append( radius, -radius, -radius);
     129   array.append( radius, -radius, -radius); array.append( radius,  radius, -radius);
     130   array.append( radius,  radius, -radius); array.append(-radius,  radius, -radius);
     131   array.append(-radius,  radius, -radius); array.append(-radius, -radius, -radius);
     132
     133   array.append(-radius, -radius,  radius); array.append( radius, -radius,  radius);
     134   array.append( radius, -radius,  radius); array.append( radius,  radius,  radius);
     135   array.append( radius,  radius,  radius); array.append(-radius,  radius,  radius);
     136   array.append(-radius,  radius,  radius); array.append(-radius, -radius,  radius);
     137
     138   array.append(-radius, -radius, -radius); array.append(-radius, -radius,  radius);
     139   array.append( radius, -radius, -radius); array.append( radius, -radius,  radius);
     140   array.append(-radius,  radius, -radius); array.append(-radius,  radius,  radius);
     141   array.append( radius,  radius, -radius); array.append( radius,  radius,  radius);
     142   painter->clearAttributes();
     143   painter->setVertexAttribute(QGL::Position, array);
     144   painter->draw(QGL::Lines, 24);
    121145
    122146   // Turn off the user effect, if present.
     
    166190QGLMaterial* GLMoleculeObject::getMaterial(size_t no)
    167191{
    168   ASSERT( (no >= 0) && (no < MAX_ELEMENTS),
     192  ASSERT( (no >= 0) && (no < MAX_ELEMENTS) || (no == 65536),
    169193      "GLMoleculeView::getMaterial() - Element no "+toString(no)+" is invalid.");
    170194  if (ElementNoMaterialMap.find(no) != ElementNoMaterialMap.end()){
     
    178202    if (no == 0) { // create hover material
    179203      newmaterial->setAmbientColor( QColor(0, 128, 128) );
     204    } else if (no == 65536) { // create selection material
     205      newmaterial->setAmbientColor( QColor(200, 200, 200) );
    180206    } else { // create material for element
    181207      periodentafel *periode = World::getInstance().getPeriode();
  • src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject.hpp

    r69643a r8a77ac  
    6060   void setHoverMaterial(QGLMaterial *value) { m_hoverMaterial = value; }
    6161
     62   QGLMaterial *selectionMaterial() const { return m_selectionMaterial; }
     63   void setSelectionMaterial(QGLMaterial *value) { m_selectionMaterial = value; }
     64
    6265   QGLAbstractEffect *effect() const { return m_effect; }
    6366   void setEffect(QGLAbstractEffect *value) { m_effect = value; }
     
    100103   int m_objectId;
    101104   bool m_hovering;
     105   bool m_selected;
    102106};
    103107
  • src/UIElements/Views/Qt4/Qt3D/GLMoleculeObject_atom.cpp

    r69643a r8a77ac  
    108108      "GLMoleculeObject_atom::GLMoleculeObject_atom() - QGLMaterial ref from getter function for hover is NULL.");
    109109  setHoverMaterial(hovermaterial);
     110  QGLMaterial *selectionmaterial = getMaterial(65536); // 65536 is the selection material
     111  ASSERT(selectionmaterial != NULL,
     112      "GLMoleculeObject_atom::GLMoleculeObject_atom() - QGLMaterial ref from getter function for selection is NULL.");
     113  setSelectionMaterial(selectionmaterial);
    110114
    111115  // set scale
  • src/UIElements/Views/Qt4/Qt3D/GLWorldScene.cpp

    r69643a r8a77ac  
    205205void GLWorldScene::draw(QGLPainter *painter) const
    206206{
     207  std::cout << "scene draw\n";
    207208   // Draw all of the mesh objects that we have as children.
    208209   foreach (QObject *obj, children()) {
  • src/UIElements/Views/Qt4/Qt3D/GLWorldView.cpp

    r69643a r8a77ac  
    4848  World::getInstance().signOn(this, World::AtomInserted);
    4949  World::getInstance().signOn(this, World::AtomRemoved);
     50  World::getInstance().signOn(this, World::AtomPositionChanged);
    5051}
    5152
     
    5556  World::getInstance().signOff(this, World::AtomInserted);
    5657  World::getInstance().signOff(this, World::AtomRemoved);
     58  World::getInstance().signOff(this, World::AtomPositionChanged);
    5759  delete worldscene;
    5860}
     
    9698#endif
    9799      emit atomRemoved(_atom);
     100      break;
     101    }
     102    case World::AtomPositionChanged:
     103    {
     104      std::cout << "view pos changed\n";
     105      const atom *_atom = World::getInstance().lastChanged<atom>();
     106#ifdef LOG_OBSERVER
     107      observerLog().addMessage() << "++ Observer " << observerLog().getName(this) << " received notification that atom "+toString(_atom->getId())+" has changed its position.";
     108#endif
     109      emit changed();
    98110      break;
    99111    }
Note: See TracChangeset for help on using the changeset viewer.