当前位置:   article > 正文

Unity 持久化存储以及实时数据保存_unity 实时存档 性能

unity 实时存档 性能

代码很简单没有难度,都有注解,随便 康一康 就会了。

数据存储

使用 ScriptableObject 类来再Unity编辑器情况下进行基础数据存储
注意:ScriptableObject 只能在Unity编辑器条件下进行动态存储 打包之后是无法进行数据保存的
	 也就是说打包之后 ScriptableObject 文件只具有可读性
  • 1
  • 2
  • 3
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 数据存储
/// </summary>
[SerializeField]
[CreateAssetMenu(fileName = "New Item", menuName = "Inventory/New Item")]
public class DataStorage_ZH : ScriptableObject
{
    public int _Int;
    public string _String;
    public float _Float;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

数据持久化

DataPersistence_ZH 类 使用 PlayerPrefs里面的方法为主体进行编辑的

KeyTypeStrAdd 枚举类可以根据 具体内容进行自定义填充
  • 1
  • 2
  • 3
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

/// <summary>
/// 数据持久化存储
/// </summary>
public class DataPersistence_ZH : MonoBehaviour
{
    [Header("数据")]
    public DataStorage_ZH _DataStorage;

    [Header("String 数据")]
    public InputField _TextStr;
    [Header("Float 数据")]
    public InputField _TextFloat;
    [Header("Int 数据")]
    public InputField _TextInt;


    //单例
    public static DataPersistence_ZH _DataPersistence;

    private void Awake()
    {
        _DataPersistence = this;
    }

    void Update()
    {

        //存储
        if (Input.GetKeyDown(KeyCode.Q))
        {
            //Key值 加类型(名字/ 生长习性)
            StorageData(_DataStorage._String + nameof(_DataStorage._String), _TextStr.text,KeyTypeStrAdd._String);
            //StorageData(_DataStorage._String +"标题", "Name");
            StorageData(_DataStorage._String + nameof(_DataStorage._Float), _TextFloat.text,KeyTypeStrAdd._Float);
            StorageData(_DataStorage._String + nameof(_DataStorage._Int), _TextInt.text,KeyTypeStrAdd._Int);
        }

        //查询
        if (Input.GetKeyDown(KeyCode.E))
        { 
            //名字查询
            StartCoroutine(InquireData(_DataStorage._String, nameof(_DataStorage._String)));
            //StartCoroutine(InquireData(_DataStorage._String, "标题"));
            StartCoroutine(InquireData(_DataStorage._String, nameof(_DataStorage._Float)));
            StartCoroutine(InquireData(_DataStorage._String, nameof(_DataStorage._Int)));
        }

    }

    /// <summary>
    /// 数据删除单个
    /// </summary>
    public void DeleteKeyData(string _DeleteKey)
    {
        //从首选项中删除键及其相应的值
        PlayerPrefs.DeleteKey(_DeleteKey);
    }

    /// <summary>
    /// 数据删除所有
    /// </summary>
    public void DeleteKeyData()
    {
        //从首选项中删除所有键和值 谨慎使用
        PlayerPrefs.DeleteAll();
    }

    #region 数据存储

    /// <summary>
    /// 数据存储  string
    /// </summary>
    /// <param 储存 Key 值="_DataKey"></param>
    /// <param 存储 Value 值="_DataValue"></param>
    public void StorageData(string _DataKey, string _DataValue)
    {
        //设置由键标识的首选项的值  数据存储在磁盘
        PlayerPrefs.SetString(_DataKey, _DataValue);

        //数据存储在文件
        _DataStorage._String = _DataValue;

        //将所有修改的首选项写入磁盘
        PlayerPrefs.Save();
    }

    /// <summary>
    /// 数据存储  float
    /// </summary>
    /// <param 储存 Key 值="_DataKey"></param>
    /// <param 存储 Value 值="_DataValue"></param>

    public void StorageData(string _DataKey, float _DataValue)
    {
        //设置由键标识的首选项的值  数据存储在磁盘
        PlayerPrefs.SetFloat(_DataKey, _DataValue);

        //数据存储在文件
        _DataStorage._Float = _DataValue;

        //将所有修改的首选项写入磁盘
        PlayerPrefs.Save();
    }

    /// <summary>
    /// 数据存储  int
    /// </summary>
    /// <param 储存 Key 值="_DataKey"></param>
    /// <param 存储 Value 值="_DataValue"></param>

