TileLayoutUtils.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. namespace UnityEngine.Rendering
  2. {
  3. /// <summary>Utility for tiles layout</summary>
  4. public static class TileLayoutUtils
  5. {
  6. /// <summary>Try decompose the givent rect into tiles given the parameter</summary>
  7. /// <param name="src">The rect to split</param>
  8. /// <param name="tileSize">The size of the tiles</param>
  9. /// <param name="main">Computed main area</param>
  10. /// <param name="topRow">Computed top row area</param>
  11. /// <param name="rightCol">Computed right column area</param>
  12. /// <param name="topRight">Computed top right corner area</param>
  13. /// <returns>If true, the tiles decomposition is a success</returns>
  14. public static bool TryLayoutByTiles(
  15. RectInt src,
  16. uint tileSize,
  17. out RectInt main,
  18. out RectInt topRow,
  19. out RectInt rightCol,
  20. out RectInt topRight)
  21. {
  22. if (src.width < tileSize || src.height < tileSize)
  23. {
  24. main = new RectInt(0, 0, 0, 0);
  25. topRow = new RectInt(0, 0, 0, 0);
  26. rightCol = new RectInt(0, 0, 0, 0);
  27. topRight = new RectInt(0, 0, 0, 0);
  28. return false;
  29. }
  30. int mainRows = src.height / (int)tileSize;
  31. int mainCols = src.width / (int)tileSize;
  32. int mainWidth = mainCols * (int)tileSize;
  33. int mainHeight = mainRows * (int)tileSize;
  34. main = new RectInt
  35. {
  36. x = src.x,
  37. y = src.y,
  38. width = mainWidth,
  39. height = mainHeight,
  40. };
  41. topRow = new RectInt
  42. {
  43. x = src.x,
  44. y = src.y + mainHeight,
  45. width = mainWidth,
  46. height = src.height - mainHeight
  47. };
  48. rightCol = new RectInt
  49. {
  50. x = src.x + mainWidth,
  51. y = src.y,
  52. width = src.width - mainWidth,
  53. height = mainHeight
  54. };
  55. topRight = new RectInt
  56. {
  57. x = src.x + mainWidth,
  58. y = src.y + mainHeight,
  59. width = src.width - mainWidth,
  60. height = src.height - mainHeight
  61. };
  62. return true;
  63. }
  64. /// <summary>Try decompose the givent rect into rows given the parameter</summary>
  65. /// <param name="src">The rect to split</param>
  66. /// <param name="tileSize">The size of the tiles</param>
  67. /// <param name="main">Computed main area</param>
  68. /// <param name="other">Computed other area</param>
  69. /// <returns>If true, the tiles decomposition is a success</returns>
  70. public static bool TryLayoutByRow(
  71. RectInt src,
  72. uint tileSize,
  73. out RectInt main,
  74. out RectInt other)
  75. {
  76. if (src.height < tileSize)
  77. {
  78. main = new RectInt(0, 0, 0, 0);
  79. other = new RectInt(0, 0, 0, 0);
  80. return false;
  81. }
  82. int mainRows = src.height / (int)tileSize;
  83. int mainHeight = mainRows * (int)tileSize;
  84. main = new RectInt
  85. {
  86. x = src.x,
  87. y = src.y,
  88. width = src.width,
  89. height = mainHeight,
  90. };
  91. other = new RectInt
  92. {
  93. x = src.x,
  94. y = src.y + mainHeight,
  95. width = src.width,
  96. height = src.height - mainHeight
  97. };
  98. return true;
  99. }
  100. /// <summary>Try decompose the givent rect into columns given the parameter</summary>
  101. /// <param name="src">The rect to split</param>
  102. /// <param name="tileSize">The size of the tiles</param>
  103. /// <param name="main">Computed main area</param>
  104. /// <param name="other">Computed other area</param>
  105. /// <returns>If true, the tiles decomposition is a success</returns>
  106. public static bool TryLayoutByCol(
  107. RectInt src,
  108. uint tileSize,
  109. out RectInt main,
  110. out RectInt other)
  111. {
  112. if (src.width < tileSize)
  113. {
  114. main = new RectInt(0, 0, 0, 0);
  115. other = new RectInt(0, 0, 0, 0);
  116. return false;
  117. }
  118. int mainCols = src.width / (int)tileSize;
  119. int mainWidth = mainCols * (int)tileSize;
  120. main = new RectInt
  121. {
  122. x = src.x,
  123. y = src.y,
  124. width = mainWidth,
  125. height = src.height,
  126. };
  127. other = new RectInt
  128. {
  129. x = src.x + mainWidth,
  130. y = src.y,
  131. width = src.width - mainWidth,
  132. height = src.height
  133. };
  134. return true;
  135. }
  136. }
  137. }