From c23473a0662ea81330ba5bb68bafb5d5fb059b76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Despierres?= Date: Sat, 25 May 2024 12:12:54 +0200 Subject: [PATCH] Fixed player vehicle reading in BasicCLI example --- _OmsiHookExamples/BasicCLI/Program.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/_OmsiHookExamples/BasicCLI/Program.cs b/_OmsiHookExamples/BasicCLI/Program.cs index 729e36e..254a46d 100644 --- a/_OmsiHookExamples/BasicCLI/Program.cs +++ b/_OmsiHookExamples/BasicCLI/Program.cs @@ -7,6 +7,8 @@ namespace BasicCLI // Most basic example of reading various values exposed by OMSIHook class Program { + static OmsiRoadVehicleInst? playerVehicle; + static void Main(string[] args) { Console.WriteLine("#=#=#=#=#=# OMSIHook Basic CLI Sample #=#=#=#=#=#"); @@ -16,14 +18,15 @@ static void Main(string[] args) // complete by either using the await operator or calling it's Wait() method. OmsiHook.OmsiHook omsi = new(); omsi.AttachToOMSI().Wait(); + omsi.OnActiveVehicleChanged += (_, inst) => playerVehicle = inst; // Set the console output encoding to support emoji Console.OutputEncoding = System.Text.Encoding.UTF8; - var playerVehicle = omsi.Globals.PlayerVehicle; var time = omsi.Globals.Time; var map = omsi.Globals.Map; var weather = omsi.Globals.Weather; + playerVehicle = omsi.Globals.PlayerVehicle; while (true) { // These variables will return null until they have a valid value (they will become null if Omsi is in @@ -33,7 +36,6 @@ static void Main(string[] args) map ??= omsi.Globals.Map; time ??= omsi.Globals.Time; weather ??= omsi.Globals.Weather; - playerVehicle ??= omsi.Globals.PlayerVehicle; var pos = playerVehicle?.Position ?? default; var rot = playerVehicle?.Rotation ?? default; @@ -49,7 +51,7 @@ static void Main(string[] args) } // Pick an emoji to show for the weather - static string WeatherEmoji(OmsiWeather weather) + static string WeatherEmoji(OmsiWeather? weather) { if (weather == null) return "N/A";