X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/5885f9816965f487fd852a9ea46bbc580c48d317..e7bc59fe98396b7c67024911b03bf1e08728df3e:/Model/src/plantitem.cpp diff --git a/Model/src/plantitem.cpp b/Model/src/plantitem.cpp index aa3aa23..50d8e98 100644 --- a/Model/src/plantitem.cpp +++ b/Model/src/plantitem.cpp @@ -1,6 +1,6 @@ - #include "plantitem.h" +#include using namespace PlaQui::Model; @@ -8,6 +8,8 @@ PlantItem::PlantItem(const std::string &_name):IConector(0, 0) { name = _name; updated = false; + fluid_color = RGB(255,255,255); + color_updated = false; } PlantItem::PlantItem(unsigned ins, unsigned outs):IConector(ins, outs) @@ -22,12 +24,47 @@ PlantItem::~PlantItem() void PlantItem::recieve_msg(int msg, IConector *who, void *data) { switch (msg) { - case MSG_QUERY_MAX_FLOW: + case MSG_QUERY_MAX_FLOW_OUT: // TODO return; break; + case MSG_QUERY_COLOR: + if (color_updated) { + who->recieve_msg(MSG_RESPONSE_COLOR, this, &fluid_color); + } + update_color(); + who->recieve_msg(MSG_RESPONSE_COLOR, this, &fluid_color); + break; + case MSG_RESPONSE_COLOR: + { + RGB *c = ((RGB *)data); + set_color(*c); + } + break; default: IConector::recieve_msg(msg, who, data); } } +void PlantItem::update_color() +{ + if (color_updated) return; + + send_msg(IConector::IN, MSG_QUERY_COLOR); + color_updated = true; +} + +void PlantItem::get_state_as_xml(std::stringstream &out) +{ + out << "\t" << std::endl; + out << "\t\t" << actual_flow << "" << std::endl; + out << "\t" << std::endl; + out << "\t" << std::endl; + out << "\t\t" << fluid_color.r() << "" << std::endl; + out << "\t\t" << fluid_color.g() << "" << std::endl; + out << "\t\t" << fluid_color.b() << "" << std::endl; + out << "\t" << std::endl; + + // Para que quede bonito + actual_flow = 99999; +}