Ejemplo n.º 1
0
 public void Start()
 {
     ConsoleWindow.ShowWindow(ConsoleWindow.ThisConsole, ConsoleWindow.MAXIMIZE);
     Console.ForegroundColor = ConsoleColor.Green;
     Console.CursorVisible   = true;
     while (CurrentScene.HasNextScenes())
     {
         PlayScene();
     }
     PlayFinalScene();
 }
Ejemplo n.º 2
0
 public void Start()
 {
     ConsoleWindow.MaximizeWindow();
     Animations.DisplayIntroScene();
     Console.CursorVisible = true;
     while (CurrentScene.HasNextScenes() && Player.HasBatteryLife())
     {
         PlayScene();
     }
     PlayFinalScene();
 }
 public void Start()
 {
     while (CurrentScene.HasNextScenes())
     {
         PlayScene();
     }
     PlayFinalScene();
     if (UseVoiceInput)
     {
         tts.SynthesisToSpeakerAsync("B.A.W.S. 5000", "You have reached the end of your journey. Until next time...").Wait();
     }
 }
Ejemplo n.º 4
0
 public void Start()
 {
     if (Program.isWindows)
     {
         PATH_TO_STORY = @"assets\story.json";
     }
     Console.ForegroundColor = ConsoleColor.DarkYellow;
     Console.CursorVisible   = true;
     while (CurrentScene.HasNextScenes())
     {
         PlayScene();
     }
     PlayFinalScene();
     Console.ReadKey();
 }