XNA:保存数据到文件和从文件读取数据

原文地址:保存数据到文件和从文件读取数据

基于最新的XNA Game Studio 4.0的环境下,因为XNA Game Studio 4.0以前的版本有些方法有变动。
前提:已经有一个正确的StorageDevice和定义好要保存的数据。
[Serializable]
public struct SaveGameData
{
public string PlayerName;
public Vector2 AvatarPosition;
public int Level;
public int Score;
}
一.To serialize data to a save game file
1.Create a StorageContainer to access the specified device.
// Open a storage container.
IAsyncResult result = device.BeginOpenContainer("StorageDemo", null, null);
// Wait for the WaitHandle to become signaled.
result.AsyncWaitHandle.WaitOne();
StorageContainer container = device.EndOpenContainer(result);
// Close the wait handle.
result.AsyncWaitHandle.Close();
2.Call FileExists to determine if an earlier save game file exists, and if it does, call DeleteFile to delete it.
string filename = "savegame.sav";
// Check to see whether the save exists.
if (container.FileExists(filename))
// Delete it so that we can create one fresh.
container.DeleteFile(filename);
3.Create a Stream object on the file by using the CreateFile method.
// Create the file.
Stream stream = container.CreateFile(filename);
4.Create an XmlSerializer object, passing the type of the structure that defines your save game data.
// Convert the object to XML data and put it in the stream.
XmlSerializer serializer = new XmlSerializer(typeof(SaveGameData));
5.Call Serialize, and then pass the Stream and the data to serialize.
The XmlSerializer converts data in the structure to XML, and uses the Stream to write the data into the file.
serializer.Serialize(stream, data);
6.Close the Stream.
// Close the file.
stream.Close();
7.Dispose the StorageContainer to commit the changes to the device.
// Dispose the container, to commit changes.
container.Dispose();
二.To read serialized data from a save game file
1.Create a StorageContainer to access the specified device.
// Open a storage container.
IAsyncResult result = device.BeginOpenContainer("StorageDemo", null, null);
// Wait for the WaitHandle to become signaled.
result.AsyncWaitHandle.WaitOne();
StorageContainer container = device.EndOpenContainer(result);
// Close the wait handle.
result.AsyncWaitHandle.Close();
2.Call FileExists to determine if the save game exists.
string filename = "savegame.sav";
// Check to see whether the save exists.
if (!container.FileExists(filename))
{
// If not, dispose of the container and return.
container.Dispose();
return;
}
3.Open a Stream object on the file by using the OpenFile method.
// Open the file.
Stream stream = container.OpenFile(filename, FileMode.Open);
4.Create an XmlSerializer object, and then pass the type of the structure that defines your save game data.
CopyXmlSerializer serializer = new XmlSerializer(typeof(SaveGameData));
5.Call Deserialize, and then pass the Stream object.
Deserialize returns a copy of the save game structure populated with the data from the save game file. (You will have to cast the return value from Object to your type.)
SaveGameData data = (SaveGameData)serializer.Deserialize(stream);
6.Close the Stream.
// Close the file.
stream.Close();
7.Dispose the StorageContainer.
// Dispose the container.
container.Dispose();

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值