summaryrefslogtreecommitdiff
path: root/cad/plugins/NanoVision-1/src/Interface/NXSceneGraph.cpp
blob: 96f62641a34e820181e95d8b9d887c6b3e946623 (plain)
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
161
162
163
164
165
166
167
168
169
170
171
172
173
// Copyright 2008 Nanorex, Inc.  See LICENSE file for details.

#include <Nanorex/Interface/NXSceneGraph.h>
#include <Nanorex/Interface/NXNanoVisionResultCodes.h>
#include <Nanorex/Utility/NXUtility.h>
#include <algorithm>
#include <sstream>
#include <iostream>
#include <cassert>

using namespace std;

namespace Nanorex {

// static data
NXCommandResult NXSGNode::_s_commandResult;
#ifdef NX_DEBUG
int NXSGNode::idSource(0);
#endif

NXSGNode::NXSGNode() throw() :
    ref_count(0), children()
#ifdef NX_DEBUG
	,id(idSource++), name()
#endif
{
#ifdef NX_DEBUG
// 	cerr << "creating " << getName()
// 		<< " [ref = " << getRefCount() << ']' << endl;
#endif
}
	
NXSGNode::~NXSGNode()
{
	assert(ref_count == 0);
#ifdef NX_DEBUG
	cerr << "deleting " << getName()
		<< " [ref = " << getRefCount() << ']' << endl;
#endif
	removeAllChildren(); 
}


void NXSGNode::SetError(int errCode, char const *const errMsg)
{
    _s_commandResult.setResult(errCode);
    vector<QString> message;
    message.push_back(QObject::tr(errMsg));
    _s_commandResult.setParamVector(message);
}


void NXSGNode::ClearResult(void)
{
	_s_commandResult.setResult(NX_CMD_SUCCESS);
	_s_commandResult.setParamVector(vector<QString>());
}


bool NXSGNode::addChild(NXSGNode *const child)
{
	ClearResult();
    if(child == NULL) return false; // prevent seg-faults early
	assert(find(children.begin(), children.end(), child) == children.end());
	try { children.push_back(child); }
    catch(...) {
        SetError((int) NX_INTERNAL_ERROR,
                 "Failed to add scenegraph child");
        return false;
    }
	child->incrementRefCount();
	return true;
}


/// Precondition: childPtr is a valid child of this node
/// Private, so that calling methods know that this is the case
/// Does not remove child from the list of children
inline void NXSGNode::removeChildWithoutCheck(NXSGNode *childPtr)
{
	assert(childPtr->getRefCount() >= 1);
	int childNewRefCount = childPtr->decrementRefCount();
	if(childNewRefCount == 0) {
        delete childPtr; // will call deleteRecursive
    }
}



bool NXSGNode::removeChild(NXSGNode *const child)
{
	ClearResult();
	ChildrenList::iterator childLoc = std::find(children.begin(),
	                                            children.end(),
	                                            child);
	if(childLoc != children.end()) {
		removeChildWithoutCheck(*childLoc);
		children.erase(childLoc);
		return true;
	}
	else {
		SetError((int) NX_INTERNAL_ERROR, "Cannot remove non-child node");
		return false;
	}
}


void NXSGNode::removeAllChildren(void)
{
	ClearResult();
	ChildrenList::iterator childIter;
	for(childIter = children.begin();
	    childIter != children.end();
	    ++childIter)
	{
		NXSGNode *const childPtr = *childIter;
		removeChildWithoutCheck(childPtr);
	}
	children.clear();
}


bool NXSGNode::applyRecursive(void) const
{
    bool ok = this->apply();
    // ok is false iff subclass encountered error in which case it should have
    // set the commandResult appropriately.
    ChildrenList::const_iterator childIter;
    for(childIter = children.begin();
        childIter != children.end() && ok;
        ++childIter)
    {
	    NXSGNode *childNode = *childIter;
        ok = childNode->applyRecursive();
    }
    return ok;
}


#ifdef NX_DEBUG
void NXSGNode::reset(void)
{
	ChildrenList::iterator childIter;
	for(childIter=children.begin(); childIter!=children.end(); ++childIter)
		(*childIter)->decrementRefCount();
	children.clear();
	ref_count = 0;
}

string const NXSGNode::getName() const
{
// 	ostringstream strm;
// 	strm << "Node_" << name << "-" << id;
//     return strm.str();
	
	return "Node_" + name + "_" + NXUtility::itos(id);
}

void NXSGNode::writeDotGraph(ostream& o) const
{
	ChildrenList::const_iterator childIter;
    for(childIter = children.begin(); childIter != children.end(); ++childIter) {
        (*childIter)->writeDotGraph(o);
    }
    o << '\n' << getName() << endl;
    
    for(childIter = children.begin(); childIter != children.end(); ++childIter) {
        o << getName() << " -> " << (*childIter)->getName() << endl;
    }
}
#endif

} // Nanorex