1
Fork 0
mirror of https://github.com/thegeneralist01/Scene-Manager-DevRepo synced 2026-01-11 23:50:29 +01:00
Scene-Manager-DevRepo/SceneManager/DebugGraphics.cs

54 lines
1.8 KiB
C#

using Rage;
using RAGENativeUI.Elements;
using System.Drawing;
namespace SceneManager
{
class DebugGraphics
{
public static void LoopToDrawDebugGraphics(UIMenuCheckboxItem debugGraphics, Path path)
{
while (debugGraphics.Checked && path != null)
{
for (int i = 0; i < path.Waypoints.Count; i++)
{
DrawSpheresAtWaypoints(path, i);
if (i != path.Waypoints.Count - 1)
{
DrawLinesBetweenWaypoints(path, i);
}
}
GameFiber.Yield();
}
}
public static void DrawLinesBetweenWaypoints(Path path, int i)
{
if (path.Waypoints[i + 1].DrivingFlag == VehicleDrivingFlags.StopAtDestination)
{
Debug.DrawLine(path.Waypoints[i].Position, path.Waypoints[i + 1].Position, Color.Orange);
}
else
{
Debug.DrawLine(path.Waypoints[i].Position, path.Waypoints[i + 1].Position, Color.Green);
}
}
public static void DrawSpheresAtWaypoints(Path path, int i)
{
if (path.Waypoints[i].IsCollector)
{
Debug.DrawSphere(path.Waypoints[i].Position, path.Waypoints[i].CollectorRadius, Color.FromArgb(80, Color.Blue));
}
else if (path.Waypoints[i].DrivingFlag == VehicleDrivingFlags.StopAtDestination)
{
Debug.DrawSphere(path.Waypoints[i].Position, 1f, Color.FromArgb(80, Color.Red));
}
else
{
Debug.DrawSphere(path.Waypoints[i].Position, 1f, Color.FromArgb(80, Color.Green));
}
}
}
}