]> AND Private Git Repository - blast.git/blob - GroupScene.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
70c88e25f1e8c96a4fcec0ec45d1d4e9dcd743c0
[blast.git] / GroupScene.cpp
1 #include "GroupScene.h"
2
3 #include "Dispatcher.h"
4 #include "Parameters.h"
5 #include "GroupWidget.h"
6 #include "GroupItem.h"
7 #include "BoxItem.h"
8 #include "StimuliItem.h"
9 #include "ConnectionItem.h"
10 #include "InterfaceItem.h"
11 #include "AbstractBlock.h"
12
13 GroupScene::GroupScene(GroupScene *_parentScene, GroupWidget *_window, Dispatcher* _dispatcher, Parameters* _params, bool _topScene, QObject *parent) : QGraphicsScene(parent) {
14   dispatcher = _dispatcher;
15   params = _params;
16   parentScene = _parentScene;
17   if (parentScene != NULL) {
18     parentScene->addChildScene(this);
19   }
20   window = _window;
21   groupItem = NULL;
22   id = -1;
23   topScene = _topScene;
24   editMode = InitState;
25
26   selectedInterfaces[0] = NULL;
27   selectedInterfaces[1] = NULL;
28 }
29
30 GroupScene::~GroupScene() {
31   static QString fctName = "GroupScene::~GroupScene()";
32 #ifdef DEBUG_FCTNAME
33   cout << "call to " << qPrintable(fctName) << endl;
34 #endif
35   
36   boxItems.clear();
37   connectionItems.clear();
38   groupItem = NULL;
39 }
40
41 /*
42 void GroupScene::mouseMoveEvent(QGraphicsSceneMouseEvent *event) {
43
44   //QGraphicsScene::mouseMoveEvent(event);
45   
46   QPointF p = event->scenePos();
47   cout << p.x() << "," << p.y() << endl;
48
49 }
50 */
51
52 void GroupScene::setSelectedInterface(int id, InterfaceItem* iface) {
53   if ((id < 1)|| (id > 2)) return;
54   selectedInterfaces[id-1] = iface;
55 }
56
57 InterfaceItem* GroupScene::getSelectedInterface(int id) {
58   if ((id < 1)|| (id > 2)) return NULL;
59   return selectedInterfaces[id-1];
60 }
61
62 QList<BoxItem *> GroupScene::getSelectedBlocks() {
63   QList<BoxItem*> lst;
64   foreach(BoxItem *item, boxItems){
65     if (item->isSelected()){
66       lst.append(item);
67     }
68   }
69   return lst;
70 }
71
72 int GroupScene::setItemsId(int countInit) {
73   int counter = countInit;
74   groupItem->setId(counter++);
75   if (isTopScene()) {
76     foreach(StimuliItem *item, stimuliItems){
77       item->setId(counter++);
78     } 
79   }
80   foreach(BoxItem *item, boxItems){
81     item->setId(counter++);
82   }
83   return counter;
84 }
85
86 int GroupScene::setInterfacesId(int countInit) {
87   int counter = countInit;
88   foreach(InterfaceItem* inter, groupItem->getInterfaces()){
89     inter->setId(counter++);
90   }
91   if (isTopScene()) {
92     foreach(StimuliItem *item, stimuliItems){
93       foreach(InterfaceItem* inter, item->getInterfaces()){
94         inter->setId(counter++);
95       }
96     } 
97   }
98   foreach(BoxItem *item, boxItems){
99     foreach(InterfaceItem* inter, item->getInterfaces()){
100       inter->setId(counter++);
101     }
102   }
103   return counter;
104 }
105
106 BoxItem *GroupScene::createBoxItem(AbstractBlock *block, BoxItem::Position position, int lock, BoxItem::SpanType span) {
107
108   BoxItem* item = new BoxItem(block,dispatcher,params,groupItem, lock, span, position);
109   item->setZValue(1);
110   // add item from the QList
111   boxItems.append(item);
112   // repainting the group
113   groupItem->updateShape();
114
115 /*
116   // position the new block
117   double x,y;
118   if (hPos == BoxItem::Left) {
119     x = 0;
120   }
121   else if (hPos == BoxItem::Center) {
122     x = (groupItem->getWidth()-item->getTotalWidth())/2.0;
123   }
124   else if (hPos == BoxItem::Right) {
125     x = groupItem->getWidth()-item->getTotalWidth();
126   }
127   if (vPos == BoxItem::Top) {
128     y = 0;
129   }
130   else if (vPos == BoxItem::Center) {
131     y = (groupItem->getHeight()-item->getTotalHeight())/2.0;
132   }
133   else if (vPos == BoxItem::Bottom) {
134     y = groupItem->getHeight()-item->getTotalHeight();
135   }
136   QPointF newPos(x,y);
137   newPos = newPos-item->getOriginPoint();
138   item->moveTo(newPos);
139 */
140   return item;
141 }
142
143 void GroupScene::addBoxItem(BoxItem* item) {  
144   // add item from the QList
145   boxItems.append(item);
146   // repainting the group
147   groupItem->updateShape();  
148 }
149
150 void GroupScene::removeBoxItem(BoxItem* item) {
151   // remove item from the viewport
152   removeItem(item);
153   // remove item from the QList
154   boxItems.removeAll(item);
155   // repainting the group
156   groupItem->updateShape();
157 }
158
159 StimuliItem *GroupScene::createStimuliItem(AbstractBlock *block) {
160
161   StimuliItem* item = new StimuliItem(block,dispatcher,params);
162   // adding item to the scene
163   addItem(item);
164   item->setZValue(1);
165   // add item from the QList
166   stimuliItems.append(item);    
167   // center the new block
168   QPointF groupPos = groupItem->pos();
169   QPointF newPos(groupPos.x()-item->getTotalWidth()-100, groupPos.y());
170   newPos = newPos-item->getOriginPoint();
171   item->moveTo(newPos);
172   return item;
173 }
174
175 void GroupScene::addStimuliItem(StimuliItem* item) {  
176   // adding item to the scene
177   addItem(item);
178   item->setZValue(1);  
179   // add item from the QList
180   stimuliItems.append(item);  
181 }
182
183 void GroupScene::removeStimuliItem(StimuliItem* item) {
184   // remove item from the viewport
185   removeItem(item);
186   // remove item from the QList
187   stimuliItems.removeAll(item);  
188 }
189
190 void GroupScene::createConnectionItem(InterfaceItem *iface1, InterfaceItem *iface2, bool visible) {
191   ConnectionItem* conn = NULL;
192   
193   conn = new ConnectionItem(iface1,iface2, dispatcher, params);
194   conn->setVisible(visible);
195   addItem(conn);  
196   addConnectionItem(conn);
197 }
198
199 ConnectionItem* GroupScene::searchConnectionItem(InterfaceItem *iface1, InterfaceItem *iface2) {
200   foreach(ConnectionItem* conn , connectionItems) {
201     if ( ((conn->getFromInterfaceItem() == iface1) && (conn->getToInterfaceItem() == iface2)) ||
202          ((conn->getFromInterfaceItem() == iface2) && (conn->getToInterfaceItem() == iface1))) {
203       return conn;
204     }
205   }
206   return NULL;
207 }
208
209 void GroupScene::addConnectionItem(ConnectionItem* item) {
210   // add item from the viewport
211   //addItem(item);
212   // add item from the QList
213   connectionItems.append(item);
214 }
215
216 void GroupScene::removeConnectionItem(ConnectionItem* item) {
217   
218   // remove connection from/to InterfaceItem
219   InterfaceItem* fromIfaceItem = item->getFromInterfaceItem();
220   InterfaceItem* toIfaceItem = item->getToInterfaceItem();
221   fromIfaceItem->removeConnectionItem(item);
222   toIfaceItem->removeConnectionItem(item);
223   
224   // remove item from the viewport
225   removeItem(item);
226   // remove item from the QList
227   connectionItems.removeAll(item);
228 }
229
230 void GroupScene::setGroupItem(GroupItem *group) {
231   if ((groupItem == NULL) && (group != NULL)) {
232     groupItem = group;
233     addItem(group);
234   }
235 }
236
237 void GroupScene::removeGroupItem() {
238   // remove item from the viewport
239   removeItem(groupItem);
240   groupItem = NULL;
241 }
242
243 void GroupScene::unselecteInterfaces() {
244
245   if (selectedInterfaces[0] != NULL) {
246     selectedInterfaces[0]->selected = false;
247     selectedInterfaces[0] = NULL;
248   }
249   if (selectedInterfaces[1] != NULL) {
250     selectedInterfaces[1]->selected = false;
251     selectedInterfaces[1] = NULL;
252   }
253 }
254
255 void GroupScene::updateConnectionItemsShape() {
256
257   foreach(ConnectionItem* conn, connectionItems){
258     conn->setPath();
259   }
260 }
261
262 void GroupScene::save(QXmlStreamWriter &writer) {
263   writer.writeStartElement("scene");
264   writer.writeAttribute("id",QString::number(id));
265   if (parentScene == NULL) {
266     writer.writeAttribute("upper_scene",QString::number(-1));
267   }
268   else {
269     writer.writeAttribute("upper_scene",QString::number(parentScene->getId()));
270   }
271   groupItem->save(writer);
272
273   if (isTopScene()) {
274     writer.writeStartElement("source_items");
275     writer.writeAttribute("count",QString::number(stimuliItems.length()));
276     foreach(StimuliItem* item, stimuliItems) {
277       item->save(writer);
278     }
279     writer.writeEndElement(); // source_items
280   }
281   writer.writeStartElement("block_items");
282
283   QList<BoxItem *> functionalBlocks;
284   QList<BoxItem *> groupBlocks;
285
286   foreach(BoxItem *item, boxItems){
287     if(item->getRefBlock()->isFunctionalBlock()){
288       functionalBlocks.append(item);
289     } else if(item->getRefBlock()->isGroupBlock()){
290       groupBlocks.append(item);
291     }
292   }
293   writer.writeAttribute("functional_count",QString::number(functionalBlocks.length()));
294   writer.writeAttribute("group_count",QString::number(groupBlocks.length()));
295
296   foreach(BoxItem* item, functionalBlocks) {
297     item->save(writer);
298   }
299   foreach(BoxItem* item, groupBlocks) {
300     item->save(writer);
301   }
302   writer.writeEndElement(); // block_items
303   writer.writeEndElement(); // scene
304 }
305