1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/*
* Atom iterators
*
* (c) 2014 Schrodinger, Inc.
*/
#include <algorithm>
#include "AtomIterators.h"
#include "Selector.h"
#include "SelectorDef.h"
/*========================================================================*/
bool CoordSetAtomIterator::next() {
for (atm++; atm < cs->NAtIndex; atm++) {
idx = cs->atmToIdx(atm);
if(idx < 0)
continue;
return true;
}
return false;
}
/*========================================================================*/
SeleAtomIterator::SeleAtomIterator(PyMOLGlobals * G_, const char * sele_) {
G = G_;
stmp = new char[1024];
SelectorGetTmp(G, (char*) sele_, stmp);
sele = SelectorIndexByName(G, stmp);
SelectorUpdateTable(G, cSelectorUpdateTableAllStates, -1);
reset();
}
SeleAtomIterator::~SeleAtomIterator() {
if (stmp) {
SelectorFreeTmp(G, stmp);
delete[] stmp;
}
}
void SeleAtomIterator::reset() {
a = cNDummyAtoms - 1;
}
/*
* advance the internal state to the next atom, return false if there is no
* next atom
*/
bool SeleAtomIterator::next() {
CSelector *I = G->Selector;
while ((++a) < I->NAtom) {
atm = I->Table[a].atom;
obj = I->Obj[I->Table[a].model];
if(!SelectorIsMember(G, obj->AtomInfo[atm].selEntry, sele))
continue;
return true;
}
return false;
}
/*========================================================================*/
/*
* Quasi constructor, call this if `SeleCoordIterator` has been constructed
* with the default constructor.
*/
void SeleCoordIterator::init(PyMOLGlobals * G_, int sele_, int state_) {
G = G_;
statearg = state_;
// current state (use -3 for "effective" state)
if (statearg == -2) {
statearg = SettingGetGlobal_i(G, cSetting_state) - 1;
}
// safety check
if (statearg < -1) {
statearg = -3;
}
SelectorUpdateTable(G, statearg, sele_);
setPerObject(false);
reset();
}
void SeleCoordIterator::reset() {
a = cNDummyAtoms - 1;
state = statearg;
prev_obj = NULL;
if (isMultistate()) {
state = 0;
statemax = 0;
}
}
/*
* advance the internal state to the next atom, return false if there is no
* next atom
*/
bool SeleCoordIterator::next() {
CSelector *I = G->Selector;
for (a++; a < I->NAtom; a++) {
obj = I->Obj[I->Table[a].model];
if (isMultistate()) {
if (isPerObject()) {
if (obj != prev_obj) {
if (nextStateInPrevObject())
continue;
// first cs of next object
prev_obj = obj;
state = 0;
}
} else if(statemax < obj->NCSet) {
statemax = obj->NCSet;
}
} else if (statearg == -3 && obj != prev_obj) {
// "effective" state (no support here for settings all_states=1 or state=0)
state = std::max(0, obj->getState());
prev_obj = obj;
}
if(state >= obj->NCSet || !(cs = obj->CSet[state]))
continue;
atm = I->Table[a].atom;
idx = cs->atmToIdx(atm);
if(idx < 0)
continue;
return true;
}
if (isMultistate()) {
if (isPerObject()) {
if (nextStateInPrevObject())
return next();
} else if ((++state) < statemax) {
a = cNDummyAtoms - 1;
return next();
}
}
return false;
}
// vi:sw=2:expandtab
|