X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f61a5ebd00d4620af70c3780ba821f5af68def1c..cba39b63dc2c5ba1ee85f3db718adf0e8075c88f:/Model/src/plantitem.cpp?ds=sidebyside diff --git a/Model/src/plantitem.cpp b/Model/src/plantitem.cpp index 9405a94..34360b0 100644 --- a/Model/src/plantitem.cpp +++ b/Model/src/plantitem.cpp @@ -1,6 +1,6 @@ - #include "plantitem.h" +#include using namespace PlaQui::Model; @@ -9,6 +9,7 @@ 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) @@ -27,11 +28,33 @@ void PlantItem::recieve_msg(int msg, IConector *who, void *data) // TODO return; break; + case MSG_QUERY_COLOR: + if (color_updated) { + who->recieve_msg(MSG_RESPONSE_COLOR, this, &fluid_color); + return; + } + 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; + + color_updated = true; + send_msg(IConector::IN, MSG_QUERY_COLOR); +} + void PlantItem::get_state_as_xml(std::stringstream &out) { out << "\t" << std::endl; @@ -44,5 +67,5 @@ void PlantItem::get_state_as_xml(std::stringstream &out) out << "\t" << std::endl; // Para que quede bonito - actual_flow = 99999; + actual_flow = INFINITO; }