/Engine/Graphics3D/YnGroup3D.cs

http://yna.codeplex.com · C# · 293 lines · 217 code · 50 blank · 26 comment · 22 complexity · 197d4e91f8077b3c790bcf68c4d2dd3a MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Collections;
  6. using Microsoft.Xna.Framework;
  7. using Microsoft.Xna.Framework.Graphics;
  8. using Yna.Engine.Graphics3D.Camera;
  9. using Yna.Engine.Graphics3D.Geometry;
  10. using Yna.Engine.Graphics3D.Lighting;
  11. namespace Yna.Engine.Graphics3D
  12. {
  13. // @Deprecated
  14. public class YnGroup3D : YnEntity3D
  15. {
  16. protected List<YnEntity3D> _members;
  17. protected List<YnEntity3D> _safeMembers;
  18. #region Properties
  19. /// <summary>
  20. /// Get the number of elements in the group
  21. /// </summary>
  22. public int Count
  23. {
  24. get { return _members.Count; }
  25. }
  26. /// <summary>
  27. /// Get or Set the camera used for this group. If set all objects are updated with this camera
  28. /// </summary>
  29. public new BaseCamera Camera
  30. {
  31. get { return _camera; }
  32. set
  33. {
  34. _camera = value;
  35. foreach (YnEntity3D sceneObject in _members)
  36. sceneObject.Camera = _camera;
  37. }
  38. }
  39. public new Matrix World
  40. {
  41. get
  42. {
  43. _world = Matrix.Identity;
  44. foreach (YnEntity3D members in _members)
  45. _world *= members.World;
  46. return _world;
  47. }
  48. set
  49. {
  50. foreach (YnEntity3D members in _members)
  51. members.World *= value;
  52. }
  53. }
  54. /// <summary>
  55. /// Get the YnObject3D on this scene
  56. /// </summary>
  57. public List<YnEntity3D> SceneObjects
  58. {
  59. get { return _members; }
  60. }
  61. public YnEntity3D this[int index]
  62. {
  63. get
  64. {
  65. if (index < 0 || index > _members.Count - 1)
  66. return null;
  67. else
  68. return _members[index];
  69. }
  70. set
  71. {
  72. if (index < 0 || index > _members.Count - 1)
  73. throw new IndexOutOfRangeException();
  74. else
  75. _members[index] = value;
  76. }
  77. }
  78. #endregion
  79. #region Constructors
  80. public YnGroup3D(BaseCamera camera, YnEntity3D parent)
  81. {
  82. _members = new List<YnEntity3D>();
  83. _safeMembers = new List<YnEntity3D>();
  84. _initialized = false;
  85. _camera = camera;
  86. _parent = parent;
  87. }
  88. public YnGroup3D(YnEntity3D parent)
  89. : this(new FixedCamera(), parent)
  90. {
  91. }
  92. #endregion
  93. #region Compute bounding box & bounding sphere
  94. /// <summary>
  95. /// Get the bounding box of the scene. All YnObject3D's BoundingBox are updated
  96. /// </summary>
  97. /// <returns>The bounding box of the scene</returns>
  98. public override void UpdateBoundingVolumes()
  99. {
  100. _boundingBox = new BoundingBox();
  101. if (_initialized)
  102. {
  103. if (_members.Count > 0)
  104. {
  105. foreach (YnEntity3D sceneObject in _members)
  106. {
  107. BoundingBox box = sceneObject.BoundingBox;
  108. _boundingBox.Min.X = box.Min.X < _boundingBox.Min.X ? box.Min.X : _boundingBox.Min.X;
  109. _boundingBox.Min.X = box.Min.Y < _boundingBox.Min.Y ? box.Min.Y : _boundingBox.Min.Y;
  110. _boundingBox.Min.X = box.Min.Z < _boundingBox.Min.Z ? box.Min.Z : _boundingBox.Min.Z;
  111. _boundingBox.Min.X = box.Min.X < _boundingBox.Min.X ? box.Min.X : _boundingBox.Min.X;
  112. _boundingBox.Min.X = box.Min.Y < _boundingBox.Min.Y ? box.Min.Y : _boundingBox.Min.Y;
  113. _boundingBox.Min.X = box.Min.Z < _boundingBox.Min.Z ? box.Min.Z : _boundingBox.Min.Z;
  114. }
  115. }
  116. }
  117. // Update sizes of the scene
  118. _width = _boundingBox.Max.X - _boundingBox.Min.X;
  119. _height = _boundingBox.Max.Y - _boundingBox.Min.Y;
  120. _depth = _boundingBox.Max.Z - _boundingBox.Min.Z;
  121. _boundingSphere.Center = new Vector3(X + Width / 2, Y + Height / 2, Z + Depth / 2);
  122. _boundingSphere.Radius = Math.Max(Math.Max(_width, _height), _depth) / 2;
  123. World = Matrix.Identity;
  124. foreach (YnEntity3D members in _members)
  125. World *= members.World;
  126. }
  127. #endregion
  128. public override void UpdateMatrices()
  129. {
  130. World = Matrix.Identity;
  131. foreach (YnEntity3D members in _members)
  132. World *= members.World;
  133. View = _camera.View;
  134. }
  135. public override void UpdateLighting(SceneLight light)
  136. {
  137. foreach (YnEntity3D entity3D in _members)
  138. entity3D.UpdateLighting(light);
  139. }
  140. #region GameState Pattern
  141. public override void LoadContent()
  142. {
  143. if (!_initialized)
  144. {
  145. if (_members.Count > 0)
  146. {
  147. foreach (YnEntity3D sceneObject in _members)
  148. {
  149. sceneObject.Camera = _camera;
  150. sceneObject.LoadContent();
  151. }
  152. }
  153. _initialized = true;
  154. }
  155. }
  156. public override void UnloadContent()
  157. {
  158. if (_initialized)
  159. {
  160. if (_members.Count > 0)
  161. {
  162. foreach (YnEntity3D sceneObject in _members)
  163. sceneObject.UnloadContent();
  164. }
  165. _initialized = false;
  166. }
  167. }
  168. public override void Update(GameTime gameTime)
  169. {
  170. if (Enabled)
  171. {
  172. int nbMembers = _members.Count;
  173. if (nbMembers > 0)
  174. {
  175. _safeMembers.Clear();
  176. _safeMembers.AddRange(_members);
  177. for (int i = 0; i < nbMembers; i++)
  178. {
  179. if (_safeMembers[i].Enabled)
  180. _safeMembers[i].Update(gameTime);
  181. }
  182. }
  183. }
  184. }
  185. public override void Draw(GraphicsDevice device)
  186. {
  187. if (Visible)
  188. {
  189. int nbMembers = _safeMembers.Count;
  190. if (nbMembers > 0)
  191. {
  192. for (int i = 0; i < nbMembers; i++)
  193. {
  194. if (_safeMembers[i].Visible)
  195. _safeMembers[i].Draw(device);
  196. }
  197. }
  198. }
  199. }
  200. #endregion
  201. #region Collection methods
  202. /// <summary>
  203. /// Add an object to the group, the camera used for this group will be used for this object
  204. /// </summary>
  205. /// <param name="sceneObject">An object3D</param>
  206. public void Add(YnEntity3D sceneObject)
  207. {
  208. if (sceneObject is YnScene3D1)
  209. throw new Exception("[YnGroup3D] You can't add a scene on a group, use an YnGroup3D instead");
  210. if (sceneObject == this)
  211. throw new Exception("[YnGroup3D] You can't add this group");
  212. if (_initialized)
  213. {
  214. sceneObject.Camera = _camera;
  215. sceneObject.LoadContent();
  216. }
  217. sceneObject.Parent = this;
  218. _members.Add(sceneObject);
  219. }
  220. /// <summary>
  221. /// Remove an object of the group
  222. /// </summary>
  223. /// <param name="sceneObject"></param>
  224. public void Remove(YnEntity3D sceneObject)
  225. {
  226. _members.Remove(sceneObject);
  227. }
  228. /// <summary>
  229. /// Clear the group
  230. /// </summary>
  231. public void Clear()
  232. {
  233. _members.Clear();
  234. _safeMembers.Clear();
  235. }
  236. public IEnumerator GetEnumerator()
  237. {
  238. foreach (YnBase3D member in _members)
  239. yield return member;
  240. }
  241. #endregion
  242. }
  243. }