small fixes to coordinate checking in Gizmo drawing, move to GridController/cleanup add docs

This commit is contained in:
Xevion
2020-11-25 09:20:30 -06:00
parent 592334dbaf
commit ba7fd44d65
5 changed files with 67 additions and 41 deletions
+6 -5
View File
@@ -3,7 +3,7 @@ using UnityEngine;
namespace Algorithms { namespace Algorithms {
public class AStar : IPathfinding { public class AStar : IPathfinding {
private NodeGrid _nodeGrid; public NodeGrid NodeGrid { get; private set; }
private Stack<Node> _path; private Stack<Node> _path;
private List<Node> _openList; private List<Node> _openList;
@@ -14,7 +14,7 @@ namespace Algorithms {
public Vector2Int End { get; private set; } public Vector2Int End { get; private set; }
public AStar(NodeGrid nodeGrid) { public AStar(NodeGrid nodeGrid) {
this._nodeGrid = nodeGrid; this.NodeGrid = nodeGrid;
ChangeController = new ChangeController(nodeGrid.RenderNodeTypes()); ChangeController = new ChangeController(nodeGrid.RenderNodeTypes());
} }
@@ -25,8 +25,8 @@ namespace Algorithms {
ChangeController.AddChange(new Change(start.x, start.y, GridNodeType.Start, GridNodeType.Empty)); ChangeController.AddChange(new Change(start.x, start.y, GridNodeType.Start, GridNodeType.Empty));
ChangeController.AddChange(new Change(end.x, end.y, GridNodeType.End, GridNodeType.Empty)); ChangeController.AddChange(new Change(end.x, end.y, GridNodeType.End, GridNodeType.Empty));
Node startNode = _nodeGrid.Grid[start.x, start.y]; Node startNode = NodeGrid.Grid[start.x, start.y];
Node endNode = _nodeGrid.Grid[end.x, end.y]; Node endNode = NodeGrid.Grid[end.x, end.y];
_path = new Stack<Node>(); _path = new Stack<Node>();
_openList = new List<Node>(); _openList = new List<Node>();
@@ -51,7 +51,7 @@ namespace Algorithms {
if (current.Position == endNode.Position) if (current.Position == endNode.Position)
break; break;
Node[] adjacentNodes = this._nodeGrid.GetAdjacentNodesArray(current); Node[] adjacentNodes = this.NodeGrid.GetAdjacentNodesArray(current);
for (int i = 0; i < adjacentNodes.Length; i++) { for (int i = 0; i < adjacentNodes.Length; i++) {
Node node = adjacentNodes[i]; Node node = adjacentNodes[i];
if (node != null && node.State == NodeState.None && node.Walkable) { if (node != null && node.State == NodeState.None && node.Walkable) {
@@ -91,5 +91,6 @@ namespace Algorithms {
return _path; return _path;
} }
} }
} }
@@ -51,6 +51,14 @@ namespace Algorithms {
return temp; return temp;
} }
public bool IsValid(Node node) {
return IsValid(node.Position);
}
public bool IsValid(Vector2Int position) {
return position.x >= 0 && position.y >= 0 && position.x < Width && position.y < Height;
}
public Node[] GetAdjacentNodesArray(Node node) { public Node[] GetAdjacentNodesArray(Node node) {
int col = node.Position.x; int col = node.Position.x;
int row = node.Position.y; int row = node.Position.y;
+29 -1
View File
@@ -25,7 +25,7 @@ public class GridController : MonoBehaviour {
private static readonly int Values = Shader.PropertyToID("_values"); private static readonly int Values = Shader.PropertyToID("_values");
private static readonly int GridWidth = Shader.PropertyToID("_GridWidth"); private static readonly int GridWidth = Shader.PropertyToID("_GridWidth");
private static readonly int GridHeight = Shader.PropertyToID("_GridHeight"); private static readonly int GridHeight = Shader.PropertyToID("_GridHeight");
public Vector2 Size => new Vector2Int(width, height); public Vector2Int Size => new Vector2Int(width, height);
private void Start() { private void Start() {
_values = new int[width * height]; _values = new int[width * height];
@@ -131,4 +131,32 @@ public class GridController : MonoBehaviour {
public int GetIndex(int x, int y) { public int GetIndex(int x, int y) {
return width * y + x; return width * y + x;
} }
/// <summary>
/// Translate a world position to the approximate position on the Grid.
/// May not return valid grid coordinates (outside the range).
/// </summary>
/// <param name="worldPosition">a Vector3 World Position; Z coordinates are inconsequential.</param>
/// <returns>A Vector2Int representing a grid position from the bottom left.</returns>
public Vector2Int GetGridPosition(Vector3 worldPosition) {
Vector3 localScale = transform.localScale;
Vector2 gridPosition = (worldPosition + (localScale / 2f)) / new Vector2(localScale.x, localScale.y);
return new Vector2Int(
(int) (gridPosition.x * width),
(int) (gridPosition.y * height)) - Size - Vector2Int.one;
}
/// <summary>
/// Translates a position on the grid into a real World Position.
/// </summary>
/// <param name="gridPosition">The XY position on the grid</param>
/// <returns>A Vector3 centered on the grid square in the World</returns>
public Vector3 GetWorldPosition(Vector2Int gridPosition) {
Transform ttransform = transform;
Vector3 localScale = ttransform.localScale;
Vector2 bottomLeft = ttransform.position - (localScale / 2f);
var singleSquare = new Vector2(localScale.x / width, localScale.y / height);
Vector2 worldPosition = bottomLeft + (singleSquare * gridPosition) + (singleSquare / 2f);
return worldPosition;
}
} }
+1 -1
View File
@@ -13,7 +13,7 @@ public interface IPathfinding {
/// <param name="end">The position trying to be found via pathfinding</param> /// <param name="end">The position trying to be found via pathfinding</param>
/// <returns>A List of NodeGridGrid objects representing the timeline of Pathfinding</returns> /// <returns>A List of NodeGridGrid objects representing the timeline of Pathfinding</returns>
Stack<Node> FindPath(Vector2Int start, Vector2Int end); Stack<Node> FindPath(Vector2Int start, Vector2Int end);
NodeGrid NodeGrid { get; }
Vector2Int Start { get; } Vector2Int Start { get; }
Vector2Int End { get; } Vector2Int End { get; }
ChangeController ChangeController { get; } ChangeController ChangeController { get; }
+21 -32
View File
@@ -27,7 +27,6 @@ public class Manager : MonoBehaviour {
public TextMeshPro debugText; public TextMeshPro debugText;
public Slider progressSlider; public Slider progressSlider;
private float? _moveTo; private float? _moveTo;
private bool _allowPausing = true;
private int CurrentIndex { private int CurrentIndex {
get => (int) _runtime; get => (int) _runtime;
@@ -49,38 +48,27 @@ public class Manager : MonoBehaviour {
_runtime = @new * _state.Count; _runtime = @new * _state.Count;
} }
Vector2 GetGridPosition(Vector3 worldPosition, Vector3 scale) {
Vector2 gridPosition = (worldPosition + (scale / 2f)) / new Vector2(scale.x, scale.y);
gridPosition = new Vector2Int(
(int) (gridPosition.x * gridController.width),
(int) (gridPosition.y * gridController.height));
return gridPosition;
}
Vector3 GetWorldPosition(Vector2 gridPosition, Vector3 scale) {
Vector2 bottomLeft = gridObject.transform.position - (scale / 2f);
Vector2 singleSquare = new Vector2(scale.x / gridController.width, scale.y / gridController.height);
Vector2 worldPosition = bottomLeft + (singleSquare * gridPosition) + (singleSquare / 2f);
return worldPosition;
}
public void OnDrawGizmos() { public void OnDrawGizmos() {
if (!Application.isPlaying) return;
Vector3 mouse = mainCamera.ScreenToWorldPoint(Input.mousePosition); Vector3 mouse = mainCamera.ScreenToWorldPoint(Input.mousePosition);
var localScale = gridObject.transform.localScale; Vector3 localScale = gridObject.transform.localScale;
Vector2 gridPosition = GetGridPosition(mouse, localScale); Vector2Int gridPosition = GetGridPosition(mouse, localScale);
Vector2Int realGridPosition = gridController.Size - gridPosition - Vector2Int.one;
var style = new GUIStyle(); var style = new GUIStyle();
style.normal.textColor = Color.blue; style.normal.textColor = Color.blue;
Gizmos.color = Color.blue; Gizmos.color = Color.blue;
var mouseWorldPosition = new Vector3( Gizmos.DrawWireCube(GetWorldPosition(gridPosition, localScale), localScale / (Vector2) gridController.Size);
(gridPosition.x / gridController.width * 10) - (localScale.x / 2f), Handles.Label(mouse, String.Format("{0}{1}",
(gridPosition.y / gridController.height * 10) - (localScale.y / 2f), gridPosition,
mouse.z _algorithm.NodeGrid.IsValid(gridPosition)
); ? $"\n{_state.Current[realGridPosition.x, realGridPosition.y]}"
// Gizmos.DrawCube(GetWorldPosition(gridPosition, localScale), Vector3.one / 5f); : ""
Gizmos.DrawWireCube(GetWorldPosition(gridPosition, localScale), localScale / gridController.Size); ), style);
Handles.Label(mouse, $"({gridPosition.x} {gridPosition.y})\n{mouse.x:F} {mouse.y:F}", style);
} }
/// <summary> /// <summary>
@@ -115,10 +103,15 @@ public class Manager : MonoBehaviour {
public void Update() { public void Update() {
// Toggle pause with space // Toggle pause with space
if (_allowPausing && Input.GetKeyDown(KeyCode.Space)) { if (Input.GetKeyDown(KeyCode.Space)) {
moving = !moving; moving = !moving;
} }
if (Input.GetKeyDown(KeyCode.G)) {
GeneratePath();
return;
}
// Increment index if unpaused and not clicking (implying slider may be interacted with) // Increment index if unpaused and not clicking (implying slider may be interacted with)
if (moving && !Input.GetMouseButton(0)) { if (moving && !Input.GetMouseButton(0)) {
var increment = Time.deltaTime * speed * CurrentMultiplier(); var increment = Time.deltaTime * speed * CurrentMultiplier();
@@ -130,10 +123,6 @@ public class Manager : MonoBehaviour {
// Load next state in grid or update text // Load next state in grid or update text
if (CurrentIndex < _state.Count) if (CurrentIndex < _state.Count)
LoadNextState(); LoadNextState();
else {
// No new states to load, generate new grid
GeneratePath();
}
// Update progress slider silently // Update progress slider silently
progressSlider.SetValueWithoutNotify(_runtime / _state.Count); progressSlider.SetValueWithoutNotify(_runtime / _state.Count);
@@ -146,8 +135,8 @@ public class Manager : MonoBehaviour {
CurrentIndex = 0; CurrentIndex = 0;
var nodeGrid = new NodeGrid(gridController.width, gridController.height); var nodeGrid = new NodeGrid(gridController.width, gridController.height);
Vector2Int start = nodeGrid.RandomPosition(); // Vector2Int start = nodeGrid.RandomPosition();
// Vector2Int start = new Vector2Int(30, 30); Vector2Int start = new Vector2Int(3, 6);
Vector2Int end = nodeGrid.RandomPosition(); Vector2Int end = nodeGrid.RandomPosition();
nodeGrid.ApplyGenerator(new RandomPlacement(0.3f, true, true)); nodeGrid.ApplyGenerator(new RandomPlacement(0.3f, true, true));
@@ -164,7 +153,7 @@ public class Manager : MonoBehaviour {
/// Loads the appropriate grid state into the shader via the ChangeController instance. /// Loads the appropriate grid state into the shader via the ChangeController instance.
/// </summary> /// </summary>
private void LoadNextState() { private void LoadNextState() {
_state.MoveTo(CurrentIndex); _state.MoveTo(Math.Max(1, CurrentIndex)); // use Math.max to ensure both start/end nodes are always rendered
gridController.LoadDirtyGridState(_state.Current, _state.DirtyFlags); gridController.LoadDirtyGridState(_state.Current, _state.DirtyFlags);
string pathCount = _path != null ? $"{_path.Count}" : "N/A"; string pathCount = _path != null ? $"{_path.Count}" : "N/A";