Skip to content
Snippets Groups Projects
Commit 3a724039 authored by Susan Yuen's avatar Susan Yuen :rabbit2:
Browse files

Merge branch 'revert-a7c38126' into 'master'

Revert "Begun the process of finding shortest path. DFS is being implemented. Added Edge…"

This reverts commit a7c38126

See merge request !4
parents 82524980 e75540e4
No related branches found
No related tags found
1 merge request!4Revert "Begun the process of finding shortest path. DFS is being implemented. Added Edge…"
Showing
with 7104 additions and 164 deletions
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
class Edge
{
public Edge(Node A, Node B)
{
// for debugging purposes, this will show the connection when it is created.
Console.Write(A.getId());
Console.Write(" to ");
Console.Write(B.getId());
Console.WriteLine();
}
}
}
......@@ -12,7 +12,6 @@ namespace Model
private int width; // width of the graph (by number of nodes)
private int height; // height of the graph (by number of nodes)
private Node[,] nodes; // list of nodes in the graph
public Graph(int x, int y)
{
......@@ -21,37 +20,15 @@ namespace Model
numberOfNodes = x * y;
// initialize nodes inside the graph
// Each node will also have a set of edges,
// depending on it's location determines how many edges are in that set.
nodes = new Node[x, y];
int id = 0; // this identifies the node
for (int i = 0; i < x; i++)
{
for (int j = 0; j < y; j++)
{
nodes[i, j] = new Node(i, j, id);
id = id + 1;
// if the "previous" i coordinate isn't off the map, add edge
if (i-1 >= 0)
{
nodes[i, j].addEdge(nodes[i - 1, j]);
}
// if the "previous" j coordinate isn't off the map
if (j-1 >= 0)
{
nodes[i, j].addEdge(nodes[i, j - 1]);
}
nodes[i, j] = new Node(i, j);
}
}
}
public int getNumberOfNodes()
{
......@@ -89,20 +66,5 @@ namespace Model
{
return height;
}
public Node getNode(int nodeID)
{
for(int i = 0; i < this.width; i++)
{
for(int j = 0; j < this.height; j++)
{
if(nodes[i, j].getId() == nodeID)
{
return nodes[i, j];
}
}
}
// this should never be reached
return null;
}
}
}
......@@ -7,10 +7,6 @@ namespace Model
{
class MapFunction
{
private int source; // The Units starting position
private Boolean[] seen; // is there a path from source to mouse click?
private int[] edgeTo; // last edge on source to mouse click path
private LinkedList<LinkedList<Node>> allPaths;
// ===================================================================================================
// HOW TO DO PATH FINDER:
......@@ -21,7 +17,6 @@ namespace Model
// *A way to optimize, if the path exceeds unit.movability (linear) or unit.movability-1 (non-linear) spaces, then throw it out.
// > If there is a valid path, movement is allowed to that node.
// > Return the shortest path.
// Need to implement a method where if a node is an obstacle, remove all connections to that node.
// Warrior example: https://gyazo.com/a350ccc14ca455d832d26ace65a1d0a2
......@@ -32,77 +27,16 @@ namespace Model
// returns list of nodes representing the path from start node to end node; if no path is valid, return null
public LinkedList<Node> pathFinder(Graph graph, Unit unit, Node start, Node end)
{
if (end.getIsObstacle())
{
return null;
}
int movement = unit.getMovability(); // the total distance a unit can move
LinkedList<Node> path = new LinkedList<Node>();
path.AddFirst(start);
// TODO: finds path to highlight for unit movement
path.AddLast(end);
return path;
}
public int subtractFromMovement(int remaining, int obstruction)
{
return remaining - obstruction;
}
public MapFunction(Graph graph, Node Start, Unit unit)
{
this.source = Start.getId();
edgeTo = new int[unit.getMovability()]; // the paths can only be as long as the units movement
seen = new Boolean[unit.getMovability()];
}
public Boolean hasPathTo(int nodeId)
{
return seen[nodeId];
}
// function to find all paths
private void depthFirstSearch(Graph graph, Node next)
{
int s = next.getId();
seen[s] = true;
for (int i = 0; i < next.getAdjacencies().LongCount(); i++)
{
if (!seen[i])
{
edgeTo[i] = s;
depthFirstSearch(graph, graph.getNode(s)); // gets the node by matching it's id
//to the node it belongs with
}
}
}
// add pathways to one giant Linked List
public void addPath(Graph graph, Node endNode)
{
int sum;
LinkedList<Node> pathway = new LinkedList<Node>();
for (int x = endNode.getId(); x != source; x = edgeTo[x])
{
pathway.AddFirst(graph.getNode(x));
}
allPaths.AddFirst(pathway);
}
// counts the total sum of each linked list based on it's move hinderance.
// Need to Finish still
public LinkedList<Node> shortestPath(LinkedList<LinkedList<Node>> allPaths)
{
int min; // holds the minimum valued path from point A to B
for(int i = 0; i < allPaths.LongCount(); i++)
{
//for(int j = 0; j < allPaths(i).LongCount(); j++)
//{
//}
}
return null;
}
}
}
......@@ -11,17 +11,13 @@ namespace Model
private bool isObstacle; // indicates whether a unit can stand inside the tile
private int positionX; // position x on the grid
private int positionY; // position y on the grid
private int id; // to identify the node
private LinkedList<int> adjacentNodes; // to have a list of all connections
public Node(int x, int y, int number)
public Node(int x, int y)
{
positionX = x;
positionY = y;
movabilityObstruction = 0; // defaults to no hindrance in unit movement
isObstacle = false; // default to non-obstacle tile
id = number;
adjacentNodes = new LinkedList<int>();
}
public void setMovabilityObstruction(int m)
......@@ -53,34 +49,5 @@ namespace Model
{
return positionY;
}
// is node A connected to B ?
// all adjacent nodes are connected
public bool isAdjacent(Node other)
{
if (this.getPositionX() == other.getPositionX() - 1) { return true; }
else if(this.getPositionX() == other.getPositionX() + 1) { return true; }
else if(this.getPositionY() == other.getPositionY() - 1) { return true; }
else if(this.getPositionY() == other.getPositionY() + 1) { return true; }
else { return false; }
}
// connect two nodes together
public Edge addEdge(Node other) {
// connect the current edge to other edge.
Edge edge = new Edge(this, other);
// add connection to a linked list of all connections for the node.
adjacentNodes.AddFirst(other.getId());
return edge;
}
public int getId()
{
return id;
}
// getter function for list of adjacent nodes.
public LinkedList<int> getAdjacencies()
{
return this.adjacentNodes;
}
}
}
File added
File added
File added
File added
File added
File added
<?xml version="1.0" encoding="utf-8"?>
<doc>
<members>
<member name="T:Microsoft.Xna.Framework.Input.Touch.GestureSample">
<summary>A representation of data from a multitouch gesture over a span of time.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Delta">
<summary>Holds delta information about the first touchpoint in a multitouch gesture.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Delta2">
<summary>Holds delta information about the second touchpoint in a multitouch gesture.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.GestureType">
<summary>The type of gesture in a multitouch gesture sample.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Position">
<summary>Holds the current position of the first touchpoint in this gesture sample.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Position2">
<summary>Holds the current position of the the second touchpoint in this gesture sample.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Timestamp">
<summary>Holds the starting time for this touch gesture sample.</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Input.Touch.GestureType">
<summary>Contains values that represent different multitouch gestures that can be detected by TouchPanel.ReadGesture. Reference page contains links to related code samples.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.DoubleTap">
<summary>The user tapped the screen twice in quick succession. This always is preceded by a Tap gesture. If the time between taps is too great to be considered a DoubleTap, two Tap gestures will be generated instead.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.DragComplete">
<summary>A drag gesture (VerticalDrag, HorizontalDrag, or FreeDrag) was completed. This signals only completion. No position or delta data is valid for this sample.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Flick">
<summary>The user performed a touch combined with a quick swipe of the screen. Flicks are positionless. The velocity of the flick can be retrieved by reading the Delta member of GestureSample.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.FreeDrag">
<summary>The user touched the screen, and then performed a free-form drag gesture.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Hold">
<summary>The user touched a single point on the screen for approximately one second. This is a single event, and not continuously generated while the user is holding the touchpoint.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.HorizontalDrag">
<summary>The user touched the screen, and then performed a horizontal (left to right or right to left) gesture.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.None">
<summary>Represents no gestures.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Pinch">
<summary>The user touched two points on the screen, and then converged or diverged them. Pinch behaves like a two-finger drag. When this gesture is enabled, it takes precedence over drag gestures while two fingers are down.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.PinchComplete">
<summary>A pinch operation was completed. This signals only completion. No position or delta data is valid for this sample.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Tap">
<summary>The user briefly touched a single point on the screen.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.VerticalDrag">
<summary>The user touched the screen, and then performed a vertical (top to bottom or bottom to top) gesture.</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchCollection">
<summary>Provides methods and properties for accessing state information for the touch screen of a touch-enabled device. Reference page contains links to related code samples.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.#ctor(Microsoft.Xna.Framework.Input.Touch.TouchLocation[])">
<summary>Initializes a new instance of the TouchCollection structure with a set of touch locations. Reference page contains links to related code samples.</summary>
<param name="touches">Array of touch locations.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Add(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
<summary>Adds a TouchLocation to the collection.</summary>
<param name="item">TouchLocation to add.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Clear">
<summary>Removes all TouchLocation objects from the collection.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Contains(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
<summary>Checks if the current touch collection contains the specified touch location.</summary>
<param name="item">Touch location to be checked against the current collection.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.CopyTo(Microsoft.Xna.Framework.Input.Touch.TouchLocation[],System.Int32)">
<summary>Copies the touch location to the collection at the specified index.</summary>
<param name="array">Array receiving the copied touch location.</param>
<param name="arrayIndex">Target index of the collection.</param>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Count">
<summary>Gets the current number of touch locations for the touch screen.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.FindById(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocation@)">
<summary>Retrieves the touch location matching the specified ID.</summary>
<param name="id">ID of touch location sought.</param>
<param name="touchLocation">[OutAttribute] Touch location item matching the specified ID.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.GetEnumerator">
<summary>Returns an enumerator that iterates through the TouchCollection.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.IndexOf(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
<summary>Determines the index of a TouchLocation in the TouchCollection.</summary>
<param name="item">TouchLocation to locate in the collection.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Insert(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
<summary>Inserts a new TouchLocation into the TouchCollection at a specified index.</summary>
<param name="index">Index in the touch collection for the new item.</param>
<param name="item">TouchLocation to be inserted.</param>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.IsConnected">
<summary>Indicates if the touch screen is available for use.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.IsReadOnly">
<summary>Determines if the touch location array is read-only.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Item(System.Int32)">
<summary>Gets or sets the information of the specified touch location.</summary>
<param name="index">Index of the touch location to return.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Remove(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
<summary>Removes the specified TouchLocation from the TouchCollection.</summary>
<param name="item">TouchLocation to be removed.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.RemoveAt(System.Int32)">
<summary>Removes a TouchLocation at the specified index in the TouchCollection.</summary>
<param name="index">Index of the TouchLocation to remove.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>Returns an enumerator that iterates through the TouchCollection.</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator">
<summary>Provides the ability to iterate through the touch locations in a TouchCollection.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.Current">
<summary>Gets the current element in the TouchCollection.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.Dispose">
<summary>Immediately releases the unmanaged resources used by this object.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.MoveNext">
<summary>Advances the enumerator to the next element of the TouchCollection.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.System#Collections#IEnumerator#Current">
<summary>Gets the current element in the TouchCollection as an object.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.System#Collections#IEnumerator#Reset">
<summary>Sets the enumerator to its initial position, which is before the first element in the TouchCollection.</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchLocation">
<summary>Provides methods and properties for interacting with a touch location on a touch screen device. Reference page contains links to related code samples.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.#ctor(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocationState,Microsoft.Xna.Framework.Vector2)">
<summary>Initializes a new TouchLocation with an ID, state, position, and pressure.</summary>
<param name="id">ID of the new touch location.</param>
<param name="state">State of the new touch location.</param>
<param name="position">Position, in screen coordinates, of the new touch location.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.#ctor(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocationState,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Input.Touch.TouchLocationState,Microsoft.Xna.Framework.Vector2)">
<summary>Initializes a new TouchLocation with an ID, and a set of both current and previous state, position, and pressure values.</summary>
<param name="id">ID of the new touch location.</param>
<param name="state">State of the new touch location.</param>
<param name="position">Position, in screen coordinates, of the new touch location.</param>
<param name="previousState">Previous state for the new touch location.</param>
<param name="previousPosition">Previous position for the new touch location.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Equals(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
<summary>Determines whether the current TouchLocation is equal to the specified TouchLocation.</summary>
<param name="other">The TouchLocation to compare with this instance.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Equals(System.Object)">
<summary>Determines whether the current TouchLocation is equal to the specified object.</summary>
<param name="obj">The Object to compare with the touch location.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.GetHashCode">
<summary>Gets the hash code for this TouchLocation.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Id">
<summary>Gets the ID of the touch location.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.op_Equality(Microsoft.Xna.Framework.Input.Touch.TouchLocation,Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
<summary>Determines whether two TouchLocation instances are equal.</summary>
<param name="value1">The TouchLocation to compare with the second.</param>
<param name="value2">The TouchLocation to compare with the first.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.op_Inequality(Microsoft.Xna.Framework.Input.Touch.TouchLocation,Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
<summary>Determines whether two TouchLocation instances are unequal.</summary>
<param name="value1">The TouchLocation to compare with the second.</param>
<param name="value2">The TouchLocation to compare with the first.</param>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Position">
<summary>Gets the position of the touch location.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchLocation.State">
<summary>Gets the state of the touch location.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.ToString">
<summary>Gets a string representation of the TouchLocation.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.TryGetPreviousLocation(Microsoft.Xna.Framework.Input.Touch.TouchLocation@)">
<summary>Attempts to get the previous location of this touch location object.</summary>
<param name="previousLocation">[OutAttribute] Previous location data, as a TouchLocation.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchLocationState">
<summary>Defines the possible states of a touch location. Reference page contains links to related code samples.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Invalid">
<summary>This touch location position is invalid. Typically, you will encounter this state when a new touch location attempts to get the previous state of itself.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Moved">
<summary>This touch location position was updated or pressed at the same position.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Pressed">
<summary>This touch location position is new.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Released">
<summary>This touch location position was released.</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchPanel">
<summary>Provides methods for retrieving touch panel device information. Reference page contains links to related code samples.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.DisplayHeight">
<summary>Gets or sets the display height of the touch panel.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.DisplayOrientation">
<summary>Gets or sets the display orientation of the touch panel.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.DisplayWidth">
<summary>Gets or sets the display width of the touch panel.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.EnabledGestures">
<summary>Gets or sets the gestures that are enabled for the touch panel. Reference page contains links to related code samples.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchPanel.GetCapabilities">
<summary>Gets the touch panel capabilities for an available device. Reference page contains links to related code samples.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchPanel.GetState">
<summary>Gets the current state of the touch panel. Reference page contains links to related code samples.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.IsGestureAvailable">
<summary>Used to determine if a touch gesture is available. Reference page contains links to related code samples.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchPanel.ReadGesture">
<summary>Reads an available gesture on the touch panel. Reference page contains links to related code samples.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.WindowHandle">
<summary>The window handle of the touch panel.</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchPanelCapabilities">
<summary>Provides access to information about the capabilities of the touch input device. Reference page contains links to related code samples.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanelCapabilities.IsConnected">
<summary>Indicates if the touch panel device is available for use.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanelCapabilities.MaximumTouchCount">
<summary>Gets the maximum number of touch locations that can be tracked by the touch pad device.</summary>
</member>
</members>
</doc>
\ No newline at end of file
File added
File added
<?xml version="1.0" encoding="utf-8"?>
<doc>
<members>
<member name="T:Microsoft.Xna.Framework.Storage.StorageContainer">
<summary>Represents a logical collection of storage files. Reference page contains links to related conceptual articles.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.CreateDirectory(System.String)">
<summary>Creates a new directory in the StorageContainer scope.</summary>
<param name="directory">The relative path of the directory to delete within the StorageContainer scope.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.CreateFile(System.String)">
<summary>Creates a file at a specified path in the StorageContainer.</summary>
<param name="file">The relative path of the file to be created in the StorageContainer.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.DeleteDirectory(System.String)">
<summary>Deletes a directory in the StorageContainer scope.</summary>
<param name="directory">The relative path of the directory to delete within the StorageContainer scope.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.DeleteFile(System.String)">
<summary>Deletes a file in the StorageContainer.</summary>
<param name="file">The relative path of the file to delete within the StorageContainer.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.DirectoryExists(System.String)">
<summary>Determines whether the specified path refers to an existing directory in the StorageContainer.</summary>
<param name="directory">The path to test.</param>
</member>
<member name="P:Microsoft.Xna.Framework.Storage.StorageContainer.DisplayName">
<summary>Gets the name of the title.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.Dispose">
<summary>Immediately releases the unmanaged resources used by this object.</summary>
</member>
<member name="E:Microsoft.Xna.Framework.Storage.StorageContainer.Disposing">
<summary>Occurs when Dispose is called or when this object is finalized and collected by the garbage collector of the Microsoft .NET common language runtime.</summary>
<param name="" />
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.FileExists(System.String)">
<summary>Determines whether the specified path refers to an existing file in the StorageContainer.</summary>
<param name="file">The path and file name to test.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.Finalize">
<summary>Allows this object to attempt to free resources and perform other cleanup operations before garbage collection reclaims the object.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.GetDirectoryNames">
<summary>Enumerates the directories in the root of a StorageContainer.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.GetDirectoryNames(System.String)">
<summary>Enumerates the directories in the root of a StorageContainer that conform to a search pattern.</summary>
<param name="searchPattern">A search pattern. Both single-character ("?") and multicharacter ("*") wildcards are supported.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.GetFileNames">
<summary>Enumerates files in the root directory of a StorageContainer.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.GetFileNames(System.String)">
<summary>Enumerates files in the root directory of a StorageContainer that match a given pattern.</summary>
<param name="searchPattern">A search pattern. Both single-character ("?") and multicharacter ("*") wildcards are supported.</param>
</member>
<member name="P:Microsoft.Xna.Framework.Storage.StorageContainer.IsDisposed">
<summary>Gets a value that indicates whether the object is disposed.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.OpenFile(System.String,System.IO.FileMode)">
<summary>Opens a file in the StorageContainer.</summary>
<param name="file">Relative path of the file within the StorageContainer.</param>
<param name="fileMode">One of the enumeration values that specifies how to open the file.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.OpenFile(System.String,System.IO.FileMode,System.IO.FileAccess)">
<summary>Opens a file in the StorageContainer in the designated mode with the specified read/write access.</summary>
<param name="file">Relative path of the file within the StorageContainer.</param>
<param name="fileMode">One of the enumeration values that specifies how to open the file.</param>
<param name="fileAccess">One of the enumeration values that specifies whether the file is opened with read, write, or read/write access.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageContainer.OpenFile(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
<summary>Opens a file in the StorageContainer in the designated mode with the specified read/write access and sharing permission.</summary>
<param name="file">Relative path of the file within the StorageContainer.</param>
<param name="fileMode">One of the enumeration values that specifies how to open the file.</param>
<param name="fileAccess">One of the enumeration values that specifies whether the file is opened with read, write, or read/write access.</param>
<param name="fileShare">A bitwise combination of enumeration values that specify the type of access other Stream objects have to this file.</param>
</member>
<member name="P:Microsoft.Xna.Framework.Storage.StorageContainer.StorageDevice">
<summary>Gets the StorageDevice that holds the files in this container.</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Storage.StorageDevice">
<summary>Represents a storage device for user data, such as a memory unit or hard drive. Reference page contains links to related conceptual articles.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDevice.BeginOpenContainer(System.String,System.AsyncCallback,System.Object)">
<summary>Begins the process for opening a StorageContainer containing any files for the specified title.</summary>
<param name="displayName">A constant human-readable string that names the file.</param>
<param name="callback">An AsyncCallback that represents the method called when the operation is complete.</param>
<param name="state">A user-created object used to uniquely identify the request, or null.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDevice.BeginShowSelector(Microsoft.Xna.Framework.PlayerIndex,System.AsyncCallback,System.Object)">
<summary>Begins the process for displaying the storage device selector user interface; specifies the callback implemented when the player chooses a device. Reference page contains links to related code samples.</summary>
<param name="player">The PlayerIndex that represents the player who requested the save operation. On Windows, the only valid option is PlayerIndex.One.</param>
<param name="callback">An AsyncCallback that represents the method called when the player chooses a device.</param>
<param name="state">A user-created object used to uniquely identify the request, or null.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDevice.BeginShowSelector(Microsoft.Xna.Framework.PlayerIndex,System.Int32,System.Int32,System.AsyncCallback,System.Object)">
<summary>Begins the process for displaying the storage device selector user interface, for specifying the player who requested the save operation, for setting the size of data to be written to the storage device, and for naming the callback implemented when the player chooses a device. Reference page contains links to related code samples.</summary>
<param name="player">The PlayerIndex that represents the player who requested the save operation. On Windows, the only valid option is PlayerIndex.One.</param>
<param name="sizeInBytes">The size, in bytes, of the data to write to the storage device.</param>
<param name="directoryCount">The number of directories to write to the storage device.</param>
<param name="callback">An AsyncCallback that represents the method called when the player chooses a device.</param>
<param name="state">A user-created object used to uniquely identify the request, or null.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDevice.BeginShowSelector(System.AsyncCallback,System.Object)">
<summary>Begins the process for displaying the storage device selector user interface, and for specifying a callback implemented when the player chooses a device. Reference page contains links to related code samples.</summary>
<param name="callback">An AsyncCallback that represents the method called when the player chooses a device.</param>
<param name="state">A user-created object used to uniquely identify the request, or null.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDevice.BeginShowSelector(System.Int32,System.Int32,System.AsyncCallback,System.Object)">
<summary>Begins the process for displaying the storage device selector user interface, and for specifying the size of the data to be written to the storage device and the callback implemented when the player chooses a device. Reference page contains links to related code samples.</summary>
<param name="sizeInBytes">The size, in bytes, of data to write to the storage device.</param>
<param name="directoryCount">The number of directories to write to the storage device.</param>
<param name="callback">An AsyncCallback that represents the method called when the player chooses a device.</param>
<param name="state">A user-created object used to uniquely identify the request, or null.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDevice.DeleteContainer(System.String)">
<summary />
<param name="titleName">The name of the storage container to delete.</param>
</member>
<member name="E:Microsoft.Xna.Framework.Storage.StorageDevice.DeviceChanged">
<summary>Occurs when a device is removed or inserted.</summary>
<param name="" />
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDevice.EndOpenContainer(System.IAsyncResult)">
<summary>Ends the process for opening a StorageContainer.</summary>
<param name="result">The IAsyncResult returned from BeginOpenContainer.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDevice.EndShowSelector(System.IAsyncResult)">
<summary>Ends the display of the storage selector user interface. Reference page contains links to related code samples.</summary>
<param name="result">The IAsyncResult returned from BeginShowSelector.</param>
</member>
<member name="P:Microsoft.Xna.Framework.Storage.StorageDevice.FreeSpace">
<summary>Gets the amount of free space on the device.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Storage.StorageDevice.IsConnected">
<summary>Gets whether the device is connected.</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Storage.StorageDevice.TotalSpace">
<summary>Gets the total amount of space on the device.</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Storage.StorageDeviceNotConnectedException">
<summary>The exception that is thrown when the requested StorageDevice is not connected.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDeviceNotConnectedException.#ctor">
<summary>Initializes a new instance of this class.</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDeviceNotConnectedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Initializes a new instance of this class during deserialization.</summary>
<param name="info">The information needed to serialize an object.</param>
<param name="context">The source or destination for the serialization stream.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDeviceNotConnectedException.#ctor(System.String)">
<summary>Initializes a new instance of this class with a specified error message.</summary>
<param name="message">A message that describes the error.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Storage.StorageDeviceNotConnectedException.#ctor(System.String,System.Exception)">
<summary>Initializes a new instance of this class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
<param name="message">A message that describes the error.</param>
<param name="innerException">The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
</member>
</members>
</doc>
\ No newline at end of file
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment