]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/tank.cpp
* Se agrega la logica del tanque para los flotantes
[z.facultad/75.42/plaqui.git] / Model / src / tank.cpp
index 93c8564dd77231064f71735c78a698c365cb3eca..4abbc6b82eeeef32cd3cc80cf504c50a930bfd01 100644 (file)
@@ -1,16 +1,23 @@
 
 #include "tank.h"
 #include <iostream>
+#include "condition.h"
 
 using namespace PlaQui::Model;
 
 Tank::Tank(const std::string &_name):Source(_name),Drain(_name),Control(_name)
 {
        litros = 0.0f;
+
+       /* Utilizo en input como el flotante de arriba y el output como el de abajo */
+       input = new Condition(Condition::GT, 0.9, this);
+       output = new Condition(Condition::LT, 0.1, this);
 }
 
 Tank::~Tank()
 {
+       delete input;
+       delete output;
 }
 
 bool Tank::get_output()
@@ -52,8 +59,10 @@ void Tank::simulate()
        // le resto lo que entrego
        litros -= actual_out_flow;
 
+#ifdef DEBUG
        std::cout << name << "Capacidad: " << capacity;
        std::cout << "  Litros : " << litros << std::endl;
+#endif
        updated = false;
 }
 
@@ -69,6 +78,9 @@ void Tank::recieve_msg(int msg, IConector *who, void *data)
        
        switch (msg) {
                case MSG_QUERY_MAX_FLOW_OUT:
+                       if (updated) {
+                               who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_in_flow);
+                       }
                        actual_in_flow = capacity - litros;
                        if (*((float *)data) < actual_in_flow)
                                actual_in_flow = *((float *)data);