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

⟦5a83c13c9⟧ TextFile

    Length: 658 (0x292)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Timer_Moteur;
with Role;
with Etape;
with Text_Io;
with Intermediate_Code;

package Scene is

    type Tab_Roles is array (1 .. 25) of Role.P_Role;
    type Tab_Acteurs is array (1 .. 25) of Role.Acteur;
    type Cell_Scene;
    type P_Scene is access Cell_Scene;
    type Cell_Scene is
        record  
            En_Cours : Boolean;
            La_Duree : Etape.Temps;
            Les_Roles : Tab_Roles;
            Nb_Acteurs : Integer;
        end record;
    Scene_Vide : constant P_Scene := null;

    procedure Lire_Scene (S : in out P_Scene);
    procedure Jouer_Scene (S : P_Scene);  
    procedure Affiche_Scene (S : in P_Scene);

end Scene;