astar.cs.bkp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class astar : MonoBehaviour
  5. {
  6. [Header("Grid Information")]
  7. public float width;
  8. public float height;
  9. public Color gridBoundsVisualizeColor = Color.red;
  10. public GameObject cellGameObject;
  11. public Transform cellsParent;
  12. public cellData[,] cells;
  13. public Vector2Int targetCellId;
  14. public Vector2Int startCellId;
  15. void Start()
  16. {
  17. StartCoroutine(generateCells());
  18. }
  19. IEnumerator generateCells(){
  20. //Generate cells in grid
  21. float cellSize = cellGameObject.transform.localScale.x;
  22. Vector2 cellStartPosition = new Vector2( transform.position.x - width /2f, transform.position.y - height /2f)
  23. + new Vector2(cellSize/2f, cellSize/2f);
  24. int horizontalCellCount = (int)(width / cellSize);
  25. int verticalCellCount = (int)(height / cellSize);
  26. cells = new cellData[horizontalCellCount,verticalCellCount];
  27. for(int x= 0; x < horizontalCellCount; x++){
  28. for(int y = 0; y < verticalCellCount; y++){
  29. Vector2 cellSpawnPos = cellStartPosition + new Vector2(cellSize * x, cellSize *y );
  30. GameObject cell = Instantiate(cellGameObject, cellSpawnPos , Quaternion.identity);
  31. cell.GetComponent<cellData>().x = x;
  32. cell.GetComponent<cellData>().y = y;
  33. cell.transform.parent = cellsParent;
  34. //isObstacle?
  35. cell.GetComponent<cellData>().setObstacle(Physics2D.BoxCast(cell.transform.position, cell.transform.localScale/2f, 0 ,Vector2.zero));
  36. //cell.GetComponent<cellData>().setObstacle(Physics2D.CircleCast(cellSpawnPos,cellSize /2f,Vector2.zero));
  37. //cells.Add(cell.GetComponent<cellData>());
  38. cells[x,y] = cell.GetComponent<cellData>();
  39. yield return new WaitForSeconds(0.001f);
  40. }
  41. }
  42. }
  43. // Update is called once per frame
  44. Coroutine calculator = null;
  45. void Update()
  46. {
  47. if(Input.GetKeyDown(KeyCode.E)){
  48. Vector2 worldPos = Camera.main.ScreenToWorldPoint(Input.mousePosition);
  49. Vector2Int closestCellId = getClosestCell(worldPos);
  50. if(startCellId.magnitude >=0){cells[startCellId.x,startCellId.y].setObstacle();}
  51. startCellId = closestCellId;
  52. cells[startCellId.x, startCellId.y].GetComponent<SpriteRenderer>().color = Color.red;
  53. }else if(Input.GetKeyDown(KeyCode.F)){
  54. Vector2 worldPos = Camera.main.ScreenToWorldPoint(Input.mousePosition);
  55. if(targetCellId.magnitude >=0){cells[targetCellId.x,targetCellId.y].setObstacle();}
  56. Vector2Int closestCell = getClosestCell(worldPos);
  57. targetCellId = closestCell;
  58. cells[targetCellId.x, targetCellId.y].GetComponent<SpriteRenderer>().color = Color.blue;
  59. }else if(Input.GetKeyDown(KeyCode.Return)){
  60. if(calculator != null){StopCoroutine(calculator); resetCellsCost();}
  61. Debug.Log("Starting calculation");
  62. calculator = StartCoroutine(Calculate());
  63. }
  64. }
  65. public Vector2Int getClosestCell(Vector2 worldPos){
  66. float minDist = Mathf.Infinity;
  67. cellData closestCell = null;
  68. foreach(cellData cell in cells){
  69. if(cell.isObstacle){continue;}
  70. float DistToCell = Vector3.Distance(worldPos, cell.transform.position);
  71. if(DistToCell < minDist){
  72. minDist = DistToCell;
  73. closestCell = cell;
  74. }
  75. }
  76. return closestCell;
  77. }
  78. void OnDrawGizmos(){
  79. //Gizmos.Color = gridBoundsVisualizeColor;
  80. Gizmos.color = gridBoundsVisualizeColor;
  81. Gizmos.DrawWireCube(transform.position, new Vector3(width, height, 0));
  82. }
  83. IEnumerator Calculate(){
  84. bool foundPath = false;
  85. Vector2Int closeCellId = startCellId;
  86. while(!foundPath){
  87. calculateCellCost(cells[closeCellId.x,closeCellId.y]);
  88. for(int x = -1; x <= 1; x++){
  89. for(int y=-1; y <= 1; y++){
  90. int targetX = closeCellId.x +x;
  91. int targetY = closeCellId.y +y;
  92. if(cells.GetLength(0) < targetX || targetX < 0 || targetY < 0 || cells.GetLength(1) < targetY){continue;}
  93. calculateCellCost(cells[targetX,targetY]);
  94. }
  95. }
  96. // cellsToCalculate.Remove(cell);
  97. yield return new WaitForSeconds(0.01f);
  98. }
  99. }
  100. void calculateCellCost(cellData cell){
  101. if(cell.fCost==0){return;}
  102. float hCost = Vector2.Distance(cell.transform.position, cells[targetCellId.x, targetCellId.y].transform.position);
  103. float gCost = Vector2.Distance(cell.transform.position, cells[startCellId.x, startCellId.y].transform.position);
  104. float fCost = hCost + gCost;
  105. cell.setCellCost(gCost, hCost, fCost);
  106. }
  107. public void resetCellsCost(){
  108. foreach(cellData cell in cells){
  109. cell.resetCost();
  110. }
  111. }
  112. }