#include "tank.h"
#include <iostream>
+#include "condition.h"
using namespace PlaQui::Model;
Tank::Tank(const std::string &_name):Source(_name),Drain(_name),Control(_name)
{
litros = 0.0f;
+
+ /* Utilizo en input como el flotante de arriba y el output como el de abajo */
+ input = new Condition(Condition::GT, 0.9, this);
+ output = new Condition(Condition::LT, 0.1, this);
}
Tank::~Tank()
{
+ delete input;
+ delete output;
}
bool Tank::get_output()
in_color = o->get_color();
}
- // le resto lo que entrego
- litros -= actual_out_flow;
-
+ // le sumo lo que recibo
+ litros += actual_in_flow;
// calculo el nuevo color
int r, g, b;
- float l = litros+actual_in_flow;
+ float l = litros;
r = (int)(fluid_color.r()*litros/l + in_color.r()*actual_in_flow/l);
g = (int)(fluid_color.g()*litros/l + in_color.g()*actual_in_flow/l);
b = (int)(fluid_color.b()*litros/l + in_color.b()*actual_in_flow/l);
-
+
+ if (r>255) r = 255;
+ if (g>255) g = 255;
+ if (b>255) b = 255;
fluid_color = RGB(r,g,b);
- // le sumo lo que recibo
- litros = l;
+ // le resto lo que entrego
+ litros -= actual_out_flow;
+#ifdef DEBUG
std::cout << name << "Capacidad: " << capacity;
std::cout << " Litros : " << litros << std::endl;
+#endif
updated = false;
}
switch (msg) {
case MSG_QUERY_MAX_FLOW_OUT:
+ if (updated) {
+ who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_in_flow);
+ }
actual_in_flow = capacity - litros;
if (*((float *)data) < actual_in_flow)
actual_in_flow = *((float *)data);