    public void StorageData(string _DataKey, int _DataValue)
    {
        //设置由键标识的首选项的值  数据存储在磁盘
        PlayerPrefs.SetInt(_DataKey, _DataValue);

        //数据存储在文件
        _DataStorage._Int = _DataValue;



        //将所有修改的首选项写入磁盘
        PlayerPrefs.Save();
    }


    /// <summary>
    /// 数据查询带类型
    /// </summary>
    /// <param 储存 Key 值="_DataKey"></param>
    /// <param 存储 Value 值="_DataValue"></param>
    /// <param 变量="_KeyType"></param>
    public void StorageData(string _DataKey, string _DataValue, KeyTypeStrAdd _KeyType)
    {
        switch (_KeyType)
        {
            case KeyTypeStrAdd._String:

                //设置由键标识的首选项的值  数据存储在磁盘
                PlayerPrefs.SetString(_DataKey, _DataValue);

                //数据存储在文件
                //_DataStorage._String = _DataValue;

                // 数据存储在文件
                _DataStorage.GetType().GetField(_KeyType.ToString()).SetValue(_DataStorage, _KeyType.ToString());

                //将所有修改的首选项写入磁盘
                PlayerPrefs.Save();

                break;

            case KeyTypeStrAdd._Float:
                //设置由键标识的首选项的值  数据存储在磁盘
                PlayerPrefs.SetFloat(_DataKey, float.Parse(_DataValue));

                数据存储在文件
                //_DataStorage._Float = float.Parse(_DataValue);

                //数据存储在文件
                _DataStorage.GetType().GetField(_KeyType.ToString()).SetValue(_DataStorage, float.Parse(_DataValue));

                //将所有修改的首选项写入磁盘
                PlayerPrefs.Save();
                break;

            case KeyTypeStrAdd._Int:

                //设置由键标识的首选项的值  数据存储在磁盘
                PlayerPrefs.SetInt(_DataKey, (int)float.Parse(_DataValue));

                数据存储在文件
                //_DataStorage._Int = (int)float.Parse(_DataValue);

                // 数据存储在文件
                _DataStorage.GetType().GetField(_KeyType.ToString()).SetValue(_DataStorage, (int)float.Parse(_DataValue));


                //将所有修改的首选项写入磁盘
                PlayerPrefs.Save();
                break;
            default:
                break;
        }
    }


    #endregion




    /// <summary>
    /// 数据查询
    /// 添加新数据
    /// </summary>
    /// <param 数据查询 Key 值="_DataKey"></param>
    /// <param 查询 Kry 值添加的字符="_StrKeyAdd"></param>
    /// <returns></returns>
    public IEnumerator InquireData(string _DataKey,string _StrKeyType)
    {
        //缓存值
        string _InquireDataStr;

        //Float
        float _InquireDataFloat;

        //Int
        int _InquireDataInt;


        if (_DataKey != null)
        {
            //类型判断
            switch (_StrKeyType)
            {
                //如果是 String 类型
                case "_String":

                    //如果存在 返回首选项文件中key对应的值  
                    _InquireDataStr = PlayerPrefs.GetString(_DataKey + _StrKeyType);

                    //数据返回
                    //_DataStorage.GetType().GetField(_StrKeyType).GetValue(_DataStorage);

                    
                    _TextStr.text = _InquireDataStr;

                    yield return 0; 

                    break;
                    

                //如果是 Float 类型
                case "_Float":

                    //如果存在 返回首选项文件中key对应的值
                    _InquireDataFloat = PlayerPrefs.GetFloat(_DataKey + _StrKeyType);

                    数据返回
                    //_DataStorage.GetType().GetField(_StrKeyType).GetValue(_DataStorage);


                    _TextFloat.text = _InquireDataFloat.ToString();

                    yield return 0;

                    break;


                //如果是 Int 类型
                case "_Int":

                    //如果存在 返回首选项文件中key对应的值
                    _InquireDataInt = PlayerPrefs.GetInt(_DataKey + _StrKeyType);

                    数据返回
                    //_DataStorage.GetType().GetField(_StrKeyType).SetValue(_DataStorage, _InquireDataInt);


                    _TextInt.text = _InquireDataInt.ToString();

                    yield return 0;

                    break;


                default:
                    break;
            }
        }
    }

    /// <summary>
    /// 枚举类型添加
    /// </summary>
    public enum KeyTypeStrAdd
    { 
        _String,
        _Float,
        _Int,

    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289

示例工程下载

Unity 持久化存储示例场景: 下载链接.

代码搭载

请添加图片描述

最终运行运行

请添加图片描述

请添加图片描述

暂时先这样吧,如果有时间的话就会更新,实在看不明白就留言,看到我会回复的。
路漫漫其修远兮,与君共勉。

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号