X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/70d2e24643727ab1ea48e1793d609d27b7d21fed..cafdb587ee6e195e5a917cea7570c2ea7e22a003:/Model/include/plantitem.h diff --git a/Model/include/plantitem.h b/Model/include/plantitem.h index 70fd6ac..2cfb5b6 100644 --- a/Model/include/plantitem.h +++ b/Model/include/plantitem.h @@ -6,6 +6,7 @@ #include #include "iconector.h" #include "rgb.h" +#include namespace PlaQui { @@ -47,9 +48,9 @@ public: virtual void simulate() = 0; /// Setea el nuevo color del fluido - void setColor(const RGB &c) { fluid_color = c; } + void set_color(const RGB &c) { fluid_color = c; } /// Retorna el actual color del fluido - const RGB &getColor() { return fluid_color; } + const RGB &get_color() { return fluid_color; } /** Recive un mensage y lo procesa * @@ -67,11 +68,16 @@ public: /// Devuelve el nombre de la instancia std::string get_name() const { return name; } + + /// Retorna el flujo actual que maneja el objeto. + float get_actual_flow() { return actual_flow; } + virtual void get_state_as_xml(std::stringstream &out); protected: RGB fluid_color; // es de solo lectura std::string name; bool updated; + float actual_flow; private: // Hago que no se puedan copiar objetos ElementosPlanta PlantItem(const PlantItem &):IConector(0,0) {}