UIVertexBuffer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using UnityEngine;
  6. using UnityImage = CommonUI_Unity3D.Impl.UnityImage;
  7. using VertexBuffer = CommonUI.Display.VertexBuffer;
  8. using VertexPoint = CommonUI.Display.VertexPoint;
  9. using VertexTopology = CommonUI.Display.VertexTopology;
  10. using CommonUI.Display;
  11. using CommonUI_Unity3D.Impl;
  12. using CommonLang;
  13. using CommonUI_Unity3D;
  14. using UnityEngine.UI;
  15. namespace CommonUnity3D.UGUI
  16. {
  17. public class UIVertexBuffer : CommonUI.Display.VertexBuffer
  18. {
  19. private static readonly ObjectPool<UIVertexBuffer> s_ListPool = new ObjectPool<UIVertexBuffer>(s_ListPool_OnCreate);
  20. private static UIVertexBuffer s_ListPool_OnCreate()
  21. {
  22. return new UIVertexBuffer();
  23. }
  24. public static UIVertexBuffer AllocAutoRelease(List<UIVertex> vbo)
  25. {
  26. UIVertexBuffer ret = s_ListPool.Get();
  27. ret.mVBOs = vbo;
  28. return ret;
  29. }
  30. private Matrix4x4 cur_matrix;
  31. private Stack<Matrix4x4> stack_matrix = new Stack<Matrix4x4>();
  32. private List<UIVertex> mVBOs = null;
  33. private UnityEngine.Color mBlendColor = UnityEngine.Color.white;
  34. public List<UIVertex> VBO { get { return mVBOs; } }
  35. public int Count
  36. {
  37. get
  38. {
  39. return mVBOs.Count;
  40. }
  41. set
  42. {
  43. int d = value - mVBOs.Count;
  44. if (d < 0)
  45. {
  46. mVBOs.RemoveRange(value, -d);
  47. }
  48. else if (d > 0)
  49. {
  50. for (int i = 0; i < d; i++)
  51. {
  52. mVBOs.Add(UIVertex.simpleVert);
  53. }
  54. }
  55. }
  56. }
  57. public int IndicesCount { get { return mVBOs.Count; } }
  58. public UnityEngine.Color BlendColor
  59. {
  60. get { return mBlendColor; }
  61. set { mBlendColor = value; }
  62. }
  63. private UIVertexBuffer()
  64. {
  65. }
  66. public void Dispose()
  67. {
  68. this.mVBOs = null;
  69. this.mBlendColor = UnityEngine.Color.white;
  70. this.stack_matrix.Clear();
  71. this.cur_matrix = Matrix4x4.identity;
  72. s_ListPool.Release(this);
  73. }
  74. public void Append(VertexBuffer data)
  75. {
  76. mVBOs.AddRange(((UIVertexBuffer)data).mVBOs);
  77. }
  78. public void Append(float x, float y, uint color, float u, float v)
  79. {
  80. var position = cur_matrix.MultiplyPoint3x4(new Vector3(x, y));
  81. position.y = -position.y;
  82. UIVertex vertex = UIVertex.simpleVert;
  83. vertex.position = position;
  84. vertex.color = UIUtils.UInt32_RGBA_To_Color(color) * mBlendColor;
  85. vertex.uv0 = new Vector2(u, 1f - v);
  86. mVBOs.Add(vertex);
  87. }
  88. public void Append(VertexPoint v)
  89. {
  90. var position = cur_matrix.MultiplyPoint3x4(new Vector3(v.X, v.Y));
  91. position.y = -position.y;
  92. UIVertex vertex = UIVertex.simpleVert;
  93. vertex.position = position;
  94. vertex.color = UIUtils.UInt32_RGBA_To_Color(v.Color) * mBlendColor;
  95. vertex.uv0 = new Vector2(v.U, 1f - v.V);
  96. mVBOs.Add(vertex);
  97. }
  98. public void SetColor(int index, uint color)
  99. {
  100. UIVertex vertex = this.mVBOs[index];
  101. vertex.color = UIUtils.UInt32_RGBA_To_Color(color) * mBlendColor;
  102. this.mVBOs[index] = vertex;
  103. }
  104. public void SetPosition(int index, float x, float y)
  105. {
  106. var position = cur_matrix.MultiplyPoint3x4(new Vector3(x, y));
  107. position.y = -position.y;
  108. UIVertex vertex = this.mVBOs[index];
  109. vertex.position = position;
  110. this.mVBOs[index] = vertex;
  111. }
  112. public void SetTexCoords(int index, float u, float v)
  113. {
  114. UIVertex vertex = this.mVBOs[index];
  115. vertex.uv0 = new Vector2(u, 1f - v);
  116. this.mVBOs[index] = vertex;
  117. }
  118. public void SetVertex(int index, VertexPoint v)
  119. {
  120. var position = cur_matrix.MultiplyPoint3x4(new Vector3(v.X, v.Y));
  121. position.y = -position.y;
  122. UIVertex vertex = this.mVBOs[index];
  123. vertex.position = position;
  124. vertex.uv0 = new Vector2(v.U, 1f - v.V);
  125. vertex.color = UIUtils.UInt32_RGBA_To_Color(v.Color) * mBlendColor;
  126. this.mVBOs[index] = vertex;
  127. }
  128. public void GetVertex(int index, out VertexPoint v)
  129. {
  130. UIVertex vertex = this.mVBOs[index];
  131. v = new VertexPoint();
  132. v.X = vertex.position.x;
  133. v.Y = -vertex.position.y;
  134. v.U = vertex.uv0.x;
  135. v.V = 1f - vertex.uv0.y;
  136. v.Color = UIUtils.Color_To_UInt32_RGBA(vertex.color);
  137. }
  138. public void Clear()
  139. {
  140. mVBOs.Clear();
  141. }
  142. public void Optimize()
  143. {
  144. }
  145. public void SetIndices(int[] indices, VertexTopology topology)
  146. {
  147. }
  148. public void SetIndices(int index, int[] indices)
  149. {
  150. }
  151. public void AddIndicesQuard(int a, int b, int c, int d)
  152. {
  153. }
  154. public void AddIndicesTrangle(int a, int b, int c)
  155. {
  156. }
  157. public void translate(float x, float y)
  158. {
  159. if (x != 0 || y != 0)
  160. {
  161. Matrix4x4 m = Matrix4x4.TRS(
  162. new Vector3(x, y, 0),
  163. Quaternion.identity,
  164. Vector3.one);
  165. cur_matrix = cur_matrix * m;
  166. }
  167. }
  168. public void rotate(float angle)
  169. {
  170. if (angle != 0)
  171. {
  172. Matrix4x4 m = Matrix4x4.TRS(
  173. Vector3.zero,
  174. Quaternion.Euler(0f, 0f, angle),
  175. Vector3.one);
  176. cur_matrix = cur_matrix * m;
  177. }
  178. }
  179. public void scale(float sx, float sy)
  180. {
  181. if (sx != 1 || sy != 1)
  182. {
  183. Matrix4x4 m = Matrix4x4.TRS(
  184. Vector3.zero,
  185. Quaternion.identity,
  186. new Vector3(sx, sy, 1.0f));
  187. cur_matrix = cur_matrix * m;
  188. }
  189. }
  190. public void pushTransform()
  191. {
  192. stack_matrix.Push(cur_matrix);
  193. }
  194. public void popTransform()
  195. {
  196. cur_matrix = stack_matrix.Pop();
  197. }
  198. }
  199. #if UNITY_5
  200. public class VertexHelperBuffer : CommonUI.Display.VertexBuffer
  201. {
  202. //---------------------------------------------------------------------------------------
  203. #region Pool
  204. private static readonly ObjectPool<VertexHelperBuffer> s_ListPool = new ObjectPool<VertexHelperBuffer>(s_ListPool_OnCreate);
  205. private static VertexHelperBuffer s_ListPool_OnCreate()
  206. {
  207. return new VertexHelperBuffer();
  208. }
  209. public static VertexHelperBuffer AllocAutoRelease(VertexHelper helper)
  210. {
  211. VertexHelperBuffer ret = s_ListPool.Get();
  212. ret.BindMesh(helper);
  213. return ret;
  214. }
  215. private static readonly Vector4 s_DefaultTangent = new Vector4(1f, 0f, 0f, -1f);
  216. private static readonly Vector3 s_DefaultNormal = Vector3.back;
  217. #endregion
  218. //---------------------------------------------------------------------------------------
  219. private VertexHelper m_Helper;
  220. private UnityEngine.Color m_BlendColor = UnityEngine.Color.white;
  221. private Matrix4x4 cur_matrix;
  222. private Stack<Matrix4x4> stack_matrix = new Stack<Matrix4x4>();
  223. public int Count
  224. {
  225. get { return this.m_Helper.currentVertCount; }
  226. }
  227. public int IndicesCount
  228. {
  229. get { return m_Helper.currentIndexCount; }
  230. }
  231. public UnityEngine.Color BlendColor
  232. {
  233. get { return m_BlendColor; }
  234. set { m_BlendColor = value; }
  235. }
  236. private VertexHelperBuffer() { }
  237. private void BindMesh(VertexHelper m)
  238. {
  239. this.m_Helper = m;
  240. }
  241. public void Dispose()
  242. {
  243. this.m_Helper = null;
  244. this.m_BlendColor = UnityEngine.Color.white;
  245. this.stack_matrix.Clear();
  246. this.cur_matrix = Matrix4x4.identity;
  247. s_ListPool.Release(this);
  248. }
  249. //---------------------------------------------------------------------------------------
  250. #region VertexBuffer
  251. void VertexBuffer.Append(VertexBuffer data)
  252. {
  253. throw new NotImplementedException();
  254. }
  255. void VertexBuffer.Append(float x, float y, uint color, float u, float v)
  256. {
  257. var position = cur_matrix.MultiplyPoint3x4(new Vector3(x, y));
  258. position.y = -position.y;
  259. m_Helper.AddVert(
  260. position,
  261. UIUtils.UInt32_RGBA_To_Color(color) * m_BlendColor,
  262. new Vector2(u, 1f - v));
  263. }
  264. void VertexBuffer.Append(VertexPoint vertex)
  265. {
  266. var position = cur_matrix.MultiplyPoint3x4(new Vector3(vertex.X, vertex.Y));
  267. position.y = -position.y;
  268. m_Helper.AddVert(
  269. position,
  270. UIUtils.UInt32_RGBA_To_Color(vertex.Color) * m_BlendColor,
  271. new Vector2(vertex.U, 1f - vertex.V));
  272. }
  273. void VertexBuffer.SetVertex(int index, VertexPoint vertex)
  274. {
  275. var v = UIVertex.simpleVert;
  276. v.position = (cur_matrix.MultiplyPoint3x4(new Vector3(vertex.X, vertex.Y)));
  277. v.position.y = -v.position.y;
  278. v.color = (UIUtils.UInt32_RGBA_To_Color(vertex.Color)) * m_BlendColor;
  279. v.uv0 = (new Vector2(vertex.U, 1f - vertex.V));
  280. v.uv1 = (Vector2.zero);
  281. v.normal = (s_DefaultNormal);
  282. v.tangent = (s_DefaultTangent);
  283. m_Helper.SetUIVertex(v, index);
  284. }
  285. void VertexBuffer.SetPosition(int index, float x, float y)
  286. {
  287. var v = UIVertex.simpleVert;
  288. m_Helper.PopulateUIVertex(ref v, index);
  289. v.position = (cur_matrix.MultiplyPoint3x4(new Vector3(x, y)));
  290. v.position.y = -v.position.y;
  291. m_Helper.SetUIVertex(v, index);
  292. }
  293. void VertexBuffer.SetColor(int index, uint color)
  294. {
  295. var v = UIVertex.simpleVert;
  296. m_Helper.PopulateUIVertex(ref v, index);
  297. v.color = (UIUtils.UInt32_RGBA_To_Color(color)) * m_BlendColor;
  298. m_Helper.SetUIVertex(v, index);
  299. }
  300. void VertexBuffer.SetTexCoords(int index, float u, float v)
  301. {
  302. var vtx = UIVertex.simpleVert;
  303. m_Helper.PopulateUIVertex(ref vtx, index);
  304. vtx.uv0 = (new Vector2(u, 1f - v));
  305. m_Helper.SetUIVertex(vtx, index);
  306. }
  307. void VertexBuffer.AddIndicesQuard(int a, int b, int c, int d)
  308. {
  309. m_Helper.AddTriangle(a, b, c);
  310. m_Helper.AddTriangle(c, d, a);
  311. }
  312. void VertexBuffer.SetIndices(int[] indices, VertexTopology topology)
  313. {
  314. throw new NotImplementedException();
  315. }
  316. void VertexBuffer.SetIndices(int index, int[] indices)
  317. {
  318. throw new NotImplementedException();
  319. }
  320. void VertexBuffer.Optimize()
  321. {
  322. }
  323. void VertexBuffer.Clear()
  324. {
  325. m_Helper.Clear();
  326. }
  327. #endregion
  328. //---------------------------------------------------------------------------------------
  329. #region Transform
  330. public void translate(float x, float y)
  331. {
  332. if (x != 0 || y != 0)
  333. {
  334. Matrix4x4 m = Matrix4x4.TRS(
  335. new Vector3(x, y, 0),
  336. Quaternion.identity,
  337. Vector3.one);
  338. cur_matrix = cur_matrix * m;
  339. }
  340. }
  341. public void rotate(float angle)
  342. {
  343. if (angle != 0)
  344. {
  345. Matrix4x4 m = Matrix4x4.TRS(
  346. Vector3.zero,
  347. Quaternion.Euler(0f, 0f, angle),
  348. Vector3.one);
  349. cur_matrix = cur_matrix * m;
  350. }
  351. }
  352. public void scale(float sx, float sy)
  353. {
  354. if (sx != 1 || sy != 1)
  355. {
  356. Matrix4x4 m = Matrix4x4.TRS(
  357. Vector3.zero,
  358. Quaternion.identity,
  359. new Vector3(sx, sy, 1.0f));
  360. cur_matrix = cur_matrix * m;
  361. }
  362. }
  363. public void pushTransform()
  364. {
  365. stack_matrix.Push(cur_matrix);
  366. }
  367. public void popTransform()
  368. {
  369. cur_matrix = stack_matrix.Pop();
  370. }
  371. #endregion
  372. //---------------------------------------------------------------------------------------
  373. }
  374. #endif
  375. }