1 /*=========================================================================
7 =========================================================================*/
9 /* ---------------------------------------------------------------------
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
14 * This software is governed by the CeCILL-B license under French law and
15 * abiding by the rules of distribution of free software. You can use,
16 * modify and/ or redistribute the software under the terms of the CeCILL-B
17 * license as circulated by CEA, CNRS and INRIA at the following URL
18 * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
19 * or in the file LICENSE.txt.
21 * As a counterpart to the access to the source code and rights to copy,
22 * modify and redistribute granted by the license, users are provided only
23 * with a limited warranty and the software's author, the holder of the
24 * economic rights, and the successive licensors have only limited
27 * The fact that you are presently reading this means that you have had
28 * knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */
33 * \brief Class bbtk::GBox
37 #include "GBoxModel.h"
41 //=========================================================================
43 GBoxModel::GBoxModel()
47 //=========================================================================
49 GBoxModel::~GBoxModel()
53 //=========================================================================
55 void GBoxModel::setInicPoint(double& x, double& y, double& z)
57 GObjectModel::setInicPoint(x,y,z);
59 double xFin=x+BOX_WIDTH,yFin=y-BOX_HEIGHT;
60 setFinalPoint(xFin,yFin,z);
63 //=========================================================================
65 void GBoxModel::addInputPort(GPortModel *inputport)
67 _inputs.push_back(inputport);
70 //=========================================================================
72 void GBoxModel::addOutputPort(GPortModel *outputport)
74 _outputs.push_back(outputport);
77 //=========================================================================
79 int GBoxModel::getNumInputPorts()
81 return _inputs.size();
84 //=========================================================================
86 int GBoxModel::getNumOutputPorts()
88 return _outputs.size();
91 //=========================================================================
93 void GBoxModel::move(double xx,double yy,double zz)
95 setInicPoint(xx,yy,zz);
97 //Refresh inputs position
99 for(i=0;i<(int)_inputs.size();i++)
101 _inputs[i]->updatePortPosition();
104 //Refresh outputs position
105 for(i=0;i<(int)_outputs.size();i++)
107 _outputs[i]->updatePortPosition();
112 //=========================================================================
114 std::string GBoxModel::getStatusText()
116 std::string temp = "";
121 //=========================================================================
123 std::vector<GPortModel*> GBoxModel::getInputPorts()
128 //=========================================================================
130 std::vector<GPortModel*> GBoxModel::getOutputPorts()
135 //=========================================================================
137 void GBoxModel::save(std::string &content)
143 //=========================================================================
145 GPortModel* GBoxModel::getInputPort(std::string name)
147 for(int i = 0; i<(int)_inputs.size();i++)
149 if(_inputs[i]->getBBTKName()==name)
157 //=========================================================================
159 GPortModel* GBoxModel::getOutputPort(std::string name)
161 for(int i = 0; i<(int)_outputs.size();i++)
163 if(_outputs[i]->getBBTKName()==name)
171 //=========================================================================
173 GPortModel* GBoxModel::getInputPort(int pos)
178 //=========================================================================
180 GPortModel* GBoxModel::getOutputPort(int pos)
182 return _outputs[pos];
185 //=========================================================================
187 void GBoxModel::updatePorts()
189 for(int i = 0; i<(int)_inputs.size();i++)
191 _inputs[i]->updatePortPosition();
192 _inputs[i]->notifyObservers(_objectId);
195 for(int i = 0; i<_outputs.size();i++)
197 _outputs[i]->updatePortPosition();
198 _outputs[i]->notifyObservers(_objectId);
203 //=========================================================================
205 void GBoxModel::addColons(std::string &text)
207 printf("EED JPR >>>>>>>>>>>>>>> %s\n",text.c_str() );
208 std::string character("&&2P&&");
210 pos = text.find(character);
211 while(pos != std::string::npos)
213 //We replace the character "&&2P&&" with ":" for all the string
214 text.replace(pos, character.length(),":");
215 pos = text.find(character, pos);
219 //=========================================================================
221 void GBoxModel::removeColons(std::string &text)
223 std::string character(":");
225 pos = text.find(character);
226 while(pos != std::string::npos)
228 //We replace the character ":" with "&&2P&&" for all the string
229 text.replace(pos, character.length(),"&&2P&&");
230 pos = text.find(character, pos);
234 //=========================================================================
237 } // EO namespace bbtk