quick-cocos2d-x数据存储 UserDefault GameState io

时间:2022-01-12 21:57:43

看了quick-cocos2d-x 的framework,发现里面有一个GameState,查了下,是数据存储的类,于是稍稍总结下我用到过的数据存储方式吧。

一共是三种方法:

  1. cc.UserDefault
  2. cc.utils.State
  3. io

优缺点:

  前两个使用起来更方便,因为是系统已经定义好的了。但缺点是不能在lua层面随便更改文件名和路径。

  所以在使用时,根据不同的需求,可选择第一或者第三,第二个不太建议使用,太麻烦了。

  普通的应用信息,比如各种开关,使用cc.UserDefault保存,可随应用的删除,自动删除文件。

  用户的账号信息,使用io存储,保存在sd卡中,这样用户在重装应用后,依然能顺利进入。

第一种是使用cc.UserDefault类。这是系统提供的,产生的文件名为 UserDefault.xml, 文件名在lua层面是无法修改的,如果想修改,需要修改C++代码。

两个方法,存 和 读取, 主要注意的是 不同的数据类型 调用的方法不同,如下面的例子

 local ParamType =
{
Integer = "int",
String = "string",
Float = "float",
Bool = "bool",
Double = "double",
} -- 保存
function NativeData:saveValeForKey(val, key, type)
if type == ParamType.String then
cc.UserDefault:getInstance():setStringForKey(key, val)
elseif type == ParamType.Integer then
cc.UserDefault:getInstance():setIntegerForKey(key, val)
elseif type == ParamType.Float then
cc.UserDefault:getInstance():setFloatForKey(key, val)
elseif type == ParamType.Double then
cc.UserDefault:getInstance():setDoubleForKey(key, val)
elseif type == ParamType.Bool then
cc.UserDefault:getInstance():setBoolForKey(key, val)
end
end -- 读取
function NativeData:getValeForKey( key, type, default)
local vale = nil
if type == ParamType.String then
vale = cc.UserDefault:getInstance():getStringForKey(key, default)
elseif type == ParamType.Integer then
vale = cc.UserDefault:getInstance():getIntegerForKey(key, default)
elseif type == ParamType.Float then
vale = cc.UserDefault:getInstance():getFloatForKey(key, default)
elseif type == ParamType.Double then
vale = cc.UserDefault:getInstance():getDoubleForKey(key, default)
elseif type == ParamType.Bool then
vale = cc.UserDefault:getInstance():getBoolForKey(key, default)
end return vale end

第二种是使用cc.utils.State类。文件位置在framework/cc/utils/GameState.lua。默认framework并没有加载,如果我们要用到,需要手动加载。一般在myApp开头加载。

require("framework.cc.utils.GameState")

加载完成后,需要初始化,cc.utils.State.init(eventListener_, stateFilename_, secretKey_)

在场景初始化之前调用一次即可,如在MyApp.lua的MyApp:ctor()中调用。

eventListener_是载入或保存时的回调函数

stateFilename_是保存的文件名,如果留空或非字符串(string)则是默认的state.txt,该文件会被保存到device.writablePath下

secretKey_是 校验文件时所用到的密钥,GameState保存的数据格式为{h = hash, s = s},s是我们要保存的数据(一个table),h则是要校验的一个md5码。如果secretKey_留空或为非字符串(string)则不加校验码, 直接保存数据,跟CCUserDefault一样了。

加载完成后,就是正常的使用。load 和save 方法都会 回调 init中的第一个参数。

 -- 这个方法一般只需调用一次,将本地文件load到内存中
function GameState.load()
end -- newValues是新的值,其实就是加载到内存中后保存的对象么。
function GameState.save(newValues)
end -- 返回完整路径
function GameState.getGameStatePath()
end

关于eventListener_,可以看一下 http://my.oschina.net/lonewolf/blog/173063 写的,很详细。

第三种是使用io 直接读写文件。这个最灵活。可以根据自己的需要设定存储目录,文件名,是否需要加密。需要注意读取之前需要判断是否存在目录 不存在则要创建。

一个简单的文件工具类

module("MakeFileUtils", package.seeall)

local lfs, os, io = require"lfs", os, io

function readFile(path)
local file = assert(io.open(path, "rb"))
if file then
local content = file:read("*all")
io.close(file)
return content
end
return nil
end function writeFile(filename, data, rt)
local f = assert(io.open(filename, rt))
f:write(data)
f:close()
end function checkDirOK( path )
local prepath = lfs.currentdir() if lfs.chdir(path) then
lfs.chdir(prepath)
return true
end if lfs.mkdir(path) then
return true
end
end

-- 读取

if not io.exists(fn) then
return
end local cnt = MakeFileUtils.readFile(fn) if cnt ~= nil and cnt ~= "" then
return json.decode(cnt)
end

-- 写入

MakeFileUtils.writeFile(fn, json.encode(cnt), "w+")