]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/drainage.cpp
Se agrega la consante INFINITO pendiente desde el primer commit :-)
[z.facultad/75.42/plaqui.git] / Model / src / drainage.cpp
index 6d7953483a88a825361b12137c5f637a785685be..d421662330a541a834e9e86f4e42e7adf18b0b83 100644 (file)
@@ -9,7 +9,7 @@ Drainage::Drainage(const std::string &_name):Drain(_name),Control(_name)
        in_slots = 1;
        out_slots = 0;
        // FIXME hacer INFINITO!
        in_slots = 1;
        out_slots = 0;
        // FIXME hacer INFINITO!
-       capacity = 99999;
+       capacity = INFINITO;
        actual_flow = 0.0f;
 }
 
        actual_flow = 0.0f;
 }
 
@@ -32,7 +32,6 @@ void Drainage::simulate()
 #endif
        updated = false;
        color_updated = false;
 #endif
        updated = false;
        color_updated = false;
-       actual_flow = 0;
 }
 
 void Drainage::recieve_msg(int msg, IConector *who, void *data)
 }
 
 void Drainage::recieve_msg(int msg, IConector *who, void *data)
@@ -42,7 +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);
                case MSG_QUERY_MAX_FLOW_OUT:
                        // FIXME Hacer INFINITO !!!
                        actual_flow = *((float *)data);
-                       tmp = 999999;
+                       tmp = INFINITO;
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
                        updated = true;
                break;
                        who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
                        updated = true;
                break;