]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/include/simulator.h
* Se agrega carga de lineas entre compuertas.
[z.facultad/75.42/plaqui.git] / Model / include / simulator.h
index 8fe8dabc246d29a73fb673298460ad1507051457..12f0ba01a02e0dc32f74ddfbdd1236a75e8c26bd 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <list>
 #include <string>
+#include <sstream>
 #include "pump.h"
 #include "splitter.h"
 #include "union.h"
@@ -14,6 +15,9 @@
 #include "drainage.h"
 #include "iconector.h"
 #include "libxml/parser.h"
+#include "not.h"
+#include "or.h"
+#include "and.h"
 
 namespace PlaQui {
 namespace Model {
@@ -23,14 +27,17 @@ public:
        Simulator(const std::string &filename);
        ~Simulator();
 
-       void add_pump(const std::string &name);
-       void add_union(const std::string &name);
-       void add_splitter(const std::string &name);
-       void add_conduct(const std::string &name);
-       void add_exclusa(const std::string &name);
-       void add_tank(const std::string &name);
+       void add_pump(const std::string &name, float max_flow, RGB color);
+       void add_union(const std::string &name, float max_flow);
+       void add_splitter(const std::string &name, float max_flow);
+       void add_conduct(const std::string &name, float max_flow);
+       void add_exclusa(const std::string &name, bool open);
+       void add_tank(const std::string &name, float capacity, float initial, RGB color);
        void add_drainage(const std::string &name);
 
+       /** Retorna el estado de todos los items como un XML */
+       std::string get_state_as_xml();
+
        /** Conecta 2 elementos
         *
         *  Esta funcion conecta el elemanto name1 con el elemento name2.
@@ -46,7 +53,10 @@ public:
        /// Tipos de elementos
        enum {PUMP, UNION, SPLITTER, CONDUCT, EXCLUSA, TANK, DRAINAGE};
 
-       bool pump_deactivate(const std::string &name);
+       bool set_open(const std::string &name, bool open = true);
+
+       /// Dice si el simulador está simulando una planta
+       bool is_ok() { return is_load_ok; }
 protected:
        // Los mantengo en listas separadas para ahorrar
        // CPU y no tener que usar dinamic_cast
@@ -57,20 +67,36 @@ protected:
        std::list<Tank *> tank_lst;
        std::list<Drainage *> drainage_lst;
        std::list<Exclusa *> exclusa_lst;
+       std::list<LogicControl *> control_lst;
 
        // Tambien tengo una lista generica!
        std::list<PlantItem *> items;
 
        // Utilidades
        IConector *find(const std::string &name);
+       LogicControl *find_logic(const std::string &name);
+
+       // Conecta todos los items desde el XML
+       void do_connections(xmlNodePtr nodo);
+       void do_logic_connetions(xmlNodePtr nodo);
+       void connect_logic(LogicControl *current, xmlNodePtr);
 
        // Carga del XML
        void loadBomba(xmlNodePtr nodo);
-       void loadCodo(xmlNodePtr nodo);
        void loadConduct(xmlNodePtr nodo);
        void loadExclusa(xmlNodePtr nodo);
        void loadTank(xmlNodePtr nodo);
        void loadUnion(xmlNodePtr nodo);
+       void loadDrain(xmlNodePtr nodo);
+       void loadNot(xmlNodePtr nodo);
+       void loadOr(xmlNodePtr nodo);
+       void loadAnd(xmlNodePtr nodo);
+
+       RGB loadRGB(xmlNodePtr nodo);
+
+       // Frame. Define el orden para los cuadros del XML
+       unsigned long int frame;
+       bool is_load_ok;
 };
 
 }