Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by afot2020 · Sep 13, 2020 at 08:24 PM · savingsave databinaryformatter

Initialize List in User Data Class without deleting binary file

Hi, in my game I save the Data in a binary file using a UserData Class. For the next update I want to add a List of Integers (unlocked Levels), but it doesn't work (nullreferenceexcepetion). I already know the cause: the file already exists but is empty because the List didn't get initialized. This is the UserData. class before the update (excerpt):

 [Serializable]
  public class UserData
  {
      public int score;
 
      public UserData()
      {
      score = 50;
      }
  }

And now I added the new List:

 [Serializable]
  public class UserData
  {
      public int score;
      public List<int> unlockedLevels;
      public UserData()
      {
      score = 50;
      unlockedLevels = new List<int>();
      unlockedLevels.Add(1); //unlocked by default
      }
  }

For saving and loading Data I use my Data Manager Class:

 public static class DataManager
  {
      public static List<int> GetUnlockedLevels()
      {
          UserData userData = Load();
          return userData.unlockedLevels; 
      }
  
      private static void Save(UserData data)
      {
          string path = GetDataFilePath();
          BinaryFormatter binaryFormatter = new BinaryFormatter();
          using (FileStream fileStream = File.Open(path, FileMode.OpenOrCreate))
          {
              binaryFormatter.Serialize(fileStream, data);
          }
      }
  
      private static UserData Load()
      {
          string path = GetDataFilePath();
          if (!File.Exists(path))
          {
              UserData userData = new UserData();
              Save(userData); 
          }
          BinaryFormatter binaryFormatter = new BinaryFormatter();
          using (FileStream fileStream = File.Open(path, FileMode.Open))
          {
              return (UserData)binaryFormatter.Deserialize(fileStream);
          }
      }

In the Unity Editor I could solve issue this by deleting the file and start the game again. However to solve it on the device I think I have to uninstall the app and reinstall it. But this is no solution for me as there are already people owning the app. How can I solve this through code? How can I get the list initialized without deleting the file?

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

135 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Is this code handling fall back on previous saves upon failure the right way? 2 Answers

How to save list of Sprites? 1 Answer

Binary formatter problem 0 Answers

Saving a game object instantiated after runtime. 2 Answers

Saving system tutorial / Load through main menu 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges