cellData.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. public class cellData : MonoBehaviour
  6. {
  7. public TextMesh gCostTxt;
  8. public TextMesh hCostTxt;
  9. public TextMesh fCostTxt;
  10. public float fCost,gCost,hCost;
  11. public List<cellData> neighbours = new List<cellData>();
  12. public int y;
  13. public int x;
  14. private bool _isObstacle = false;
  15. public bool isObstacle => _isObstacle;
  16. private bool _isClose = false;
  17. public bool isClose => _isClose;
  18. public bool isInPath;
  19. public cellData parent;
  20. public void setCellCost(float g, float h, float f){
  21. gCostTxt.text =g.ToString("n2");
  22. hCostTxt.text = h.ToString("n2");
  23. fCostTxt.text = f.ToString("n2");
  24. fCost= f;
  25. gCost = g;
  26. hCost = h;
  27. }
  28. public void setClose(bool value){
  29. _isClose = value;
  30. if(value){
  31. GetComponent<SpriteRenderer>().color = Color.red;
  32. }else{
  33. setObstacle();
  34. }
  35. }
  36. public void resetCost(){
  37. setCellCost(0,0,0);
  38. setClose(false);
  39. }
  40. public void setObstacle(bool value){
  41. _isObstacle = value;
  42. if(value){
  43. GetComponent<SpriteRenderer>().color = Color.black;
  44. }else{
  45. GetComponent<SpriteRenderer>().color = Color.white;
  46. }
  47. }
  48. public void setObstacle(){
  49. if(_isObstacle){
  50. GetComponent<SpriteRenderer>().color = Color.black;
  51. }else{
  52. GetComponent<SpriteRenderer>().color = Color.white;
  53. }
  54. }
  55. }