revert gameManager
This commit is contained in:
parent
5a6ae0b679
commit
5818604b4d
@ -12,7 +12,6 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/mocha": "^8.2.3",
|
"@types/mocha": "^8.2.3",
|
||||||
"@types/node": "^15.14.9",
|
"@types/node": "^15.14.9",
|
||||||
"@types/seedrandom": "^3.0.1",
|
|
||||||
"mocha": "^9.1.3",
|
"mocha": "^9.1.3",
|
||||||
"onchange": "^7.1.0",
|
"onchange": "^7.1.0",
|
||||||
"ts-node": "^10.4.0",
|
"ts-node": "^10.4.0",
|
||||||
@ -20,7 +19,6 @@
|
|||||||
"typescript": "^4.5.4"
|
"typescript": "^4.5.4"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"seedrandom": "^3.0.5",
|
|
||||||
"tsrpc": "^3.1.4"
|
"tsrpc": "^3.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import { ApiCallWs } from "tsrpc";
|
import { ApiCall } from "tsrpc";
|
||||||
import { ReqLogin, ResLogin } from "../shared/protocols/PtlLogin";
|
import { ReqLogin, ResLogin } from "../shared/protocols/PtlLogin";
|
||||||
|
|
||||||
let nextPlayerId = 1;
|
let nextPlayerId = 1;
|
||||||
|
|
||||||
export async function ApiLogin(call: ApiCallWs<ReqLogin, ResLogin>) {
|
export async function ApiLogin(call: ApiCall<ReqLogin, ResLogin>) {
|
||||||
let playerId = nextPlayerId++;
|
let playerId = nextPlayerId++;
|
||||||
|
|
||||||
call.conn.currentUser = {
|
call.conn.currentUser = {
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
import 'k8w-extend-native';
|
import 'k8w-extend-native';
|
||||||
import * as path from "path";
|
import * as path from "path";
|
||||||
import { WsServer } from "tsrpc";
|
import { WsServer } from "tsrpc";
|
||||||
|
import { Room } from './models/Room';
|
||||||
import { serviceProto } from './shared/protocols/serviceProto';
|
import { serviceProto } from './shared/protocols/serviceProto';
|
||||||
|
import { CurrentUser } from './shared/types/CurrentUser';
|
||||||
|
|
||||||
// Create the Server
|
// Create the Server
|
||||||
export const server = new WsServer(serviceProto, {
|
export const server = new WsServer(serviceProto, {
|
||||||
@ -24,3 +26,11 @@ async function main() {
|
|||||||
await server.start();
|
await server.start();
|
||||||
}
|
}
|
||||||
main();
|
main();
|
||||||
|
|
||||||
|
// 扩展 Connection 字段
|
||||||
|
declare module 'tsrpc' {
|
||||||
|
export interface BaseConnection {
|
||||||
|
currentUser: CurrentUser,
|
||||||
|
room?: Room,
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,3 @@
|
|||||||
import seedrandom from "seedrandom";
|
|
||||||
import { MsgCallWs, uint, WsConnection } from "tsrpc";
|
import { MsgCallWs, uint, WsConnection } from "tsrpc";
|
||||||
import { server } from "..";
|
import { server } from "..";
|
||||||
import { gameConfig } from "../shared/game/gameConfig";
|
import { gameConfig } from "../shared/game/gameConfig";
|
||||||
@ -6,7 +5,6 @@ import { GameSystemInput } from "../shared/game/GameSystemInput";
|
|||||||
import { GameSystemState } from "../shared/game/GameSystemState";
|
import { GameSystemState } from "../shared/game/GameSystemState";
|
||||||
import { MsgGameInput } from "../shared/protocols/game/client/MsgGameInput";
|
import { MsgGameInput } from "../shared/protocols/game/client/MsgGameInput";
|
||||||
import { ServiceType } from "../shared/protocols/serviceProto";
|
import { ServiceType } from "../shared/protocols/serviceProto";
|
||||||
import { CurrentUser } from "../shared/types/CurrentUser";
|
|
||||||
import { RoomState } from "../shared/types/RoomState";
|
import { RoomState } from "../shared/types/RoomState";
|
||||||
|
|
||||||
const MAX_ROOM_USER = 2;
|
const MAX_ROOM_USER = 2;
|
||||||
@ -111,8 +109,6 @@ export class Room {
|
|||||||
this._syncRoomState();
|
this._syncRoomState();
|
||||||
|
|
||||||
// 生成游戏初始状态
|
// 生成游戏初始状态
|
||||||
let seed = '' + Math.random();
|
|
||||||
let prng = seedrandom(seed, { state: true });
|
|
||||||
let initGameState: GameSystemState = {
|
let initGameState: GameSystemState = {
|
||||||
now: 0,
|
now: 0,
|
||||||
players: this.conns.map(v => ({
|
players: this.conns.map(v => ({
|
||||||
@ -137,13 +133,7 @@ export class Room {
|
|||||||
},
|
},
|
||||||
|
|
||||||
// 上次创建敌机的时间
|
// 上次创建敌机的时间
|
||||||
lastCreateEnemyTime: 3000,
|
lastCreateEnemyTime: 3000
|
||||||
|
|
||||||
// 伪随机数发生器状态
|
|
||||||
random: {
|
|
||||||
seed: '' + Math.random(),
|
|
||||||
state: prng.state()
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
this._lastSn = {};
|
this._lastSn = {};
|
||||||
this._lastSyncTime = Date.now();
|
this._lastSyncTime = Date.now();
|
||||||
@ -196,10 +186,3 @@ export class Room {
|
|||||||
// #endregion
|
// #endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'tsrpc' {
|
|
||||||
export interface BaseConnection {
|
|
||||||
currentUser: CurrentUser,
|
|
||||||
room?: Room,
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,4 +1,3 @@
|
|||||||
import seedrandom from "seedrandom";
|
|
||||||
import { gameConfig } from "./gameConfig";
|
import { gameConfig } from "./gameConfig";
|
||||||
import { GameSystemEvent } from "./GameSystemEvent";
|
import { GameSystemEvent } from "./GameSystemEvent";
|
||||||
import { GameSystemInput } from "./GameSystemInput";
|
import { GameSystemInput } from "./GameSystemInput";
|
||||||
@ -16,12 +15,8 @@ export class GameSystem {
|
|||||||
}
|
}
|
||||||
set state(state: GameSystemState) {
|
set state(state: GameSystemState) {
|
||||||
this._state = state;
|
this._state = state;
|
||||||
this._seedRandom = seedrandom(state.random.seed, state.random.state);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 伪随机数发生器
|
|
||||||
private _seedRandom!: ReturnType<seedrandom>;
|
|
||||||
|
|
||||||
constructor(state: GameSystemState) {
|
constructor(state: GameSystemState) {
|
||||||
this.state = state;
|
this.state = state;
|
||||||
}
|
}
|
||||||
@ -135,11 +130,11 @@ export class GameSystem {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let time = this.state.now - (this.state.now % gameConfig.enemy.bornGapTime);
|
let time = this.state.now - (this.state.now % gameConfig.enemy.bornGapTime);
|
||||||
let pos = { x: this._random() * 750 - 375, y: gameConfig.enemy.bornY };
|
let pos = { x: 0, y: gameConfig.enemy.bornY };
|
||||||
let enemy: EnemyState = {
|
let enemy: EnemyState = {
|
||||||
id: this.state.nextId.enemy++,
|
id: this.state.nextId.enemy++,
|
||||||
// 敌机类型
|
// 敌机类型
|
||||||
type: this._random() > 0.5 ? EnemyType.E1 : EnemyType.E2,
|
type: EnemyType.E1,
|
||||||
pos: { ...pos },
|
pos: { ...pos },
|
||||||
init: {
|
init: {
|
||||||
time: time,
|
time: time,
|
||||||
@ -156,12 +151,6 @@ export class GameSystem {
|
|||||||
this.state.enemies.push(enemy);
|
this.state.enemies.push(enemy);
|
||||||
}
|
}
|
||||||
|
|
||||||
private _random(): number {
|
|
||||||
let rand = this._seedRandom();
|
|
||||||
this.state.random.state = this._seedRandom.state();
|
|
||||||
return rand;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 简易的事件侦听器
|
// 简易的事件侦听器
|
||||||
private _eventHandlers: { [key: string]: Function[] } = {};
|
private _eventHandlers: { [key: string]: Function[] } = {};
|
||||||
on<T extends keyof GameSystemEvent>(eventName: T, handler: (e: GameSystemEvent[T]) => void): (e: GameSystemEvent[T]) => void {
|
on<T extends keyof GameSystemEvent>(eventName: T, handler: (e: GameSystemEvent[T]) => void): (e: GameSystemEvent[T]) => void {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { uint } from "tsrpc";
|
import { uint } from "tsrpc-proto";
|
||||||
|
|
||||||
export interface GameSystemEvent {
|
export interface GameSystemEvent {
|
||||||
playerDie: {
|
playerDie: {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { uint } from "tsrpc";
|
import { uint } from "tsrpc-proto";
|
||||||
|
|
||||||
// 坐标系:X-Y 原点在中间下方
|
// 坐标系:X-Y 原点在中间下方
|
||||||
/*
|
/*
|
||||||
@ -26,12 +26,6 @@ export interface GameSystemState {
|
|||||||
|
|
||||||
// 上次创建敌机的时间
|
// 上次创建敌机的时间
|
||||||
lastCreateEnemyTime: number,
|
lastCreateEnemyTime: number,
|
||||||
|
|
||||||
// 伪随机数发生器状态
|
|
||||||
random: {
|
|
||||||
seed: string,
|
|
||||||
state: object
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { uint } from "tsrpc";
|
import { uint } from "tsrpc-proto";
|
||||||
import { GameSystemState } from "../../../game/GameSystemState";
|
import { GameSystemState } from "../../../game/GameSystemState";
|
||||||
|
|
||||||
export interface MsgGameStart {
|
export interface MsgGameStart {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { uint } from "tsrpc";
|
import { uint } from "tsrpc-proto";
|
||||||
import { GameSystemInput } from "../../../game/GameSystemInput";
|
import { GameSystemInput } from "../../../game/GameSystemInput";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -43,7 +43,7 @@ export interface ServiceType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const serviceProto: ServiceProto<ServiceType> = {
|
export const serviceProto: ServiceProto<ServiceType> = {
|
||||||
"version": 3,
|
"version": 4,
|
||||||
"services": [
|
"services": [
|
||||||
{
|
{
|
||||||
"id": 11,
|
"id": 11,
|
||||||
@ -701,29 +701,6 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|||||||
"type": {
|
"type": {
|
||||||
"type": "Number"
|
"type": "Number"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 6,
|
|
||||||
"name": "random",
|
|
||||||
"type": {
|
|
||||||
"type": "Interface",
|
|
||||||
"properties": [
|
|
||||||
{
|
|
||||||
"id": 0,
|
|
||||||
"name": "seed",
|
|
||||||
"type": {
|
|
||||||
"type": "String"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 1,
|
|
||||||
"name": "state",
|
|
||||||
"type": {
|
|
||||||
"type": "Object"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { uint } from "tsrpc";
|
import { uint } from "tsrpc-proto";
|
||||||
|
|
||||||
export interface CurrentUser {
|
export interface CurrentUser {
|
||||||
id: uint,
|
id: uint,
|
||||||
|
@ -16,7 +16,7 @@ const tsrpcConf: TsrpcConfig = {
|
|||||||
sync: [
|
sync: [
|
||||||
{
|
{
|
||||||
from: 'src/shared',
|
from: 'src/shared',
|
||||||
to: '../frontend/assets/scripts/shared',
|
to: '../frontend/assets/script/shared',
|
||||||
type: 'symlink' // Change this to 'copy' if your environment not support symlink
|
type: 'symlink' // Change this to 'copy' if your environment not support symlink
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "4.0.23",
|
||||||
|
"importer": "typescript",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "462c5922-0190-42df-a20e-963ccd552d2f",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -1,12 +1,12 @@
|
|||||||
import { WsClient } from "tsrpc-browser";
|
import { WsClient } from "tsrpc-browser";
|
||||||
import { GameSystem } from "../scripts/shared/game/GameSystem";
|
import { GameSystem } from "../script/shared/game/GameSystem";
|
||||||
import { GameSystemState } from "../scripts/shared/game/GameSystemState";
|
import { GameSystemState } from "../script/shared/game/GameSystemState";
|
||||||
import { ClientInput, MsgGameInput } from "../scripts/shared/protocols/game/client/MsgGameInput";
|
import { ClientInput, MsgGameInput } from "../script/shared/protocols/game/client/MsgGameInput";
|
||||||
import { MsgGameStart } from "../scripts/shared/protocols/game/server/MsgGameStart";
|
import { MsgGameStart } from "../script/shared/protocols/game/server/MsgGameStart";
|
||||||
import { MsgServerFrame } from "../scripts/shared/protocols/game/server/MsgServerFrame";
|
import { MsgServerFrame } from "../script/shared/protocols/game/server/MsgServerFrame";
|
||||||
import { serviceProto, ServiceType } from "../scripts/shared/protocols/serviceProto";
|
import { serviceProto, ServiceType } from "../script/shared/protocols/serviceProto";
|
||||||
import { CurrentUser } from "../scripts/shared/types/CurrentUser";
|
import { CurrentUser } from "../script/shared/types/CurrentUser";
|
||||||
import { RoomState } from "../scripts/shared/types/RoomState";
|
import { RoomState } from "../script/shared/types/RoomState";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 前端游戏状态管理
|
* 前端游戏状态管理
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ver": "4.0.23",
|
||||||
|
"importer": "typescript",
|
||||||
|
"imported": true,
|
||||||
|
"uuid": "3a083653-ef15-4e15-a5a4-12b96b55a050",
|
||||||
|
"files": [],
|
||||||
|
"subMetas": {},
|
||||||
|
"userData": {}
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
import { _decorator, Component, Node, Collider, find, ITriggerEvent, Script } from 'cc';
|
import { Collider, Component, ITriggerEvent, _decorator } from 'cc';
|
||||||
import { Constant } from '../framework/constant';
|
import { Constant } from '../framework/constant';
|
||||||
import { GameManager } from '../GameController';
|
import { GameManager } from '../gameManager';
|
||||||
|
|
||||||
const { ccclass, property } = _decorator;
|
const { ccclass, property } = _decorator;
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
import { _decorator, Component, Node, Collider, ITriggerEvent } from 'cc';
|
import { Collider, Component, ITriggerEvent, _decorator } from 'cc';
|
||||||
import { Constant } from '../framework/constant';
|
import { Constant } from '../framework/constant';
|
||||||
import { GameManager } from '../GameController';
|
import { GameManager } from '../gameManager';
|
||||||
const { ccclass, property } = _decorator;
|
const { ccclass, property } = _decorator;
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { _decorator, sys, log } from "cc";
|
import { log, sys, _decorator } from "cc";
|
||||||
import { Util } from './util';
|
import { Util } from './util';
|
||||||
|
|
||||||
const { ccclass, property } = _decorator;
|
const { ccclass, property } = _decorator;
|
||||||
@ -7,7 +7,7 @@ const { ccclass, property } = _decorator;
|
|||||||
export class StorageManager {
|
export class StorageManager {
|
||||||
private static _instance: StorageManager;
|
private static _instance: StorageManager;
|
||||||
|
|
||||||
public static get instance () {
|
public static get instance() {
|
||||||
if (this._instance) {
|
if (this._instance) {
|
||||||
return this._instance;
|
return this._instance;
|
||||||
}
|
}
|
||||||
@ -17,13 +17,13 @@ export class StorageManager {
|
|||||||
return this._instance;
|
return this._instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private _jsonData: {[key: string]: any} = {};
|
private _jsonData: { [key: string]: any } = {};
|
||||||
private _path: any = null;
|
private _path: any = null;
|
||||||
private KEY_CONFIG: string = 'template';
|
private KEY_CONFIG: string = 'template';
|
||||||
private _markSave: boolean = false;
|
private _markSave: boolean = false;
|
||||||
private _saveTimer: number = -1;
|
private _saveTimer: number = -1;
|
||||||
|
|
||||||
start () {
|
start() {
|
||||||
this._jsonData = {
|
this._jsonData = {
|
||||||
"userId": "",
|
"userId": "",
|
||||||
};
|
};
|
||||||
@ -49,14 +49,14 @@ export class StorageManager {
|
|||||||
if (content && content.length) {
|
if (content && content.length) {
|
||||||
if (content.startsWith('@')) {
|
if (content.startsWith('@')) {
|
||||||
content = content.substring(1);
|
content = content.substring(1);
|
||||||
content = util.decrypt(content);
|
content = Util.decrypt(content);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
//初始化操作
|
//初始化操作
|
||||||
var jsonData = JSON.parse(content);
|
var jsonData = JSON.parse(content);
|
||||||
this._jsonData = jsonData;
|
this._jsonData = jsonData;
|
||||||
}catch (excepaiton) {
|
} catch (excepaiton) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -68,7 +68,7 @@ export class StorageManager {
|
|||||||
// }, 500);
|
// }, 500);
|
||||||
|
|
||||||
//每隔5秒保存一次数据,主要是为了保存最新在线时间,方便离线奖励时间判定
|
//每隔5秒保存一次数据,主要是为了保存最新在线时间,方便离线奖励时间判定
|
||||||
this._saveTimer = setInterval(() =>{
|
this._saveTimer = setInterval(() => {
|
||||||
this.scheduleSave();
|
this.scheduleSave();
|
||||||
}, 5000);
|
}, 5000);
|
||||||
}
|
}
|
||||||
@ -78,8 +78,8 @@ export class StorageManager {
|
|||||||
* @param {string}key 关键字
|
* @param {string}key 关键字
|
||||||
* @param {any}value 存储值
|
* @param {any}value 存储值
|
||||||
*/
|
*/
|
||||||
setConfigDataWithoutSave (key: string, value: any) {
|
setConfigDataWithoutSave(key: string, value: any) {
|
||||||
let account: string= this._jsonData.userId;
|
let account: string = this._jsonData.userId;
|
||||||
if (this._jsonData[account]) {
|
if (this._jsonData[account]) {
|
||||||
this._jsonData[account][key] = value;
|
this._jsonData[account][key] = value;
|
||||||
} else {
|
} else {
|
||||||
@ -87,12 +87,12 @@ export class StorageManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 存储配置文件,保存到本地
|
* 存储配置文件,保存到本地
|
||||||
* @param {string}key 关键字
|
* @param {string}key 关键字
|
||||||
* @param {any}value 存储值
|
* @param {any}value 存储值
|
||||||
*/
|
*/
|
||||||
setConfigData (key: string, value: any) {
|
setConfigData(key: string, value: any) {
|
||||||
this.setConfigDataWithoutSave(key, value);
|
this.setConfigDataWithoutSave(key, value);
|
||||||
this._markSave = true; //标记为需要存储,避免一直在写入,而是每隔一段时间进行写入
|
this._markSave = true; //标记为需要存储,避免一直在写入,而是每隔一段时间进行写入
|
||||||
}
|
}
|
||||||
@ -102,7 +102,7 @@ export class StorageManager {
|
|||||||
* @param {string} key 关键字
|
* @param {string} key 关键字
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
getConfigData (key: string) {
|
getConfigData(key: string) {
|
||||||
let account: string = this._jsonData.userId;
|
let account: string = this._jsonData.userId;
|
||||||
if (this._jsonData[account]) {
|
if (this._jsonData[account]) {
|
||||||
var value = this._jsonData[account][key];
|
var value = this._jsonData[account][key];
|
||||||
@ -119,7 +119,7 @@ export class StorageManager {
|
|||||||
* @param {any}value 存储值
|
* @param {any}value 存储值
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
public setGlobalData (key:string, value: any) {
|
public setGlobalData(key: string, value: any) {
|
||||||
this._jsonData[key] = value;
|
this._jsonData[key] = value;
|
||||||
this.save();
|
this.save();
|
||||||
}
|
}
|
||||||
@ -129,7 +129,7 @@ export class StorageManager {
|
|||||||
* @param {string} key 关键字
|
* @param {string} key 关键字
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
public getGlobalData (key:string) {
|
public getGlobalData(key: string) {
|
||||||
return this._jsonData[key];
|
return this._jsonData[key];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -139,7 +139,7 @@ export class StorageManager {
|
|||||||
* @param {any}value 存储值
|
* @param {any}value 存储值
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
public setUserId (userId:string) {
|
public setUserId(userId: string) {
|
||||||
this._jsonData.userId = userId;
|
this._jsonData.userId = userId;
|
||||||
if (!this._jsonData[userId]) {
|
if (!this._jsonData[userId]) {
|
||||||
this._jsonData[userId] = {};
|
this._jsonData[userId] = {};
|
||||||
@ -152,7 +152,7 @@ export class StorageManager {
|
|||||||
* 获取用户唯一标示符
|
* 获取用户唯一标示符
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
public getUserId () {
|
public getUserId() {
|
||||||
return this._jsonData.userId;
|
return this._jsonData.userId;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,7 +160,7 @@ export class StorageManager {
|
|||||||
* 定时存储
|
* 定时存储
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
public scheduleSave () {
|
public scheduleSave() {
|
||||||
if (!this._markSave) {
|
if (!this._markSave) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -171,7 +171,7 @@ export class StorageManager {
|
|||||||
/**
|
/**
|
||||||
* 标记为已修改
|
* 标记为已修改
|
||||||
*/
|
*/
|
||||||
public markModified () {
|
public markModified() {
|
||||||
this._markSave = true;
|
this._markSave = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -179,7 +179,7 @@ export class StorageManager {
|
|||||||
* 保存配置文件
|
* 保存配置文件
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
public save () {
|
public save() {
|
||||||
// 写入文件
|
// 写入文件
|
||||||
var str = JSON.stringify(this._jsonData);
|
var str = JSON.stringify(this._jsonData);
|
||||||
|
|
||||||
@ -201,6 +201,7 @@ export class StorageManager {
|
|||||||
|
|
||||||
var valueObj: any = {};
|
var valueObj: any = {};
|
||||||
valueObj[this.KEY_CONFIG] = zipStr;
|
valueObj[this.KEY_CONFIG] = zipStr;
|
||||||
|
// @ts-ignore
|
||||||
jsb.fileUtils.writeToFile(valueObj, this._path);
|
jsb.fileUtils.writeToFile(valueObj, this._path);
|
||||||
// jsb.fileUtils.writeToFile(valueObj);
|
// jsb.fileUtils.writeToFile(valueObj);
|
||||||
}
|
}
|
||||||
@ -209,9 +210,9 @@ export class StorageManager {
|
|||||||
* 获取配置文件路径
|
* 获取配置文件路径
|
||||||
* @returns 获取配置文件路径
|
* @returns 获取配置文件路径
|
||||||
*/
|
*/
|
||||||
private _getConfigPath () {
|
private _getConfigPath() {
|
||||||
|
|
||||||
let platform: any= sys.platform;
|
let platform: any = sys.platform;
|
||||||
|
|
||||||
let path: string = "";
|
let path: string = "";
|
||||||
|
|
||||||
|
@ -761,11 +761,11 @@ export class Util {
|
|||||||
* 获取当前机型性能是否为低端机
|
* 获取当前机型性能是否为低端机
|
||||||
*/
|
*/
|
||||||
public static checkIsLowPhone(): Boolean {
|
public static checkIsLowPhone(): Boolean {
|
||||||
if (window.wx) {
|
if ((window as any).wx) {
|
||||||
//微信性能数值参考:https://developers.weixin.qq.com/minigame/dev/guide/performance/perf-benchmarkLevel.html
|
//微信性能数值参考:https://developers.weixin.qq.com/minigame/dev/guide/performance/perf-benchmarkLevel.html
|
||||||
|
|
||||||
let nowBenchmarkLevel: number = -1; //nowBenchmarkLevel = -1性能未知
|
let nowBenchmarkLevel: number = -1; //nowBenchmarkLevel = -1性能未知
|
||||||
const sys = window.wx.getSystemInfoSync();
|
const sys = (window as any).wx.getSystemInfoSync();
|
||||||
const isIOS = sys.system.indexOf('iOS') >= 0;
|
const isIOS = sys.system.indexOf('iOS') >= 0;
|
||||||
if (isIOS) {
|
if (isIOS) {
|
||||||
//微信不支持IO性能等级
|
//微信不支持IO性能等级
|
||||||
|
@ -16,8 +16,8 @@ let _temp_quat = new Quat;
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ccclass('GameController')
|
@ccclass('GameManager')
|
||||||
export class GameController extends Component {
|
export class GameManager extends Component {
|
||||||
|
|
||||||
@property(Node)
|
@property(Node)
|
||||||
public playerPlane: Node = null; //玩家飞机节点
|
public playerPlane: Node = null; //玩家飞机节点
|
@ -1,8 +1,7 @@
|
|||||||
|
|
||||||
import { _decorator, Component, Node, Collider, ITriggerEvent, physics, PhysicsSystem, find, Game, Prefab, NodePool, instantiate, Vec2, Vec3, AudioSource } from 'cc';
|
import { AudioSource, Collider, Component, ITriggerEvent, Node, Vec3, _decorator } from 'cc';
|
||||||
import { bulletManager } from '../bullet/bulletManager';
|
|
||||||
import { Constant } from '../framework/constant';
|
import { Constant } from '../framework/constant';
|
||||||
import { GameManager } from '../GameController';
|
import { GameManager } from '../gameManager';
|
||||||
const { ccclass, property } = _decorator;
|
const { ccclass, property } = _decorator;
|
||||||
|
|
||||||
|
|
||||||
@ -18,7 +17,7 @@ export class enemyPlane extends Component {
|
|||||||
@property
|
@property
|
||||||
public enemyBulletSpeed: number = 60;
|
public enemyBulletSpeed: number = 60;
|
||||||
@property(AudioSource)
|
@property(AudioSource)
|
||||||
public audio:AudioSource = null!
|
public audio: AudioSource = null!
|
||||||
|
|
||||||
private _enemyplane;
|
private _enemyplane;
|
||||||
private _isDie: boolean = false;
|
private _isDie: boolean = false;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
import { _decorator, Component, Node, Collider, ITriggerEvent } from 'cc';
|
import { _decorator, Component, Node, Collider, ITriggerEvent } from 'cc';
|
||||||
import { Constant } from '../framework/constant';
|
import { Constant } from '../framework/constant';
|
||||||
import { GameManager } from '../GameController';
|
import { GameManager } from '../gameManager';
|
||||||
|
|
||||||
const { ccclass, property } = _decorator;
|
const { ccclass, property } = _decorator;
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"ver": "1.1.0",
|
"ver": "1.1.0",
|
||||||
"importer": "directory",
|
"importer": "directory",
|
||||||
"imported": true,
|
"imported": true,
|
||||||
"uuid": "5fd42ea5-0316-4e48-86e1-1bcdba894b1c",
|
"uuid": "f2949899-5bbd-4e1e-b02a-f763b5978ef9",
|
||||||
"files": [],
|
"files": [],
|
||||||
"subMetas": {},
|
"subMetas": {},
|
||||||
"userData": {
|
"userData": {
|
@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
import { _decorator, Component, Node, UITransform, Vec2, Vec3, find, Script, game, Label, CameraComponent, Camera, EventTouch, v3 } from 'cc';
|
import { _decorator, Component, Node, UITransform, Vec2, Vec3, find, Script, game, Label, CameraComponent, Camera, EventTouch, v3 } from 'cc';
|
||||||
import { GameManager } from '../GameController';
|
import { GameManager } from '../gameManager';
|
||||||
import { MovingSceneBg } from './common/movingSceneBg';
|
import { MovingSceneBg } from './common/movingSceneBg';
|
||||||
import { Tips } from './common/tips';
|
import { Tips } from './common/tips';
|
||||||
|
|
||||||
|
@ -7,10 +7,6 @@
|
|||||||
"uuid": "c794458c-05f6-4c9f-909b-20d54897d219",
|
"uuid": "c794458c-05f6-4c9f-909b-20d54897d219",
|
||||||
"version": "3.4.0",
|
"version": "3.4.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"seedrandom": "^3.0.5",
|
|
||||||
"tsrpc-browser": "^3.1.4"
|
"tsrpc-browser": "^3.1.4"
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@types/seedrandom": "^3.0.1"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
/* Add your custom configuration here. */
|
/* Add your custom configuration here. */
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"strict": false,
|
"strict": false,
|
||||||
"allowSyntheticDefaultImports": true
|
"allowSyntheticDefaultImports": true,
|
||||||
|
"skipLibCheck": true
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user