rhythmbullet/References/RecrownedAthenaeum.xml

2049 lines
114 KiB
XML
Raw Normal View History

2019-01-15 23:59:19 +00:00
<?xml version="1.0"?>
<doc>
<assembly>
<name>RecrownedAthenaeum</name>
</assembly>
<members>
<member name="T:RecrownedAthenaeum.Render.BasicCamera">
<summary>
A generic camera. Functions in 3D.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.BasicCamera.worldScale">
<summary>
The scale for the world.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.BasicCamera.position">
<summary>
Current position in the world.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.BasicCamera.lookAt">
<summary>
The place the 3D camera is looking at.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.BasicCamera.upDirection">
<summary>
The direction up is for the camera.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.BasicCamera.worldMatrix">
<summary>
The transform matrix representing the world (rotation and translations of the original world).
</summary>
</member>
<member name="P:RecrownedAthenaeum.Render.BasicCamera.ViewMatrix">
<summary>
The view matrix that describes where the camera looks.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.BasicCamera.projectionMatrix">
<summary>
The projection matrix.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.BasicCamera.basicEffect">
<summary>
A basic effect that will be updated with the correct matrice information everytime <see cref="M:RecrownedAthenaeum.Render.BasicCamera.Apply"/> is called. Can be null and thus will not be used.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.BasicCamera.#ctor(Microsoft.Xna.Framework.Graphics.BasicEffect)">
<summary>
Constructs 3D camera with an orthographic projection matrix with dimensions of graphics devices viewport. All changes to matrices should have apply called after changes.
</summary>
<param name="basicEffect">A basic effect that will be updated with the correct matrice information everytime <see cref="M:RecrownedAthenaeum.Render.BasicCamera.Apply"/> is called. Can be null and thus will not be used.</param>
</member>
<member name="M:RecrownedAthenaeum.Render.BasicCamera.Apply">
<summary>
Applies the changes to the fields and properties of the camera.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.BasicCamera.MoveCamera(Microsoft.Xna.Framework.Vector3)">
<summary>
Moves camera by the given amount.
</summary>
<param name="move">A <see cref="T:Microsoft.Xna.Framework.Vector3"/> that contains how much in each direction to move.</param>
</member>
<member name="T:RecrownedAthenaeum.Render.BasicScissor">
<summary>
A simple utility object that will start and end a scissor setup given a <see cref="T:RecrownedAthenaeum.Render.ConsistentSpriteBatch"/> to work with.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.BasicScissor.#ctor">
<summary>
Initializes the basic scissor.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.BasicScissor.Begin(Microsoft.Xna.Framework.Rectangle,RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
<summary>
Begins the <see cref="T:RecrownedAthenaeum.Render.ConsistentSpriteBatch"/> with scissoring in mind.
</summary>
<param name="scissorRectangle">The rectangle to use to outline the scissor.</param>
<param name="consistentSpriteBatch">The consistent sprite batch to use for this process.</param>
</member>
<member name="M:RecrownedAthenaeum.Render.BasicScissor.End">
<summary>
Ends the scissor state of the spritebatch.
</summary>
</member>
<member name="T:RecrownedAthenaeum.Render.ConsistentSpriteBatch">
<summary>
A <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/> that keeps it's settings through begin and end unless manually changed either by the <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> or through changing the fields. Note that changing the fields while the batch has begun will not take effect until the next time the batch is started.
Casting this as a <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/> will not persist the configuration and will call the normal <see cref="M:Microsoft.Xna.Framework.Graphics.SpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/>.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.ConsistentSpriteBatch.blendState">
<summary>
How to blend the colors. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set before or during <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
Changes will only take effect on <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.ConsistentSpriteBatch.samplerState">
<summary>
The state of sampler to use for the spritebatch. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set before or during <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
Changes will only take effect on <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.ConsistentSpriteBatch.depthStencilState">
<summary>
The state of the depth-stencil buffer. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s defaultdefault if not set before or during <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
Changes will only take effect on <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.ConsistentSpriteBatch.rasterizerState">
<summary>
The state of rasterizer to use. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set before or during <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
Changes will only take effect on <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.ConsistentSpriteBatch.effect">
<summary>
An effect to apply to the batch. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set before or during <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
Changes will only take effect on <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.ConsistentSpriteBatch.transformMatrix">
<summary>
A matrix to be applied to transform the sprites geometry. An identity matrix is used if not provided before or during <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
Changes will only take effect on <see cref="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})"/> call.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice)">
<summary>
Creates a consistent sprite batch with default values.
</summary>
<param name="graphicsDevice">The graphics device to use to create a <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>.</param>
</member>
<member name="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.Begin(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})">
<summary>
Begins the consistent sprite batch. The configuration passed to this function is saved for later begin calls.
</summary>
<param name="sortMode">Defines the spritebatch's method of sorting the items in each batch. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default.</param>
<param name="blendState">How to blend the colors. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="samplerState">The state of sampler to use for the spritebatch. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="depthStencilState">What type of rasterization to use. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="rasterizerState">What type of rasterization to use. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="effect">An effect to apply to the batch. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="transformMatrix">A matrix to be applied to transform the sprites geometry. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
</member>
<member name="M:RecrownedAthenaeum.Render.ConsistentSpriteBatch.BeginWithoutSaving(Microsoft.Xna.Framework.Graphics.SpriteSortMode,Microsoft.Xna.Framework.Graphics.BlendState,Microsoft.Xna.Framework.Graphics.SamplerState,Microsoft.Xna.Framework.Graphics.DepthStencilState,Microsoft.Xna.Framework.Graphics.RasterizerState,Microsoft.Xna.Framework.Graphics.Effect,System.Nullable{Microsoft.Xna.Framework.Matrix})">
<summary>
Begins the consistent sprite batch without saving the configuration. Useful for one time changes to one portion of the configuration.
</summary>
<param name="sortMode">Defines the spritebatch's method of sorting the items in each batch. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default.</param>
<param name="blendState">How to blend the colors. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="samplerState">The state of sampler to use for the spritebatch. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="depthStencilState">What type of rasterization to use. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="rasterizerState">What type of rasterization to use. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="effect">An effect to apply to the batch. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
<param name="transformMatrix">A matrix to be applied to transform the sprites geometry. Uses <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>'s default if not set and field is also not set.</param>
</member>
<member name="T:RecrownedAthenaeum.Render.Camera2D">
<summary>
A virtual 2D camera that wraps the normal <see cref="T:RecrownedAthenaeum.Render.BasicCamera"/>. Default projection is orthographic.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.Camera2D.viewWidth">
<summary>
The width of the view of the camera.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.Camera2D.viewHeight">
2019-01-15 23:59:19 +00:00
<summary>
The height of the view of the camera.
2019-01-15 23:59:19 +00:00
</summary>
</member>
<member name="P:RecrownedAthenaeum.Render.Camera2D.Position">
2019-01-15 23:59:19 +00:00
<summary>
The 2D position.
2019-01-15 23:59:19 +00:00
</summary>
</member>
<member name="P:RecrownedAthenaeum.Render.Camera2D.ConrnerPosition">
2019-02-06 18:47:44 +00:00
<summary>
Places camera in the center given the corner position.
2019-02-06 18:47:44 +00:00
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.Camera2D.#ctor(System.Int32,System.Int32,Microsoft.Xna.Framework.Graphics.BasicEffect)">
2019-01-15 23:59:19 +00:00
<summary>
A 2D camera from the generic <see cref="T:RecrownedAthenaeum.Render.BasicCamera"/>.
2019-01-15 23:59:19 +00:00
</summary>
<param name="height">Width of camera view.</param>
<param name="width">Height of camera view.</param>
<param name="basicEffect">A basic effect that will be updated with the correct matrice information everytime <see cref="M:RecrownedAthenaeum.Render.Camera2D.Apply"/> is called. Can be null and thus will not be used.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.Render.Camera2D.Apply">
2019-02-06 18:47:44 +00:00
<summary>
Applies for 2D.
Sets where the camera is looking for the view matrix to the position of the camera.
2019-02-06 18:47:44 +00:00
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.Camera2D.LinearInterpolationToPosition(System.Single,Microsoft.Xna.Framework.Vector2,System.Single)">
2019-02-06 18:47:44 +00:00
<summary>
Lerps to the given position.
2019-02-06 18:47:44 +00:00
</summary>
<param name="alpha">The multiplier for difference in distance.</param>
<param name="targetPosition">The target position to lerp to.</param>
<param name="delta">Time between this frame and the previous frame.</param>
2019-02-06 18:47:44 +00:00
</member>
<member name="M:RecrownedAthenaeum.Render.Camera2D.MoveCamera(Microsoft.Xna.Framework.Vector2)">
2019-02-06 18:47:44 +00:00
<summary>
Moves the camera.
Apply needs to be called.
2019-02-06 18:47:44 +00:00
</summary>
<param name="move">Magnitude of how much to move per axis.</param>
2019-02-06 18:47:44 +00:00
</member>
<member name="T:RecrownedAthenaeum.Render.RectangleRenderer">
2019-02-06 18:47:44 +00:00
<summary>
Renders rectangles using the <see cref="T:RecrownedAthenaeum.Render.PrimitiveBatch"/>.
2019-02-06 18:47:44 +00:00
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.RectangleRenderer.primitiveBatch">
<summary>
The <see cref="T:RecrownedAthenaeum.Render.PrimitiveBatch"/> used. Needs to be disposed.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.RectangleRenderer.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice)">
2019-01-15 23:59:19 +00:00
<summary>
Creates a rectangle renderer with the given <see cref="T:RecrownedAthenaeum.Render.PrimitiveBatch"/>.
2019-01-15 23:59:19 +00:00
</summary>
<param name="graphicsDevice">Graphics device to use.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.Render.RectangleRenderer.Dispose">
2019-02-06 18:47:44 +00:00
<summary>
Disposes the rectangle renderer.
2019-02-06 18:47:44 +00:00
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.RectangleRenderer.Dispose(System.Boolean)">
2019-02-08 05:45:19 +00:00
<summary>
Overridable for dispose.
2019-02-08 05:45:19 +00:00
</summary>
<param name="disposing">True when its a player calling the dispose.</param>
2019-02-08 05:45:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.Render.RectangleRenderer.Begin(System.Boolean)">
2019-02-06 18:47:44 +00:00
<summary>
Begins a batch for rectangles.
2019-02-06 18:47:44 +00:00
</summary>
<param name="filled">Whether or not this batch should be filled rectangles.</param>
2019-02-06 18:47:44 +00:00
</member>
<member name="M:RecrownedAthenaeum.Render.RectangleRenderer.End">
<summary>
Ends the batch.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.RectangleRenderer.Draw(System.Int32,System.Int32,System.Int32,System.Int32,Microsoft.Xna.Framework.Color,System.Single)">
2019-02-06 18:47:44 +00:00
<summary>
Draws a basic rectangle given bottom left and top right.
2019-02-06 18:47:44 +00:00
</summary>
<param name="x">X coordinate of bottom left.</param>
<param name="y">Y coordinate of bottom left.</param>
<param name="width">Width of rectangle.</param>
<param name="height">Height of rectangle.</param>
<param name="color">Color of all vertices of this rectangle.</param>
<param name="rotation">Rotation of rectangle. Default is 0 radians.</param>
2019-02-06 18:47:44 +00:00
</member>
<member name="M:RecrownedAthenaeum.Render.RectangleRenderer.Draw(Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Color)">
<summary>
Draws the given rectangle.
</summary>
<param name="rectangle">Uses the x, y and dimensions to draw a rectangle.</param>
<param name="color">The color of the rectangle.</param>
</member>
<member name="T:RecrownedAthenaeum.Render.PrimitiveBatch">
2019-01-15 23:59:19 +00:00
<summary>
A batch used to draw primitive shapes by batching together vertices.
2019-01-15 23:59:19 +00:00
</summary>
</member>
<member name="F:RecrownedAthenaeum.Render.PrimitiveBatch.primitiveCount">
<summary>
Amount of primitives.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.PrimitiveBatch.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice,System.Int32)">
2019-01-15 23:59:19 +00:00
<summary>
Creates a batch used to draw primitives.
2019-01-15 23:59:19 +00:00
</summary>
<param name="graphicsDevice">The graphics device used to draw the primitives.</param>
<param name="verticesPerBatch">The amount of vertices every batch can hold before flushing. Default is 450. Should be changed to be the most optimal number if possible to prevent unnecessary resizing. Especially if using strip primitive types.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.Render.PrimitiveBatch.Begin(Microsoft.Xna.Framework.Graphics.PrimitiveType,Microsoft.Xna.Framework.Graphics.Effect)">
<summary>
Starts the batch. Batch cannot be started twice.
</summary>
<param name="primitiveType">The type of primitive this batch would be drawing.</param>
<param name="effect">Effect to use to render the primitives. Default will use a <see cref="T:Microsoft.Xna.Framework.Graphics.BasicEffect"/> with parameters set up during creation.</param>
</member>
<member name="M:RecrownedAthenaeum.Render.PrimitiveBatch.End">
<summary>
Ends the batch. Begin needs to be called before end.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.PrimitiveBatch.AddVertex(Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Color)">
<summary>
Adds a vertex position for the primitive being drawn. The batch needs to have beens started before this.
</summary>
<param name="vertex">The vector that represents the vertex.</param>
<param name="color">The color of that vertex.</param>
</member>
<member name="M:RecrownedAthenaeum.Render.PrimitiveBatch.Flush">
<summary>
Flushes the batch. Automatically called if required if using <see cref="F:Microsoft.Xna.Framework.Graphics.PrimitiveType.LineList"/> or <see cref="F:Microsoft.Xna.Framework.Graphics.PrimitiveType.TriangleList"/>. Otherwise, manual flushing is required.
<see cref="F:RecrownedAthenaeum.Render.PrimitiveBatch.primitiveCount"/> is used if not zero. Is reset to zero every flush.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.PrimitiveBatch.Dispose">
<summary>
Disposes this.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Render.PrimitiveBatch.Dispose(System.Boolean)">
<summary>
Overridable dispose.
</summary>
<param name="disposing">True for when user called for this to be disposed. False otherwise.</param>
</member>
<member name="M:RecrownedAthenaeum.Render.PrimitiveBatch.Finalize">
<summary>
Destructor.
</summary>
</member>
2019-01-15 23:59:19 +00:00
<member name="T:RecrownedAthenaeum.ContentSystem.ContentManagerController">
<summary>
Wrapper for the content manager that helps with controlling it by adding automated multithreaded content loading.
</summary>
</member>
<member name="F:RecrownedAthenaeum.ContentSystem.ContentManagerController.contentPathModifier">
<summary>
Path modifiers to change the path in which the content manager looks to load a file. Used for better organizing things while not needing to type entire path.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.ContentSystem.ContentManagerController.normalPathModifier">
<summary>
Used when no path modifier is defined for that specific type.
</summary>
</member>
2019-01-15 23:59:19 +00:00
<member name="P:RecrownedAthenaeum.ContentSystem.ContentManagerController.Done">
<summary>
Whether or not the queue is empty and all content is loaded.
</summary>
</member>
<member name="P:RecrownedAthenaeum.ContentSystem.ContentManagerController.Progress">
<summary>
The progress of the loading. 1 is complete while 0 is incomplete.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ContentSystem.ContentManagerController.#ctor(Microsoft.Xna.Framework.Content.ContentManager)">
<summary>
Wraps the <see cref="T:Microsoft.Xna.Framework.Content.ContentManager"/>.
</summary>
<param name="contentManager">The manager to wrap.</param>
</member>
<member name="M:RecrownedAthenaeum.ContentSystem.ContentManagerController.Get``1(System.String)">
<summary>
Gets the requested asset.
</summary>
<typeparam name="T">The type of the asset for an alternative way to cast.</typeparam>
<param name="assetName">The name of the asset.</param>
<returns>The asset casted to the type given with T.</returns>
</member>
<member name="M:RecrownedAthenaeum.ContentSystem.ContentManagerController.Queue``1(System.String,System.Boolean)">
<summary>
Queues an asset to be loaded.
</summary>
<typeparam name="T">The type of the asset to be queued.</typeparam>
<param name="assetName">Name of asset to look for.</param>
<param name="usePathModifier">Whether or not to use the path modifiers.</param>
</member>
<member name="M:RecrownedAthenaeum.ContentSystem.ContentManagerController.Update">
<summary>
Called whenever a batch of assets should be loaded from the queue. Safe to call once every frame.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ContentSystem.ContentManagerController.Remove(System.String)">
<summary>
Removes the asset from the list of assets in the system.
Cannot remove from queue.
</summary>
<param name="name">the string name used to load the asset</param>
</member>
<member name="M:RecrownedAthenaeum.ContentSystem.ContentManagerController.ClearQueue">
<summary>
Clears the queue.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ContentSystem.ContentManagerController.UnloadAll">
<summary>
Unloads everything from both queue and loaded list while properly disposing of the assets loaded.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="T:RecrownedAthenaeum.ContentSystem.IContentPathResolver">
2019-01-15 23:59:19 +00:00
<summary>
Modifies the given path based on a name. Used to simplify long paths for the <see cref="T:RecrownedAthenaeum.ContentSystem.ContentManagerController"/>
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.ContentSystem.IContentPathResolver.Modify(System.String)">
2019-01-15 23:59:19 +00:00
<summary>
Returns the complete path with the content folder as root.
</summary>
2019-01-23 01:31:31 +00:00
<param name="contentPath">Is the asset's name</param>
<returns></returns>
</member>
<member name="T:RecrownedAthenaeum.ContentSystem.NormalContentResolver">
<summary>
A resolver that does nothing. Used for looking in the root by default.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ContentSystem.NormalContentResolver.Modify(System.String)">
<summary>
Passes the path through without modification as this is the normal content resolver and is meant to just pass things on.
</summary>
<param name="contentPath">The path to modify.</param>
2019-01-15 23:59:19 +00:00
<returns></returns>
</member>
<member name="T:RecrownedAthenaeum.SpecialTypes.ISpecialDrawable">
<summary>
A wrapper that makes sure anything implementing can be drawn with options.
</summary>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.ISpecialDrawable.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch,Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Color,System.Single,Microsoft.Xna.Framework.Vector2)">
2019-01-15 23:59:19 +00:00
<summary>
Should draw whatever implements this.
</summary>
<param name="spriteBatch">The batch to be used.</param>
<param name="destination">The location and dimensions to draw to.</param>
<param name="color">The color tint to draw with.</param>
<param name="rotation">The rotation to be used.</param>
<param name="origin">The origin for the rotation.</param>
</member>
<member name="T:RecrownedAthenaeum.SpecialTypes.NinePatch">
<summary>
An object that represents a ninepatch.
</summary>
</member>
<member name="F:RecrownedAthenaeum.SpecialTypes.NinePatch.textureRegion">
<summary>
Dimensions in ninepatch. May also represent position in texture atlas.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.SpecialTypes.NinePatch.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Int32,System.Int32,System.Int32,System.Int32,System.Nullable{Microsoft.Xna.Framework.Rectangle})">
2019-01-15 23:59:19 +00:00
<summary>
A nine patch object.
</summary>
<param name="texture">Texture used for the nine patch. Dimensions must be greater than their sum border counter parts. If used as part of texture atlas, the texture should be the texture of the entire atlas.</param>
<param name="left">Left side.</param>
<param name="right">Right side.</param>
<param name="bottom">Bottom side.</param>
<param name="top">Top side.</param>
2019-01-23 01:31:31 +00:00
<param name="textureBounds">The dimensions and potentially the coordinates of the rectangle on an atlas. If left to default of null, will only be set to texture bounds.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.NinePatch.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch,Microsoft.Xna.Framework.Color,Microsoft.Xna.Framework.Rectangle)">
2019-01-15 23:59:19 +00:00
<summary>
Draws the ninepatch.
</summary>
<param name="spriteBatch">Batch to use.</param>
2019-03-09 06:26:59 +00:00
<param name="color">The color of the patch.</param>
<param name="destination">Where to the patch.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.NinePatch.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch,Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Color,System.Single,Microsoft.Xna.Framework.Vector2)">
2019-01-15 23:59:19 +00:00
<summary>
</summary>
<param name="spriteBatch">Spritebatch to use.</param>
<param name="destination">The destination to draw the patch.</param>
<param name="color">The tint for each patch.</param>
<param name="rotation">Not considered for 9patches.</param>
<param name="origin">Not considered for 9patches.</param>
</member>
<member name="T:RecrownedAthenaeum.SpecialTypes.Resolution">
<summary>
Holds a width and height while allowing for easier comparison between other <see cref="T:RecrownedAthenaeum.SpecialTypes.Resolution"/>s.
</summary>
</member>
<member name="F:RecrownedAthenaeum.SpecialTypes.Resolution.Width">
<summary>
Dimensions of resolution.
</summary>
</member>
<member name="F:RecrownedAthenaeum.SpecialTypes.Resolution.Height">
<summary>
Dimensions of resolution.
</summary>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.Resolution.#ctor(System.Int32,System.Int32)">
<summary>
Constructs resolution given the dimensions.
</summary>
<param name="width">Width of resolution.</param>
<param name="height">Height of resolution.</param>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.Resolution.CompareTo(RecrownedAthenaeum.SpecialTypes.Resolution)">
<summary>
Compares area of this resolution to another.
</summary>
<param name="other">The other resolution to compare to.</param>
<returns>A value less than 0 for this being the smaller resolution, 0 for the two being the same in area, and larger for this being the larger in area.</returns>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.Resolution.ToString">
<summary>
Gets a string representation of this resolution.
</summary>
<returns>"WidthxHeight"</returns>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.Resolution.Area">
<summary>
Calculates area of resolution.
</summary>
<returns>Area of resolution.</returns>
</member>
<member name="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas">
<summary>
Holds information about an image file that contains various textures in various regions in the file.
</summary>
</member>
<member name="P:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Item(System.String)">
<summary>
2019-01-23 01:31:31 +00:00
Given a name, can return a <see cref="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region"/>.
2019-01-15 23:59:19 +00:00
</summary>
2019-01-23 01:31:31 +00:00
<param name="name">Name of <see cref="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region"/> to obtain.</param>
<returns><see cref="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region"/> based off name.</returns>
2019-01-15 23:59:19 +00:00
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region[])">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
Creates a texture atlas with given main texture as well as an array of <see cref="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region"/> to represent locations of which textures reside within the atlas. Region names will be used to refer to the regions within the dictionary.
2019-01-15 23:59:19 +00:00
</summary>
<param name="texture">The texture representing the overall atlas.</param>
<param name="regions">The sub regions that represent the individual textures.</param>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D,System.Collections.Generic.Dictionary{System.String,RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region})">
2019-01-15 23:59:19 +00:00
<summary>
Creates a texture region given a dictionary of regions keyed to strings that can be used to refer to them.
</summary>
<param name="texture">The texture representing the overall atlas.</param>
<param name="dictionaryOfRegions"></param>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Draw(System.String,RecrownedAthenaeum.Render.ConsistentSpriteBatch,Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Color,System.Single,Microsoft.Xna.Framework.Vector2)">
2019-01-15 23:59:19 +00:00
<summary>
Draw the region given by a string in the atlas onto a destination rectangle.
</summary>
<param name="name">Name of region to draw.</param>
<param name="batch">SpriteBatch to be used.</param>
<param name="destination">The location to draw this region.</param>
<param name="color">Color to use.</param>
<param name="rotation">Rotation of texture drawn.</param>
<param name="origin">Origin used by rotation.</param>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.ObtainRegionAsTexture(System.String,Microsoft.Xna.Framework.Graphics.GraphicsDevice)">
<summary>
Creates or obtains a previously created texture of a region.
</summary>
<param name="name">Name of region.</param>
<param name="graphicsDevice">graphics device to be used to generate the texture.</param>
2019-01-15 23:59:19 +00:00
<returns>The texture from the region.</returns>
</member>
2019-01-30 13:45:55 +00:00
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.ContainsRegion(System.String)">
<summary>
Whether or not this atlas contains the given region name.
</summary>
<param name="regionName">The name of the region to check for.</param>
<returns>True if this atlas does contain the region given by name.</returns>
</member>
2019-01-15 23:59:19 +00:00
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Dispose">
<summary>
Disposes unmanaged resources for the texture atlas.
</summary>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Dispose(System.Boolean)">
<summary>
Overridable disposal method.
</summary>
<param name="disposing">Only true if user calls <see cref="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Dispose"/></param>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Finalize">
<summary>
Destructor.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region">
2019-01-15 23:59:19 +00:00
<summary>
A region of a <see cref="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas"/>.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region.name">
2019-01-15 23:59:19 +00:00
<summary>
The name of the region. Mostly used to be refered to within the context of a <see cref="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas"/>.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region.sourceRectangle">
2019-01-15 23:59:19 +00:00
<summary>
The location and dimensions of where the original texture resides on the texture representing the atlas.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="P:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region.Disposed">
<summary>
If region has already been disposed.
</summary>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region.#ctor(System.String,Microsoft.Xna.Framework.Rectangle,RecrownedAthenaeum.SpecialTypes.NinePatch,Microsoft.Xna.Framework.Graphics.Texture2D)">
2019-01-15 23:59:19 +00:00
<summary>
A specified region in a texture atlas.
</summary>
<param name="name">Name of region.</param>
<param name="sourceRegion">The location of the region on the atlas.</param>
<param name="ninePatch">A <see cref="T:RecrownedAthenaeum.SpecialTypes.NinePatch"/> definition for the region.</param>
<param name="atlasTexture">The texture that holds the image data for the atlas.</param>
</member>
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch,Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Color,System.Single,Microsoft.Xna.Framework.Vector2)">
2019-01-15 23:59:19 +00:00
<summary>
Draws the region. If ninepatch, rotation and origin are ignored.
</summary>
<param name="batch">The batch to use. Should be began.</param>
<param name="destination">The destination rectangle to draw to.</param>
<param name="color">The color to use.</param>
<param name="rotation">Rotation of the final drawing. Ignored if is a 9patch.</param>
<param name="origin">The origin of the drawing. Ignored if is a 9patch.</param>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region.AsTexture2D(Microsoft.Xna.Framework.Graphics.GraphicsDevice)">
2019-01-15 23:59:19 +00:00
<summary>
Create or obtains a previously created texture of this region.
</summary>
<param name="graphicsDevice">The graphics device to use to create the texture.</param>
2019-01-15 23:59:19 +00:00
<returns>The texture of the region.</returns>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region.Dispose">
2019-01-15 23:59:19 +00:00
<summary>
Call this to dispose.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region.Dispose(System.Boolean)">
2019-01-15 23:59:19 +00:00
<summary>
Overridable dispose.
</summary>
<param name="disposing">Whether or not this was a user made call.</param>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region.Finalize">
2019-01-15 23:59:19 +00:00
<summary>
Destructor.
</summary>
</member>
<member name="T:RecrownedAthenaeum.Input.IInputListener">
<summary>
Input listener for <see cref="T:RecrownedAthenaeum.Input.InputUtilities"/>.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Input.IInputListener.KeyboardStateChanged(Microsoft.Xna.Framework.Input.KeyboardState)">
<summary>
Called when the state of the keyboard has changed.
</summary>
<param name="state">The new state.</param>
<returns>True to continue calling other listeners.</returns>
</member>
<member name="M:RecrownedAthenaeum.Input.IInputListener.MouseStateChanged(Microsoft.Xna.Framework.Input.MouseState)">
<summary>
Called when the state of the mouse has changed.
</summary>
<param name="state">The new state.</param>
<returns>True to continue calling other listeners.</returns>
</member>
<member name="T:RecrownedAthenaeum.Input.InputUtilities">
<summary>
Utilities to better manage input for the game.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Input.InputUtilities.InputListeners">
<summary>
Listeners for changes in input.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Input.InputUtilities.Update">
<summary>
Updates inputs.
Should be called once every game update to be up to date with new states of inputs.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Input.InputUtilities.MouseClicked">
<summary>
Poll used to check if mouse was clicked.
</summary>
<returns>True if clicked.</returns>
</member>
<member name="M:RecrownedAthenaeum.Input.InputUtilities.MouseWithinBoundries(Microsoft.Xna.Framework.Rectangle)">
<summary>
Checks whether mouse is within boundaries.
</summary>
<param name="bounds">Boundaries to check.</param>
<returns></returns>
</member>
<member name="T:RecrownedAthenaeum.Persistence.PreferencesManager">
<summary>
Manages a bundle of preferences.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Persistence.PreferencesManager.#ctor(System.String,System.Object[])">
<summary>
Constructs the preference manager.
</summary>
<param name="savePath">The path of the directory in which the preferences should be saved.</param>
<param name="preferences">The preferences to be serialized and unserialized in XML format.</param>
</member>
<member name="M:RecrownedAthenaeum.Persistence.PreferencesManager.GetPreferences``1">
<summary>
Returns the preference by type.
</summary>
<typeparam name="T">The preference needed.</typeparam>
<returns>The preference needed.</returns>
</member>
<member name="M:RecrownedAthenaeum.Persistence.PreferencesManager.Load">
<summary>
Loads preferences.
</summary>
</member>
<member name="M:RecrownedAthenaeum.Persistence.PreferencesManager.Save">
<summary>
Saves preferences.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="T:RecrownedAthenaeum.Data.NinePatchData">
2019-01-15 23:59:19 +00:00
<summary>
Represents a data structure for 9patches.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.NinePatchData.textureName">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
Name of texture associated with patch. May be null in the case of being apart of a <see cref="T:RecrownedAthenaeum.Data.TextureAtlasData"/>
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.NinePatchData.left">
2019-01-15 23:59:19 +00:00
<summary>
the boundaries of the patch.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.NinePatchData.right">
2019-01-15 23:59:19 +00:00
<summary>
the boundaries of the patch.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.NinePatchData.bottom">
2019-01-15 23:59:19 +00:00
<summary>
the boundaries of the patch.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.NinePatchData.top">
2019-01-15 23:59:19 +00:00
<summary>
the boundaries of the patch.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.Data.NinePatchData.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
2019-01-15 23:59:19 +00:00
<summary>
Constructs patch.
</summary>
<param name="textureName">Name of the texture. May be null.</param>
<param name="left">Left bound.</param>
<param name="right">Right bound.</param>
<param name="bottom">Bottom bound.</param>
<param name="Top">Top bound.</param>
</member>
2019-01-23 01:31:31 +00:00
<member name="T:RecrownedAthenaeum.Data.TextureAtlasData">
2019-01-15 23:59:19 +00:00
<summary>
Data transfer object for a texture atlas.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.TextureAtlasData.regions">
2019-01-15 23:59:19 +00:00
<summary>
Contains the regions of the texture atlas.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.TextureAtlasData.textureName">
2019-01-15 23:59:19 +00:00
<summary>
The name of the file.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.Data.TextureAtlasData.#ctor(System.String,RecrownedAthenaeum.Data.TextureAtlasData.AtlasRegionData[])">
2019-01-15 23:59:19 +00:00
<summary>
Creates the atlas given the regions and the file name of the texture file to be used.
</summary>
<param name="textureName"></param>
<param name="regions"></param>
</member>
2019-01-23 01:31:31 +00:00
<member name="T:RecrownedAthenaeum.Data.TextureAtlasData.AtlasRegionData">
2019-01-15 23:59:19 +00:00
<summary>
Data object that contains information about the region ninepatch situation of a given region in an atlas.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.TextureAtlasData.AtlasRegionData.name">
2019-01-15 23:59:19 +00:00
<summary>
Name of the region for referencial purposes.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.TextureAtlasData.AtlasRegionData.bounds">
2019-01-15 23:59:19 +00:00
<summary>
The location of the patch is designated by this rectangle.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.TextureAtlasData.AtlasRegionData.ninePatchData">
2019-01-15 23:59:19 +00:00
<summary>
The ninepatch information.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.Data.TextureAtlasData.AtlasRegionData.SetPosition(System.Int32,System.Int32)">
2019-01-15 23:59:19 +00:00
<summary>
Sets position in atlas for convenience.
</summary>
<param name="x">X coordinate of the position in the patch.</param>
<param name="y">Y coordinate of the position in the patch.</param>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.Data.TextureAtlasData.AtlasRegionData.SetSize(System.Int32,System.Int32)">
2019-01-15 23:59:19 +00:00
<summary>
Sets the dimensions of the region on the atlas for convenience.
</summary>
<param name="width">Width of the region.</param>
<param name="height">Height of the region.</param>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.Data.TextureAtlasData.AtlasRegionData.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)">
2019-01-15 23:59:19 +00:00
<summary>
Sets both the coordinates and dimensions of the region on the atlas for convenience.
</summary>
<param name="x">X coordinate of the position in the patch.</param>
<param name="y">Y coordinate of the position in the patch.</param>
<param name="width">Width of the region.</param>
<param name="height">Height of the region.</param>
</member>
2019-01-23 01:31:31 +00:00
<member name="T:RecrownedAthenaeum.Data.SkinData">
2019-01-15 23:59:19 +00:00
<summary>
Data transfer object for game skins.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="T:RecrownedAthenaeum.Data.SkinData.Metadata">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
Holds metadata.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.Metadata.author">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
Author name.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.Metadata.description">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
Description of skin.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.Metadata.skinName">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
Name of skin.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.metadata">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
The metadata for the skin file.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.nameOfTextureAtlas">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
The name of the atlas with extension.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.cursorTextureName">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
Name of the region or file designating the cursor. If there is an extension, will check for file first then texture atlas. Otherwise, will just check region.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.colors">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
The color data containing the name of the color, and red, green, and blue values for the color.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Data.SkinData.definitions">
<summary>
The skin definitions containing a name for the definition, and the definition itself.
</summary>
</member>
<member name="T:RecrownedAthenaeum.Data.SkinData.ColorData">
<summary>
Color data for data transfer.
</summary>
</member>
<member name="F:RecrownedAthenaeum.Data.SkinData.ColorData.name">
<summary>
Name of color to be referenced by.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.ColorData.r">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
RGBA data of this color.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.ColorData.g">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
RGBA data of this color.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.ColorData.b">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
RGBA data of this color.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.ColorData.a">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
RGBA data of this color.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-27 05:57:00 +00:00
<member name="M:RecrownedAthenaeum.Data.SkinData.ColorData.#ctor(System.String,Microsoft.Xna.Framework.Color)">
<summary>
Sets values for data.
</summary>
<param name="name">the name to be referenced by.</param>
<param name="color">The color value <paramref name="name"/> represents.</param>
</member>
2019-01-23 01:31:31 +00:00
<member name="T:RecrownedAthenaeum.Data.SkinData.DefinitionData">
2019-01-15 23:59:19 +00:00
<summary>
Definition data for data transfer.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.DefinitionData.name">
2019-01-15 23:59:19 +00:00
<summary>
Name of definition to be referenced by.
</summary>
</member>
2019-01-23 01:31:31 +00:00
<member name="F:RecrownedAthenaeum.Data.SkinData.DefinitionData.skin">
2019-01-15 23:59:19 +00:00
<summary>
The skin definition data.
</summary>
</member>
2019-01-30 13:45:55 +00:00
<member name="M:RecrownedAthenaeum.Data.SkinData.DefinitionData.#ctor(System.String,RecrownedAthenaeum.UI.SkinSystem.Definitions.SkinDefinitionData)">
2019-01-27 05:57:00 +00:00
<summary>
Sets values for data.
</summary>
<param name="name">The name to be referenced by.</param>
<param name="skinDefinitionData">The skin data.</param>
</member>
2019-01-23 01:31:31 +00:00
<member name="M:RecrownedAthenaeum.ContentReaders.TextureAtlasDataReader.GenerateAtlasRegionsFromData(RecrownedAthenaeum.Data.TextureAtlasData,Microsoft.Xna.Framework.Graphics.Texture2D)">
<summary>
Generates region given <see cref="T:RecrownedAthenaeum.Data.TextureAtlasData"/>.
</summary>
<param name="textureAtlasData">The data to generate the regions from.</param>
<param name="atlasTexture">The texture containing the atlas.</param>
<returns>An array of regions.</returns>
</member>
2019-01-15 23:59:19 +00:00
<member name="T:RecrownedAthenaeum.ScreenSystem.ITransition">
<summary>
Contracts a transition that the <see cref="T:RecrownedAthenaeum.ScreenSystem.ScreenManager"/> can use.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ITransition.InitiateTransition(Microsoft.Xna.Framework.Rectangle)">
<summary>
Called once when the transition is needed.
<param name="dimensions">The dimensions of the screen.</param>
</summary>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ITransition.UpdateEnteringTransition(System.Double,System.Boolean)">
<summary>
Called every frame if the state of the screen this transition is placed upon is in the enter transition phase.
</summary>
<param name="delta">The time passed in seconds since the last frame.</param>
<param name="waiting">Whether or not this transition is waiting on something. Usually the <see cref="N:RecrownedAthenaeum.ContentSystem"/>.</param>
<returns>If this returns true, then it is considered that this transition is complete.</returns>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ITransition.UpdateExitingTransition(System.Double,System.Boolean)">
<summary>
Called every frame if the state of the screen this transition is placed upon is in the exit phase.
</summary>
<param name="delta">The time passed in seconds since the last frame.</param>
<param name="waiting">Whether or not this transition is waiting on something. Usually the <see cref="N:RecrownedAthenaeum.ContentSystem"/>.</param>
<returns>If this returns true, then it is considered that this transition is complete.</returns>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ITransition.DrawTransition(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Called once every frame while transition is active. Meant to draw transition.
</summary>
<param name="spriteBatch"></param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ITransition.UpdatePreviousScreenFrame(Microsoft.Xna.Framework.Graphics.RenderTarget2D)">
<summary>
Updates if the previous screen uses a render target for exit transition.
</summary>
<param name="previousScreenFrame">The frame of the previous screen.</param>
</member>
<member name="T:RecrownedAthenaeum.ScreenSystem.LoadingScreen">
<summary>
A screen specifically meant to fill in loading times.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.LoadingScreen.#ctor(Microsoft.Xna.Framework.Game,Microsoft.Xna.Framework.Graphics.Texture2D,System.Single,System.Boolean)">
<summary>
Constructs a loading screen.
</summary>
<param name="game">The game itself to adjust mouse settings and such.</param>
<param name="screenImage"></param>
<param name="proportion"></param>
<param name="rotate"></param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.LoadingScreen.Show">
<inheritdoc />
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.LoadingScreen.Hide">
<inheritdoc />
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.LoadingScreen.InitiateTransition(Microsoft.Xna.Framework.Rectangle)">
<summary>
Sets things to correct values for start of transition.
</summary>
<param name="dimensions">The window dimensions.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.LoadingScreen.DrawTransition(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Draws the transition.
</summary>
<param name="spriteBatch">Batch to use.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.LoadingScreen.UpdateEnteringTransition(System.Double,System.Boolean)">
<summary>
Updates the entering transition.
</summary>
<param name="delta">Time passed between frames.</param>
<param name="waiting">Whether or not this transition should be waiting.</param>
<returns>Whether or not transition is complete.</returns>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.LoadingScreen.UpdateExitingTransition(System.Double,System.Boolean)">
<summary>
Updates the exiting transition.
</summary>
<param name="delta">Time passed between frames.</param>
<param name="waiting">Whether or not this transition should be waiting.</param>
<returns>Whether or not transition is complete.</returns>
</member>
<member name="T:RecrownedAthenaeum.ScreenSystem.ScreenState">
<summary>
Represents one of the poosible states a screen can be in.
</summary>
</member>
<member name="F:RecrownedAthenaeum.ScreenSystem.ScreenState.EnterTransition">
<summary>
Screen is transitioning in.
</summary>
</member>
<member name="F:RecrownedAthenaeum.ScreenSystem.ScreenState.ExitTransition">
<summary>
Screen is transitioning out.
</summary>
</member>
<member name="F:RecrownedAthenaeum.ScreenSystem.ScreenState.Normal">
<summary>
Screen is currently displayed normally without transition.
</summary>
</member>
<member name="T:RecrownedAthenaeum.ScreenSystem.Screen">
<summary>
A screen represents a virtual system of management that controls an system of items to be displayed.
</summary>
</member>
<member name="F:RecrownedAthenaeum.ScreenSystem.Screen.Transitions">
<summary>
Transitions to apply.
</summary>
</member>
<member name="P:RecrownedAthenaeum.ScreenSystem.Screen.UseRenderTargetForExitTransition">
<summary>
Whether or not to continue rendering this screen onto a buffer for the benefit of the next screen to use as a transition.
2019-01-15 23:59:19 +00:00
</summary>
</member>
<member name="F:RecrownedAthenaeum.ScreenSystem.Screen.BackgroundColor">
<summary>
The background color to be used to clear the screen.
</summary>
</member>
<member name="P:RecrownedAthenaeum.ScreenSystem.Screen.NextScreen">
<summary>
The next screen to be displayed after exit transition finishes. May be null, leading to transition to previous screen or loading screen.
</summary>
</member>
<member name="F:RecrownedAthenaeum.ScreenSystem.Screen.width">
2019-01-15 23:59:19 +00:00
<summary>
The current window dimensions.
2019-01-15 23:59:19 +00:00
</summary>
</member>
<member name="F:RecrownedAthenaeum.ScreenSystem.Screen.height">
2019-01-15 23:59:19 +00:00
<summary>
The current window dimensions.
2019-01-15 23:59:19 +00:00
</summary>
</member>
<member name="P:RecrownedAthenaeum.ScreenSystem.Screen.State">
<summary>
Current state of the screen.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.#ctor(System.Boolean)">
<summary>
Creates a new screen.
</summary>
<param name="useEnterTransition">True to start in entering transition state.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.ApplySize(System.Int32,System.Int32)">
2019-01-15 23:59:19 +00:00
<summary>
Called when screen size is set.
2019-01-15 23:59:19 +00:00
</summary>
<param name="width">The width of the screen.</param>
<param name="height">The height of the screen.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.Update(Microsoft.Xna.Framework.GameTime)">
<summary>
Called to update the screen.
</summary>
<param name="gameTime">Game time information.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Called to draw this screen.
</summary>
<param name="spriteBatch">SpriteBatch to use.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.UpdateTransition(System.Double,System.Boolean)">
<summary>
Updates the transition based on the current state of the screen.
</summary>
<param name="delta">Time passed since last frame in seconds.</param>
<param name="waiting">If the this transition should wait.</param>
<returns>Only returns true if exit transition is complete. Returns false otherwise.</returns>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.Show">
<summary>
Called when the screen is shown.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.Hide">
<summary>
Called when this screen is no longer the displayed screen.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.AssetLoadStateChange(System.Boolean)">
<summary>
Called whenever the status of assets changes from being loaded to unloaded or unloaded to loaded.
</summary>
<param name="state">True for loaded, false for unloaded.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.StartExitTransition(System.Boolean)">
<summary>
Call this to begin exit transition.
</summary>
<param name="UseRenderTargetForExitTransition">Whether or not to use a render target for the next screen to use.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.Screen.UpdatePreviousScreenFrame(Microsoft.Xna.Framework.Graphics.RenderTarget2D)">
<summary>
Called everytime the previous screen frame buffer updates. Used for transition purposes.
</summary>
<param name="previousScreenFrame">The previous screen's render buffer.</param>
</member>
<member name="T:RecrownedAthenaeum.ScreenSystem.NeedNextScreen">
2019-01-15 23:59:19 +00:00
<summary>
Called when the first screen is being shown.
</summary>
<param name="screen">The screen to show after the loading screen.</param>
</member>
<member name="T:RecrownedAthenaeum.ScreenSystem.ScreenManager">
<summary>
A manager for screens. Helps with transitions and updating screens as well as resizes.
</summary>
</member>
<member name="E:RecrownedAthenaeum.ScreenSystem.ScreenManager.NeedNextScreen">
2019-01-15 23:59:19 +00:00
<summary>
Called when the first loading screen is done, and needs to show the landing screen.
</summary>
</member>
<member name="F:RecrownedAthenaeum.ScreenSystem.ScreenManager.graphics">
2019-03-09 08:02:32 +00:00
<summary>
The settings this manager will use to begin a sprite batch.
2019-03-09 08:02:32 +00:00
</summary>
</member>
2019-01-15 23:59:19 +00:00
<member name="P:RecrownedAthenaeum.ScreenSystem.ScreenManager.Screen">
<summary>
Currently displayed screen.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ScreenManager.#ctor(Microsoft.Xna.Framework.GraphicsDeviceManager)">
2019-01-15 23:59:19 +00:00
<summary>
Creates a screen manager that helps update, draw, and manage multiple screens and their transitions. Uses its own <see cref="T:Microsoft.Xna.Framework.Graphics.SpriteBatch"/>.
2019-01-15 23:59:19 +00:00
</summary>
<param name="graphicsDeviceManager">The graphics device manager to be used.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ScreenManager.UpdateCurrentScreen(Microsoft.Xna.Framework.GameTime,System.Boolean)">
<summary>
Updates the screens. Should be called once every frame.
</summary>
<param name="gameTime">Contains the time that has passed from the last frame.</param>
<param name="waiting">Whether or not there is something a transition should be waiting for. Usually used to wait for assets to complete loading.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ScreenManager.DrawScreen(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Renders screen into window.
Starts and ends the given <paramref name="consistentSpriteBatch"/>.
2019-01-15 23:59:19 +00:00
</summary>
<param name="consistentSpriteBatch">The consistent sprite batch to use. Needs to be consistent as changing render targets requires ending and beginning the sprite batch.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ScreenManager.Resize(RecrownedAthenaeum.ScreenSystem.LoadingScreen)">
<summary>
Should be called when resize is occurring to change to a loading screen.
This will notify the screen of the status of the assets, change the screen to a loading screen, and dispose of the previous screen buffer.
</summary>
<param name="loadingScreen">The loading screen to change to.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ScreenManager.PostResize">
<summary>
Notifies all screen that assets have completed being loaded after a resize.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ScreenManager.Dispose">
<summary>
Disposes this.
</summary>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ScreenManager.Dispose(System.Boolean)">
<summary>
An overridable dispose.
</summary>
<param name="disposing">True of user invoked dispose called.</param>
</member>
<member name="M:RecrownedAthenaeum.ScreenSystem.ScreenManager.Finalize">
<summary>
Destructor.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="T:RecrownedAthenaeum.UI.BookSystem.Book">
2019-01-15 23:59:19 +00:00
<summary>
Contains the pages.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.BookSystem.Book.camera">
<summary>
The camera to use to change between pages.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.#ctor(RecrownedAthenaeum.ContentSystem.ContentManagerController,RecrownedAthenaeum.UI.SkinSystem.ISkin,RecrownedAthenaeum.Render.Camera2D)">
2019-01-28 17:41:36 +00:00
<summary>
Creates a book.
</summary>
<param name="assets"><see cref="T:RecrownedAthenaeum.ContentSystem.ContentManagerController"/> that holds the assets that are to be used in the pages for this book during initialization.</param>
<param name="skin">The skin that will be passed to pages during their initialization.</param>
<param name="camera">Camera to move to change pages.</param>
2019-01-28 17:41:36 +00:00
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.Initiate(RecrownedAthenaeum.Render.Camera2D,Microsoft.Xna.Framework.Rectangle)">
2019-01-15 23:59:19 +00:00
<summary>
Should be called whenever a valid camera and dimensions for the book exist.
Initializes book with given parameters.
Generally used with a <see cref="T:RecrownedAthenaeum.ScreenSystem.Screen"/> and called in the <see cref="M:RecrownedAthenaeum.ScreenSystem.Screen.ApplySize(System.Int32,System.Int32)"/> function.
2019-01-15 23:59:19 +00:00
</summary>
<param name="camera">Camera to move to change pages.</param>
2019-01-15 23:59:19 +00:00
<param name="dimensions">Dimensions of the book and the dimensions the pages will use.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.ApplySize(System.Int32,System.Int32)">
<summary>
Applies the size if the book's pages.
</summary>
<param name="width">The width of one page.</param>
<param name="height">The height of one page.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Draws the pages.
</summary>
<param name="batch">Batch used to draw.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.Update(Microsoft.Xna.Framework.GameTime)">
2019-01-15 23:59:19 +00:00
<summary>
Updates the book.
</summary>
<param name="gameTime">Snapshot of information of the game time.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.AddPages(RecrownedAthenaeum.UI.BookSystem.Page[])">
2019-01-15 23:59:19 +00:00
<summary>
Adds the page(s).
</summary>
<param name="pages">The page(s) to add.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.RemovePage(RecrownedAthenaeum.UI.BookSystem.Page)">
2019-01-15 23:59:19 +00:00
<summary>
Removes the page.
</summary>
<param name="page">Page to remove.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.RemovePage(System.String)">
2019-01-15 23:59:19 +00:00
<summary>
Removes the page.
</summary>
<param name="name">Name of page to remove.</param>
</member>
2019-03-09 06:50:46 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.ClearPages">
<summary>
Removes all pages.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.LerpToPage(RecrownedAthenaeum.UI.BookSystem.Page)">
2019-01-15 23:59:19 +00:00
<summary>
Perform a step of linear interpolation to the given page.
</summary>
<param name="page">The page to lerp to.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.GoToPage(RecrownedAthenaeum.UI.BookSystem.Page)">
2019-01-15 23:59:19 +00:00
<summary>
Goes to page instantly.
</summary>
<param name="page">Page to go to.</param>
</member>
2019-03-09 06:50:46 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.KeyboardStateChanged(Microsoft.Xna.Framework.Input.KeyboardState)">
<summary>
Passes the new keyboard state down to each page in order of when it was added.
</summary>
<param name="state"></param>
<returns>True if the state change should to trigger further input listeners.</returns>
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Book.MouseStateChanged(Microsoft.Xna.Framework.Input.MouseState)">
<summary>
Passes the new mouse state down to each page in order of when it was added.
</summary>
<param name="state"></param>
<returns>True if the state change should to trigger further input listeners.</returns>
</member>
2019-01-28 17:41:36 +00:00
<member name="T:RecrownedAthenaeum.UI.BookSystem.Page">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-28 17:41:36 +00:00
A page a part of a <see cref="T:RecrownedAthenaeum.UI.BookSystem.Book"/>.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.BookSystem.Page.requiresSizeUpdate">
2019-01-15 23:59:19 +00:00
<summary>
Whether or not this book needs to be refreshed with new dimensions.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Page.#ctor(System.Int32,System.Int32)">
2019-01-15 23:59:19 +00:00
<summary>
Constructs a page.
</summary>
<param name="pageX">The X position in the book.</param>
<param name="pageY">The Y position in the book.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.BookSystem.Page.ApplySize(System.Int32,System.Int32)">
2019-01-15 23:59:19 +00:00
<summary>
Called when this page is flagged as needing a size update.
</summary>
<param name="width">New width.</param>
<param name="height">New Height</param>
</member>
<member name="M:RecrownedAthenaeum.UI.BookSystem.Page.Initialize(RecrownedAthenaeum.ContentSystem.ContentManagerController,RecrownedAthenaeum.UI.SkinSystem.ISkin,RecrownedAthenaeum.Render.BasicScissor)">
2019-01-28 17:41:36 +00:00
<summary>
Called only once after a page is added to a <see cref="T:RecrownedAthenaeum.UI.BookSystem.Book"/>. Generally used to instantiate the modules of the page.
</summary>
<param name="assets">The assets to be used during initialization passed by the book this page belongs to.</param>
<param name="skin">The skin the book containing this page is given that can be used by this page.</param>
<param name="basicScissor">The scissor box to use for cropping.</param>
2019-01-28 17:41:36 +00:00
</member>
2019-01-15 23:59:19 +00:00
<member name="T:RecrownedAthenaeum.UI.Modular.Modules.Image">
<summary>
Represents a texture with more information.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.Modules.Image.rotation">
<summary>
The rotation of the image.
</summary>
</member>
2019-03-02 05:30:43 +00:00
<member name="F:RecrownedAthenaeum.UI.Modular.Modules.Image.texture">
2019-01-15 23:59:19 +00:00
<summary>
The texture to be rendered.
</summary>
</member>
<member name="P:RecrownedAthenaeum.UI.Modular.Modules.Image.ScaleX">
<summary>
Scale of of the X axis.
</summary>
</member>
<member name="P:RecrownedAthenaeum.UI.Modular.Modules.Image.ScaleY">
<summary>
Scale of the Y axis.
</summary>
</member>
<member name="P:RecrownedAthenaeum.UI.Modular.Modules.Image.Scale">
<summary>
2019-01-30 13:45:55 +00:00
Sets scale of X and Y.
2019-01-15 23:59:19 +00:00
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Image.#ctor(Microsoft.Xna.Framework.Graphics.Texture2D)">
<summary>
Constructs an image given a texture.
</summary>
<param name="texture">Texture to use.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Image.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Draws the image with default values.
</summary>
<param name="batch">The batch to use.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Image.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch,Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Color,System.Single,Microsoft.Xna.Framework.Vector2)">
2019-01-15 23:59:19 +00:00
<summary>
Draws the image with more options.
</summary>
<param name="spriteBatch">Batch used.</param>
<param name="destination">Where to draw texture to.</param>
<param name="color">The color tint to use.</param>
<param name="rotation">Rotation of image.</param>
<param name="origin">Origin for the rotation.</param>
</member>
<member name="T:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Clicked">
<summary>
Function to be called when button is clicked.
</summary>
2019-01-28 17:41:36 +00:00
<param name="button">The button that was clicked.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="T:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button">
<summary>
A very primitive button containing all the basic functions.
</summary>
</member>
<member name="E:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button.Listeners">
<summary>
Click event listeners.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button.disabled">
<summary>
Whether or not this button should be currently disabled.
</summary>
</member>
<member name="P:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button.Highlighted">
<summary>
Whether or not this button is currently being hovered on.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button.#ctor(RecrownedAthenaeum.SpecialTypes.ISpecialDrawable,RecrownedAthenaeum.SpecialTypes.ISpecialDrawable,RecrownedAthenaeum.SpecialTypes.ISpecialDrawable,RecrownedAthenaeum.SpecialTypes.ISpecialDrawable)">
<summary>
Constructs this button using <see cref="T:RecrownedAthenaeum.SpecialTypes.ISpecialDrawable"/>s for the different states it could be in.
</summary>
<param name="down">Button being pressed.</param>
<param name="up">Button not being pressed.</param>
<param name="disabled">Disabled button.</param>
<param name="selected">Button being highlighted.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button.#ctor(RecrownedAthenaeum.UI.SkinSystem.ISkin,System.String)">
2019-01-15 23:59:19 +00:00
<summary>
Constructs this button using the skin system.
</summary>
<param name="skin">The skin containing the information of the textures and design to follow.</param>
<param name="definitionName">The name of the definition in the skin. Can be null to select the default.</param>
</member>
2019-01-30 13:45:55 +00:00
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button.#ctor(RecrownedAthenaeum.UI.SkinSystem.ISkin,RecrownedAthenaeum.UI.SkinSystem.Definitions.ButtonSkinDefinition)">
<summary>
Instantiates a button using a definition.
</summary>
<param name="skin">The skin the definition is defined in.</param>
<param name="skinDefinition">The definition itself.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Draws the button.
</summary>
<param name="batch">Batch used to draw the button.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button.MouseStateChanged(Microsoft.Xna.Framework.Input.MouseState)">
<summary>
Called when the mouse changes state.
</summary>
<param name="state">The new state.</param>
<returns>Whether or not to continue calling the next mouse change listener.</returns>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.Button.KeyboardStateChanged(Microsoft.Xna.Framework.Input.KeyboardState)">
<summary>
Called when the state of the keyboard changes.
</summary>
<param name="state">The new state.</param>
<returns>Whether or not the next keyboard change listener should be called.</returns>
</member>
<member name="T:RecrownedAthenaeum.UI.Modular.Modules.Interactive.TextButton">
<summary>
Button that holds a string.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.Modular.Modules.Interactive.TextButton.text">
<summary>
The text that is used to display the string.
</summary>
</member>
2019-01-15 23:59:19 +00:00
<member name="P:RecrownedAthenaeum.UI.Modular.Modules.Interactive.TextButton.FontColor">
<summary>
The color the font should be rendered in.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.TextButton.#ctor(System.String,Microsoft.Xna.Framework.Graphics.SpriteFont,RecrownedAthenaeum.SpecialTypes.ISpecialDrawable,RecrownedAthenaeum.SpecialTypes.ISpecialDrawable,RecrownedAthenaeum.SpecialTypes.ISpecialDrawable,RecrownedAthenaeum.SpecialTypes.ISpecialDrawable)">
<summary>
Constructs text button with the positions represented by <see cref="T:RecrownedAthenaeum.SpecialTypes.ISpecialDrawable"/>
</summary>
<param name="text">The string representing the text to be displayed.</param>
<param name="font">The font to be used to display the text.</param>
<param name="down">What to draw as button is pushed down.</param>
<param name="up">What to draw as button is not pushed.</param>
<param name="disabled">What to draw as button is disabled.</param>
<param name="selected">What to draw as button is selected.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.TextButton.#ctor(System.String,Microsoft.Xna.Framework.Graphics.SpriteFont,RecrownedAthenaeum.UI.SkinSystem.ISkin,System.String)">
2019-01-15 23:59:19 +00:00
<summary>
Constructs a text button using a skin and definition.
</summary>
<param name="text">The text to display.</param>
2019-01-23 01:31:31 +00:00
<param name="font">The font to be used.</param>
2019-01-15 23:59:19 +00:00
<param name="skin">The skin to use.</param>
<param name="definitionName">Name of the definition for this type in the skin given.</param>
</member>
2019-01-30 13:45:55 +00:00
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.TextButton.#ctor(System.String,Microsoft.Xna.Framework.Graphics.SpriteFont,RecrownedAthenaeum.UI.SkinSystem.ISkin,RecrownedAthenaeum.UI.SkinSystem.Definitions.TextButtonSkinDefinition)">
<summary>
Creates a text button with a given definition.
</summary>
<param name="text">The text to be displayed on this button.</param>
<param name="font">The font to use for this button.</param>
<param name="skin">The skin the definition is from.</param>
<param name="skinDefinition">The definition to use.</param>
</member>
2019-01-15 23:59:19 +00:00
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.TextButton.Update(Microsoft.Xna.Framework.GameTime)">
<summary>
Updates the text button.
</summary>
<param name="gameTime">Snapshot of information about time for game.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Interactive.TextButton.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Called whenever game wants to render this button.
</summary>
<param name="batch">Batch to use. Batch should already be started.</param>
</member>
<member name="T:RecrownedAthenaeum.UI.Modular.Modules.Text">
<summary>
Represents text for the UI.
</summary>
</member>
2019-03-09 06:26:59 +00:00
<member name="F:RecrownedAthenaeum.UI.Modular.Modules.Text.centered">
<summary>
Centers the text int bounds.
</summary>
</member>
2019-01-15 23:59:19 +00:00
<member name="F:RecrownedAthenaeum.UI.Modular.Modules.Text.autoWrap">
<summary>
Whether or not to try and wrap text automatically. Meaning will check and attempt to wrap every update.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.Modules.Text.autoScale">
<summary>
Whether or not to automatically scale the text every update. Happens after auto wrap if enabled.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.Modules.Text.useEllipses">
<summary>
Should this use ellipses? Will perform this operation before auto wrapping or auto scalling.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.Modules.Text.ellipsis">
<summary>
The text to use for the ellipsis.
</summary>
</member>
<member name="P:RecrownedAthenaeum.UI.Modular.Modules.Text.Content">
<summary>
The string to be displayed.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Text.#ctor(Microsoft.Xna.Framework.Graphics.SpriteFont,System.String)">
<summary>
Creates a UI text object.
</summary>
<param name="font">The font to use.</param>
<param name="content">The string for the text.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Text.Update(Microsoft.Xna.Framework.GameTime)">
<summary>
Updates the positioning and attempts to perform any operations that were marked automatic.
</summary>
<param name="gameTime">The game time.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Text.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Draws the text.
</summary>
<param name="batch">Batch to use.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Text.AttemptToApplyEllipsis">
<summary>
Attempts to apply ellipsis. Checks of nessecary.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Text.AttemptToScaleFont">
<summary>
Attempts to scale the font. Checks if nessecary.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Text.RemoveLineBreaks">
<summary>
Removes line breaks.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Text.ResetToOriginalText">
<summary>
Resets to original text.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.Modules.Text.AttemptToWrapText(System.Boolean)">
<summary>
Attempts to wrap text. Checks if nessecary.
</summary>
<param name="unwrap">If true, will first unwrap text, and the wrap again. This occurs before nessecity check.</param>
</member>
<member name="T:RecrownedAthenaeum.UI.Modular.UIModule">
<summary>
Module for UI layout.
</summary>
</member>
2019-03-09 06:26:59 +00:00
<member name="F:RecrownedAthenaeum.UI.Modular.UIModule.situation">
2019-01-15 23:59:19 +00:00
<summary>
2019-03-02 05:30:43 +00:00
The bounds before factoring in the origin.
</summary>
</member>
2019-03-09 06:26:59 +00:00
<member name="P:RecrownedAthenaeum.UI.Modular.UIModule.Boundaries">
2019-03-02 05:30:43 +00:00
<summary>
Bounds of this module (after factoring in the origin).
2019-01-15 23:59:19 +00:00
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.UIModule.origin">
<summary>
Origin of this module.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.UIModule.parent">
2019-01-15 23:59:19 +00:00
<summary>
The parent of this module. May be null.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.UIModule.name">
2019-01-15 23:59:19 +00:00
<summary>
Name of this module. For organizational/referencial purposes mostly.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.UIModule.color">
<summary>
The color tint of this module.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModule.Update(Microsoft.Xna.Framework.GameTime)">
<summary>
Called every frame to update this module. Calculations and movement should go here.
</summary>
<param name="gameTime">Game time information.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModule.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Called every frame to draw this module. Anything that needs to be drawn should go here.
</summary>
<param name="batch">Batch used to draw.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModule.ConvertToParentCoordinates(Microsoft.Xna.Framework.Rectangle)">
<summary>
Converts the given rectangle to the coordinates of the parent.
</summary>
<param name="rectangle">Rectangle to convert.</param>
<returns></returns>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModule.RemoveFromParent">
<summary>
Removes this module from the parent.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModule.KeyboardStateChanged(Microsoft.Xna.Framework.Input.KeyboardState)">
<summary>
Called whenever the keyboard state is changed.
</summary>
<param name="state">The current keyboard state.</param>
<returns>Returning whether or not to continue to call the next listener.</returns>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModule.MouseStateChanged(Microsoft.Xna.Framework.Input.MouseState)">
<summary>
Called whenever the state of the mouse changes. This includes movement.
</summary>
<param name="state">The current state of the mouse.</param>
<returns>Returning whether or not to continue to call the next listener.</returns>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.Modular.UIModule.CenterOrigin">
<summary>
Sets the origin to be the center of the bounds.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModule.CenterHorizontally">
2019-03-09 06:26:59 +00:00
<summary>
Centers this module's origin on the horizontal axis relative to the parent <see cref="T:RecrownedAthenaeum.UI.Modular.UIModuleGroup"/>.
2019-03-09 06:26:59 +00:00
</summary>
<returns>True if possible and false if not.</returns>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModule.CenterVertically">
2019-03-09 06:26:59 +00:00
<summary>
Centers this module's origin on the vertical axis relative to the parent <see cref="T:RecrownedAthenaeum.UI.Modular.UIModuleGroup"/>.
2019-03-09 06:26:59 +00:00
</summary>
<returns>True if possible.</returns>
</member>
2019-01-15 23:59:19 +00:00
<member name="T:RecrownedAthenaeum.UI.Modular.UIModuleGroup">
<summary>
Contains a group of modules and has its own relative coordinate system.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.Modular.UIModuleGroup.basicScissor">
2019-01-15 23:59:19 +00:00
<summary>
Set this to crop anything that flows out of the boundaries of this group. Will not crop if this is null.
2019-01-15 23:59:19 +00:00
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModuleGroup.Draw(RecrownedAthenaeum.Render.ConsistentSpriteBatch)">
2019-01-15 23:59:19 +00:00
<summary>
Draws this group of modules. If scissoring, will use the matrix and effect designated in the <see cref="T:RecrownedAthenaeum.Render.BasicScissor"/> to begin the batch normally again.
2019-01-15 23:59:19 +00:00
</summary>
<param name="spriteBatch">Batch used to draw the group.</param>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModuleGroup.Update(Microsoft.Xna.Framework.GameTime)">
<summary>
Updates the group of modules.
</summary>
<param name="gameTime">Game time used.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModuleGroup.AddModule(RecrownedAthenaeum.UI.Modular.UIModule[])">
<summary>
Adds module(s) to this group.
</summary>
<param name="addModules">The module(s) to add.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModuleGroup.RemoveModule(RecrownedAthenaeum.UI.Modular.UIModule)">
<summary>
Removes given module from group.
</summary>
<param name="module">module to remove.</param>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModuleGroup.KeyboardStateChanged(Microsoft.Xna.Framework.Input.KeyboardState)">
<summary>
Updates the keyboard state of the modules in this group.
</summary>
<param name="state">The new state.</param>
<returns>Whether or not to continue updating the other listeners.</returns>
</member>
<member name="M:RecrownedAthenaeum.UI.Modular.UIModuleGroup.MouseStateChanged(Microsoft.Xna.Framework.Input.MouseState)">
<summary>
Updates the moues state of the modules in this group.
</summary>
<param name="state">The new state.</param>
<returns>Whether or not to continue updating other listeners.</returns>
</member>
2019-01-28 17:41:36 +00:00
<member name="T:RecrownedAthenaeum.UI.SkinSystem.Definitions.ButtonSkinDefinition">
2019-01-15 23:59:19 +00:00
<summary>
Definition for a button.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.Definitions.ButtonSkinDefinition.upRegion">
2019-01-15 23:59:19 +00:00
<summary>
Names for the regions in the texture atlas respectively.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.Definitions.ButtonSkinDefinition.downRegion">
2019-01-15 23:59:19 +00:00
<summary>
Names for the regions in the texture atlas respectively.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.Definitions.ButtonSkinDefinition.disabledRegion">
2019-01-15 23:59:19 +00:00
<summary>
Names for the regions in the texture atlas respectively.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.Definitions.ButtonSkinDefinition.selectedRegion">
2019-01-15 23:59:19 +00:00
<summary>
Names for the regions in the texture atlas respectively.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Definitions.ButtonSkinDefinition.#ctor(System.String,System.String)">
2019-01-15 23:59:19 +00:00
<summary>
Constructs the definition with minimum requirements.
</summary>
<param name="downRegion">Name of region specifying the texture shown for when the button is pressed down.</param>
<param name="upRegion">Name of region specifying the texture shown for when the button is not pressed.</param>
</member>
2019-01-30 13:45:55 +00:00
<member name="T:RecrownedAthenaeum.UI.SkinSystem.Definitions.SkinDefinitionData">
<summary>
A definition containing the data for the skin system. Needs to follow data transfer object model.
</summary>
</member>
<member name="F:RecrownedAthenaeum.UI.SkinSystem.Definitions.SkinDefinitionData.uiModuleTypeFullName">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-30 13:45:55 +00:00
The full name of the UI module this definition defines.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-30 13:45:55 +00:00
<member name="P:RecrownedAthenaeum.UI.SkinSystem.Definitions.SkinDefinitionData.UIModuleType">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-30 13:45:55 +00:00
Sets the module type by setting <see cref="F:RecrownedAthenaeum.UI.SkinSystem.Definitions.SkinDefinitionData.uiModuleTypeFullName"/>.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="T:RecrownedAthenaeum.UI.SkinSystem.Definitions.TextButtonSkinDefinition">
2019-01-15 23:59:19 +00:00
<summary>
Definition for a text button for a skin theme.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.Definitions.TextButtonSkinDefinition.fontColor">
2019-01-15 23:59:19 +00:00
<summary>
Name of color from the skin to use for the font.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Definitions.TextButtonSkinDefinition.#ctor(System.String,System.String)">
2019-01-15 23:59:19 +00:00
<summary>
Creates this definition with the most minimal requirements.
</summary>
<param name="downRegion">Texture region from skin that represents when the button is pressed down.</param>
<param name="upRegion">The texture region that represents when the button is not pressed.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="T:RecrownedAthenaeum.UI.SkinSystem.ISkin">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
The output requirements of a skin. This allows for very customized skin systems if needed.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="P:RecrownedAthenaeum.UI.SkinSystem.ISkin.CursorTexture">
2019-01-23 01:31:31 +00:00
<summary>
The texture for the cursor.
</summary>
</member>
<member name="M:RecrownedAthenaeum.UI.SkinSystem.ISkin.Draw(System.String,System.String,RecrownedAthenaeum.Render.ConsistentSpriteBatch,Microsoft.Xna.Framework.Rectangle,System.Single,Microsoft.Xna.Framework.Vector2)">
2019-01-23 01:31:31 +00:00
<summary>
Draws a region from the texture atlas.
</summary>
<param name="regionName">Region to draw.</param>
<param name="color">The color to tint the region.</param>
<param name="batch">The batch to use.</param>
<param name="destination">The destination to draw to.</param>
<param name="rotation">The rotation to use in radians.</param>
<param name="origin">The origin for the rotation.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.ISkin.GetColor(System.String)">
2019-01-23 01:31:31 +00:00
<summary>
Returns a <see cref="T:Microsoft.Xna.Framework.Color"/> with given name of defined color;
2019-01-30 13:45:55 +00:00
Should use value "default" if <paramref name="name"/> is null.
2019-01-23 01:31:31 +00:00
</summary>
<param name="name">Name of defined color.</param>
<returns>The defined color based on the name given.</returns>
</member>
2019-03-09 06:26:59 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.ISkin.GetTextureAtlasRegion(System.String,System.Boolean)">
2019-01-23 01:31:31 +00:00
<summary>
Returns a <see cref="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region"/> with given name of region.
</summary>
<param name="name">Name of region.</param>
2019-03-09 06:26:59 +00:00
<param name="required">Whether or not the region is required. If true, it will throw an error if the region does not exist while if false, will return null if the region does not exist.</param>
<returns>The region corresponding to the name and may return null depending on if the region exists, and is required.</returns>
2019-01-23 01:31:31 +00:00
</member>
2019-01-30 13:45:55 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.ISkin.ObtainDefinition``1(System.String)">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
Returns the proper definition for the given parameters or throws exception in the case the requested definition does not exist.
2019-01-15 23:59:19 +00:00
</summary>
2019-01-23 01:31:31 +00:00
<typeparam name="T">Convenience to cast to the needed definition type.</typeparam>
2019-01-30 13:45:55 +00:00
<param name="definitionName">The name of the definition. Default is null and will be replaced with "default" for name.</param>
2019-01-23 01:31:31 +00:00
<returns>The definition cast to T.</returns>
2019-01-15 23:59:19 +00:00
</member>
2019-01-28 17:41:36 +00:00
<member name="T:RecrownedAthenaeum.UI.SkinSystem.Skin">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
A skin is used to group a theme which can then be applied to the UI via the use of modules.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="P:RecrownedAthenaeum.UI.SkinSystem.Skin.Laminated">
2019-01-23 01:31:31 +00:00
<summary>
Whether or not this skin is completed being built and thus ready to use.
2019-01-15 23:59:19 +00:00
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="P:RecrownedAthenaeum.UI.SkinSystem.Skin.CursorTexture">
2019-01-23 01:31:31 +00:00
<summary>
The texture for the cursor.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.#ctor(RecrownedAthenaeum.SpecialTypes.TextureAtlas,Microsoft.Xna.Framework.Graphics.Texture2D)">
2019-01-15 23:59:19 +00:00
<summary>
Creates a basic unfilled skin.
</summary>
<param name="textureAtlas">The texture atlas to use for this skin.</param>
2019-01-23 01:31:31 +00:00
<param name="cursorTexture">The texture the cursor will be.</param>
</member>
2019-03-09 06:26:59 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.GetTextureAtlasRegion(System.String,System.Boolean)">
2019-01-23 01:31:31 +00:00
<summary>
2019-01-30 13:45:55 +00:00
Returns a <see cref="T:RecrownedAthenaeum.SpecialTypes.TextureAtlas.Region"/> with given name of region. Null values acceptable. Will return null if parameter is null.
2019-01-23 01:31:31 +00:00
</summary>
<param name="name">Name of region.</param>
2019-03-09 06:26:59 +00:00
<param name="required">Whether or not this texture is mandatory for the module to work. If true, will throw error on failing to retrieve.</param>
2019-01-30 13:45:55 +00:00
<returns>The region corresponding to the name or null if the requested region doesn't exist.</returns>
2019-01-23 01:31:31 +00:00
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.GetColor(System.String)">
2019-01-23 01:31:31 +00:00
<summary>
Returns a <see cref="T:Microsoft.Xna.Framework.Color"/> with given name of defined color;
</summary>
2019-01-30 13:45:55 +00:00
<param name="name">Name of defined color. Will use "default" if null. Default value is null.</param>
2019-01-23 01:31:31 +00:00
<returns>The defined color based on the name given.</returns>
2019-01-15 23:59:19 +00:00
</member>
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.Draw(System.String,System.String,RecrownedAthenaeum.Render.ConsistentSpriteBatch,Microsoft.Xna.Framework.Rectangle,System.Single,Microsoft.Xna.Framework.Vector2)">
2019-01-15 23:59:19 +00:00
<summary>
Draws a region from the texture atlas.
</summary>
<param name="regionName">Region to draw.</param>
<param name="color">The color to tint the region.</param>
<param name="batch">The batch to use.</param>
<param name="destination">The destination to draw to.</param>
<param name="rotation">The rotation to use in radians.</param>
<param name="origin">The origin for the rotation.</param>
</member>
2019-01-30 13:45:55 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.ObtainDefinition``1(System.String)">
2019-01-15 23:59:19 +00:00
<summary>
Returns the proper definition for the given parameters or throws exception in the case the requested definition does not exist.
</summary>
<typeparam name="T">Convenience to cast to the needed definition type.</typeparam>
<param name="definitionName">The name of the definition.</param>
<returns>The definition cast to T.</returns>
</member>
2019-01-30 13:45:55 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.AddDefinition(RecrownedAthenaeum.UI.SkinSystem.Definitions.SkinDefinitionData,System.String)">
2019-01-15 23:59:19 +00:00
<summary>
Adds the definition.
</summary>
2019-01-30 13:45:55 +00:00
<param name="definitionName">The name of the definition. Default (if left blank) name is "default".</param>
2019-01-15 23:59:19 +00:00
<param name="skinDefinition">The definition itself.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.AddColor(System.String,Microsoft.Xna.Framework.Color)">
2019-01-15 23:59:19 +00:00
<summary>
2019-01-23 01:31:31 +00:00
Adds color to skin.
</summary>
<param name="name"></param>
<param name="color"></param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.Laminate">
2019-01-23 01:31:31 +00:00
<summary>
Laminates the skin. Making sure no more additions are done and sets the skin to be ready for use.
Needs to be called before any use of skin. Building skin needs to be done before lamination.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.Dispose">
2019-01-23 01:31:31 +00:00
<summary>
2019-01-28 17:41:36 +00:00
Disposes <see cref="F:RecrownedAthenaeum.UI.SkinSystem.Skin.textureAtlas"/> and the <see cref="T:Microsoft.Xna.Framework.Graphics.Texture2D"/> holding the cursor texture.
2019-01-23 01:31:31 +00:00
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.Dispose(System.Boolean)">
2019-01-23 01:31:31 +00:00
<summary>
Overridable dispose function.
</summary>
<param name="disposing">true when it's a user call to dispose.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.Skin.Finalize">
2019-01-23 01:31:31 +00:00
<summary>
Destructor. Calls the dispose with false.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="T:RecrownedAthenaeum.UI.SkinSystem.AsyncComplete">
2019-01-23 01:31:31 +00:00
<summary>
Called when the skin manager has completed a async action.
</summary>
<param name="actionCompleted">The completed action.</param>
</member>
2019-01-28 17:41:36 +00:00
<member name="T:RecrownedAthenaeum.UI.SkinSystem.SkinManager">
2019-01-23 01:31:31 +00:00
<summary>
Manages reference to default and loading of custom skins.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="P:RecrownedAthenaeum.UI.SkinSystem.SkinManager.MergingSkins">
2019-01-23 01:31:31 +00:00
<summary>
2019-01-28 17:41:36 +00:00
Whether or not the skin manager is set up with a <see cref="P:RecrownedAthenaeum.UI.SkinSystem.SkinManager.BaseSkin"/> and <see cref="P:RecrownedAthenaeum.UI.SkinSystem.SkinManager.loadedSkin"/>.
2019-01-23 01:31:31 +00:00
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="P:RecrownedAthenaeum.UI.SkinSystem.SkinManager.SkinUseable">
2019-01-27 05:57:00 +00:00
<summary>
Whether or not this manager has been set up with at least a base skin.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.SkinManager.skinPaths">
2019-01-23 01:31:31 +00:00
<summary>
2019-01-28 17:41:36 +00:00
The list of paths for all found skins by <see cref="M:RecrownedAthenaeum.UI.SkinSystem.SkinManager.SearchSkinDirectory"/>. May be null.
2019-01-23 01:31:31 +00:00
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="E:RecrownedAthenaeum.UI.SkinSystem.SkinManager.AsyncCompleteEvent">
2019-01-23 01:31:31 +00:00
<summary>
The event that is called when a state changes.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="T:RecrownedAthenaeum.UI.SkinSystem.SkinManager.Action">
2019-01-23 01:31:31 +00:00
<summary>
The various possible states a skin manager could be in.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.SkinManager.Action.SEARCH">
2019-01-23 01:31:31 +00:00
<summary>
After a search has completed.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.SkinManager.Action.LOAD">
2019-01-23 01:31:31 +00:00
<summary>
Having the skin generated to be in a useable state.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="P:RecrownedAthenaeum.UI.SkinSystem.SkinManager.Skin">
2019-01-23 01:31:31 +00:00
<summary>
the skin that favors the selected skin, but still has a fallback to the default skin in case anything is missing.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="P:RecrownedAthenaeum.UI.SkinSystem.SkinManager.loadedSkin">
2019-01-23 01:31:31 +00:00
<summary>
The user loaded skin resulted from asynchronous <see cref="M:RecrownedAthenaeum.UI.SkinSystem.SkinManager.LoadSkin(System.String,Microsoft.Xna.Framework.Graphics.GraphicsDevice)"/>.
2019-01-23 01:31:31 +00:00
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="P:RecrownedAthenaeum.UI.SkinSystem.SkinManager.BaseSkin">
2019-01-23 01:31:31 +00:00
<summary>
2019-01-27 05:57:00 +00:00
The default skin in case the selected skin doesn't cover a specific definition or color.
2019-01-23 01:31:31 +00:00
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.SkinManager.skinsDirectory">
2019-01-23 01:31:31 +00:00
<summary>
The directory that contains the skins.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.SkinManager.SearchSkinDirectory">
2019-01-23 01:31:31 +00:00
<summary>
2019-01-28 17:41:36 +00:00
Performs a recursive asynchronous search of the directory given in a path set by <see cref="F:RecrownedAthenaeum.UI.SkinSystem.SkinManager.skinsDirectory"/>.
2019-01-23 01:31:31 +00:00
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="M:RecrownedAthenaeum.UI.SkinSystem.SkinManager.ReadSkinData(System.String)">
2019-01-23 01:31:31 +00:00
<summary>
Reads skin data if extension is valid.
</summary>
<param name="path">the path to load from.</param>
<returns>A <see cref="T:RecrownedAthenaeum.Data.SkinData"/> that holds all the information and some metadata for the loaded skin.</returns>
</member>
<member name="M:RecrownedAthenaeum.UI.SkinSystem.SkinManager.LoadSkin(System.String,Microsoft.Xna.Framework.Graphics.GraphicsDevice)">
2019-01-23 01:31:31 +00:00
<summary>
2019-01-28 17:41:36 +00:00
loads a skin asynchronously to the <see cref="P:RecrownedAthenaeum.UI.SkinSystem.SkinManager.loadedSkin"/>.
2019-01-23 01:31:31 +00:00
</summary>
2019-01-28 17:41:36 +00:00
<param name="path">The path pointing to the file with the extension "<see cref="F:RecrownedAthenaeum.UI.SkinSystem.SkinManager.EXTENSION"/>".</param>
<param name="graphicsDevice">Graphics device to use for texture creation.</param>
2019-01-23 01:31:31 +00:00
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.MergedSkin.mainSkin">
2019-01-23 01:31:31 +00:00
<summary>
The skin to try to use first.
</summary>
</member>
2019-01-28 17:41:36 +00:00
<member name="F:RecrownedAthenaeum.UI.SkinSystem.MergedSkin.alternateSkin">
2019-01-23 01:31:31 +00:00
<summary>
The fallback skin.
2019-01-15 23:59:19 +00:00
</summary>
</member>
</members>
</doc>