X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/cafdb587ee6e195e5a917cea7570c2ea7e22a003..e7bc59fe98396b7c67024911b03bf1e08728df3e:/Model/src/tank.cpp?ds=sidebyside diff --git a/Model/src/tank.cpp b/Model/src/tank.cpp index e951254..e526716 100644 --- a/Model/src/tank.cpp +++ b/Model/src/tank.cpp @@ -1,16 +1,23 @@ #include "tank.h" #include +#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() @@ -27,14 +34,19 @@ void Tank::simulate() { if (!updated) return; - // le resto lo que entrego - litros -= actual_out_flow; // le sumo lo que recibo litros += actual_in_flow; + // calculo el nuevo color + + // 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; + color_updated = false; } void Tank::recieve_msg(int msg, IConector *who, void *data) @@ -49,6 +61,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); @@ -63,12 +78,27 @@ void Tank::recieve_msg(int msg, IConector *who, void *data) if (*((float *)data) < actual_out_flow) actual_out_flow = *((float *)data); } + break; + case MSG_RESPONSE_COLOR: + RGB c = *((RGB *)data); + PlantItem *ic = static_cast(*(in_list.begin())); + int r,g,b; + float total = litros + ic->get_actual_flow(); + + r = (int)(get_color().r()*litros/total + c.r()*ic->get_actual_flow()/total); + g = (int)(get_color().g()*litros/total + c.g()*ic->get_actual_flow()/total); + b = (int)(get_color().b()*litros/total + c.b()*ic->get_actual_flow()/total); + r %= 256; + g %= 256; + b %= 256; + set_color(RGB(r,g,b)); } } void Tank::get_state_as_xml(std::stringstream &out) { - // El tanque no emite flujo actual! + PlantItem::get_state_as_xml(out); + out << "\t" << std::endl; out << "\t\t" << capacity << "" << std::endl; out << "\t\t" << litros << "" << std::endl;