]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/GObjectsMVCFactory.cxx
d495b72ea90ae4649dabc3d18b5465c5500b9ad6
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / GObjectsMVCFactory.cxx
1 /*=========================================================================                                                                               
2 Program:   bbtk
3 Module:    $RCSfile$
4 Language:  C++
5 Date:      $Date$
6 Version:   $Revision$
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
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.
20 *
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
25 *  liability. 
26 *
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 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32 *  \file 
33 *  \brief Class bbtk::GObjectsMVCFactory 
34 */
35
36
37 #include "GObjectsMVCFactory.h"
38
39 namespace bbtk
40 {
41
42
43         //=========================================================================
44
45         GObjectsMVCFactory* GObjectsMVCFactory:: instance = NULL;
46         GObjectsMVCFactory::GObjectsMVCFactory()
47         {               
48                 _interpreter =Interpreter::New();
49                 _interpreter->SetCommandLine(true);
50                 std::stringstream* buf = new std::stringstream;
51                 *buf << "exec freeze_no_error" << std::endl;
52                 *buf << "message max 0" << std::endl; 
53                 *buf << "include *" << std::endl;
54                 _interpreter->InterpretBuffer(buf);     
55         }
56
57         //=========================================================================
58         GObjectsMVCFactory::~GObjectsMVCFactory()
59         {
60                 GObjectsMVCFactory::destroyInstance();
61         }
62         //=========================================================================
63
64         BlackBoxDescriptor::Pointer GObjectsMVCFactory::getBlackBoxDescriptor(std::string packageName, std::string boxName)
65         {                       
66                 Factory::Pointer factory = _interpreter->GetExecuter()->GetFactory();
67                 Package::Pointer k = factory->GetPackage(packageName);
68                 std::map< std::string, BlackBoxDescriptor::Pointer> mapDesc = k->GetDescriptorMap();
69                 return mapDesc[boxName];
70         }
71
72         //=========================================================================
73         GObjectsMVCFactory* GObjectsMVCFactory :: getInstance()
74         {
75                 if(instance == NULL){
76                         instance = new GObjectsMVCFactory();
77                 }
78                 return instance;
79         }
80
81         //=========================================================================
82
83         void GObjectsMVCFactory :: destroyInstance()
84         {
85                 instance=NULL;
86         }
87
88         //=========================================================================
89
90         vtkGObjectView* GObjectsMVCFactory :: createGObjectView(int type)
91         {
92                 vtkGObjectView* view = NULL;
93                 if (type == GBLACKBOX)
94                 {
95                         view = new vtkGBlackBoxView();
96                 }
97                 else if(type == GPORT)
98                 {
99                         view = new vtkGPortView();
100                 }
101                 else if(type == GCOMPLEXINPUTPORT || type == GCOMPLEXOUTPUTPORT)
102                 {
103                         view = new vtkGComplexBoxPortView();
104                 }
105                 return view;
106         }
107
108         //=========================================================================
109
110         GObjectController* GObjectsMVCFactory :: createGObjectController(int type)
111         {
112                 GObjectController *controller = NULL;
113                 if (type == GBLACKBOX)
114                 {
115                         controller = new GBlackBoxController();
116                 }
117                 else if(type == GPORT)
118                 {
119                         controller = new GPortController();
120                 }
121                 else if(type == GCOMPLEXINPUTPORT || type == GCOMPLEXOUTPUTPORT)
122                 {
123                         controller = new GBoxController();
124                 }
125                 return controller;
126         }
127
128         //=========================================================================
129         
130         GObjectModel* GObjectsMVCFactory :: createGObjectModel(int type)
131         {
132                 GObjectModel *model = NULL;
133                 if (type == GBLACKBOX)
134                 {
135                         model = new GBlackBoxModel();
136                 }
137                 else if(type == GPORT)
138                 {
139                         model = new GPortModel();
140                 }
141                 else if(type == GCOMPLEXINPUTPORT || type == GCOMPLEXOUTPUTPORT)
142                 {
143                         model = new GComplexBoxPortModel();
144                 }
145
146                 model->setGObjectType(type);
147
148                 return model;
149         }
150
151         //=========================================================================
152
153
154 }  // EO namespace bbtk
155
156 // EOF
157