fix:微调格式

This commit is contained in:
lizhuoyuan 2025-01-20 20:19:48 +08:00
parent 9edb0c94e9
commit 0636c0ee3f
13 changed files with 17 additions and 17 deletions

View File

@ -7,7 +7,7 @@ actions.js用户交互的事件的处理
"use strict"; "use strict";
function actions () { function actions() {
this._init(); this._init();
this.SIZE = core.__SIZE__; this.SIZE = core.__SIZE__;
this.HSIZE = core.__HALF_SIZE__; this.HSIZE = core.__HALF_SIZE__;

View File

@ -8,7 +8,7 @@ control.js游戏主要逻辑控制
"use strict"; "use strict";
function control () { function control() {
this._init(); this._init();
} }
@ -1197,7 +1197,7 @@ control.prototype._checkBlock_repulse = function (repulse) {
repulse.forEach(function (t) { repulse.forEach(function (t) {
actions.push({ "type": "move", "loc": [t[0], t[1]], "steps": [t[3]], "time": 100, "keep": true, "async": true }); actions.push({ "type": "move", "loc": [t[0], t[1]], "steps": [t[3]], "time": 100, "keep": true, "async": true });
}); });
if (actions.length>0) actions.push({ "type": "waitAsync" }); if (actions.length > 0) actions.push({ "type": "waitAsync" });
return actions; return actions;
} }
@ -1209,7 +1209,7 @@ control.prototype._checkBlock_ambush = function (ambush) {
ambush.forEach(function (t) { ambush.forEach(function (t) {
actions.push({ "type": "move", "loc": [t[0], t[1]], "steps": [t[3]], "time": 100, "keep": false, "async": true }); actions.push({ "type": "move", "loc": [t[0], t[1]], "steps": [t[3]], "time": 100, "keep": false, "async": true });
}); });
if (actions.length>0) actions.push({ "type": "waitAsync" }); if (actions.length > 0) actions.push({ "type": "waitAsync" });
// 强制战斗 // 强制战斗
ambush.forEach(function (t) { ambush.forEach(function (t) {
actions.push({ actions.push({

View File

@ -6,7 +6,7 @@
"use strict"; "use strict";
function core () { function core() {
this.__SIZE__ = 13; this.__SIZE__ = 13;
this.__PIXELS__ = this.__SIZE__ * 32; this.__PIXELS__ = this.__SIZE__ * 32;
this.__HALF_SIZE__ = Math.floor(this.__SIZE__ / 2); this.__HALF_SIZE__ = Math.floor(this.__SIZE__ / 2);

View File

@ -2,7 +2,7 @@
"use strict"; "use strict";
function data () { function data() {
this._init(); this._init();
} }

View File

@ -2,7 +2,7 @@
"use strict"; "use strict";
function enemys () { function enemys() {
this._init(); this._init();
} }

View File

@ -2,7 +2,7 @@
"use strict"; "use strict";
function events () { function events() {
this._init(); this._init();
} }

View File

@ -6,7 +6,7 @@ extensions.js负责拓展插件
"use strict"; "use strict";
function extensions () { function extensions() {
} }

View File

@ -2,7 +2,7 @@
"use strict"; "use strict";
function icons () { function icons() {
this._init(); this._init();
} }

View File

@ -2,7 +2,7 @@
"use strict"; "use strict";
function items () { function items() {
this._init(); this._init();
} }

View File

@ -6,7 +6,7 @@ loader.js负责对资源的加载
*/ */
"use strict"; "use strict";
function loader () { function loader() {
this._init(); this._init();
} }

View File

@ -2,7 +2,7 @@
"use strict"; "use strict";
function maps () { function maps() {
this._init(); this._init();
} }

View File

@ -8,7 +8,7 @@
"use strict"; "use strict";
function ui () { function ui() {
this._init(); this._init();
// for convenience // for convenience
this.SIZE = core.__SIZE__; this.SIZE = core.__SIZE__;

View File

@ -7,7 +7,7 @@ utils.js 工具类
"use strict"; "use strict";
function utils () { function utils() {
this._init(); this._init();
this.scan = { this.scan = {
'up': { 'x': 0, 'y': -1 }, 'up': { 'x': 0, 'y': -1 },
@ -1351,7 +1351,7 @@ utils.prototype.http = function (type, url, formData, success, error, mimeType,
// LZW-compress // LZW-compress
// https://gist.github.com/revolunet/843889 // https://gist.github.com/revolunet/843889
function lzw_encode (s) { function lzw_encode(s) {
var dict = {}; var dict = {};
var data = (s + "").split(""); var data = (s + "").split("");
var out = []; var out = [];
@ -1378,7 +1378,7 @@ function lzw_encode (s) {
} }
// Decompress an LZW-encoded string // Decompress an LZW-encoded string
function lzw_decode (s) { function lzw_decode(s) {
var dict = {}; var dict = {};
var data = (s + "").split(""); var data = (s + "").split("");
var currChar = data[0]; var currChar = data[0];