RenderHelper.cs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. using LYFZ.OtherExpansion.SkinClass;
  2. using System;
  3. using System.Drawing;
  4. using System.Drawing.Drawing2D;
  5. using System.Drawing.Imaging;
  6. using System.Windows.Forms;
  7. namespace LYFZ.OtherExpansion.SkinControl
  8. {
  9. internal class RenderHelper
  10. {
  11. internal static void RenderBackgroundInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, RoundStyle style, bool drawBorder, bool drawGlass, LinearGradientMode mode)
  12. {
  13. RenderHelper.RenderBackgroundInternal(g, rect, baseColor, borderColor, innerBorderColor, style, 8, drawBorder, drawGlass, mode);
  14. }
  15. internal static void RenderBackgroundInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, RoundStyle style, int roundWidth, bool drawBorder, bool drawGlass, LinearGradientMode mode)
  16. {
  17. RenderHelper.RenderBackgroundInternal(g, rect, baseColor, borderColor, innerBorderColor, style, 8, 0.45f, drawBorder, drawGlass, mode);
  18. }
  19. internal static void RenderBackgroundInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, RoundStyle style, int roundWidth, float basePosition, bool drawBorder, bool drawGlass, LinearGradientMode mode)
  20. {
  21. if (drawBorder)
  22. {
  23. rect.Width--;
  24. rect.Height--;
  25. }
  26. if (rect.Width == 0 || rect.Height == 0)
  27. {
  28. return;
  29. }
  30. using (LinearGradientBrush brush = new LinearGradientBrush(rect, Color.Transparent, Color.Transparent, mode))
  31. {
  32. Color[] colors = new Color[]
  33. {
  34. RenderHelper.GetColor(baseColor, 0, 35, 24, 9),
  35. RenderHelper.GetColor(baseColor, 0, 13, 8, 3),
  36. baseColor,
  37. RenderHelper.GetColor(baseColor, 0, 35, 24, 9)
  38. };
  39. brush.InterpolationColors = new ColorBlend
  40. {
  41. Positions = new float[]
  42. {
  43. 0f,
  44. basePosition,
  45. basePosition + 0.05f,
  46. 1f
  47. },
  48. Colors = colors
  49. };
  50. if (style != RoundStyle.None)
  51. {
  52. using (GraphicsPath path = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
  53. {
  54. g.FillPath(brush, path);
  55. }
  56. if (drawGlass)
  57. {
  58. if (baseColor.A > 80)
  59. {
  60. Rectangle rectTop = rect;
  61. if (mode == LinearGradientMode.Vertical)
  62. {
  63. rectTop.Height = (int)((float)rectTop.Height * basePosition);
  64. }
  65. else
  66. {
  67. rectTop.Width = (int)((float)rect.Width * basePosition);
  68. }
  69. using (GraphicsPath pathTop = GraphicsPathHelper.CreatePath(rectTop, roundWidth, RoundStyle.Top, false))
  70. {
  71. using (SolidBrush brushAlpha = new SolidBrush(Color.FromArgb(128, 255, 255, 255)))
  72. {
  73. g.FillPath(brushAlpha, pathTop);
  74. }
  75. }
  76. }
  77. RectangleF glassRect = rect;
  78. if (mode == LinearGradientMode.Vertical)
  79. {
  80. glassRect.Y = (float)rect.Y + (float)rect.Height * basePosition;
  81. glassRect.Height = ((float)rect.Height - (float)rect.Height * basePosition) * 2f;
  82. }
  83. else
  84. {
  85. glassRect.X = (float)rect.X + (float)rect.Width * basePosition;
  86. glassRect.Width = ((float)rect.Width - (float)rect.Width * basePosition) * 2f;
  87. }
  88. ControlPaintEx.DrawGlass(g, glassRect, 170, 0);
  89. }
  90. if (!drawBorder)
  91. {
  92. goto IL_425;
  93. }
  94. using (GraphicsPath path2 = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
  95. {
  96. using (Pen pen = new Pen(borderColor))
  97. {
  98. g.DrawPath(pen, path2);
  99. }
  100. }
  101. rect.Inflate(-1, -1);
  102. using (GraphicsPath path3 = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
  103. {
  104. using (Pen pen2 = new Pen(innerBorderColor))
  105. {
  106. g.DrawPath(pen2, path3);
  107. }
  108. goto IL_425;
  109. }
  110. }
  111. g.FillRectangle(brush, rect);
  112. if (drawGlass)
  113. {
  114. if (baseColor.A > 80)
  115. {
  116. Rectangle rectTop2 = rect;
  117. if (mode == LinearGradientMode.Vertical)
  118. {
  119. rectTop2.Height = (int)((float)rectTop2.Height * basePosition);
  120. }
  121. else
  122. {
  123. rectTop2.Width = (int)((float)rect.Width * basePosition);
  124. }
  125. using (SolidBrush brushAlpha2 = new SolidBrush(Color.FromArgb(128, 255, 255, 255)))
  126. {
  127. g.FillRectangle(brushAlpha2, rectTop2);
  128. }
  129. }
  130. RectangleF glassRect2 = rect;
  131. if (mode == LinearGradientMode.Vertical)
  132. {
  133. glassRect2.Y = (float)rect.Y + (float)rect.Height * basePosition;
  134. glassRect2.Height = ((float)rect.Height - (float)rect.Height * basePosition) * 2f;
  135. }
  136. else
  137. {
  138. glassRect2.X = (float)rect.X + (float)rect.Width * basePosition;
  139. glassRect2.Width = ((float)rect.Width - (float)rect.Width * basePosition) * 2f;
  140. }
  141. ControlPaintEx.DrawGlass(g, glassRect2, 200, 0);
  142. }
  143. if (drawBorder)
  144. {
  145. using (Pen pen3 = new Pen(borderColor))
  146. {
  147. g.DrawRectangle(pen3, rect);
  148. }
  149. rect.Inflate(-1, -1);
  150. using (Pen pen4 = new Pen(innerBorderColor))
  151. {
  152. g.DrawRectangle(pen4, rect);
  153. }
  154. }
  155. IL_425:;
  156. }
  157. }
  158. internal static void RenderArrowInternal(Graphics g, Rectangle dropDownRect, ArrowDirection direction, Brush brush)
  159. {
  160. Point point = new Point(dropDownRect.Left + dropDownRect.Width / 2, dropDownRect.Top + dropDownRect.Height / 2);
  161. Point[] points;
  162. switch (direction)
  163. {
  164. case ArrowDirection.Left:
  165. points = new Point[]
  166. {
  167. new Point(point.X + 1, point.Y - 4),
  168. new Point(point.X + 1, point.Y + 4),
  169. new Point(point.X - 2, point.Y)
  170. };
  171. break;
  172. case ArrowDirection.Up:
  173. points = new Point[]
  174. {
  175. new Point(point.X - 4, point.Y + 1),
  176. new Point(point.X + 4, point.Y + 1),
  177. new Point(point.X, point.Y - 2)
  178. };
  179. break;
  180. default:
  181. if (direction != ArrowDirection.Right)
  182. {
  183. points = new Point[]
  184. {
  185. new Point(point.X - 4, point.Y - 1),
  186. new Point(point.X + 4, point.Y - 1),
  187. new Point(point.X, point.Y + 2)
  188. };
  189. }
  190. else
  191. {
  192. points = new Point[]
  193. {
  194. new Point(point.X - 2, point.Y - 4),
  195. new Point(point.X - 2, point.Y + 4),
  196. new Point(point.X + 1, point.Y)
  197. };
  198. }
  199. break;
  200. }
  201. g.FillPolygon(brush, points);
  202. }
  203. internal static void RenderAlphaImage(Graphics g, Image image, Rectangle imageRect, float alpha)
  204. {
  205. using (ImageAttributes imageAttributes = new ImageAttributes())
  206. {
  207. ColorMap[] remapTable = new ColorMap[]
  208. {
  209. new ColorMap
  210. {
  211. OldColor = Color.FromArgb(255, 0, 255, 0),
  212. NewColor = Color.FromArgb(0, 0, 0, 0)
  213. }
  214. };
  215. imageAttributes.SetRemapTable(remapTable, ColorAdjustType.Bitmap);
  216. float[][] array = new float[5][];
  217. float[][] arg_68_0 = array;
  218. int arg_68_1 = 0;
  219. float[] array2 = new float[5];
  220. array2[0] = 1f;
  221. arg_68_0[arg_68_1] = array2;
  222. float[][] arg_7F_0 = array;
  223. int arg_7F_1 = 1;
  224. float[] array3 = new float[5];
  225. array3[1] = 1f;
  226. arg_7F_0[arg_7F_1] = array3;
  227. float[][] arg_96_0 = array;
  228. int arg_96_1 = 2;
  229. float[] array4 = new float[5];
  230. array4[2] = 1f;
  231. arg_96_0[arg_96_1] = array4;
  232. float[][] arg_A9_0 = array;
  233. int arg_A9_1 = 3;
  234. float[] array5 = new float[5];
  235. array5[3] = alpha;
  236. arg_A9_0[arg_A9_1] = array5;
  237. array[4] = new float[]
  238. {
  239. 0f,
  240. 0f,
  241. 0f,
  242. 0f,
  243. 1f
  244. };
  245. float[][] colorMatrixElements = array;
  246. ColorMatrix wmColorMatrix = new ColorMatrix(colorMatrixElements);
  247. imageAttributes.SetColorMatrix(wmColorMatrix, ColorMatrixFlag.Default, ColorAdjustType.Bitmap);
  248. g.DrawImage(image, imageRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel, imageAttributes);
  249. }
  250. }
  251. internal static Color GetColor(Color colorBase, int a, int r, int g, int b)
  252. {
  253. int a2 = (int)colorBase.A;
  254. int r2 = (int)colorBase.R;
  255. int g2 = (int)colorBase.G;
  256. int b2 = (int)colorBase.B;
  257. if (a + a2 > 255)
  258. {
  259. a = 255;
  260. }
  261. else
  262. {
  263. a = Math.Max(0, a + a2);
  264. }
  265. if (r + r2 > 255)
  266. {
  267. r = 255;
  268. }
  269. else
  270. {
  271. r = Math.Max(0, r + r2);
  272. }
  273. if (g + g2 > 255)
  274. {
  275. g = 255;
  276. }
  277. else
  278. {
  279. g = Math.Max(0, g + g2);
  280. }
  281. if (b + b2 > 255)
  282. {
  283. b = 255;
  284. }
  285. else
  286. {
  287. b = Math.Max(0, b + b2);
  288. }
  289. return Color.FromArgb(a, r, g, b);
  290. }
  291. }
  292. }