无法序列化我的游戏统计信息

时间:2017-12-07 12:49:26

标签: c# unity3d serialization save unity5

我正在尝试使用系统序列化来保存我的游戏统计数据,但我无法做到这一点我有两个脚本,一个名为" Stats"另一个名为" SaveLoad"在" Stats"我有我的序列化和" SaveLoad"我有我的保存和加载脚本我按照这里的说明

https://gamedevelopment.tutsplus.com/tutorials/how-to-save-and-load-your-players-progress-in-unity--cms-20934

但是因为我是这个东西的初学者,而且我的可加密数据不同,我在保存它时遇到了问题。

我的"统计"

 using UnityEngine;
 using System.Collections;
[System.Serializable]
public class Stats : MonoBehaviour {

public static int coins = 0;
public static int totalcoins = 0;
public static int score = 0;

public static int personalbest = 0;
public static float UmbrellaSpeed = 0.1f;
public static float currentumbdur = 500;

public static int CarrotSpawnRateLVL = 1;
public static float CarrotSpawnRate = 60f;
public static int CarrotSpawnRateUpgradeCost = 15;


public static int UmbrellaDurabilityLVL = 1;
public static float UmbrellaDurability = 500;
public static int UmbrellaDurabilityUpgradeCost = 30;

public static int UmbrellaSizeLVL = 1;
public static float UmbrellaSize = 0f;
public static int UmbrellaSizeUpgradeCost = 25;


public static int CarrotEffectLVL = 1;
public static float CarrotEffect = 20;
public static int CarrotEffectUpgradeCost = 25;


public static int HealthRegenLVL = 1;
public static float HealthRegenTime = 4f;
public static int HealthRegenCost = 100;


public static int BuyTreesCost = 250;

public static int Tree1Bought = 0;
public static float Tree1Size = 0;
public static int Tree1SizeLVL = 1;
public static int Tree1SizeUpgradeCost = 50;

public static int Tree2Bought = 0;
public static float Tree2Size = 0;
public static int Tree2SizeLVL = 1;
public static int Tree2SizeUpgradeCost = 50;

public static int Tree3Bought = 0;
public static float Tree3Size =0;
public static int Tree3SizeLVL = 1;
public static int Tree3SizeUpgradeCost = 50;

// Use this for initialization
void Start () {
    InvokeRepeating ("AddCoins", 4.0f, 2.0f);
    InvokeRepeating ("AddScore", 1.5f, 1.5f);
}

// Update is called once per frame
void Update () {
    if (score > personalbest) {
        personalbest = score;
    }
    //Debug.Log (" " + coins);
}

void AddCoins (){       
    if (BunnyScript.BunnyAlive == true) {
        coins += 1;

    }
}

void AddScore (){
    if (BunnyScript.BunnyAlive == true) {
        score += 1;
    }
}

}

我的" SaveLoad"脚本

using UnityEngine;
using System.Collections;
using System.Collections.Generic; 
using System.Runtime.Serialization.Formatters.Binary; 
using System.IO;

public static class SaveLoad {
public static List<Stats> savedGames = new List<Stats>();

public static void Save (){
    savedGames.Add(Stats);
    BinaryFormatter bf = new BinaryFormatter();
    FileStream file = File.Create (Application.persistentDataPath + "/savedGames.gd");
    bf.Serialize(file, SaveLoad.savedGames);
    file.Close();
}

public static void Load (){
    if (File.Exists (Application.persistentDataPath + "/savedGames.gd")) {
        BinaryFormatter bf = new BinaryFormatter();
        FileStream file = File.Open(Application.persistentDataPath + "/savedGames.gd", FileMode.Open);
        SaveLoad.savedGames = (List<Stats>)bf.Deserialize(file);
        file.Close();
    }
}
}

1 个答案:

答案 0 :(得分:1)

你不应该序列化MonoBehaviour类来存储数据,下面有很多你不能在这种类型中看到它是错误的。

此外,您有一个stats对象列表,但它只包含静态值,因此所有Stats对象都具有相同的内容。

 using UnityEngine;
 using System.Collections;

public class Stats : MonoBehaviour 
{
    StatContainer stats = new StatContainer();

    // Use this for initialization
    void Start () {
       InvokeRepeating ("AddCoins", 4.0f, 2.0f);
       InvokeRepeating ("AddScore", 1.5f, 1.5f);
    }

     // Update is called once per frame
    void Update () {
        this.stats.Update();
    }

    void AddCoins (){       
       stats.AddCoins();
    }

    void AddScore (){
       stats.AddScore();
    }
}
[Serializable]
public class StatContainer
{
    public int coins = 0;
    public int totalcoins = 0;
    public int score = 0;

    public int personalbest = 0;
    public float UmbrellaSpeed = 0.1f;
    public float currentumbdur = 500;

    public  int CarrotSpawnRateLVL = 1;
    public float CarrotSpawnRate = 60f;
    public int CarrotSpawnRateUpgradeCost = 15;

    // and the rest

    public void Update(){
       if (statscore > personalbest) {
             personalbest = score;
       }
    }
}

现在,您可以按照自己的方式序列化StatContainer。 由于没有静态方法,因此每个Stats组件上的每个StatContainr都是唯一的,并且不与其他组件共享任何内容。

并且奖励,您甚至可以使用StatContainer更轻松地执行单元测试,但这是另一个主题。