]> git.llucax.com Git - z.facultad/75.42/plaqui.git/commitdiff
* Se agrega directorio para ejemplos con el primer ejemplo exitoso. (traten de poner...
authorRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 1 Dec 2003 15:30:34 +0000 (15:30 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 1 Dec 2003 15:30:34 +0000 (15:30 +0000)
 * Se arreglan la exclusa y el drenaje para que se vean bien en el cliente

Model/src/drainage.cpp
Model/src/exclusa.cpp
Samples/2_not.xml [new file with mode: 0644]

index d421662330a541a834e9e86f4e42e7adf18b0b83..22b57b0bb5f942237111c1368c89ca48e5f12226 100644 (file)
@@ -8,7 +8,6 @@ Drainage::Drainage(const std::string &_name):Drain(_name),Control(_name)
 {
        in_slots = 1;
        out_slots = 0;
-       // FIXME hacer INFINITO!
        capacity = INFINITO;
        actual_flow = 0.0f;
 }
@@ -41,8 +40,7 @@ void Drainage::recieve_msg(int msg, IConector *who, void *data)
                case MSG_QUERY_MAX_FLOW_OUT:
                        // FIXME Hacer INFINITO !!!
                        actual_flow = *((float *)data);
-                       tmp = INFINITO;
-                       who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
+                       who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
                        updated = true;
                break;
                default:
index f293208047a2ea1503d3a9ac93651852ec20b9b0..42535074ff3eb3a474fb08989bf674c01968ff14 100644 (file)
@@ -23,6 +23,8 @@ Exclusa::~Exclusa()
 
 void Exclusa::update(int dir)
 {
+       if (updated) return;
+
        // Primero me fijo si la entrada esta operando, es decir
        // si hay alguien conectado para automatizar.
        if (input->is_operational()) {
@@ -30,6 +32,7 @@ void Exclusa::update(int dir)
                // mi estado
                is_open = input->get_output();
        }
+       actual_flow = temp = INFINITO;
 }
 
 void Exclusa::simulate()
@@ -49,14 +52,15 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data)
                        if (updated) {
                                who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
                        }
-                       temp = *((float *)data);
-                       if (!is_open) temp = 0;
+                       actual_flow = temp = *((float *)data);
+                       if (!is_open) actual_flow = temp = 0;
+                       updated = true;
                        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp);
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp);
                break;
                case MSG_RESPONSE_MAX_FLOW:
                        if (is_open)
-                               temp = *((float *)data);
+                               actual_flow = temp = *((float *)data);
                break;
                default:
                        Control::recieve_msg(msg, who, data);
@@ -65,12 +69,10 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data)
        
 void Exclusa::get_state_as_xml(std::stringstream &out)
 {
-       // Datos comunes
-       // hack to avoid output problems :-)
-       actual_flow = temp;
        PlantItem::get_state_as_xml(out);
        out << "\t<exclusa name=\"" << name << "\">" << std::endl;
        out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
        out << "\t</exclusa>" << std::endl;
+       temp = actual_flow = INFINITO;
 }
 
diff --git a/Samples/2_not.xml b/Samples/2_not.xml
new file mode 100644 (file)
index 0000000..b130daa
--- /dev/null
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="iso-8859-1" ?>
+<planta>
+       <bomba nombre="bomba0" id="0">
+               <entrega>10,00</entrega>
+               <color>
+                       <rojo>0</rojo>
+                       <verde>65535</verde>
+                       <azul>0</azul>
+               </color>
+               <conector>
+                       <salida>tubo1</salida>
+               </conector>
+               <orientacion>0</orientacion>
+               <x>64</x>
+               <y>160</y>
+       </bomba>
+       <tubo nombre="tubo1" id="1">
+               <caudal>10,00</caudal>
+               <conector>
+                       <entrada>bomba0</entrada>
+                       <salida>exclusa2</salida>
+               </conector>
+               <orientacion>1</orientacion>
+               <x>160</x>
+               <y>160</y>
+       </tubo>
+       <exclusa nombre="exclusa2" id="2">
+               <conector>
+                       <entrada>tubo1</entrada>
+                       <salida>drenaje3</salida>
+               </conector>
+               <orientacion>0</orientacion>
+               <estado>1</estado>
+               <x>256</x>
+               <y>160</y>
+       </exclusa>
+       <drenaje nombre="drenaje3" id="3">
+               <conector>
+                       <entrada>exclusa2</entrada>
+               </conector>
+               <orientacion>3</orientacion>
+               <x>320</x>
+               <y>160</y>
+       </drenaje>
+       <not nombre="not4" id="4">
+               <orientacion>0</orientacion>
+               <x>160</x>
+               <y>256</y>
+               <entrada>bomba0</entrada>
+               <salida>not5</salida>
+       </not>
+       <not nombre="not5" id="5">
+               <orientacion>0</orientacion>
+               <x>224</x>
+               <y>256</y>
+               <salida>exclusa2</salida>
+       </not>
+</planta>