From: Ricardo Markiewicz Date: Mon, 1 Dec 2003 15:30:34 +0000 (+0000) Subject: * Se agrega directorio para ejemplos con el primer ejemplo exitoso. (traten de poner... X-Git-Tag: svn_import~120 X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/commitdiff_plain/66124e5142afe9748ba184592792fe307fd4a3b5?ds=sidebyside * Se agrega directorio para ejemplos con el primer ejemplo exitoso. (traten de poner cosas que funcionan 10 puntos :-) * Se arreglan la exclusa y el drenaje para que se vean bien en el cliente --- diff --git a/Model/src/drainage.cpp b/Model/src/drainage.cpp index d421662..22b57b0 100644 --- a/Model/src/drainage.cpp +++ b/Model/src/drainage.cpp @@ -8,7 +8,6 @@ Drainage::Drainage(const std::string &_name):Drain(_name),Control(_name) { in_slots = 1; out_slots = 0; - // FIXME hacer INFINITO! capacity = INFINITO; actual_flow = 0.0f; } @@ -41,8 +40,7 @@ void Drainage::recieve_msg(int msg, IConector *who, void *data) case MSG_QUERY_MAX_FLOW_OUT: // FIXME Hacer INFINITO !!! actual_flow = *((float *)data); - tmp = INFINITO; - who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp); + who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow); updated = true; break; default: diff --git a/Model/src/exclusa.cpp b/Model/src/exclusa.cpp index f293208..4253507 100644 --- a/Model/src/exclusa.cpp +++ b/Model/src/exclusa.cpp @@ -23,6 +23,8 @@ Exclusa::~Exclusa() void Exclusa::update(int dir) { + if (updated) return; + // Primero me fijo si la entrada esta operando, es decir // si hay alguien conectado para automatizar. if (input->is_operational()) { @@ -30,6 +32,7 @@ void Exclusa::update(int dir) // mi estado is_open = input->get_output(); } + actual_flow = temp = INFINITO; } void Exclusa::simulate() @@ -49,14 +52,15 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data) if (updated) { who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp); } - temp = *((float *)data); - if (!is_open) temp = 0; + actual_flow = temp = *((float *)data); + if (!is_open) actual_flow = temp = 0; + updated = true; send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &temp); who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &temp); break; case MSG_RESPONSE_MAX_FLOW: if (is_open) - temp = *((float *)data); + actual_flow = temp = *((float *)data); break; default: Control::recieve_msg(msg, who, data); @@ -65,12 +69,10 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data) void Exclusa::get_state_as_xml(std::stringstream &out) { - // Datos comunes - // hack to avoid output problems :-) - actual_flow = temp; PlantItem::get_state_as_xml(out); out << "\t" << std::endl; out << "\t\t" << ((is_open)?"true":"false") << "" << std::endl; out << "\t" << std::endl; + temp = actual_flow = INFINITO; } diff --git a/Samples/2_not.xml b/Samples/2_not.xml new file mode 100644 index 0000000..b130daa --- /dev/null +++ b/Samples/2_not.xml @@ -0,0 +1,58 @@ + + + + 10,00 + + 0 + 65535 + 0 + + + tubo1 + + 0 + 64 + 160 + + + 10,00 + + bomba0 + exclusa2 + + 1 + 160 + 160 + + + + tubo1 + drenaje3 + + 0 + 1 + 256 + 160 + + + + exclusa2 + + 3 + 320 + 160 + + + 0 + 160 + 256 + bomba0 + not5 + + + 0 + 224 + 256 + exclusa2 + +