X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/70d2e24643727ab1ea48e1793d609d27b7d21fed..4f94fbe0a1d217c7410e5396aad365c85f1fc5af:/Model/src/drainage.cpp diff --git a/Model/src/drainage.cpp b/Model/src/drainage.cpp index 95c55e8..d421662 100644 --- a/Model/src/drainage.cpp +++ b/Model/src/drainage.cpp @@ -4,12 +4,12 @@ using namespace PlaQui::Model; -Drainage::Drainage(const std::string &_name):Drain(_name) +Drainage::Drainage(const std::string &_name):Drain(_name),Control(_name) { in_slots = 1; out_slots = 0; // FIXME hacer INFINITO! - capacity = 99999; + capacity = INFINITO; actual_flow = 0.0f; } @@ -27,9 +27,11 @@ void Drainage::update(int dir) void Drainage::simulate() { +#ifdef DEBUG std::cout << name << "::Flujo recibido = " << actual_flow << std::endl; +#endif updated = false; - actual_flow = 0; + color_updated = false; } void Drainage::recieve_msg(int msg, IConector *who, void *data) @@ -39,8 +41,7 @@ void Drainage::recieve_msg(int msg, IConector *who, void *data) case MSG_QUERY_MAX_FLOW_OUT: // FIXME Hacer INFINITO !!! actual_flow = *((float *)data); - std::cout << "DD" << std::endl; - tmp = 999999; + tmp = INFINITO; who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp); updated = true; break;