X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/4c30f5939017e47c70f79df3a9f737d9ea743db5..9322e49b932d824e5664aa8c0e0f9a41464537b1:/Model/src/tank.cpp diff --git a/Model/src/tank.cpp b/Model/src/tank.cpp index e526716..58a90ff 100644 --- a/Model/src/tank.cpp +++ b/Model/src/tank.cpp @@ -22,6 +22,7 @@ Tank::~Tank() bool Tank::get_output() { + std::cout << "TODO MAL" << std::endl; return litros > 0; } @@ -67,19 +68,20 @@ void Tank::recieve_msg(int msg, IConector *who, void *data) actual_in_flow = capacity - litros; if (*((float *)data) < actual_in_flow) actual_in_flow = *((float *)data); - actual_out_flow = litros; + actual_flow = actual_out_flow = litros; + updated = true; send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_out_flow); who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_in_flow); - updated = true; break; case MSG_RESPONSE_MAX_FLOW: if (pos == OUT) { if (*((float *)data) < actual_out_flow) - actual_out_flow = *((float *)data); + actual_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; @@ -92,6 +94,11 @@ void Tank::recieve_msg(int msg, IConector *who, void *data) g %= 256; b %= 256; set_color(RGB(r,g,b)); + color_updated = true; + } + break; + default: + Control::recieve_msg(msg, who, data); } } @@ -102,5 +109,7 @@ void Tank::get_state_as_xml(std::stringstream &out) out << "\t" << std::endl; out << "\t\t" << capacity << "" << std::endl; out << "\t\t" << litros << "" << std::endl; + out << "\t\t" << (output->get_output()?"true":"false") << "" << std::endl; + out << "\t\t" << (input->get_output()?"true":"false") << "" << std::endl; out << "\t" << std::endl; }