]> git.llucax.com Git - z.facultad/75.68/celdas.git/blobdiff - trunk/src/SistemaAutonomo.tz
Se corrigen cosas y se vuelve a cambiar la interfaz con el sistema autónomo. Ahora...
[z.facultad/75.68/celdas.git] / trunk / src / SistemaAutonomo.tz
index d3246c839ac4bf00d3365affda61d0217cbbad3c..147c7760b2054a46c37f99cd834243f15cd7a891 100644 (file)
@@ -7,19 +7,28 @@ Object : Teoria (aka Teorias) {
        + variables:
                ptr (pointer).
 
-       + to init named name (string) with-action action (int)
+       + to init named name (string) with-action action (string)
                        executed k = 1 (int) succeeded p = 1 (int):
                ptr = TeoriaNew(name, action, k, p).
                
-       + to add-dato-inicial name theName (string) value theValue (float):
-               TeoriaAddDatoInicial(ptr, theName, theValue).
+       + to set-dato-inicial name theName (string) value theValue (float):
+               TeoriaSetDatoInicial(ptr, theName, theValue).
 
-       + to add-dato-final name theName (string) value theValue (float):
-               TeoriaAddDatoFinal(ptr, theName, theValue).
+       + to set-dato-final name theName (string) value theValue (float):
+               TeoriaSetDatoFinal(ptr, theName, theValue).
+
+       + to get-nombre:
+               return TeoriaGetNombre(ptr).
+
+       + to get-accion:
+               return TeoriaGetAccion(ptr).
 
        - to get-ptr:
                return ptr.
 
+       - to set-ptr ptr p (pointer):
+               ptr = p.
+
        + to destroy:
                TeoriaDelete(ptr).
 }
@@ -35,6 +44,28 @@ Object : SistemaAutonomo {
        + to add teoria theTeoria (object):
                SistemaAutonomoAddTeoria(ptr, (theTeoria get-ptr)).
 
+       + to set value theValue (float) with-name theName (string):
+               SistemaAutonomoSetValue(ptr, theName, theValue).
+
+       + to update entorno theEntorno (hash):
+               nombre (string).
+               foreach nombre in keys(theEntorno): {
+                       print "Seteando valor de entorno ", nombre, " con ", theEntorno{nombre}.
+                       self set value theEntorno{nombre} with-name nombre.
+               }
+
+       + to plan:
+               SistemaAutonomoPlan(ptr).
+
+       + to get-next-theory:
+               t (object).
+               t = new Teoria.
+               t set-ptr ptr SistemaAutonomoGetNextTheory(ptr).
+               return t.
+
+       + to validate theory theTheory (object):
+               return SistemaAutonomoValidateTheory(ptr, (theTheory get-ptr)).
+
        + to destroy:
                SistemaAutonomoDelete(ptr).
 }