2023-06-29 00:20:01 +02:00
|
|
|
using UnityEditor;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
namespace VertexColor.ScenePartition.Editor
|
2023-06-29 00:20:01 +02:00
|
|
|
{
|
2023-07-03 00:47:53 +02:00
|
|
|
[InitializeOnLoad]
|
|
|
|
public class ScenePartitionSceneViewEditor : UnityEditor.Editor
|
2023-06-29 00:20:01 +02:00
|
|
|
{
|
2023-07-03 00:47:53 +02:00
|
|
|
private const int cellSize = 10;
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
static ScenePartitionSceneViewEditor()
|
|
|
|
{
|
|
|
|
SceneView.duringSceneGui += HandleDuringSceneGui;
|
|
|
|
}
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
private static void HandleDuringSceneGui(SceneView sceneView)
|
|
|
|
{
|
|
|
|
if (Event.current.modifiers != EventModifiers.Control) return;
|
|
|
|
|
|
|
|
Vector3 gridPosition = CalculateGridPosition(Event.current.mousePosition);
|
|
|
|
int gridId = SceneGrid.CalculateGridPosition(gridPosition, 10);
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
int x = Mathf.FloorToInt(gridPosition.x / cellSize);
|
|
|
|
int z = Mathf.FloorToInt(gridPosition.z / cellSize);
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
Vector3 cellOrign = new Vector3(x * cellSize, 0, z * cellSize);
|
|
|
|
Vector3[] lines = new Vector3[] {
|
2023-06-29 00:20:01 +02:00
|
|
|
new Vector3(0, 0, 0) + cellOrign, new Vector3(0, 0, cellSize) + cellOrign, // Left Bottom -> Left Top
|
|
|
|
new Vector3(cellSize, 0, 0) + cellOrign, new Vector3(cellSize, 0, cellSize) + cellOrign, // Right Bottom -> Right Top
|
|
|
|
new Vector3(0, 0, 0) + cellOrign, new Vector3(cellSize, 0, 0) + cellOrign, // Left Bottom -> Right Bottom
|
|
|
|
new Vector3(0, 0, cellSize) + cellOrign, new Vector3(cellSize, 0, cellSize) + cellOrign, // Left Top -> Right Top
|
|
|
|
};
|
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
Handles.DrawDottedLines(lines, 10.0f);
|
|
|
|
Handles.Label(cellOrign + new Vector3(cellSize * 0.5f, 0, cellSize * 0.5f), new GUIContent($"{gridId}"));
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
if (Event.current.button == 1 && Event.current.type == EventType.MouseDown)
|
|
|
|
{
|
|
|
|
GenericMenu menu = new GenericMenu();
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
menu.AddItem(new GUIContent($"Load {gridId}"), false, Load, gridId);
|
|
|
|
menu.ShowAsContext();
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
Event.current.Use();
|
|
|
|
}
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
SceneView.RepaintAll();
|
|
|
|
}
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
private static Vector3 CalculateGridPosition(Vector2 mousePosition)
|
|
|
|
{
|
|
|
|
if (Event.current == null) return Vector3.zero;
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
Ray ray = HandleUtility.GUIPointToWorldRay(mousePosition);
|
|
|
|
Plane plane = new Plane(Vector3.up, Vector3.zero); // Horizontal plane at y = 0
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
if (!plane.Raycast(ray, out float distance)) return Vector3.zero;
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
Vector3 intersectionPoint = ray.GetPoint(distance);
|
|
|
|
return intersectionPoint;
|
|
|
|
}
|
2023-06-29 00:20:01 +02:00
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
private static void Load(object gridId)
|
|
|
|
{
|
|
|
|
if (gridId == null) return;
|
|
|
|
if (gridId is not int gridPos) return;
|
2023-06-29 00:20:01 +02:00
|
|
|
|
|
|
|
|
2023-07-03 00:47:53 +02:00
|
|
|
}
|
2023-06-29 00:20:01 +02:00
|
|
|
}
|
|
|
|
}
|