/Tags/0.1.3/BlackStar/Theme.cs

# · C# · 262 lines · 207 code · 46 blank · 9 comment · 8 complexity · e5df34e6c5ac85f5ea96dd16c7fc4f7a MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Microsoft.Xna.Framework.Graphics;
  6. using Microsoft.Xna.Framework;
  7. using Microsoft.Xna.Framework.Content;
  8. namespace BlackStar
  9. {
  10. public class ThemePartContentReader : ContentTypeReader<ThemePart>
  11. {
  12. protected override ThemePart Read(ContentReader input, ThemePart existingInstance)
  13. {
  14. ThemePart part = new ThemePart();
  15. part.ReadContent(input);
  16. return part;
  17. }
  18. }
  19. public class StretchThemePartContentReader : ContentTypeReader<StretchThemePart>
  20. {
  21. protected override StretchThemePart Read(ContentReader input, StretchThemePart existingInstance)
  22. {
  23. StretchThemePart part = new StretchThemePart();
  24. part.ReadContent(input);
  25. return part;
  26. }
  27. }
  28. public class ThemePart
  29. {
  30. internal GUI myGui;
  31. public string AssetName;
  32. public Point MinimumSize = Point.Zero;
  33. [ContentSerializerIgnore]
  34. protected Texture2D texture;
  35. public Dictionary<string, Rectangle> Rectangles = new Dictionary<string, Rectangle>();
  36. public virtual void Draw(string style, Rectangle dest, Color color)
  37. {
  38. if (Rectangles.ContainsKey(style))
  39. { myGui.batch.Draw(texture, dest, Rectangles[style], color); }
  40. else
  41. { myGui.batch.Draw(texture, dest, null, color); }
  42. }
  43. internal virtual void Load(ContentReader input)
  44. {
  45. string assetDir = input.AssetName.Substring(0, input.AssetName.LastIndexOf("\\") + 1);
  46. texture = input.ContentManager.Load<Texture2D>(assetDir + this.AssetName);
  47. }
  48. protected internal virtual void ReadContent(ContentReader input)
  49. {
  50. AssetName = input.ReadString();
  51. Rectangles = input.ReadObject<Dictionary<string, Rectangle>>();
  52. MinimumSize = input.ReadObject<Point>();
  53. this.Load(input);
  54. }
  55. [ContentSerializerIgnore]
  56. public GUI GUI
  57. {
  58. get { return myGui; }
  59. set { myGui = value; }
  60. }
  61. }
  62. public class StretchThemePart : ThemePart
  63. {
  64. public Dictionary<string, List<string>> PartLists = new Dictionary<string, List<string>>();
  65. public override void Draw(string style, Rectangle dest, Color color)
  66. {
  67. Rectangle[] destRects = new Rectangle[9];
  68. List<string> parts;
  69. if (PartLists.ContainsKey(style))
  70. { parts = PartLists[style]; }
  71. else
  72. { parts = PartLists["Default"]; }
  73. int X1, X2, X3, Y1, Y2, Y3;
  74. int W1, W2, W3, H1, H2, H3;
  75. W1 = Rectangles[parts[0]].Width;
  76. W3 = Rectangles[parts[2]].Width;
  77. W2 = dest.Width - (W1 + W3);
  78. H1 = Rectangles[parts[0]].Height;
  79. H3 = Rectangles[parts[6]].Height;
  80. H2 = dest.Height - (H1 + H3);
  81. X1 = dest.X;
  82. X2 = X1 + W1;
  83. X3 = X2 + W2;
  84. Y1 = dest.Y;
  85. Y2 = Y1 + H1;
  86. Y3 = Y2 + H2;
  87. destRects[0] = new Rectangle(X1, Y1, W1, H1);
  88. destRects[1] = new Rectangle(X2, Y1, W2, H1);
  89. destRects[2] = new Rectangle(X3, Y1, W3, H1);
  90. destRects[3] = new Rectangle(X1, Y2, W1, H2);
  91. destRects[4] = new Rectangle(X2, Y2, W2, H2);
  92. destRects[5] = new Rectangle(X3, Y2, W3, H2);
  93. destRects[6] = new Rectangle(X1, Y3, W1, H3);
  94. destRects[7] = new Rectangle(X2, Y3, W2, H3);
  95. destRects[8] = new Rectangle(X3, Y3, W3, H3);
  96. for (int i = 0; i < 9; i++)
  97. {
  98. myGui.batch.Draw(this.texture, destRects[i], Rectangles[parts[i]], color);
  99. }
  100. }
  101. protected internal override void ReadContent(ContentReader input)
  102. {
  103. base.ReadContent(input);
  104. PartLists = input.ReadObject<Dictionary<string, List<string>>>();
  105. // check that their is a default part list.
  106. if (!PartLists.ContainsKey("Default"))
  107. { throw new ApplicationException("A Default PartList must be specified."); }
  108. // check that the part lists do not contain refrences to
  109. // rectangles that do not exist.
  110. CheckPartLists();
  111. }
  112. private void CheckPartLists()
  113. {
  114. foreach (KeyValuePair<string, List<string>> style in this.PartLists)
  115. {
  116. if (style.Value.Count != 9)
  117. {
  118. throw new ApplicationException("The style '" + style.Key +
  119. "' does not have 9 parts.");
  120. }
  121. foreach (string key in style.Value)
  122. {
  123. if (!Rectangles.ContainsKey(key))
  124. {
  125. throw new ApplicationException("The style '" + style.Key +
  126. "' uses a rectangle with the key '" + key +
  127. "' which is undefined.");
  128. }
  129. }
  130. }
  131. }
  132. }
  133. public class ThemeContentReader : ContentTypeReader<Theme>
  134. {
  135. protected override Theme Read(ContentReader input, Theme existingInstance)
  136. {
  137. Theme theme = new Theme();
  138. theme.ReadContent(input);
  139. return theme;
  140. }
  141. }
  142. public class Theme
  143. {
  144. internal GUI myGui;
  145. public CursorList Cursors = new CursorList();
  146. public FontList Fonts = new FontList();
  147. public StretchThemePart Form;
  148. public StretchThemePart Button;
  149. public StretchThemePart Textbox;
  150. public ThemePart Toggle;
  151. public ThemePart Scrollbar;
  152. [ContentSerializerIgnore]
  153. public Texture2D pixel;
  154. protected internal void ReadContent(ContentReader input)
  155. {
  156. Cursors = input.ReadObject<CursorList>();
  157. if (!Cursors.ContainsKey("Default")) throw new ApplicationException("A cursor named 'Default' must be defined.");
  158. Fonts = input.ReadObject<FontList>();
  159. Form = input.ReadObject<StretchThemePart>();
  160. Button = input.ReadObject<StretchThemePart>();
  161. Textbox = input.ReadObject<StretchThemePart>();
  162. Toggle = input.ReadObject<ThemePart>();
  163. Scrollbar = input.ReadObject<ThemePart>();
  164. }
  165. public Theme()
  166. {
  167. }
  168. public virtual void LoadContent()
  169. {
  170. // we add a event handler for the graphics device reset, because
  171. // the pixel texture will get lost, and we need to recreate it whenever a
  172. // reset occurs.
  173. myGui.Game.GraphicsDevice.DeviceReset += new EventHandler(GraphicsDevice_DeviceReset);
  174. pixel = CreatePixelTexture(GUI.GraphicsDevice, 1, 1, Color.White);
  175. }
  176. void GraphicsDevice_DeviceReset(object sender, EventArgs e)
  177. {
  178. pixel = CreatePixelTexture(GUI.GraphicsDevice, 1, 1, Color.White);
  179. }
  180. protected Texture2D CreatePixelTexture(GraphicsDevice device, int width, int height, Color color)
  181. {
  182. RenderTarget2D LevelRenderTarget = new RenderTarget2D(device, width, height, 1,
  183. device.PresentationParameters.BackBufferFormat, device.PresentationParameters.MultiSampleType,
  184. device.PresentationParameters.MultiSampleQuality, RenderTargetUsage.PreserveContents);
  185. DepthStencilBuffer stencilBuffer = new DepthStencilBuffer(device, width, height,
  186. device.DepthStencilBuffer.Format, device.PresentationParameters.MultiSampleType,
  187. device.PresentationParameters.MultiSampleQuality);
  188. device.SetRenderTarget(0, LevelRenderTarget);
  189. // Cache the current depth buffer
  190. DepthStencilBuffer old = device.DepthStencilBuffer;
  191. // Set our custom depth buffer
  192. device.DepthStencilBuffer = stencilBuffer;
  193. device.Clear(color);
  194. device.SetRenderTarget(0, null);
  195. // Reset the depth buffer
  196. device.DepthStencilBuffer = old;
  197. return LevelRenderTarget.GetTexture();
  198. }
  199. [ContentSerializerIgnore]
  200. public GUI GUI
  201. {
  202. get { return myGui; }
  203. set
  204. {
  205. myGui = value;
  206. Fonts.GUI = value;
  207. Form.GUI = value;
  208. Button.GUI = value;
  209. Textbox.GUI = value;
  210. Toggle.GUI = value;
  211. Scrollbar.GUI = value;
  212. }
  213. }
  214. public virtual void Update(GameTime gameTime) { }
  215. }
  216. }