DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦e627f8391⟧ TextFile

    Length: 1201 (0x4b1)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with String_Utilities;
with Etape;  
with Timer_Moteur;
with Text_Io;  
with Intermediate_Code;
with Serial_Io;
package Role is

    type Acteur is
        record
            Num_Acteur : Integer;
            Num_Station : Integer;
        end record;
    type Cell_Role;
    type P_Role is access Cell_Role;
    type Cell_Role is
        record
            La_Duree : Etape.Temps;
            En_Cours : Boolean;
            L_Acteur : Acteur;
            L_Etape : Etape.P_Etape;
            L_Index : Etape.P_Etape;
        end record;
    Role_Vide : constant P_Role := null;

    function Lire_Un_Role (R : in P_Role; A : in Acteur) return P_Role;
    procedure Affiche_Role (R : in P_Role);
    function Role_Est_Vide (R : in P_Role) return Boolean;
    function Role_En_Cours (R : in P_Role) return Boolean;  
    function Temps_Role (R : in P_Role) return Etape.Temps;
    procedure Jouer_Role (R : in P_Role);  
    procedure Demarrer_Role (R : in out P_Role);
    procedure Arreter_Role (R : in out P_Role);
    function Acteur_Du_Role (R : in P_Role) return Acteur;
    procedure Solliciter_Role (R : in out P_Role;
                               Chrono : in Timer_Moteur.Objet);

end Role;