mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-05-18 04:06:09 +08:00
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
/*
|
|
* @Author: dgflash
|
|
* @Date: 2021-07-03 16:13:17
|
|
* @LastEditors: dgflash
|
|
* @LastEditTime: 2022-09-06 17:28:01
|
|
*/
|
|
|
|
import { game, JsonAsset } from "cc";
|
|
import { oops } from "../../core/Oops";
|
|
import { BuildTimeConstants } from "./BuildTimeConstants";
|
|
import { GameConfig } from "./GameConfig";
|
|
import { GameQueryConfig } from "./GameQueryConfig";
|
|
|
|
/** 游戏配置静态访问类 */
|
|
export class Config {
|
|
/** 环境常量 */
|
|
public btc!: BuildTimeConstants;
|
|
|
|
/** 游戏配置数据,版本号、支持语种等数据 */
|
|
public game!: GameConfig;
|
|
|
|
/** 浏览器查询参数 */
|
|
public query!: GameQueryConfig;
|
|
|
|
/** 初始化游戏配置 */
|
|
public init(callback: Function) {
|
|
let config_name = "config/config";
|
|
oops.res.load(config_name, JsonAsset, () => {
|
|
var config = oops.res.get(config_name);
|
|
this.btc = new BuildTimeConstants();
|
|
this.query = new GameQueryConfig();
|
|
this.game = new GameConfig(config);
|
|
|
|
// 初始化每秒传输帧数
|
|
game.frameRate = this.game.frameRate;
|
|
// Http 服务器地址
|
|
oops.http.server = this.game.httpServer;
|
|
// Http 请求超时时间
|
|
oops.http.timeout = this.game.httpTimeout;
|
|
// 初始化本地存储加密
|
|
oops.storage.init(this.game.localDataKey, this.game.localDataIv);
|
|
|
|
callback();
|
|
});
|
|
}
|
|
}
|
|
|
|
export const config = new Config() |