| 1 | /* | 
|---|
| 2 | * GLMoleculeObject_atom.hpp | 
|---|
| 3 | * | 
|---|
| 4 | *  Created on: Aug 17, 2011 | 
|---|
| 5 | *      Author: heber | 
|---|
| 6 | */ | 
|---|
| 7 |  | 
|---|
| 8 | #ifndef GLMOLECULEOBJECT_ATOM_HPP_ | 
|---|
| 9 | #define GLMOLECULEOBJECT_ATOM_HPP_ | 
|---|
| 10 |  | 
|---|
| 11 | // include config.h | 
|---|
| 12 | #ifdef HAVE_CONFIG_H | 
|---|
| 13 | #include <config.h> | 
|---|
| 14 | #endif | 
|---|
| 15 |  | 
|---|
| 16 | #include "GLMoleculeObject.hpp" | 
|---|
| 17 |  | 
|---|
| 18 | #include "CodePatterns/ObservedValue.hpp" | 
|---|
| 19 | #include "CodePatterns/Observer/Observer.hpp" | 
|---|
| 20 |  | 
|---|
| 21 | #include "LinearAlgebra/Vector.hpp" | 
|---|
| 22 |  | 
|---|
| 23 | #include "Bond/bond.hpp" | 
|---|
| 24 | #include "UIElements/Views/Qt4/Qt3D/GLMoleculeObject_bond.hpp" | 
|---|
| 25 | #include "types.hpp" | 
|---|
| 26 |  | 
|---|
| 27 | class GLWorldScene; | 
|---|
| 28 |  | 
|---|
| 29 | class GLMoleculeObject_atom : public GLMoleculeObject, Observer | 
|---|
| 30 | { | 
|---|
| 31 | Q_OBJECT | 
|---|
| 32 | public: | 
|---|
| 33 | GLMoleculeObject_atom(QGLSceneNode *mesh[], QObject *parent, const atomId_t id); | 
|---|
| 34 | virtual ~GLMoleculeObject_atom(); | 
|---|
| 35 |  | 
|---|
| 36 | void draw(QGLPainter *painter, const QVector4D &cameraPlane); | 
|---|
| 37 |  | 
|---|
| 38 | // Observer functions | 
|---|
| 39 | void update(Observable *publisher); | 
|---|
| 40 | void subjectKilled(Observable *publisher); | 
|---|
| 41 | void recieveNotification(Observable *publisher, Notification_ptr notification); | 
|---|
| 42 |  | 
|---|
| 43 | private slots: | 
|---|
| 44 | void wasClicked(); | 
|---|
| 45 | void resetIndex(); | 
|---|
| 46 | void resetElement(); | 
|---|
| 47 | void resetPosition(); | 
|---|
| 48 | void resetBonds(); | 
|---|
| 49 | void resetSelectionStatus(); | 
|---|
| 50 |  | 
|---|
| 51 | signals: | 
|---|
| 52 | void clicked(atomId_t); | 
|---|
| 53 | void BondsAdded(const atomId_t _left, const atomId_t _right, const GLMoleculeObject_bond::SideOfBond side); | 
|---|
| 54 | void BondsRemoved(const atomId_t _left, const atomId_t _right); | 
|---|
| 55 | void indexChanged(GLMoleculeObject_atom *ob, const atomId_t oldId, const atomId_t newId); | 
|---|
| 56 | void idChanged(); | 
|---|
| 57 | void positionChanged(); | 
|---|
| 58 | void elementChanged(); | 
|---|
| 59 | void bondsChanged(); | 
|---|
| 60 | void selectionstatusChanged(); | 
|---|
| 61 |  | 
|---|
| 62 | private: | 
|---|
| 63 | //!> grant GLMoleculeObject_molecule acess to reset functions | 
|---|
| 64 | friend class GLMoleculeObject_molecule; | 
|---|
| 65 |  | 
|---|
| 66 | //!> typedef for list of bonds, defined by pairs of atom ids | 
|---|
| 67 | typedef std::vector< std::pair<atomId_t, atomId_t> > ListOfBonds_t; | 
|---|
| 68 |  | 
|---|
| 69 | static const atom * const getAtomConst(const atomId_t _id); | 
|---|
| 70 | static atom * const getAtom(const atomId_t _id); | 
|---|
| 71 |  | 
|---|
| 72 | atomId_t updateIndex() const; | 
|---|
| 73 | Vector updatePosition() const; | 
|---|
| 74 | atomicNumber_t updateElement() const; | 
|---|
| 75 | ListOfBonds_t updateBonds() const; | 
|---|
| 76 | bool updateSelectionStatus() const; | 
|---|
| 77 |  | 
|---|
| 78 | void activateObserver(); | 
|---|
| 79 | void deactivateObserver(); | 
|---|
| 80 |  | 
|---|
| 81 | private: | 
|---|
| 82 |  | 
|---|
| 83 | //!> current list of bonds to compare new onw against for changes | 
|---|
| 84 | ListOfBonds_t ListOfBonds; | 
|---|
| 85 |  | 
|---|
| 86 | //!> temporary variable used in cstor | 
|---|
| 87 | atom * const atomref; | 
|---|
| 88 |  | 
|---|
| 89 | //!> cached value of the atom's id | 
|---|
| 90 | ObservedValue<atomId_t> AtomIndex; | 
|---|
| 91 | //!> cached value of the atom's position | 
|---|
| 92 | ObservedValue<Vector> AtomPosition; | 
|---|
| 93 | //!> cached value of the atom's element | 
|---|
| 94 | ObservedValue<atomicNumber_t> AtomElement; | 
|---|
| 95 | //!> cached value of the atom's id | 
|---|
| 96 | ObservedValue<ListOfBonds_t> AtomBonds; | 
|---|
| 97 | //!> cached value of the atom's selection status | 
|---|
| 98 | ObservedValue<bool> AtomSelectionStatus; | 
|---|
| 99 |  | 
|---|
| 100 | //!> list of channels when index needs to update | 
|---|
| 101 | static const Observable::channels_t AtomIndexChannels; | 
|---|
| 102 | //!> list of channels when position needs to update | 
|---|
| 103 | static const Observable::channels_t AtomPositionChannels; | 
|---|
| 104 | //!> list of channels when element needs to update | 
|---|
| 105 | static const Observable::channels_t AtomElementChannels; | 
|---|
| 106 | //!> list of channels when bonds needs to update | 
|---|
| 107 | static const Observable::channels_t AtomBondsChannels; | 
|---|
| 108 | //!> list of channels when selection status needs to update | 
|---|
| 109 | static const Observable::channels_t AtomSelectionStatusChannels; | 
|---|
| 110 |  | 
|---|
| 111 | //!> the Observable we are signed on, also indicates whether we are sign on (not NULL) | 
|---|
| 112 | const Observable *owner; | 
|---|
| 113 | }; | 
|---|
| 114 |  | 
|---|
| 115 |  | 
|---|
| 116 |  | 
|---|
| 117 | #endif /* GLMOLECULEOBJECT_ATOM_HPP_ */ | 
|---|