GraphicsDriver.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. using System;
  2. using System.IO;
  3. using CommonUI.Gemo;
  4. namespace CommonUI.Display
  5. {
  6. // ------------------------------------------------------------------------------------------
  7. // -by zhangyifei
  8. // ------------------------------------------------------------------------------------------
  9. public abstract class Driver
  10. {
  11. //------------------------------------------------------------------
  12. private static Driver s_instance = null;
  13. public static Driver Instance { get { return s_instance; } }
  14. protected Driver() { s_instance = this; }
  15. //------------------------------------------------------------------
  16. #region _Graphics_
  17. abstract public Image createImage(String resource);
  18. abstract public void ReloadImage(Image img);
  19. abstract public Image createImage(Stream stream);
  20. abstract public Image createImage(byte[] imageData, int imageOffset, int imageLength);
  21. abstract public Image createRGBImage(uint[] rgba, int width, int height);
  22. virtual public Image createRGBImage(int width, int height)
  23. {
  24. uint[] rgba = new uint[width * height];
  25. return this.createRGBImage(rgba, width, height);
  26. }
  27. abstract public TextLayer createTextLayer(string text, float size, FontStyle style);
  28. /// <summary>
  29. /// 测试文本是否换行
  30. /// </summary>
  31. /// <param name="text"></param>
  32. /// <param name="size"></param>
  33. /// <param name="style"></param>
  34. /// <param name="borderTime"></param>
  35. /// <param name="testWidth">测试宽度</param>
  36. /// <param name="realWidth">[out]实际宽度</param>
  37. /// <param name="realHeight">[out]实际高度</param>
  38. /// <returns></returns>
  39. abstract public bool testTextLineBreak(string text, float size, FontStyle style,
  40. int borderTime,
  41. float testWidth,
  42. out float realWidth,
  43. out float realHeight);
  44. /// <summary>
  45. /// 创建定点缓冲区
  46. /// </summary>
  47. /// <param name="capacity"></param>
  48. /// <returns></returns>
  49. abstract public VertexBuffer createVertexBuffer(int capacity);
  50. abstract public void Assert(bool cond, string msg);
  51. /// <summary>
  52. /// 检测是否为表情符号
  53. /// </summary>
  54. /// <param name="text"></param>
  55. /// <param name="i"></param>
  56. /// <param name="len">表情符号所占长度</param>
  57. /// <returns></returns>
  58. public virtual bool IsEmoji(string text, int i, out int len)
  59. {
  60. if (i + 1 < text.Length)
  61. {
  62. int c0 = text[i];
  63. int c1 = text[i + 1];
  64. if (c0 >= 0xD800 && c0 <= 0xDBFF)
  65. {
  66. len = 2;
  67. return true;
  68. }
  69. }
  70. len = 1;
  71. return false;
  72. }
  73. #endregion
  74. //------------------------------------------------------------------
  75. }
  76. }