Image.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using CommonLang.Concurrent;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace CommonUI.Display
  5. {
  6. // ------------------------------------------------------------------------------------------
  7. // -by zhangyifei
  8. // ------------------------------------------------------------------------------------------
  9. public abstract class Image : IDisposable
  10. {
  11. private static AtomicLong s_RefCount = new AtomicLong(0);
  12. private static AtomicLong s_AliveCount = new AtomicLong(0);
  13. public static long RefCount { get { return s_RefCount.Value; } }
  14. public static long AliveCount { get { return s_AliveCount.Value; } }
  15. private bool m_disposed = false;
  16. protected Image()
  17. {
  18. s_RefCount++;
  19. s_AliveCount++;
  20. }
  21. ~Image()
  22. {
  23. s_RefCount--;
  24. }
  25. public void Dispose()
  26. {
  27. if (m_disposed) { return; }
  28. Disposing();
  29. m_disposed = true;
  30. s_AliveCount--;
  31. }
  32. public virtual void ReleaseTexture() { }
  33. protected abstract void Disposing();
  34. public string name = "Image";
  35. public virtual int Width { get { return 0; } }
  36. public virtual int Height { get { return 0; } }
  37. public virtual float MaxU { get { return 0; } }
  38. public virtual float MaxV { get { return 0; } }
  39. /// <summary>
  40. /// 从原图片复制像素到当前图片
  41. /// </summary>
  42. /// <param name="srci"></param>
  43. /// <param name="sx"></param>
  44. /// <param name="sy"></param>
  45. /// <param name="sw"></param>
  46. /// <param name="sh"></param>
  47. /// <param name="dx"></param>
  48. /// <param name="dy"></param>
  49. public abstract void CopyPixels(Image srci, int sx, int sy, int sw, int sh, int dx, int dy);
  50. /// <summary>
  51. /// 复制完像素后刷新缓冲区
  52. /// </summary>
  53. public abstract void Flush();
  54. // #region Count
  55. // private static List<Image> mReferenceList = new List<Image>();
  56. // public static string DumpImageList()
  57. // {
  58. // string sout = string.Empty;
  59. //
  60. // for(int i = mReferenceList.Count - 1; i >= 0; --i)
  61. // {
  62. // sout += ((Image)mReferenceList[i]).name;
  63. // sout += "\r\n";
  64. // }
  65. //
  66. // return sout;
  67. // }
  68. // #endregion
  69. }
  70. public struct TImageRegion
  71. {
  72. public Image image;
  73. public float sx, sy, sw, sh;
  74. }
  75. }