; ;first put the name of the track ;then the initial layout ;then the first sequence ; ;layout is followed by HUD display state 0 off ; 1 on ; then titlebarState 0 NONE, ; 1 MENU, ; 2 ENGINEERING, ; 3 TIMER, ; 4 MULTIINFO, ; ;layout is compulsory before the first sequence and optional before all others ; ;labels 0 to 9 are permitted, prefixed with # ; ;continue and branch correspond to a 'user feedback pause' ;continue will continue execution of the sequence ;branch will leave current sequence ;continue is followed by the string for the OK button ; branch is followed by the string for the OK button and the label to branch to ; then the string for the back button and the label to branch to ; ;test corresponds to a 'user control' ;test is suffixed by its routine number and followed by the branch labels ; ;goto and end correspond to the end of a sequence ;goto is followed by the branch label ;end finishes the masterclass ; Indianapolis ; #0 ;Rather dull stuff about qualification layout 0 0 MstrClss\MC4\part1\mc4_0.seq continue ST_CONTINUE ;More dull stuff about qualification, this time with a hud layout 0 0 MstrClss\MC4\part1\mc4_1.seq continue ST_CONTINUE #1 ;test intro woohoo layout 0 0 MstrClss\MC4\part1\mc4_2.seq continue ST_CONTINUE #2 ; *** TEXT BLOCK ON IT'S OWN *** layout 0 0 MstrClss\MC4\part2\mc4_2txt.seq continue ST_CONTINUE ; *** CARL O *** #3 ; The test layout 1 3 MstrClss\MC4\part2\mc4_3.seq ;Branches for test2 are as follows... ; gold, silver, bronze, fail test3 4 5 6 10 11 12 #4 ; gold layout 0 0 MstrClss\MC4\part2\mc4_4.seq continue ST_CONTINUE end #5 ; silver layout 0 0 MstrClss\MC4\part2\mc4_5.seq branch ST_TRY_AGAIN 2 ST_CONTINUE 20 end #6 ; bronze layout 0 0 MstrClss\MC4\part2\mc4_6.seq branch ST_TRY_AGAIN 2 ST_CONTINUE 20 end #10 ;Fail Default layout 0 0 MstrClss\MC4\part2\mc4_10.seq branch ST_TRY_AGAIN 2 ST_CONTINUE 20 #11 ;Fail Crash layout 0 0 MstrClss\MC4\part2\mc4_11.seq branch ST_TRY_AGAIN 2 ST_CONTINUE 20 #12 ;Fail Crash layout 0 0 MstrClss\MC4\part2\mc4_12.seq branch ST_TRY_AGAIN 2 ST_CONTINUE 20 #20 end ;