4 using namespace PlaQui::Model;
6 Simulator::Simulator(const std::string &filename)
9 /* Parseo de ejemplo de un XML desde archivo */
11 document = xmlParseFile(filename.c_str());
12 if (document == NULL) {
16 /* bien, el archivo se parseo bien! */
17 xmlNodePtr nodo, items;
18 nodo = document->children;
20 if (strcmp((char *)nodo->name, "planta") == 0) {
21 items = nodo->children;
22 while (items != NULL) {
23 if (items->type == XML_ELEMENT_NODE) {
24 if (xmlStrcmp(items->name, BAD_CAST"bomba")==0) {
26 } else if ((xmlStrcmp(items->name, BAD_CAST"tubo")==0)||(xmlStrcmp(items->name, BAD_CAST"codo")==0)) {
28 } else if (xmlStrcmp(items->name, BAD_CAST"exclusa")==0) {
30 } else if (xmlStrcmp(items->name, BAD_CAST"tanque")==0) {
32 } else if (xmlStrcmp(items->name, BAD_CAST"empalme")==0) {
34 } else if (xmlStrcmp(items->name, BAD_CAST"drenaje")==0) {
40 // Bien, la planta esta cargada, conectemos todo!!
41 do_connections(nodo->children);
45 Simulator::~Simulator()
47 // FIXME REMOVER TODOOOOOO
50 void Simulator::add_pump(const std::string &name, float max_flow, RGB color)
52 Pump *p = new Pump(name);
54 p->set_max_flow(max_flow);
56 pump_lst.push_back(p);
60 void Simulator::add_union(const std::string &name, float max_flow)
62 Union *u = new Union(name);
64 u->set_max_flow(max_flow);
65 union_lst.push_back(u);
69 void Simulator::add_splitter(const std::string &name, float max_flow)
71 Splitter *p = new Splitter(name);
72 p->set_max_flow(max_flow);
73 split_lst.push_back(p);
77 void Simulator::add_conduct(const std::string &name, float flujo)
79 Conduct *p = new Conduct(name);
81 p->set_max_flow(flujo);
82 conduct_lst.push_back(p);
86 void Simulator::add_exclusa(const std::string &name, bool open)
88 Exclusa *p = new Exclusa(name);
91 exclusa_lst.push_back(p);
95 void Simulator::add_tank(const std::string &name, float capacity, float initial, RGB color)
97 Tank *p = new Tank(name);
98 p->set_capacity(capacity);
99 p->set_max_flow(initial);
100 p->set_litros(initial);
102 tank_lst.push_back(p);
106 void Simulator::add_drainage(const std::string &name)
108 Drainage *p = new Drainage(name);
109 drainage_lst.push_back(p);
113 bool Simulator::connect(const std::string &name1, const std::string &name2, int flag)
119 if ((o1 == NULL) || (o2 == NULL)) {
120 // NO SE PUDO CONECTAR!, FALTAN ITEMS!!
125 if (flag == IConector::OUT) {
126 b = o1->connect(o2, IConector::OUT);
127 b = b && o2->connect(o1, IConector::IN);
129 b = o1->connect(o2, IConector::IN);
130 b = b && o2->connect(o1, IConector::OUT);
136 void Simulator::simulate()
139 std::list<Pump *>::iterator i1;
140 for(i1=pump_lst.begin(); i1!=pump_lst.end(); i1++)
144 std::list<PlantItem *>::iterator i2;
145 for(i2=items.begin(); i2!=items.end(); i2++)
151 IConector *Simulator::find(const std::string &name)
153 // Busco el item, aca no me importa de que tipo es!
154 std::list<PlantItem *>::iterator i;
155 for(i=items.begin(); i!=items.end(); i++)
156 if ((*i)->get_name() == name)
161 bool Simulator::set_open(const std::string &name, bool open)
163 // Busco el elemento, usando RTTI :-(
164 IConector *tmp = find(name);
167 if ((p = dynamic_cast<Pump*>(tmp))) {
173 } else if ((e = dynamic_cast<Exclusa*>(tmp))) {
184 void Simulator::loadBomba(xmlNodePtr nodo)
186 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
187 int orientacion=0, x, y;
191 nodo = nodo->children;
192 while (nodo != NULL) {
193 if (nodo->type == XML_ELEMENT_NODE) {
194 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
195 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
196 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
197 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
198 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
199 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
200 } else if (xmlStrcmp(nodo->name, BAD_CAST"entrega") == 0) {
201 flujo = atof( (char *)XML_GET_CONTENT(nodo->children) );
202 } else if (xmlStrcmp(nodo->name, BAD_CAST"color") == 0) {
210 add_pump(name, flujo, color);
213 void Simulator::loadConduct(xmlNodePtr nodo)
215 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
216 int orientacion=0, x, y;
219 nodo = nodo->children;
220 while (nodo != NULL) {
221 if (nodo->type == XML_ELEMENT_NODE) {
222 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
223 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
224 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
225 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
226 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
227 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
228 } else if (xmlStrcmp(nodo->name, BAD_CAST"caudal") == 0) {
229 flujo = atof( (char *)XML_GET_CONTENT(nodo->children) );
237 // listo, ya recolecte todos los datos, ahora creo el objeto!
238 add_conduct(name, flujo);
241 void Simulator::loadExclusa(xmlNodePtr nodo)
243 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
244 int orientacion=0, x, y;
247 nodo = nodo->children;
248 while (nodo != NULL) {
249 if (nodo->type == XML_ELEMENT_NODE) {
250 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
251 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
252 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
253 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
254 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
255 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
256 } else if (xmlStrcmp(nodo->name, BAD_CAST"estado") == 0) {
257 open = (char *)XML_GET_CONTENT(nodo->children);
263 // listo, ya recolecte todos los datos, ahora creo el objeto!
264 add_exclusa(name, open == "1");
267 void Simulator::loadTank(xmlNodePtr nodo)
269 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
270 int orientacion=0, x, y;
271 float capacidad, inicial;
274 nodo = nodo->children;
275 while (nodo != NULL) {
276 if (nodo->type == XML_ELEMENT_NODE) {
277 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
278 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
279 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
280 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
281 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
282 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
283 } else if (xmlStrcmp(nodo->name, BAD_CAST"capacidad") == 0) {
284 capacidad = atoi( (char *)XML_GET_CONTENT(nodo->children) );
285 } else if (xmlStrcmp(nodo->name, BAD_CAST"inicial") == 0) {
286 inicial = atof( (char *)XML_GET_CONTENT(nodo->children) );
292 // listo, ya recolecte todos los datos, ahora creo el objeto!
293 add_tank(name, capacidad, inicial, color);
296 void Simulator::loadUnion(xmlNodePtr nodo)
298 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
299 int orientacion=0, x, y;
303 nodo = nodo->children;
304 while (nodo != NULL) {
305 if (nodo->type == XML_ELEMENT_NODE) {
306 if (xmlStrcmp(nodo->name, BAD_CAST"orientacion") == 0) {
307 orientacion = atoi( (char *)XML_GET_CONTENT(nodo->children) );
308 } else if (xmlStrcmp(nodo->name, BAD_CAST"x") == 0) {
309 x = atoi( (char *)XML_GET_CONTENT(nodo->children) );
310 } else if (xmlStrcmp(nodo->name, BAD_CAST"y") == 0) {
311 y = atoi( (char *)XML_GET_CONTENT(nodo->children) );
312 } else if (xmlStrcmp(nodo->name, BAD_CAST"caudal") == 0) {
313 flow = atof( (char *)XML_GET_CONTENT(nodo->children) );
314 } else if (xmlStrcmp(nodo->name, BAD_CAST"tipo") == 0) {
315 type = (char *)XML_GET_CONTENT(nodo->children);
321 // listo, ya recolecte todos los datos, ahora creo el objeto!
323 add_union(name, flow);
325 add_splitter(name, flow);
328 void Simulator::loadDrain(xmlNodePtr nodo)
330 std::string name = (char *)xmlGetProp(nodo, BAD_CAST"nombre");
335 void Simulator::do_connections(xmlNodePtr nodo)
337 // Intengo conectar los elementos :)
338 IConector *current_item, *to_connect;
339 xmlNodePtr props; // propiedades del item actual
340 xmlNodePtr conector1, conector2, conector3;
342 while (nodo != NULL) {
343 if (nodo->type != XML_ELEMENT_NODE) {
347 // obtengo el items actual por su nombre
348 current_item = find((char *)xmlGetProp(nodo, BAD_CAST"nombre"));
349 props = nodo->children;
350 conector3 = conector2 = conector1 = NULL;
351 while (props != NULL) {
352 if (nodo->type == XML_ELEMENT_NODE) {
353 if (xmlStrcmp(props->name, BAD_CAST"conector") == 0) {
354 xmlNodePtr temp = props->children;
355 while ((temp != NULL) && (conector1 == NULL))
356 if (temp->type == XML_ELEMENT_NODE) {
363 while ((temp != NULL) && (conector2 == NULL))
364 if (temp->type == XML_ELEMENT_NODE) {
371 while ((temp != NULL) && (conector3 == NULL))
372 if (temp->type == XML_ELEMENT_NODE) {
383 // Bien, conector1 y 2 deberian estar apuntando a <entrada> y/o <salida>
384 if (conector1 != NULL) {
385 // si, aca hay un conector!, veamos cual es
386 if (xmlStrcmp(conector1->name, BAD_CAST"entrada") == 0) {
387 // bien, es a la entrada!, obtengo el item al cual lo tengo que conectar
388 to_connect = find((char *)XML_GET_CONTENT(conector1->children));
390 current_item->connect(to_connect, IConector::IN);
391 } else if (xmlStrcmp(conector1->name, BAD_CAST"salida") == 0) {
392 // Era a salida, es casi lo mismo que arriba
393 to_connect = find((char *)XML_GET_CONTENT(conector1->children));
394 current_item->connect(to_connect, IConector::OUT);
397 if (conector2 != NULL) {
398 // si, aca hay un conector!, veamos cual es
399 if (xmlStrcmp(conector2->name, BAD_CAST"entrada") == 0) {
400 // bien, es a la entrada!, obtengo el item al cual lo tengo que conectar
401 to_connect = find((char *)XML_GET_CONTENT(conector2->children));
403 current_item->connect(to_connect, IConector::IN);
404 } else if (xmlStrcmp(conector2->name, BAD_CAST"salida") == 0) {
405 // Era a salida, es casi lo mismo que arriba
406 to_connect = find((char *)XML_GET_CONTENT(conector2->children));
407 current_item->connect(to_connect, IConector::OUT);
410 if (conector3 != NULL) {
411 // si, aca hay un conector!, veamos cual es
412 if (xmlStrcmp(conector3->name, BAD_CAST"entrada") == 0) {
413 // bien, es a la entrada!, obtengo el item al cual lo tengo que conectar
414 to_connect = find((char *)XML_GET_CONTENT(conector3->children));
416 current_item->connect(to_connect, IConector::IN);
417 } else if (xmlStrcmp(conector3->name, BAD_CAST"salida") == 0) {
418 // Era a salida, es casi lo mismo que arriba
419 to_connect = find((char *)XML_GET_CONTENT(conector3->children));
420 current_item->connect(to_connect, IConector::OUT);
425 // Fin de las conexiones
428 std::string Simulator::get_state_as_xml()
430 std::stringstream out;
433 out << "<?xml version=\"1.0\" ?>" << std::endl;
435 out << "<plantstatus frame=\"" << frame << "\">" << std::endl;
437 std::list<PlantItem *>::iterator i2;
438 for(i2=items.begin(); i2!=items.end(); i2++)
439 (*i2)->get_state_as_xml(out);
441 out << "</plantstatus>";