NGUI绘制饼状图

作者:追风剑情 发布于:2016-1-18 19:22 分类:NGUI

111111.png


22222.png

  1. using UnityEngine;
  2. using System.Collections;
  3. /// <summary>
  4. /// 饼状图
  5. /// </summary>
  6. public class PieChart : MonoBehaviour {
  7.  
  8. public UITexture texture;
  9. public int radius = 10;
  10. // Use this for initialization
  11. void Start () {
  12. if (texture == null)
  13. {
  14. texture = GetComponent<UITexture>();
  15. if (texture == null)
  16. {
  17. Debug.LogWarning("PieChart UITexture=null");
  18. return;
  19. }
  20. }
  21.  
  22. texture.uvRect = new Rect(0f, 0f, 1f, 1f);
  23.  
  24. //---测试数据
  25. int[] d = new int[] { 120, 120, 120, 240 };//比例 1:1:1:2
  26. Color[] colors = new Color[] {
  27. new Color(1f, 0f, 0f), //红
  28. new Color(0f, 1f, 0f), //绿
  29. new Color(0f, 0f, 1f), //蓝
  30. new Color(1f, 1f, 0f) //黄
  31. };
  32.  
  33. SetPieChart(d, colors);
  34. //---end
  35. }
  36.  
  37. public void SetPieChart(int[] d, Color[] colors)
  38. {
  39. //数据转角度值: 按比例放缩数据值,使d[]元素之和不超过360
  40. int total=0;
  41. for (int i = 0; i < d.Length; i++)
  42. total += d[i];
  43. for (int i = 0; i < d.Length; i++)
  44. d[i] = d[i] * 360 / total;
  45.  
  46. total=0;
  47. for (int i = 0; i < d.Length; i++)
  48. {
  49. int tmp = d[i];
  50. d[i] += total;
  51. total += tmp;
  52. }
  53.  
  54. //进行降序排序
  55. if (d.Length >= 2) {
  56. for (int i = 0; i < d.Length; i++) {
  57. for (int j = 1; j < d.Length; j++) {
  58. if (d[j - 1] > d[j]) {
  59. int tmp = d[j];
  60. d[j] = d[j - 1];
  61. d[j - 1] = tmp;
  62.  
  63. Color c = colors[j];
  64. colors[j] = colors[j - 1];
  65. colors[j - 1] = c;
  66. }
  67. }
  68. }
  69. }
  70.  
  71. texture.mainTexture = GeneratePieChart(d, colors);
  72. }
  73.  
  74. // 创建饼状图Texture2D
  75. private Texture2D GeneratePieChart(int[] drawAngles, Color[] drawColors)
  76. {
  77. int widthHeight = radius * 2;
  78. Texture2D proceduralTexture = new Texture2D(widthHeight, widthHeight);
  79. //贴图中心点坐标
  80. Vector2 centerPosition = new Vector2(radius, radius);
  81. Vector2 currentPosition = Vector2.zero;
  82. Vector2 startAngle = new Vector2(0.0f, 1.0f);
  83. Vector2 currentAngle;
  84. Color transparentColor = new Color(0f, 0f, 0f, 0f);
  85.  
  86. for (int x = 0; x < widthHeight; x++) {
  87. for (int y = 0; y < widthHeight; y++) {
  88. currentPosition.Set(x, y);
  89. currentAngle = currentPosition - centerPosition;
  90. currentAngle.Normalize();
  91. //计算当前坐标与中心点坐标距离
  92. float pixelDistance = Vector2.Distance(currentPosition, centerPosition);
  93. if (pixelDistance <= radius) {
  94. float angle = Vector2.Angle(startAngle, currentAngle);//计算夹角
  95. if (x < radius) {//当前坐标落在第三、四象限
  96. angle = 360 - angle;
  97. }
  98.  
  99. //根据坐标所在角度区间绘制不同颜色的像素
  100. for (int i = 0; i < drawAngles.Length; i++) {
  101. if (angle <= drawAngles[i]) {
  102. Color pixelColor = drawColors[i];
  103. proceduralTexture.SetPixel(x, y, pixelColor);
  104. break;
  105. }
  106. }
  107. } else {
  108. //非饼状区域设为透明像素
  109. proceduralTexture.SetPixel(x, y, transparentColor);
  110. }
  111. }
  112. }
  113. //应用新像素值
  114. proceduralTexture.Apply();
  115. return proceduralTexture;
  116. }
  117. }

运行效果

333333.png

标签: NGUI

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号