X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsKernelEditorGraphic%2FGBlackBoxModel.cxx;h=a806ea8d347e44aea9fa3c9a7ce371f6ffc53eaa;hb=61a38c679e47c9f102d2834c835c3c6eac487a9b;hp=186c745baf1c189e64f20d7e6c5b23915ad77945;hpb=098558ac7780900858114a8ae01fe93847d67043;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.cxx b/lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.cxx index 186c745..a806ea8 100644 --- a/lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.cxx +++ b/lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.cxx @@ -28,44 +28,204 @@ Version: $Revision$ * knowledge of the CeCILL-B license and that you accept its terms. * ------------------------------------------------------------------------ */ -/** -* \file -* \brief Class bbtk::GBlackBox -*/ +/**** +* Design and Developpement of BBTK GEditor +* Ricardo A Corredor J +* RaC - 2010 +****/ + #include "GBlackBoxModel.h" namespace bbtk { - - //========================================================================= + GBlackBoxModel::GBlackBoxModel() { + _isExecutable = false; } //========================================================================= + GBlackBoxModel::~GBlackBoxModel() { } + //========================================================================= + + std::string GBlackBoxModel::getBBTKPackage() + { + return _bbtkPackage; + } + + //========================================================================= + + void GBlackBoxModel::setBBTKPackage(std::string obpackage) + { + _bbtkPackage = obpackage; + } - void GBlackBoxModel::addInputPort(GPortModel *inputport) + //========================================================================= + + bool GBlackBoxModel::isExecutable() { - _inputs.push_back(inputport); + return _isExecutable; } //========================================================================= - void GBlackBoxModel::addOutputPort(GPortModel *outputport) + void GBlackBoxModel::setExecutable(bool executable) { - _outputs.push_back(outputport); + _isExecutable = executable; } //========================================================================= + + std::string GBlackBoxModel::getStatusText() + { + std::string temp = ""; + temp+=_bbtkPackage; + temp+=":"; + temp+=_bbtkType; + temp+=":"; + temp+=_bbtkName; + + return temp; + } -} // EO namespace bbtk + //========================================================================= + + void GBlackBoxModel::setValueToInputPort(int pos,std::string value) + { + _inputs[pos]->setValue(value); + } + + //========================================================================= + + void GBlackBoxModel::save(std::string &content) + { + content+="BOX\n"; + // Box info + content+=_bbtkPackage; + content+=":"; + content+=_bbtkType; + content+=":"; + content+=_bbtkName; + content+="\n"; + content+="ISEXEC:"; + if(_isExecutable) + { + content+="TRUE"; + } + else + { + content+="FALSE"; + } + content+="\n"; + + + //Box Position + char buffer [50]; + sprintf (buffer, "%f", _xInic); + content+=buffer; + content+=":"; + sprintf (buffer, "%f", _yInic); + content+=buffer; + content+=":"; + sprintf (buffer, "%f", _zInic); + content+=buffer; + content+="\n"; + + sprintf (buffer, "%f", _xFin); + content+=buffer; + content+=":"; + sprintf (buffer, "%f", _yFin); + content+=buffer; + content+=":"; + sprintf (buffer, "%f", _zFin); + content+=buffer; + content+="\n"; + + //Ports with a value + for(int i = 0; i<(int)_inputs.size();i++) + { + if(_inputs[i]->isValueSet()) + { + _inputs[i]->save(content); + } + } + content+="FIN_BOX\n"; + + } + + //========================================================================= + + void GBlackBoxModel::setValueToInput(std::string name,std::string value) + { + for(int i = 0; i<(int)_inputs.size();i++) + { + if(_inputs[i]->getBBTKName()==name) + { + _inputs[i]->setValue(value); + } + } + } + + //========================================================================= + + std::string GBlackBoxModel::getValueInputPort(int pos) + { + return _inputs[pos]->getValue(); + } + + //========================================================================= + + std::string GBlackBoxModel::getValueInput(std::string name) + { + for(int i = 0; i<(int)_inputs.size();i++) + { + if(_inputs[i]->getBBTKName()==name) + { + return _inputs[i]->getValue(); + } + } + return NULL; + } + + //========================================================================= + + std::vector GBlackBoxModel::getConnectedInputs() + { + std::vector connected; + for(int i = 0; i<(int)_inputs.size();i++) + { + if(_inputs[i]->isConnected()) + { + connected.push_back(i); + } + } + return connected; + } + + //========================================================================= + + std::vector GBlackBoxModel::getConnectedOutputs() + { + std::vector connected; + for(int i = 0; i<(int)_outputs.size();i++) + { + if(_outputs[i]->isConnected()) + { + connected.push_back(i); + } + } + return connected; + } + + //========================================================================= +} // EO namespace bbtk // EOF