Eustia/project/plugins.js

8868 lines
312 KiB
JavaScript
Raw Normal View History

var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 =
{
"init": function () {
this._afterLoadResources = function () {
// 本函数将在所有资源加载完毕后,游戏开启前被执行
core.ui.statusBar.init();
}
},
"drawLight": function () {
// 绘制灯光/漆黑层效果。调用方式 core.plugin.drawLight(...)
// 【参数说明】
// name必填要绘制到的画布名可以是一个系统画布或者是个自定义画布如果不存在则创建
// color可选只能是一个0~1之间的数为不透明度的值。不填则默认为0.9。
// lights可选一个数组定义了每个独立的灯光。
// 其中每一项是三元组 [x,y,r] x和y分别为该灯光的横纵坐标r为该灯光的半径。
// lightDec可选0到1之间光从多少百分比才开始衰减在此范围内保持全亮不设置默认为0。
// 比如lightDec为0.5代表每个灯光部分内圈50%的范围全亮50%以后才开始快速衰减。
// 【调用样例】
// core.plugin.drawLight('curtain'); // 在curtain层绘制全图不透明度0.9,等价于更改画面色调为[0,0,0,0.9]。
// core.plugin.drawLight('ui', 0.95, [[25,11,46]]); // 在ui层绘制全图不透明度0.95,其中在(25,11)点存在一个半径为46的灯光效果。
// core.plugin.drawLight('test', 0.2, [[25,11,46,0.1]]); // 创建一个test图层不透明度0.2,其中在(25,11)点存在一个半径为46的灯光效果灯光中心不透明度0.1。
// core.plugin.drawLight('test2', 0.9, [[25,11,46],[105,121,88],[301,221,106]]); // 创建test2图层且存在三个灯光效果分别是中心(25,11)半径46中心(105,121)半径88中心(301,221)半径106。
// core.plugin.drawLight('xxx', 0.3, [[25,11,46],[105,121,88,0.2]], 0.4); // 存在两个灯光效果它们在内圈40%范围内保持全亮40%后才开始衰减。
this.drawLight = function (name, color, lights, lightDec) {
// 清空色调层也可以修改成其它层比如animate/weather层或者用自己创建的canvas
var ctx = core.getContextByName(name);
if (ctx == null) {
if (typeof name == 'string')
ctx = core.createCanvas(name, 0, 0, core._PX_ || core.__PIXELS__, core._PY_ || core.__PIXELS__, 98);
else return;
}
ctx.mozImageSmoothingEnabled = false;
ctx.webkitImageSmoothingEnabled = false;
ctx.msImageSmoothingEnabled = false;
ctx.imageSmoothingEnabled = false;
core.clearMap(name);
// 绘制色调层,默认不透明度
if (color == null) color = 0.9;
ctx.fillStyle = "rgba(0,0,0," + color + ")";
ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
lightDec = core.clamp(lightDec, 0, 1);
// 绘制每个灯光效果
ctx.globalCompositeOperation = 'destination-out';
lights.forEach(function (light) {
// 坐标,半径,中心不透明度
var x = light[0],
y = light[1],
r = light[2];
// 计算衰减距离
var decDistance = parseInt(r * lightDec);
// 正方形区域的直径和左上角坐标
var grd = ctx.createRadialGradient(x, y, decDistance, x, y, r);
grd.addColorStop(0, "rgba(0,0,0,1)");
grd.addColorStop(1, "rgba(0,0,0,0)");
ctx.beginPath();
ctx.fillStyle = grd;
ctx.arc(x, y, r, 0, 2 * Math.PI);
ctx.fill();
});
ctx.globalCompositeOperation = 'source-over';
// 可以在任何地方如afterXXX或自定义脚本事件调用函数方法为 core.plugin.xxx();
}
},
"shop": function () {
// 【全局商店】相关的功能
//
// 打开一个全局商店
// shopId要打开的商店idnoRoute是否不计入录像
this.openShop = function (shopId, noRoute) {
var shop = core.status.shops[shopId];
// Step 1: 检查能否打开此商店
if (!this.canOpenShop(shopId)) {
core.drawTip("该商店尚未开启");
return false;
}
// Step 2: (如有必要)记录打开商店的脚本事件
if (!noRoute) {
core.status.route.push("shop:" + shopId);
}
// Step 3: 检查道具商店 or 公共事件
if (shop.item) {
if (core.openItemShop) {
core.openItemShop(shopId);
} else {
core.playSound('操作失败');
core.insertAction("道具商店插件不存在!请检查是否存在该插件!");
}
return;
}
if (shop.commonEvent) {
core.insertCommonEvent(shop.commonEvent, shop.args);
return;
}
_shouldProcessKeyUp = true;
// Step 4: 执行标准公共商店
core.insertAction(this._convertShop(shop));
return true;
}
////// 将一个全局商店转变成可预览的公共事件 //////
this._convertShop = function (shop) {
return [
{ "type": "function", "function": "function() {core.addFlag('@temp@shop', 1);}" },
{
"type": "while",
"condition": "true",
"data": [
// 检测能否访问该商店
{
"type": "if",
"condition": "core.isShopVisited('" + shop.id + "')",
"true": [
// 可以访问,直接插入执行效果
{ "type": "function", "function": "function() { core.plugin._convertShop_replaceChoices('" + shop.id + "', false) }" },
],
"false": [
// 不能访问的情况下:检测能否预览
{
"type": "if",
"condition": shop.disablePreview,
"true": [
// 不可预览,提示并退出
{ "type": "playSound", "name": "操作失败" },
"当前无法访问该商店!",
{ "type": "break" },
],
"false": [
// 可以预览:将商店全部内容进行替换
{ "type": "tip", "text": "当前处于预览模式,不可购买" },
{ "type": "function", "function": "function() { core.plugin._convertShop_replaceChoices('" + shop.id + "', true) }" },
]
}
]
}
]
},
{ "type": "function", "function": "function() {core.addFlag('@temp@shop', -1);}" }
];
}
this._convertShop_replaceChoices = function (shopId, previewMode) {
var shop = core.status.shops[shopId];
var choices = (shop.choices || []).filter(function (choice) {
if (choice.condition == null || choice.condition == '') return true;
try { return core.calValue(choice.condition); } catch (e) { return true; }
}).map(function (choice) {
var ableToBuy = core.calValue(choice.need);
return {
"text": core.replaceText(choice.text),
"icon": choice.icon,
"color": ableToBuy && !previewMode ? choice.color : [153, 153, 153, 1],
"action": ableToBuy && !previewMode ? [{ "type": "playSound", "name": "商店" }].concat(choice.action) : [
{ "type": "playSound", "name": "操作失败" },
{ "type": "tip", "text": previewMode ? "预览模式下不可购买" : "购买条件不足" }
]
};
}).concat({ "text": "离开", "action": [{ "type": "playSound", "name": "取消" }, { "type": "break" }] });
core.insertAction({ "type": "choices", "text": core.replaceText(shop.text), "choices": choices });
}
/// 是否访问过某个快捷商店
this.isShopVisited = function (id) {
if (!core.hasFlag("__shops__")) core.setFlag("__shops__", {});
var shops = core.getFlag("__shops__");
if (!shops[id]) shops[id] = {};
return shops[id].visited;
}
/// 当前应当显示的快捷商店列表
this.listShopIds = function () {
return Object.keys(core.status.shops).filter(function (id) {
return core.isShopVisited(id) || !core.status.shops[id].mustEnable;
});
}
/// 是否能够打开某个商店
this.canOpenShop = function (id) {
if (this.isShopVisited(id)) return true;
var shop = core.status.shops[id];
if (shop.item || shop.commonEvent || shop.mustEnable) return false;
return true;
}
/// 启用或禁用某个快捷商店
this.setShopVisited = function (id, visited) {
if (!core.hasFlag("__shops__")) core.setFlag("__shops__", {});
var shops = core.getFlag("__shops__");
if (!shops[id]) shops[id] = {};
if (visited) shops[id].visited = true;
else delete shops[id].visited;
}
/// 能否使用快捷商店
this.canUseQuickShop = function (id) {
// 如果返回一个字符串,表示不能,字符串为不能使用的提示
// 返回null代表可以使用
// 检查当前楼层的canUseQuickShop选项是否为false
if (core.status.thisMap.canUseQuickShop === false)
return '当前楼层不能使用快捷商店。';
return null;
}
var _shouldProcessKeyUp = true;
/// 允许商店X键退出
core.registerAction('keyUp', 'shops', function (keycode) {
if (!core.status.lockControl || core.status.event.id != 'action') return false;
if ((keycode == 13 || keycode == 32) && !_shouldProcessKeyUp) {
_shouldProcessKeyUp = true;
return true;
}
if (!core.hasFlag("@temp@shop") || core.status.event.data.type != 'choices') return false;
var data = core.status.event.data.current;
var choices = data.choices;
var topIndex = core.actions._getChoicesTopIndex(choices.length);
if (keycode == 88 || keycode == 27) { // X, ESC
core.actions._clickAction(core._HALF_WIDTH_ || core.__HALF_SIZE__, topIndex + choices.length - 1);
return true;
}
return false;
}, 60);
/// 允许长按空格或回车连续执行操作
core.registerAction('keyDown', 'shops', function (keycode) {
if (!core.status.lockControl || !core.hasFlag("@temp@shop") || core.status.event.id != 'action') return false;
if (core.status.event.data.type != 'choices') return false;
core.status.onShopLongDown = true;
var data = core.status.event.data.current;
var choices = data.choices;
var topIndex = core.actions._getChoicesTopIndex(choices.length);
if (keycode == 13 || keycode == 32) { // Space, Enter
core.actions._clickAction(core._HALF_WIDTH_ || core.__HALF_SIZE__, topIndex + core.status.event.selection);
_shouldProcessKeyUp = false;
return true;
}
return false;
}, 60);
// 允许长按屏幕连续执行操作
core.registerAction('longClick', 'shops', function (x, y, px, py) {
if (!core.status.lockControl || !core.hasFlag("@temp@shop") || core.status.event.id != 'action') return false;
if (core.status.event.data.type != 'choices') return false;
var data = core.status.event.data.current;
var choices = data.choices;
var topIndex = core.actions._getChoicesTopIndex(choices.length);
if (Math.abs(x - (core._HALF_WIDTH_ || core.__HALF_SIZE__)) <= 2 && y >= topIndex && y < topIndex + choices.length) {
core.actions._clickAction(x, y);
return true;
}
return false;
}, 60);
},
"removeMap": function () {
// 高层塔砍层插件,删除后不会存入存档,不可浏览地图也不可飞到。
// 推荐用法:
// 对于超高层或分区域塔当在1区时将2区以后的地图删除1区结束时恢复2区进二区时删除1区地图以此类推
// 这样可以大幅减少存档空间,以及加快存读档速度
// 删除楼层
// core.removeMaps("MT1", "MT300") 删除MT1~MT300之间的全部层
// core.removeMaps("MT10") 只删除MT10层
this.removeMaps = function (fromId, toId) {
toId = toId || fromId;
var fromIndex = core.floorIds.indexOf(fromId),
toIndex = core.floorIds.indexOf(toId);
if (toIndex < 0) toIndex = core.floorIds.length - 1;
flags.__visited__ = flags.__visited__ || {};
flags.__removed__ = flags.__removed__ || [];
flags.__disabled__ = flags.__disabled__ || {};
flags.__leaveLoc__ = flags.__leaveLoc__ || {};
for (var i = fromIndex; i <= toIndex; ++i) {
var floorId = core.floorIds[i];
if (core.status.maps[floorId].deleted) continue;
delete flags.__visited__[floorId];
flags.__removed__.push(floorId);
delete flags.__disabled__[floorId];
delete flags.__leaveLoc__[floorId];
(core.status.autoEvents || []).forEach(function (event) {
if (event.floorId == floorId && event.currentFloor) {
core.autoEventExecuting(event.symbol, false);
core.autoEventExecuted(event.symbol, false);
}
});
core.status.maps[floorId].deleted = true;
core.status.maps[floorId].canFlyTo = false;
core.status.maps[floorId].canFlyFrom = false;
core.status.maps[floorId].cannotViewMap = true;
}
}
// 恢复楼层
// core.resumeMaps("MT1", "MT300") 恢复MT1~MT300之间的全部层
// core.resumeMaps("MT10") 只恢复MT10层
this.resumeMaps = function (fromId, toId) {
toId = toId || fromId;
var fromIndex = core.floorIds.indexOf(fromId),
toIndex = core.floorIds.indexOf(toId);
if (toIndex < 0) toIndex = core.floorIds.length - 1;
flags.__removed__ = flags.__removed__ || [];
for (var i = fromIndex; i <= toIndex; ++i) {
var floorId = core.floorIds[i];
if (!core.status.maps[floorId].deleted) continue;
flags.__removed__ = flags.__removed__.filter(function (f) { return f != floorId; });
core.status.maps[floorId] = core.loadFloor(floorId);
}
}
// 分区砍层相关
var inAnyPartition = function (floorId) {
var inPartition = false;
(core.floorPartitions || []).forEach(function (floor) {
var fromIndex = core.floorIds.indexOf(floor[0]);
var toIndex = core.floorIds.indexOf(floor[1]);
var index = core.floorIds.indexOf(floorId);
if (fromIndex < 0 || index < 0) return;
if (toIndex < 0) toIndex = core.floorIds.length - 1;
if (index >= fromIndex && index <= toIndex) inPartition = true;
});
return inPartition;
}
// 分区砍层
this.autoRemoveMaps = function (floorId) {
if (main.mode != 'play' || !inAnyPartition(floorId)) return;
// 根据分区信息自动砍层与恢复
(core.floorPartitions || []).forEach(function (floor) {
var fromIndex = core.floorIds.indexOf(floor[0]);
var toIndex = core.floorIds.indexOf(floor[1]);
var index = core.floorIds.indexOf(floorId);
if (fromIndex < 0 || index < 0) return;
if (toIndex < 0) toIndex = core.floorIds.length - 1;
if (index >= fromIndex && index <= toIndex) {
core.resumeMaps(core.floorIds[fromIndex], core.floorIds[toIndex]);
} else {
core.removeMaps(core.floorIds[fromIndex], core.floorIds[toIndex]);
}
});
}
},
"fiveLayers": function () {
2024-11-30 21:57:47 +08:00
// 是否启用五图层增加背景2层和前景2层 将__enable置为true即会启用启用后请保存后刷新编辑器
// 背景层2将会覆盖背景层 被事件层覆盖 前景层2将会覆盖前景层
// 另外 请注意加入两个新图层 会让大地图的性能降低一些
// 插件作者ad
var __enable = true;
if (!__enable) return;
// 创建新图层
function createCanvas(name, zIndex) {
if (!name) return;
var canvas = document.createElement('canvas');
canvas.id = name;
canvas.className = 'gameCanvas anti-aliasing';
// 编辑器模式下设置zIndex会导致加入的图层覆盖优先级过高
if (main.mode != "editor") canvas.style.zIndex = zIndex || 0;
// 将图层插入进游戏内容
document.getElementById('gameDraw').appendChild(canvas);
var ctx = canvas.getContext('2d');
core.canvas[name] = ctx;
canvas.width = core._PX_ || core.__PIXELS__;
canvas.height = core._PY_ || core.__PIXELS__;
return canvas;
}
2024-11-30 21:57:47 +08:00
var bg2Canvas = createCanvas('bg2', 20);
var fg2Canvas = createCanvas('fg2', 63);
// 大地图适配
core.bigmap.canvas = ["bg2", "fg2", "bg", "event", "event2", "fg", "damage"];
core.initStatus.bg2maps = {};
core.initStatus.fg2maps = {};
if (main.mode == 'editor') {
/*插入编辑器的图层 不做此步新增图层无法在编辑器显示*/
// 编辑器图层覆盖优先级 eui > efg > fg(前景层) > event2(48*32图块的事件层) > event(事件层) > bg(背景层)
// 背景层2(bg2) 插入事件层(event)之前(即bg与event之间)
document.getElementById('mapEdit').insertBefore(bg2Canvas, document.getElementById('event'));
// 前景层2(fg2) 插入编辑器前景(efg)之前(即fg之后)
document.getElementById('mapEdit').insertBefore(fg2Canvas, document.getElementById('ebm'));
// 原本有三个图层 从4开始添加
var num = 4;
// 新增图层存入editor.dom中
editor.dom.bg2c = core.canvas.bg2.canvas;
editor.dom.bg2Ctx = core.canvas.bg2;
editor.dom.fg2c = core.canvas.fg2.canvas;
editor.dom.fg2Ctx = core.canvas.fg2;
editor.dom.maps.push('bg2map', 'fg2map');
editor.dom.canvas.push('bg2', 'fg2');
// 创建编辑器上的按钮
var createCanvasBtn = function (name) {
// 电脑端创建按钮
var input = document.createElement('input');
// layerMod4/layerMod5
var id = 'layerMod' + num++;
// bg2map/fg2map
var value = name + 'map';
input.type = 'radio';
input.name = 'layerMod';
input.id = id;
input.value = value;
editor.dom[id] = input;
input.onchange = function () {
editor.uifunctions.setLayerMod(value);
}
2024-11-30 21:57:47 +08:00
return input;
};
var createCanvasBtn_mobile = function (name) {
// 手机端往选择列表中添加子选项
var input = document.createElement('option');
var id = 'layerMod' + num++;
var value = name + 'map';
input.name = 'layerMod';
input.value = value;
editor.dom[id] = input;
return input;
};
if (!editor.isMobile) {
var input = createCanvasBtn('bg2');
var input2 = createCanvasBtn('fg2');
// 获取事件层及其父节点
var child = document.getElementById('layerMod'),
parent = child.parentNode;
// 背景层2插入事件层前
parent.insertBefore(input, child);
// 不能直接更改背景层2的innerText 所以创建文本节点
var txt = document.createTextNode('bg2');
// 插入事件层前(即新插入的背景层2前)
parent.insertBefore(txt, child);
// 向最后插入前景层2(即插入前景层后)
parent.appendChild(input2);
var txt2 = document.createTextNode('fg2');
parent.appendChild(txt2);
parent.childNodes[2].replaceWith("bg");
parent.childNodes[6].replaceWith("事件");
parent.childNodes[8].replaceWith("fg");
} else {
var input = createCanvasBtn_mobile('bg2');
var input2 = createCanvasBtn_mobile('fg2');
// 手机端因为是选项 所以可以直接改innerText
input.innerText = '背景层2';
input2.innerText = '前景层2';
var parent = document.getElementById('layerMod');
parent.insertBefore(input, parent.children[1]);
parent.appendChild(input2);
}
2024-11-30 21:57:47 +08:00
}
2024-11-30 21:57:47 +08:00
var _loadFloor_doNotCopy = core.maps._loadFloor_doNotCopy;
core.maps._loadFloor_doNotCopy = function () {
return ["bg2map", "fg2map"].concat(_loadFloor_doNotCopy());
}
////// 绘制背景和前景层 //////
core.maps._drawBg_draw = function (floorId, toDrawCtx, cacheCtx, config) {
config.ctx = cacheCtx;
core.maps._drawBg_drawBackground(floorId, config);
// ------ 调整这两行的顺序来控制是先绘制贴图还是先绘制背景图块;后绘制的覆盖先绘制的。
core.maps._drawFloorImages(floorId, config.ctx, 'bg', null, null, config.onMap);
core.maps._drawBgFgMap(floorId, 'bg', config);
if (config.onMap) {
core.drawImage(toDrawCtx, cacheCtx.canvas, core.bigmap.v2 ? -32 : 0, core.bigmap.v2 ? -32 : 0);
core.clearMap('bg2');
core.clearMap(cacheCtx);
}
2024-11-30 21:57:47 +08:00
core.maps._drawBgFgMap(floorId, 'bg2', config);
if (config.onMap) core.drawImage('bg2', cacheCtx.canvas, core.bigmap.v2 ? -32 : 0, core.bigmap.v2 ? -32 : 0);
config.ctx = toDrawCtx;
}
core.maps._drawFg_draw = function (floorId, toDrawCtx, cacheCtx, config) {
config.ctx = cacheCtx;
// ------ 调整这两行的顺序来控制是先绘制贴图还是先绘制前景图块;后绘制的覆盖先绘制的。
core.maps._drawFloorImages(floorId, config.ctx, 'fg', null, null, config.onMap);
core.maps._drawBgFgMap(floorId, 'fg', config);
if (config.onMap) {
core.drawImage(toDrawCtx, cacheCtx.canvas, core.bigmap.v2 ? -32 : 0, core.bigmap.v2 ? -32 : 0);
core.clearMap('fg2');
core.clearMap(cacheCtx);
}
2024-11-30 21:57:47 +08:00
core.maps._drawBgFgMap(floorId, 'fg2', config);
if (config.onMap) core.drawImage('fg2', cacheCtx.canvas, core.bigmap.v2 ? -32 : 0, core.bigmap.v2 ? -32 : 0);
config.ctx = toDrawCtx;
}
////// 移动判定 //////
core.maps._generateMovableArray_arrays = function (floorId) {
return {
bgArray: this.getBgMapArray(floorId),
fgArray: this.getFgMapArray(floorId),
eventArray: this.getMapArray(floorId),
bg2Array: this._getBgFgMapArray('bg2', floorId),
fg2Array: this._getBgFgMapArray('fg2', floorId)
};
}
},
"itemShop": function () {
// 道具商店相关的插件
// 可在全塔属性-全局商店中使用「道具商店」事件块进行编辑(如果找不到可以在入口方块中找)
var shopId = null; // 当前商店ID
var type = 0; // 当前正在选中的类型0买入1卖出
var selectItem = 0; // 当前正在选中的道具
var selectCount = 0; // 当前已经选中的数量
var page = 0;
var totalPage = 0;
var totalMoney = 0;
var list = [];
var shopInfo = null; // 商店信息
var choices = []; // 商店选项
var use = 'money';
var useText = '金币';
var bigFont = core.ui._buildFont(20, false),
middleFont = core.ui._buildFont(18, false);
this._drawItemShop = function () {
// 绘制道具商店
// Step 1: 背景和固定的几个文字
core.ui._createUIEvent();
core.clearMap('uievent');
core.ui.clearUIEventSelector();
core.setTextAlign('uievent', 'left');
core.setTextBaseline('uievent', 'top');
core.fillRect('uievent', 0, 0, 416, 416, 'black');
core.drawWindowSkin('winskin.png', 'uievent', 0, 0, 416, 56);
core.drawWindowSkin('winskin.png', 'uievent', 0, 56, 312, 56);
core.drawWindowSkin('winskin.png', 'uievent', 0, 112, 312, 304);
core.drawWindowSkin('winskin.png', 'uievent', 312, 56, 104, 56);
core.drawWindowSkin('winskin.png', 'uievent', 312, 112, 104, 304);
core.setFillStyle('uievent', 'white');
core.setStrokeStyle('uievent', 'white');
core.fillText("uievent", "购买", 32, 74, 'white', bigFont);
core.fillText("uievent", "卖出", 132, 74);
core.fillText("uievent", "离开", 232, 74);
core.fillText("uievent", "当前" + useText, 324, 66, null, middleFont);
core.setTextAlign("uievent", "right");
core.fillText("uievent", core.formatBigNumber(core.status.hero[use]), 405, 89);
core.setTextAlign("uievent", "left");
core.ui.drawUIEventSelector(1, "winskin.png", 22 + 100 * type, 66, 60, 33);
if (selectItem != null) {
core.setTextAlign('uievent', 'center');
core.fillText("uievent", type == 0 ? "买入个数" : "卖出个数", 364, 320, null, bigFont);
core.fillText("uievent", "< " + selectCount + " >", 364, 350);
core.fillText("uievent", "确定", 364, 380);
}
// Step 2获得列表并展示
list = choices.filter(function (one) {
if (one.condition != null && one.condition != '') {
try { if (!core.calValue(one.condition)) return false; } catch (e) {}
}
return (type == 0 && one.money != null) || (type == 1 && one.sell != null);
});
var per_page = 6;
totalPage = Math.ceil(list.length / per_page);
page = Math.floor((selectItem || 0) / per_page) + 1;
// 绘制分页
if (totalPage > 1) {
var half = 156;
core.setTextAlign('uievent', 'center');
core.fillText('uievent', page + " / " + totalPage, half, 388, null, middleFont);
if (page > 1) core.fillText('uievent', '上一页', half - 80, 388);
if (page < totalPage) core.fillText('uievent', '下一页', half + 80, 388);
}
core.setTextAlign('uievent', 'left');
// 绘制每一项
var start = (page - 1) * per_page;
for (var i = 0; i < per_page; ++i) {
var curr = start + i;
if (curr >= list.length) break;
var item = list[curr];
core.drawIcon('uievent', item.id, 10, 125 + i * 40);
core.setTextAlign('uievent', 'left');
core.fillText('uievent', core.material.items[item.id].name, 50, 132 + i * 40, null, bigFont);
core.setTextAlign('uievent', 'right');
core.fillText('uievent', (type == 0 ? core.calValue(item.money) : core.calValue(item.sell)) + useText + "/个", 300, 133 + i * 40, null, middleFont);
core.setTextAlign("uievent", "left");
if (curr == selectItem) {
// 绘制描述,文字自动放缩
var text = core.replaceText(core.material.items[item.id].text) || "该道具暂无描述";
if (text[0] == "," || text[0] == "") text = text.substring(1);
try { text = core.replaceText(text); } catch (e) {}
for (var fontSize = 20; fontSize >= 8; fontSize -= 2) {
var config = { left: 10, fontSize: fontSize, maxWidth: 403 };
var height = core.getTextContentHeight(text, config);
if (height <= 50) {
config.top = (56 - height) / 2;
core.drawTextContent("uievent", text, config);
break;
}
}
core.ui.drawUIEventSelector(2, "winskin.png", 8, 120 + i * 40, 295, 40);
if (type == 0 && item.number != null) {
core.fillText("uievent", "存货", 324, 132, null, bigFont);
core.setTextAlign("uievent", "right");
core.fillText("uievent", item.number, 406, 132, null, null, 40);
} else if (type == 1) {
core.fillText("uievent", "数量", 324, 132, null, bigFont);
core.setTextAlign("uievent", "right");
core.fillText("uievent", core.itemCount(item.id), 406, 132, null, null, 40);
}
core.setTextAlign("uievent", "left");
core.fillText("uievent", "预计" + useText, 324, 250);
core.setTextAlign("uievent", "right");
totalMoney = selectCount * (type == 0 ? core.calValue(item.money) : core.calValue(item.sell));
core.fillText("uievent", core.formatBigNumber(totalMoney), 405, 280);
core.setTextAlign("uievent", "left");
core.fillText("uievent", type == 0 ? "已购次数" : "已卖次数", 324, 170);
core.setTextAlign("uievent", "right");
core.fillText("uievent", (type == 0 ? item.money_count : item.sell_count) || 0, 405, 200);
}
}
core.setTextAlign('uievent', 'left');
core.setTextBaseline('uievent', 'alphabetic');
}
var _add = function (item, delta) {
if (item == null) return;
selectCount = core.clamp(
selectCount + delta, 0,
Math.min(type == 0 ? Math.floor(core.status.hero[use] / core.calValue(item.money)) : core.itemCount(item.id),
type == 0 && item.number != null ? item.number : Number.MAX_SAFE_INTEGER)
);
}
var _confirm = function (item) {
if (item == null || selectCount == 0) return;
if (type == 0) {
core.status.hero[use] -= totalMoney;
core.getItem(item.id, selectCount);
core.stopSound();
core.playSound('确定');
if (item.number != null) item.number -= selectCount;
item.money_count = (item.money_count || 0) + selectCount;
} else {
core.status.hero[use] += totalMoney;
core.removeItem(item.id, selectCount);
core.playSound('确定');
core.drawTip("成功卖出" + selectCount + "个" + core.material.items[item.id].name, item.id);
if (item.number != null) item.number += selectCount;
item.sell_count = (item.sell_count || 0) + selectCount;
}
selectCount = 0;
}
this._performItemShopKeyBoard = function (keycode) {
var item = list[selectItem] || null;
// 键盘操作
switch (keycode) {
case 38: // up
if (selectItem == null) break;
if (selectItem == 0) selectItem = null;
else selectItem--;
selectCount = 0;
break;
case 37: // left
if (selectItem == null) {
if (type > 0) type--;
break;
}
_add(item, -1);
break;
case 39: // right
if (selectItem == null) {
if (type < 2) type++;
break;
}
_add(item, 1);
break;
case 40: // down
if (selectItem == null) {
if (list.length > 0) selectItem = 0;
break;
}
if (list.length == 0) break;
selectItem = Math.min(selectItem + 1, list.length - 1);
selectCount = 0;
break;
case 13:
case 32: // Enter/Space
if (selectItem == null) {
if (type == 2)
core.insertAction({ "type": "break" });
else if (list.length > 0)
selectItem = 0;
break;
}
_confirm(item);
break;
case 27: // ESC
if (selectItem == null) {
core.insertAction({ "type": "break" });
break;
}
selectItem = null;
break;
}
}
this._performItemShopClick = function (px, py) {
var item = list[selectItem] || null;
// 鼠标操作
if (px >= 22 && px <= 82 && py >= 71 && py <= 102) {
// 买
if (type != 0) {
type = 0;
selectItem = null;
selectCount = 0;
}
return;
}
if (px >= 122 && px <= 182 && py >= 71 && py <= 102) {
// 卖
if (type != 1) {
type = 1;
selectItem = null;
selectCount = 0;
}
return;
}
if (px >= 222 && px <= 282 && py >= 71 && py <= 102) // 离开
return core.insertAction({ "type": "break" });
// < >
if (px >= 318 && px <= 341 && py >= 348 && py <= 376)
return _add(item, -1);
if (px >= 388 && px <= 416 && py >= 348 && py <= 376)
return _add(item, 1);
// 确定
if (px >= 341 && px <= 387 && py >= 380 && py <= 407)
return _confirm(item);
// 上一页/下一页
if (px >= 45 && px <= 105 && py >= 388) {
if (page > 1) {
selectItem -= 6;
selectCount = 0;
}
return;
}
if (px >= 208 && px <= 268 && py >= 388) {
if (page < totalPage) {
selectItem = Math.min(selectItem + 6, list.length - 1);
selectCount = 0;
}
return;
}
// 实际区域
if (px >= 9 && px <= 300 && py >= 120 && py < 360) {
if (list.length == 0) return;
var index = parseInt((py - 120) / 40);
var newItem = 6 * (page - 1) + index;
if (newItem >= list.length) newItem = list.length - 1;
if (newItem != selectItem) {
selectItem = newItem;
selectCount = 0;
}
return;
}
}
this._performItemShopAction = function () {
if (flags.type == 0) return this._performItemShopKeyBoard(flags.keycode);
else return this._performItemShopClick(flags.px, flags.py);
}
this.openItemShop = function (itemShopId) {
shopId = itemShopId;
type = 0;
page = 0;
selectItem = null;
selectCount = 0;
core.isShopVisited(itemShopId);
shopInfo = flags.__shops__[shopId];
if (shopInfo.choices == null) shopInfo.choices = core.clone(core.status.shops[shopId].choices);
choices = shopInfo.choices;
use = core.status.shops[shopId].use;
if (use != 'exp') use = 'money';
useText = use == 'money' ? '金币' : '经验';
core.insertAction([{
"type": "while",
"condition": "true",
"data": [
{ "type": "function", "function": "function () { core.plugin._drawItemShop(); }" },
{ "type": "wait" },
{ "type": "function", "function": "function() { core.plugin._performItemShopAction(); }" }
]
},
{
"type": "function",
"function": "function () { core.deleteCanvas('uievent'); core.ui.clearUIEventSelector(); }"
}
]);
}
},
"enemyLevel": function () {
// 此插件将提供怪物手册中的怪物境界显示
// 使用此插件需要先给每个怪物定义境界,方法如下:
// 点击怪物的【配置表格】,找到“【怪物】相关的表格配置”,然后在【名称】仿照增加境界定义:
/*
"level": {
"_leaf": true,
"_type": "textarea",
"_string": true,
"_data": "境界"
},
*/
// 然后保存刷新,可以看到怪物的属性定义中出现了【境界】。再开启本插件即可。
// 是否开启本插件,默认禁用;将此改成 true 将启用本插件。
var __enable = false;
if (!__enable) return;
// 这里定义每个境界的显示颜色;可以写'red', '#RRGGBB' 或者[r,g,b,a]四元数组
var levelToColors = {
"萌新一阶": "red",
"萌新二阶": "#FF0000",
"萌新三阶": [255, 0, 0, 1],
};
// 复写 _drawBook_drawName
var originDrawBook = core.ui._drawBook_drawName;
core.ui._drawBook_drawName = function (index, enemy, top, left, width) {
// 如果没有境界,则直接调用原始代码绘制
if (!enemy.level) return originDrawBook.call(core.ui, index, enemy, top, left, width);
// 存在境界,则额外进行绘制
core.setTextAlign('ui', 'center');
if (enemy.specialText.length == 0) {
core.fillText('ui', enemy.name, left + width / 2,
top + 27, '#DDDDDD', this._buildFont(17, true));
core.fillText('ui', enemy.level, left + width / 2,
top + 51, core.arrayToRGBA(levelToColors[enemy.level] || '#DDDDDD'), this._buildFont(14, true));
} else {
core.fillText('ui', enemy.name, left + width / 2,
top + 20, '#DDDDDD', this._buildFont(17, true), width);
switch (enemy.specialText.length) {
case 1:
core.fillText('ui', enemy.specialText[0], left + width / 2,
top + 38, core.arrayToRGBA((enemy.specialColor || [])[0] || '#FF6A6A'),
this._buildFont(14, true), width);
break;
case 2:
// Step 1: 计算字体
var text = enemy.specialText[0] + " " + enemy.specialText[1];
core.setFontForMaxWidth('ui', text, width, this._buildFont(14, true));
// Step 2: 计算总宽度
var totalWidth = core.calWidth('ui', text);
var leftWidth = core.calWidth('ui', enemy.specialText[0]);
var rightWidth = core.calWidth('ui', enemy.specialText[1]);
// Step 3: 绘制
core.fillText('ui', enemy.specialText[0], left + (width + leftWidth - totalWidth) / 2,
top + 38, core.arrayToRGBA((enemy.specialColor || [])[0] || '#FF6A6A'));
core.fillText('ui', enemy.specialText[1], left + (width + totalWidth - rightWidth) / 2,
top + 38, core.arrayToRGBA((enemy.specialColor || [])[1] || '#FF6A6A'));
break;
default:
core.fillText('ui', '多属性...', left + width / 2,
top + 38, '#FF6A6A', this._buildFont(14, true), width);
}
core.fillText('ui', enemy.level, left + width / 2,
top + 56, core.arrayToRGBA(levelToColors[enemy.level] || '#DDDDDD'), this._buildFont(14, true));
}
}
// 也可以复写其他的属性颜色如怪物攻防等,具体参见下面的例子的注释部分
core.ui._drawBook_drawRow1 = function (index, enemy, top, left, width, position) {
// 绘制第一行
core.setTextAlign('ui', 'left');
var b13 = this._buildFont(13, true),
f13 = this._buildFont(13, false);
var col1 = left,
col2 = left + width * 9 / 25,
col3 = left + width * 17 / 25;
core.fillText('ui', '生命', col1, position, '#DDDDDD', f13);
core.fillText('ui', core.formatBigNumber(enemy.hp || 0), col1 + 30, position, /*'red' */ null, b13);
core.fillText('ui', '攻击', col2, position, null, f13);
core.fillText('ui', core.formatBigNumber(enemy.atk || 0), col2 + 30, position, /* '#FF0000' */ null, b13);
core.fillText('ui', '防御', col3, position, null, f13);
core.fillText('ui', core.formatBigNumber(enemy.def || 0), col3 + 30, position, /* [255, 0, 0, 1] */ null, b13);
}
},
"multiHeros": function () {
// 多角色插件
// Step 1: 启用本插件
// Step 2: 定义每个新的角色各项初始数据(参见下方注释)
// Step 3: 在游戏中的任何地方都可以调用 `core.changeHero()` 进行切换;也可以 `core.changeHero(1)` 来切换到某个具体的角色上
// 是否开启本插件,默认禁用;将此改成 true 将启用本插件。
var __enable = false;
if (!__enable) return;
// 在这里定义全部的新角色属性
// 请注意,在这里定义的内容不会多角色共用,在切换时会进行恢复。
// 你也可以自行新增或删除,比如不共用金币则可以加上"money"的初始化,不共用道具则可以加上"items"的初始化,
// 多角色共用hp的话则删除hp等等。总之不共用的属性都在这里进行定义就好。
var hero1 = {
"floorId": "MT0", // 该角色初始楼层ID如果共用楼层可以注释此项
"image": "brave.png", // 角色的行走图名称;此项必填不然会报错
"name": "1号角色",
"lv": 1,
"hp": 10000, // 如果HP共用可注释此项
"atk": 1000,
"def": 1000,
"mdef": 0,
// "money": 0, // 如果要不共用金币则取消此项注释
// "exp": 0, // 如果要不共用经验则取消此项注释
"loc": { "x": 0, "y": 0, "direction": "up" }, // 该角色初始位置;如果共用位置可注释此项
"items": {
"tools": {}, // 如果共用消耗道具(含钥匙)则可注释此项
// "constants": {}, // 如果不共用永久道具(如手册)可取消注释此项
"equips": {}, // 如果共用在背包的装备可注释此项
},
"equipment": [], // 如果共用装备可注释此项;此项和上面的「共用在背包的装备」需要拥有相同状态,不然可能出现问题
};
// 也可以类似新增其他角色
// 新增的角色,各项属性共用与不共用的选择必须和上面完全相同,否则可能出现问题。
// var hero2 = { ...
var heroCount = 2; // 包含默认角色在内总共多少个角色,该值需手动修改。
this.initHeros = function () {
core.setFlag("hero1", core.clone(hero1)); // 将属性值存到变量中
// core.setFlag("hero2", core.clone(hero2)); // 更多的角色也存入变量中;每个定义的角色都需要新增一行
// 检测是否存在装备
if (hero1.equipment) {
if (!hero1.items || !hero1.items.equips) {
alert('多角色插件的equipment和道具中的equips必须拥有相同状态');
}
// 存99号套装为全空
var saveEquips = core.getFlag("saveEquips", []);
saveEquips[99] = [];
core.setFlag("saveEquips", saveEquips);
} else {
if (hero1.items && hero1.items.equips) {
alert('多角色插件的equipment和道具中的equips必须拥有相同状态');
}
}
}
// 在游戏开始注入initHeros
var _startGame_setHard = core.events._startGame_setHard;
core.events._startGame_setHard = function () {
_startGame_setHard.call(core.events);
core.initHeros();
}
// 切换角色
// 可以使用 core.changeHero() 来切换到下一个角色
// 也可以 core.changeHero(1) 来切换到某个角色默认角色为0
this.changeHero = function (toHeroId) {
var currHeroId = core.getFlag("heroId", 0); // 获得当前角色ID
if (toHeroId == null) {
toHeroId = (currHeroId + 1) % heroCount;
}
if (currHeroId == toHeroId) return;
var saveList = Object.keys(hero1);
// 保存当前内容
var toSave = {};
// 暂时干掉 drawTip 和 音效,避免切装时的提示
var _drawTip = core.ui.drawTip;
core.ui.drawTip = function () { };
var _playSound = core.control.playSound;
core.control.playSound = function () { }
// 记录当前录像,因为可能存在换装问题
core.clearRouteFolding();
var routeLength = core.status.route.length;
// 优先判定装备
if (hero1.equipment) {
core.items.quickSaveEquip(100 + currHeroId);
core.items.quickLoadEquip(99);
}
saveList.forEach(function (name) {
if (name == 'floorId') toSave[name] = core.status.floorId; // 楼层单独设置
else if (name == 'items') {
toSave.items = core.clone(core.status.hero.items);
Object.keys(toSave.items).forEach(function (one) {
if (!hero1.items[one]) delete toSave.items[one];
});
} else toSave[name] = core.clone(core.status.hero[name]); // 使用core.clone()来创建新对象
});
core.setFlag("hero" + currHeroId, toSave); // 将当前角色信息进行保存
var data = core.getFlag("hero" + toHeroId); // 获得要切换的角色保存内容
// 设置角色的属性值
saveList.forEach(function (name) {
if (name == "floorId");
else if (name == "items") {
Object.keys(core.status.hero.items).forEach(function (one) {
if (data.items[one]) core.status.hero.items[one] = core.clone(data.items[one]);
});
} else {
core.status.hero[name] = core.clone(data[name]);
}
});
// 最后装上装备
if (hero1.equipment) {
core.items.quickLoadEquip(100 + toHeroId);
}
core.ui.drawTip = _drawTip;
core.control.playSound = _playSound;
core.status.route = core.status.route.slice(0, routeLength);
core.control._bindRoutePush();
// 插入事件:改变角色行走图并进行楼层切换
var toFloorId = data.floorId || core.status.floorId;
var toLoc = data.loc || core.status.hero.loc;
core.insertAction([
{ "type": "setHeroIcon", "name": data.image || "hero.png" }, // 改变行走图
// 同层则用changePos不同层则用changeFloor这是为了避免共用楼层造成触发eachArrive
toFloorId != core.status.floorId ? {
"type": "changeFloor",
"floorId": toFloorId,
"loc": [toLoc.x, toLoc.y],
"direction": toLoc.direction,
"time": 0 // 可以在这里设置切换时间
} : { "type": "changePos", "loc": [toLoc.x, toLoc.y], "direction": toLoc.direction }
// 你还可以在这里执行其他事件,比如增加或取消跟随效果
]);
core.setFlag("heroId", toHeroId); // 保存切换到的角色ID
}
},
"heroFourFrames": function () {
// 样板的勇士/跟随者移动时只使用2、4两帧观感较差。本插件可以将四帧全用上。
// 是否启用本插件
var __enable = true;
if (!__enable) return;
["up", "down", "left", "right"].forEach(function (one) {
// 指定中间帧动画
core.material.icons.hero[one].midFoot = 2;
});
var heroMoving = function (timestamp) {
if (core.status.heroMoving <= 0) return;
if (timestamp - core.animateFrame.moveTime > core.values.moveSpeed) {
core.animateFrame.leftLeg++;
core.animateFrame.moveTime = timestamp;
}
core.drawHero(['stop', 'leftFoot', 'midFoot', 'rightFoot'][core.animateFrame.leftLeg % 4], 4 * core.status.heroMoving);
}
core.registerAnimationFrame('heroMoving', true, heroMoving);
core.events._eventMoveHero_moving = function (step, moveSteps) {
var curr = moveSteps[0];
var direction = curr[0], x = core.getHeroLoc('x'), y = core.getHeroLoc('y');
// ------ 前进/后退
var o = direction == 'backward' ? -1 : 1;
if (direction == 'forward' || direction == 'backward') direction = core.getHeroLoc('direction');
var faceDirection = direction;
if (direction == 'leftup' || direction == 'leftdown') faceDirection = 'left';
if (direction == 'rightup' || direction == 'rightdown') faceDirection = 'right';
core.setHeroLoc('direction', direction);
if (curr[1] <= 0) {
core.setHeroLoc('direction', faceDirection);
moveSteps.shift();
return true;
}
if (step <= 4) core.drawHero('stop', 4 * o * step);
else if (step <= 8) core.drawHero('leftFoot', 4 * o * step);
else if (step <= 12) core.drawHero('midFoot', 4 * o * (step - 8));
else if (step <= 16) core.drawHero('rightFoot', 4 * o * (step - 8)); // if (step == 8) {
if (step == 8 || step == 16) {
core.setHeroLoc('x', x + o * core.utils.scan2[direction].x, true);
core.setHeroLoc('y', y + o * core.utils.scan2[direction].y, true);
core.updateFollowers();
curr[1]--;
if (curr[1] <= 0) moveSteps.shift();
core.setHeroLoc('direction', faceDirection);
return step == 16;
}
return false;
}
},
"routeFixing": function () {
// 是否开启本插件true 表示启用false 表示禁用。
var __enable = true;
if (!__enable) return;
/*
使用说明启用本插件后录像回放时您可以用数字键1或6分别切换到原速或24倍速
暂停播放时按数字键7电脑按N可以单步播放手机端可以点击难度单词切换出数字键
数字键2-5可以进行录像自助精修具体描述见下实际弹窗请求您输入时不要带有任何空格
up down left right 勇士向某个方向行走一步或撞击
item:ID 使用某件道具 item:bomb 表示使用炸弹
unEquip:n 卸掉身上第(n+1)件装备n从0开始 unEquip:1 默认表示卸掉盾牌
equip:ID 穿上某件装备 equip:sword1 表示装上铁剑
saveEquip:n 将身上的当前套装保存到第n套快捷套装n从0开始
loadEquip:n 快捷换上之前保存好的第n套套装
fly:ID 使用楼传飞到某一层 fly:MT10 表示飞到主塔10层
choices:none 确认框/选择项超时作者未设置超时时间则此项视为缺失
choices:n 确认框/选择项选择第(n+1)选择项n从0开始确认框n为0表示确定1表示取消
选择项n为负数时表示选择倒数第 -n -1 表示最后一项V2.8.2起标准全局商店的离开
此项缺失的话确认框将选择作者指定的默认项初始光标位置选择项将弹窗请求补选后台录像验证中选最后一项可以复写函数来修改
shop:ID 打开某个全局商店 shop:itemShop 表示打开道具商店因此连载塔千万不要中途修改商店ID
turn 单击勇士Z键转身core.turnHero() 会产生此项因此通过事件等方式强制让勇士转向应该用 core.setHeroLoc()
turn:dir 勇士转向某个方向dir 可以为 up down left right此项一般是读取自动存档产生的属于样板的不良特性请勿滥用
getNext 轻按获得身边道具优先获得面前的面前没有则按上下左右顺序依次获得身边如果没有道具则此项会被跳过
input:none 等待用户操作事件中超时作者未设置超时时间则此项会导致报错
input:xxx 可能表示等待用户操作事件的一个操作如按键操作将直接记录 input:keycode
也可能表示一个接受用户输入数字的输入后者的情况下 xxx 为输入的整数此项缺失的话前者将直接报错后者将用0代替后者现在支持负数了
input2:xxx 可能表示读取全局存储core.getGlobal读取到的值也可能表示一个接受用户输入文本的输入
两种情况下 xxx 都为 base64 编码此项缺失的话前者将重新现场读取后者将用空字符串代替
no 走到可穿透的楼梯上不触发楼层切换事件通过本插件可以让勇士停在旁边没有障碍物的楼梯上哦
move:x:y 尝试瞬移到 [x,y] 不改变朝向该点甚至可以和勇士相邻或者位于视野外
key:n 松开键值为n的键 key:49 表示松开大键盘数字键1默认会触发使用破墙镐
click:n:px:py 点击自绘状态栏n为0表示横屏1表示竖屏[px,py] 为点击的像素坐标
random:n 生成了随机数n core.rand2(num) 的返回结果n必须在 [0,num-1] 范围num必须为正整数此项缺失将导致现场重新随机生成数值可能导致回放结果不一致
作者自定义的新项一般为js对象可以先JSON.stringify()再core.encodeBase64()得到纯英文数字的内容需要用(半角圆括弧)括起来
当您使用数字键5将一些项追加到即将播放内容的开头时请注意要逆序逐项追加或者每追加一项就按下数字键7或字母键N单步播放一步
但是input input2 random choices是被动读取的单步播放如果触发了相应的事件就会连续读取这时候只能提前逐项追加好
电脑端熟练以后推荐直接在控制台操作 core.status.route core.status.replay.toReplay后者录像回放时才有配合 core.push() core.unshift() 更加灵活自由哦
*/
core.actions.registerAction('onkeyUp', '_sys_onkeyUp_replay', function (e) {
if (this._checkReplaying()) {
if (e.keyCode == 27) // ESCAPE
core.stopReplay();
else if (e.keyCode == 90) // Z
core.speedDownReplay();
else if (e.keyCode == 67) // C
core.speedUpReplay();
else if (e.keyCode == 32) // SPACE
core.triggerReplay();
else if (e.keyCode == 65) // A
core.rewindReplay();
else if (e.keyCode == 83) // S
core.control._replay_SL();
else if (e.keyCode == 88) // X
core.control._replay_book();
else if (e.keyCode == 33 || e.keyCode == 34) // PgUp/PgDn
core.control._replay_viewMap();
else if (e.keyCode == 78) // N
core.stepReplay();
else if (e.keyCode == 84) // T
core.control._replay_toolbox();
else if (e.keyCode == 81) // Q
core.control._replay_equipbox();
else if (e.keyCode == 66) // B
core.ui._drawStatistics();
else if (e.keyCode == 49 || e.keyCode == 54) // 1/6原速/24倍速播放
core.setReplaySpeed(e.keyCode == 49 ? 1 : 24);
else if (e.keyCode > 49 && e.keyCode < 54) { // 2-5录像精修
switch (e.keyCode - 48) {
case 2: // pop
alert("您已移除已录制内容的最后一项:" + core.status.route.pop());
break;
case 3: // push
core.utils.myprompt("请输入您要追加到已录制内容末尾的项:", "", function (value) {
if (value != null) core.status.route.push(value);
});
break;
case 4: // shift
alert("您已移除即将播放内容的第一项:" + core.status.replay.toReplay.shift());
break;
case 5: // unshift
core.utils.myprompt("请输入您要追加到即将播放内容开头的项:", "", function (value) {
if (value != null) core.status.replay.toReplay.unshift(value);
});
}
}
return true;
}
}, 100);
},
"numpad": function () {
// 样板自带的整数输入事件为白屏弹窗且可以误输入任意非法内容但不支持负整数观感较差。本插件可以将其美化成仿RM样式使其支持负整数同时带有音效
// 另一方面4399等第三方平台不允许使用包括 core.myprompt() 和 core.myconfirm() 在内的弹窗,因此也需要此插件来替代,不然类似生命魔杖的道具就不好实现了
// 关于负整数输入V2.8.2原生支持其录像的压缩和解压,只是默认的 core.events._action_input() 函数将负数取了绝对值,可以只复写下面的 core.isReplaying() 部分来取消
// 是否启用本插件false表示禁用true表示启用
var __enable = true;
if (!__enable) return;
core.events._action_input = function (data, x, y, prefix) { // 复写整数输入事件
if (core.isReplaying()) { // 录像回放时,处理方式不变,但增加负整数支持
core.events.__action_getInput(core.replaceText(data.text, prefix), false, function (value) {
value = parseInt(value) || 0; // 去掉了取绝对值的步骤
core.status.route.push("input:" + value);
core.setFlag("input", value);
core.doAction();
});
} else {
// 正常游戏中,采用暂停录制的方式然后用事件流循环“绘制-等待-变量操作”三板斧实现按照13*13适配的
// 您可以自行修改循环内的内容来适配15*15或其他需求或干脆作为公共事件编辑。
core.insertAction([
// 记录当前录像长度,下面的循环结束后裁剪。达到“暂停录制”的效果
{ "type": "function", "function": "function(){flags['@temp@length']=core.status.route.length}" },
{ "type": "setValue", "name": "flag:input", "value": "0" },
{
"type": "while",
"condition": "true",
"data": [
{ "type": "drawBackground", "background": "winskin.png", "x": 16, "y": 16, "width": 384, "height": 384 },
{ "type": "drawIcon", "id": "X10181", "x": 32, "y": 288 },
{ "type": "drawIcon", "id": "X10185", "x": 64, "y": 288 },
{ "type": "drawIcon", "id": "X10186", "x": 96, "y": 288 },
{ "type": "drawIcon", "id": "X10187", "x": 128, "y": 288 },
{ "type": "drawIcon", "id": "X10188", "x": 160, "y": 288 },
{ "type": "drawIcon", "id": "X10189", "x": 192, "y": 288 },
{ "type": "drawIcon", "id": "X10193", "x": 224, "y": 288 },
{ "type": "drawIcon", "id": "X10194", "x": 256, "y": 288 },
{ "type": "drawIcon", "id": "X10195", "x": 288, "y": 288 },
{ "type": "drawIcon", "id": "X10196", "x": 320, "y": 288 },
{ "type": "drawIcon", "id": "X10197", "x": 352, "y": 288 },
{ "type": "drawIcon", "id": "X10286", "x": 32, "y": 352 },
{ "type": "drawIcon", "id": "X10169", "x": 96, "y": 352 },
{ "type": "drawIcon", "id": "X10232", "x": 128, "y": 352 },
{ "type": "drawIcon", "id": "X10185", "x": 320, "y": 352 },
{ "type": "drawIcon", "id": "X10242", "x": 352, "y": 352 },
{ "type": "fillBoldText", "x": 48, "y": 256, "style": [255, 255, 255, 1], "font": "bold 32px Consolas", "text": "${flag:input}" },
{ "type": "fillBoldText", "x": 32, "y": 48, "style": [255, 255, 255, 1], "font": "16px Consolas", "text": core.replaceText(data.text, prefix) },
{
"type": "wait",
"forceChild": true,
"data": [{
"case": "keyboard",
"keycode": "48,49,50,51,52,53,54,55,56,57",
"action": [
// 按下数字键追加到已输入内容的末尾但禁止越界。变量keycode-48就是末位数字
{ "type": "playSound", "name": "光标移动" },
{
"type": "if",
"condition": "(flag:input<0)",
"true": [
{ "type": "setValue", "name": "flag:input", "value": "10*flag:input-(flag:keycode-48)" },
],
"false": [
{ "type": "setValue", "name": "flag:input", "value": "10*flag:input+(flag:keycode-48)" },
]
},
{ "type": "setValue", "name": "flag:input", "value": "core.clamp(flag:input,-9e15,9e15)" },
]
},
{
"case": "keyboard",
"keycode": "189",
"action": [
// 按下减号键,变更已输入内容的符号
{ "type": "playSound", "name": "跳跃" },
{ "type": "setValue", "name": "flag:input", "value": "-flag:input" },
]
},
{
"case": "keyboard",
"keycode": "8",
"action": [
// 按下退格键,从已输入内容的末尾删除一位
{ "type": "playSound", "name": "取消" },
{ "type": "setValue", "name": "flag:input", "operator": "//=", "value": "10" },
]
},
{
"case": "keyboard",
"keycode": "27",
"action": [
// 按下ESC键清空已输入内容
{ "type": "playSound", "name": "读档" },
{ "type": "setValue", "name": "flag:input", "value": "0" },
]
},
{
"case": "keyboard",
"keycode": "13",
"action": [
// 按下回车键,确定
{ "type": "break", "n": 1 },
]
},
{
"case": "mouse",
"px": [32, 63],
"py": [288, 320],
"action": [
// 点击减号变号。右边界写63防止和下面重叠
{ "type": "playSound", "name": "跳跃" },
{ "type": "setValue", "name": "flag:input", "value": "-flag:input" },
]
},
{
"case": "mouse",
"px": [64, 384],
"py": [288, 320],
"action": [
// 点击数字追加到已输入内容的末尾但禁止越界。变量x-2就是末位数字
{ "type": "playSound", "name": "光标移动" },
{
"type": "if",
"condition": "(flag:input<0)",
"true": [
{ "type": "setValue", "name": "flag:input", "value": "10*flag:input-(flag:x-2)" },
],
"false": [
{ "type": "setValue", "name": "flag:input", "value": "10*flag:input+(flag:x-2)" },
]
},
{ "type": "setValue", "name": "flag:input", "value": "core.clamp(flag:input,-9e15,9e15)" },
]
},
{
"case": "mouse",
"px": [32, 64],
"py": [352, 384],
"action": [
// 点击左箭头,退格
{ "type": "playSound", "name": "取消" },
{ "type": "setValue", "name": "flag:input", "operator": "//=", "value": "10" },
]
},
{
"case": "mouse",
"px": [96, 160],
"py": [352, 384],
"action": [
// 点击CE清空
{ "type": "playSound", "name": "读档" },
{ "type": "setValue", "name": "flag:input", "value": "0" },
]
},
{
"case": "mouse",
"px": [320, 384],
"py": [352, 384],
"action": [
// 点击OK确定
{ "type": "break", "n": 1 },
]
}
]
}
]
},
{ "type": "clearMap" },
// 裁剪录像,只保留'input:n',然后继续录制
{ "type": "function", "function": "function(){core.status.route.splice(flags['@temp@length']);core.status.route.push('input:'+core.getFlag('input',0))}" }
], x, y);
core.events.doAction();
}
}
},
"sprites": function () {
// 基于canvas的sprite化摘编整理自万宁魔塔
//
// ---------------------------------------- 第一部分 js代码 (必装) --------------------------------------- //
/* ---------------- ---------------- *
* 1. 创建sprite: var sprite = new Sprite(x, y, w, h, z, reference, name);
* 其中x y w h为画布的横纵坐标及长宽reference为参考系只能填game相对于游戏画面和window相对于窗口
* 且当为相对游戏画面时长宽与坐标将会乘以放缩比例相当于用createCanvas创建
* z为纵深表示不同元素之间的覆盖关系大的覆盖小的
* name为自定义名称可以不填
* 2. 删除: sprite.destroy();
* 3. 设置css特效: sprite.setCss(css);
* 其中css直接填 box-shadow: 0px 0px 10px black;的形式即可与style标签与css文件内写法相同
* 对于已设置的特效如果之后不需要再次设置可以不填
* 4. 添加事件监听器: sprite.addEventListener(); 用法与html元素的addEventListener完全一致
* 5. 移除事件监听器: sprite.removeEventListener(); 用法与html元素的removeEventListener完全一致
* 6. 属性列表
* (1) sprite.x | sprite.y | sprite.width | sprite.height | sprite.zIndex | sprite.reference 顾名思义
* (2) sprite.canvas 该sprite的画布
* (3) sprite.context 该画布的CanvasRenderingContext2d对象即样板中常见的ctx
* (4) sprite.count 不要改这个玩意
* 7. 使用样板api进行绘制
* 示例
* var ctx = sprite.context;
* core.fillText(ctx, 'xxx', 100, 100);
* core.fillRect(ctx, 0, 0, 50, 50);
* 当然也可以使用原生js
* ctx.moveTo(0, 0);
* ctx.bezierCurveTo(50, 50, 100, 0, 100, 50);
* ctx.stroke();
* ---------------- 用法说明 ---------------- */
var count = 0;
/** sprite
* @param {number} x
* @param {number} y
* @param {number} w
* @param {number} h
* @param {number} z
* @param {'game' | 'window'} reference 参考系游戏画面或者窗口
* @param {string} name 可选sprite的名称方便通过core.dymCanvas获取
*/
function Sprite(x, y, w, h, z, reference, name) {
this.x = x;
this.y = y;
this.width = w;
this.height = h;
this.zIndex = z;
this.reference = reference;
this.canvas = null;
this.context = null;
this.count = 0;
this.name = name || '_sprite_' + count;
this.style = null;
/** 初始化 */
this.init = function () {
if (reference === 'window') {
var canvas = document.createElement('canvas');
this.canvas = canvas;
this.context = canvas.getContext('2d');
canvas.width = w;
canvas.height = h;
canvas.style.width = w + 'px';
canvas.style.height = h + 'px';
canvas.style.position = 'absolute';
canvas.style.top = y + 'px';
canvas.style.left = x + 'px';
canvas.style.zIndex = z.toString();
document.body.appendChild(canvas);
this.style = canvas.style;
} else {
this.context = core.createCanvas(this.name || '_sprite_' + count, x, y, w, h, z);
this.canvas = this.context.canvas;
this.canvas.style.pointerEvents = 'auto';
this.style = this.canvas.style;
}
this.count = count;
count++;
}
this.init();
/** css
* @param {string} css
*/
this.setCss = function (css) {
css = css.replace('\n', ';').replace(';;', ';');
var effects = css.split(';');
var self = this;
effects.forEach(function (v) {
var content = v.split(':');
var name = content[0];
var value = content[1];
name = name.trim().split('-').reduce(function (pre, curr, i, a) {
if (i === 0 && curr !== '') return curr;
if (a[0] === '' && i === 1) return curr;
return pre + curr.toUpperCase()[0] + curr.slice(1);
}, '');
var canvas = self.canvas;
if (name in canvas.style) canvas.style[name] = value;
});
return this;
}
/**
* 移动sprite
* @param {boolean} isDelta 是否是相对位置如果是那么sprite会相对于原先的位置进行移动
*/
this.move = function (x, y, isDelta) {
if (x !== undefined && x !== null) this.x = x;
if (y !== undefined && y !== null) this.y = y;
if (this.reference === 'window') {
var ele = this.canvas;
ele.style.left = x + (isDelta ? parseFloat(ele.style.left) : 0) + 'px';
ele.style.top = y + (isDelta ? parseFloat(ele.style.top) : 0) + 'px';
} else core.relocateCanvas(this.context, x, y, isDelta);
return this;
}
/**
* 重新设置sprite的大小
* @param {boolean} styleOnly 是否只修改css效果如果是那么将会不高清如果不是那么会清空画布
*/
this.resize = function (w, h, styleOnly) {
if (w !== undefined && w !== null) this.w = w;
if (h !== undefined && h !== null) this.h = h;
if (reference === 'window') {
var ele = this.canvas;
ele.style.width = w + 'px';
ele.style.height = h + 'px';
if (!styleOnly) {
ele.width = w;
ele.height = h;
}
} else core.resizeCanvas(this.context, w, h, styleOnly);
return this;
}
/**
* 旋转画布
*/
this.rotate = function (angle, cx, cy) {
if (this.reference === 'window') {
var left = this.x;
var top = this.y;
this.canvas.style.transformOrigin = (cx - left) + 'px ' + (cy - top) + 'px';
if (angle === 0) {
canvas.style.transform = '';
} else {
canvas.style.transform = 'rotate(' + angle + 'deg)';
}
} else {
core.rotateCanvas(this.context, angle, cx, cy);
}
return this;
}
/**
* 清除sprite
*/
this.clear = function (x, y, w, h) {
if (this.reference === 'window') {
this.context.clearRect(x, y, w, h);
} else {
core.clearMap(this.context, x, y, w, h);
}
return this;
}
/** 删除 */
this.destroy = function () {
if (this.reference === 'window') {
if (this.canvas) document.body.removeChild(this.canvas);
} else {
core.deleteCanvas(this.name || '_sprite_' + this.count);
}
}
/** 添加事件监听器 */
this.addEventListener = function () {
this.canvas.addEventListener.apply(this.canvas, arguments);
}
/** 移除事件监听器 */
this.removeEventListener = function () {
this.canvas.removeEventListener.apply(this.canvas, arguments);
}
}
window.Sprite = Sprite;
},
"hotReload": function () {
/* ---------- ---------- *
1. libs/ main.js index.html 中的任意一个文件被更改后会自动刷新塔的页面
2. 修改楼层文件后自动在塔的页面上显示出来不需要刷新
3. 修改脚本编辑或插件编写后也能自动更新更改的插件或脚本但不保证不会出问题一般都不会有问题的
4. 修改图块属性怪物属性等后会自动更新
5. 当全塔属性被修改时会自动刷新塔的页面
6. 样板的 styles.css 被修改后也可以直接显示不需要刷新
7. 其余内容修改后不会自动更新也不会刷新
/* ---------- 使 ---------- *
1. 前往 https://nodejs.org/en/ 下载node.js的LTS版本点左边那个绿色按钮并安装
2. 将该插件复制到插件编写中
3. 在造塔群的群文件-魔塔样板·改中找到server.js下载并放到塔的根目录与启动服务同一级
4. 在该目录下按下shift+鼠标右键win11只按右键即可选择在终端打开或在powershell打开
5. 运行node server.js即可
*/
if (main.mode !== 'play' || main.replayChecking) return;
/**
* 发送请求
* @param {string} url
* @param {string} type
* @param {string} data
* @returns {Promise<string>}
*/
async function post(url, type, data) {
const xhr = new XMLHttpRequest();
xhr.open(type, url);
xhr.send(data);
const res = await new Promise(res => {
xhr.onload = e => {
if (xhr.status !== 200) {
console.error(`hot reload: http ${xhr.status}`);
res('@error');
} else res('success');
};
xhr.onerror = e => {
res('@error');
console.error(`hot reload: error on connection`);
};
});
if (res === 'success') return xhr.response;
else return '@error';
}
/**
* 热重载css
* @param {string} data
*/
function reloadCss(data) {
const all = Array.from(document.getElementsByTagName('link'));
all.forEach(v => {
if (v.rel !== 'stylesheet') return;
if (v.href === `http://127.0.0.1:3000/${data}`) {
v.remove();
const link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = data;
document.head.appendChild(link);
console.log(`css hot reload: ${data}`);
}
});
}
/**
* 热重载楼层
* @param {string} data
*/
async function reloadFloor(data) {
// 首先重新加载main.floors对应的楼层
await import(`/project/floors/${data}.js?v=${Date.now()}`);
// 然后写入core.floors并解析
core.floors[data] = main.floors[data];
const floor = core.loadFloor(data);
if (core.isPlaying()) {
core.status.maps[data] = floor;
delete core.status.mapBlockObjs[data];
core.extractBlocks(data);
if (data === core.status.floorId) {
core.drawMap(data);
core.setWeather(
core.animateFrame.weather.type,
core.animateFrame.weather.level
);
}
core.updateStatusBar(true, true);
}
console.log(`floor hot reload: ${data}`);
}
/**
* 热重载脚本编辑及插件编写
* @param {string} data
*/
async function reloadScript(data) {
if (data === 'plugins') {
// 插件编写比较好办
const before = plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1;
// 这里不能用动态导入,因为动态导入会变成模块,变量就不是全局的了
const script = document.createElement('script');
script.src = `/project/plugins.js?v=${Date.now()}`;
document.body.appendChild(script);
await new Promise(res => {
script.onload = () => res('success');
});
const after = plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1;
// 找到差异的函数
for (const id in before) {
const fn = before[id];
if (typeof fn !== 'function') continue;
if (fn.toString() !== after[id]?.toString()) {
try {
core.plugin[id] = after[id];
core.plugin[id].call(core.plugin);
core.updateStatusBar(true, true);
console.log(`plugin hot reload: ${id}`);
} catch (e) {
console.error(e);
}
}
}
} else if (data === 'functions') {
// 脚本编辑略微麻烦点
const before = functions_d6ad677b_427a_4623_b50f_a445a3b0ef8a;
// 这里不能用动态导入,因为动态导入会变成模块,变量就不是全局的了
const script = document.createElement('script');
script.src = `/project/functions.js?v=${Date.now()}`;
document.body.appendChild(script);
await new Promise(res => {
script.onload = () => res('success');
});
const after = functions_d6ad677b_427a_4623_b50f_a445a3b0ef8a;
// 找到差异的函数
for (const mod in before) {
const fns = before[mod];
for (const id in fns) {
const fn = fns[id];
if (typeof fn !== 'function' || id === 'hasSpecial')
continue;
const now = after[mod][id];
if (fn.toString() !== now.toString()) {
try {
if (mod === 'events') {
core.events.eventdata[id] = now;
} else if (mod === 'enemys') {
core.enemys.enemydata[id] = now;
} else if (mod === 'actions') {
core.actions.actionsdata[id] = now;
} else if (mod === 'control') {
core.control.controldata[id] = now;
} else if (mod === 'ui') {
core.ui.uidata[id] = now;
}
core.updateStatusBar(true, true);
console.log(
`function hot reload: ${mod}.${id}`
);
} catch (e) {
console.error(e);
}
}
}
}
}
}
/**
* 属性热重载包括全塔属性等
* @param {string} data
*/
async function reloadData(data) {
const script = document.createElement('script');
script.src = `/project/${data}.js?v=${Date.now()}`;
document.body.appendChild(script);
await new Promise(res => {
script.onload = () => res('success');
});
let after;
if (data === 'data')
after = data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d;
if (data === 'enemys')
after = enemys_fcae963b_31c9_42b4_b48c_bb48d09f3f80;
if (data === 'icons')
after = icons_4665ee12_3a1f_44a4_bea3_0fccba634dc1;
if (data === 'items')
after = items_296f5d02_12fd_4166_a7c1_b5e830c9ee3a;
if (data === 'maps')
after = maps_90f36752_8815_4be8_b32b_d7fad1d0542e;
if (data === 'events')
after = events_c12a15a8_c380_4b28_8144_256cba95f760;
if (data === 'enemys') {
core.enemys.enemys = after;
for (var enemyId in after) {
core.enemys.enemys[enemyId].id = enemyId;
}
core.material.enemys = core.getEnemys();
} else if (data === 'icons') {
core.icons.icons = after;
core.material.icons = core.getIcons();
} else if (data === 'items') {
core.items.items = after;
for (var itemId in after) {
core.items.items[itemId].id = itemId;
}
core.material.items = core.getItems();
} else if (data === 'maps') {
core.maps.blocksInfo = after;
core.status.mapBlockObjs = {};
core.status.number2block = {};
Object.values(core.status.maps).forEach(v => delete v.blocks);
core.extractBlocks();
core.setWeather(
core.animateFrame.weather.type,
core.animateFrame.weather.level
);
core.drawMap();
} else if (data === 'events') {
core.events.commonEvent = after.commonEvent;
} else if (data === 'data') {
location.reload();
}
core.updateStatusBar(true, true);
console.log(`data hot reload: ${data}`);
}
// 初始化
(async function () {
const data = await post('/reload', 'POST', 'test');
if (data === '@error') {
console.log(`未检测到node服务热重载插件将无法使用`);
} else {
console.log(`热重载插件加载成功`);
// reload
setInterval(async () => {
const res = await post('/reload', 'POST');
if (res === '@error') return;
if (res === 'true') location.reload();
else return;
}, 1000);
// hot reload
setInterval(async () => {
const res = await post('/hotReload', 'POST');
const data = res.split('@@');
data.forEach(v => {
if (v === '') return;
const [type, file] = v.split(':');
if (type === 'css') reloadCss(file);
if (type === 'data') reloadData(file);
if (type === 'floor') reloadFloor(file);
if (type === 'script') reloadScript(file);
});
}, 1000);
}
})();
},
"statusBar": function () {
main.dom.floorMsgGroup.style.display = 'none';
main.dom.statusBar.style.display = 'none';
main.dom.toolBar.style.display = 'none';
//所有数据*3是为了实现高清画布
const GAMEVIEW_WIDTH = 676 * 3; //横屏画面宽度
const GAMEVIEW_HEIGHT = 416 * 3; //横屏画面高度
const GAMEVIEW_WIDTH_VERTICAL = 416 * 3; //竖屏画面宽度
const GAMEVIEW_HEIGHT_VERTICAL = 676 * 3; //竖屏画面高度
const BAR_WIDTH = 130 * 3; //横屏左侧额外距离(即边栏宽度)
const BAR_HEIGHT_VERTICAL = 130 * 3; //竖屏上侧额外距离(即边栏高度)
const BORDER_WIDTH = 0; //游戏画面左侧偏移距离
const BORDER_HEIGHT = 0; //游戏画面上侧偏移距离
const ITEM_BOX_LEFT = 549 * 3; //横屏道具栏左侧距离右侧边栏需增加BAR_WIDTH+GAMEVIEW_HEIGHT
const ITEM_BOX_TOP = 155 * 3; //横屏道具栏上侧距离
const ITEM_BOX_LEFT_VERTICAL = 160 * 3; //竖屏道具栏左侧距离
const ITEM_BOX_TOP_VERTICAL = 549 * 3; //竖屏道具栏上侧距离下侧边栏需增加BAR_HEIGHT_VERTICAL+GAMEVIEW_WIDTH_VERTICAL
const EQUIP_BLOCK_LEFT = 549 * 3; //横屏装备栏左侧距离右侧边栏需增加BAR_WIDTH+GAMEVIEW_HEIGHT
const EQUIP_BLOCK_TOP = 10 * 3; //横屏装备栏上侧距离
const EQUIP_BLOCK_LEFT_VERTICAL = 10 * 3; //竖屏装备栏左侧距离
const EQUIP_BLOCK_TOP_VERTICAL = 549 * 3; //竖屏装备栏上侧距离下侧边栏需增加BAR_HEIGHT_VERTICAL+GAMEVIEW_WIDTH_VERTICAL
const MAP_BLOCK_LEFT = 551 * 3; //横屏小地图左侧距离右侧边栏需增加BAR_WIDTH+GAMEVIEW_HEIGHT
const MAP_BLOCK_TOP = 0; //横屏小地图上侧距离
const MAP_BLOCK_LEFT_VERTICAL = 0; //竖屏小地图左侧距离
const MAP_BLOCK_TOP_VERTICAL = 551 * 3; //竖屏小地图上侧距离下侧边栏需增加BAR_HEIGHT_VERTICAL+GAMEVIEW_WIDTH_VERTICAL
const KEY_BLOCK_LEFT = EQUIP_BLOCK_LEFT; //横屏钥匙栏左侧距离右侧边栏需增加BAR_WIDTH+GAMEVIEW_HEIGHT
const KEY_BLOCK_TOP = 110 * 3; //横屏钥匙栏上侧距离
const KEY_BLOCK_LEFT_VERTICAL = 110 * 3; //竖屏钥匙栏左侧距离
const KEY_BLOCK_TOP_VERTICAL = EQUIP_BLOCK_TOP_VERTICAL; //竖屏钥匙栏上侧距离下侧边栏需增加BAR_HEIGHT_VERTICAL+GAMEVIEW_WIDTH_VERTICAL
const INFO_BLOCK_LEFT = 10 * 3; //横屏道具说明左侧距离右侧边栏需增加BAR_WIDTH+GAMEVIEW_HEIGHT
const INFO_BLOCK_TOP = 180 * 3; //横屏道具说明上侧距离
const INFO_BLOCK_LEFT_VERTICAL = 113 * 3; //竖屏道具说明左侧距离
const INFO_BLOCK_TOP_VERTICAL = 8 * 3; //竖屏道具说明上侧距离下侧边栏需增加BAR_HEIGHT_VERTICAL+GAMEVIEW_WIDTH_VERTICAL
const TOOL_BOX_LEFT = EQUIP_BLOCK_LEFT; //横屏工具栏左侧距离右侧边栏需增加BAR_WIDTH+GAMEVIEW_HEIGHT
const TOOL_BOX_TOP = 348 * 3; //横屏工具栏上侧距离
const TOOL_BOX_LEFT_VERTICAL = 348 * 3; //竖屏工具栏左侧距离
const TOOL_BOX_TOP_VERTICAL = 549 * 3; //竖屏工具栏上侧距离下侧边栏需增加BAR_HEIGHT_VERTICAL+GAMEVIEW_WIDTH_VERTICAL
const TOOL_ICON_OUTER_SIZE = 34 * 3;
const TEXT_COLOR = '#111111'; //默认文字颜色
const globalAlpha = 0.7; //默认底框透明度
const FORCE_COUNTABLE_ITEMS = ["centerFly"]; //常态显示数量的非永久道具如果道具不在此数组中则只有道具多余1时显示数量
const outerBackground = document.createElement('canvas'); //背景画布设置
let globalAlphafloor = 0,
globalAlphafloorStatus = 4;
outerBackground.style.position = 'absolute';
outerBackground.style.zIndex = 5;
outerBackground.id = 'outerBackground';
main.dom.outerBackground = outerBackground;
main.dom.startPanel.insertAdjacentElement('afterend', outerBackground);
const outerUI = document.createElement('canvas'); //额外ui画布设置状态栏所有绘制、点击都在额外ui上
outerUI.style.position = 'absolute';
outerUI.style.zIndex = 165;
outerUI.id = 'outerUI';
main.dom.outerUI = outerUI;
outerBackground.insertAdjacentElement('afterend', outerUI);
setTimeout(function () {
// Should be executed immediately after init()
main.canvas.outerUI = outerUI.getContext('2d');
});
outerUI.onclick = function (e) {
try {
e.preventDefault();
if (!core.isPlaying()) return false;
const left = core.dom.gameGroup.offsetLeft;
const top = core.dom.gameGroup.offsetTop;
const px = Math.floor((e.clientX - left) / core.domStyle.scale),
py = Math.floor((e.clientY - top) / core.domStyle.scale);
core.ui.statusBar.onclick(px * 3, py * 3);
} catch (ee) {
main.log(ee);
}
}
const _resize_gameGroup = function (obj) { //游戏画面自适应调节
const gameGroup = core.dom.gameGroup;
gameGroup.style.width = obj.totalWidth + "px";
gameGroup.style.height = obj.totalHeight + "px";
gameGroup.style.left = (obj.clientWidth - obj.totalWidth) / 2 + "px";
gameGroup.style.top = (obj.clientHeight - obj.totalHeight) / 2 + "px";
//floorMsgGroup为切换楼层中生效显示时间可通过全塔属性——切换楼层时间或游戏内设置调整
//显示内容为游戏名/版本号/楼层名
// floorMsgGroup
var floorMsgGroup = core.dom.floorMsgGroup;
var globalAttribute = core.status.globalAttribute || core.initStatus.globalAttribute;
floorMsgGroup.style = globalAttribute.floorChangingStyle;
floorMsgGroup.style.height = floorMsgGroup.style.width = GAMEVIEW_HEIGHT / 3 * core.domStyle.scale + "px";
floorMsgGroup.style.fontSize = 16 * core.domStyle.scale + "px";
if (core.domStyle.isVertical) {
floorMsgGroup.style.left = "0px";
floorMsgGroup.style.top = (GAMEVIEW_HEIGHT_VERTICAL / 3 - GAMEVIEW_WIDTH_VERTICAL / 3) * core.domStyle.scale / 2 + "px";
} else {
floorMsgGroup.style.left = (GAMEVIEW_WIDTH / 3 - GAMEVIEW_HEIGHT / 3) * core.domStyle.scale / 2 + "px";
floorMsgGroup.style.top = "0px";
}
core.dom.musicBtn.style.right = (obj.clientWidth - obj.totalWidth) / 2 + "px";
core.dom.musicBtn.style.bottom = (obj.clientHeight - obj.totalHeight) / 2 - 27 + "px";
let startBackground = core.domStyle.isVertical ? (main.styles.startVerticalBackground || main.styles.startBackground) : main.styles.startBackground;
if (main.dom.startBackground.getAttribute('__src__') != startBackground) {
main.dom.startBackground.setAttribute('__src__', startBackground);
main.dom.startBackground.src = startBackground;
}
2024-11-30 18:34:17 +08:00
const span = document.getElementById("startButtons").getElementsByTagName('span');
let font = GAMEVIEW_WIDTH / 100 * core.domStyle.scale
if (core.domStyle.isVertical) font = GAMEVIEW_WIDTH_VERTICAL * 2 / 100 * core.domStyle.scale
core.dom.playGame.style.fontSize = font + "px"
core.dom.loadGame.style.fontSize = font + "px"
2024-12-01 14:52:03 +08:00
core.dom.CGMode.style.fontSize = font + "px"
2024-11-30 18:34:17 +08:00
core.dom.replayGame.style.fontSize = font + "px"
core.dom.startButtonGroup.style.padding = font * 0.3 + "px 25px"
}
const _resize_canvas = function (obj) { //自适应画布
main.dom.outerBackground.style.width = obj.totalWidth + 'px';
main.dom.outerBackground.style.height = obj.totalHeight + 'px';
main.dom.outerUI.style.width = obj.totalWidth + 'px';
main.dom.outerUI.style.height = obj.totalHeight + 'px';
2024-12-01 14:52:03 +08:00
main.dom.CGUI.style.width = obj.totalWidth + 'px';
main.dom.CGUI.style.height = obj.totalHeight + 'px';
const innerSize = (obj.canvasWidth * core.domStyle.scale) + "px";
for (let i = 0; i < core.dom.gameCanvas.length; ++i)
core.dom.gameCanvas[i].style.width = core.dom.gameCanvas[i].style.height = innerSize;
core.dom.gif.style.width = core.dom.gif.style.height = innerSize;
core.dom.gif2.style.width = core.dom.gif2.style.height = innerSize;
core.dom.gameDraw.style.width = core.dom.gameDraw.style.height = innerSize;
core.dom.gameDraw.style.top = obj.gameDrawBox.top * core.domStyle.scale + "px";
core.dom.gameDraw.style.left = (obj.gameDrawBox.left) * core.domStyle.scale + "px";
// resize bigmap
core.bigmap.canvas.forEach(function (cn) {
const ratio = core.canvas[cn].canvas.hasAttribute('isHD') ? core.domStyle.ratio : 1;
core.canvas[cn].canvas.style.width = innerSize / ratio * core.domStyle.scale + "px";
core.canvas[cn].canvas.style.height = innerSize / ratio * core.domStyle.scale + "px";
});
// resize dynamic canvas
for (const name in core.dymCanvas) {
const ctx = core.dymCanvas[name],
canvas = ctx.canvas;
const ratio = canvas.hasAttribute('isHD') ? core.domStyle.ratio : 1;
canvas.style.width = innerSize / ratio * core.domStyle.scale + "px";
canvas.style.height = innerSize / ratio * core.domStyle.scale + "px";
canvas.style.left = parseFloat(canvas.getAttribute("_left")) * core.domStyle.scale + "px";
canvas.style.top = parseFloat(canvas.getAttribute("_top")) * core.domStyle.scale + "px";
}
2024-12-01 14:52:03 +08:00
// resize next
main.dom.next.style.width = main.dom.next.style.height = 5 * core.domStyle.scale + "px";
main.dom.next.style.borderBottomWidth = main.dom.next.style.borderRightWidth = 4 * core.domStyle.scale + "px";
}
const bgctx = main.dom.outerBackground.getContext("2d");
const uictx = main.dom.outerUI.getContext("2d");
const floor = document.createElement('canvas');
const floorVertical = document.createElement('canvas')
floor.width = GAMEVIEW_WIDTH;
floor.height = GAMEVIEW_HEIGHT;
floorVertical.width = GAMEVIEW_WIDTH_VERTICAL;
floorVertical.height = GAMEVIEW_HEIGHT_VERTICAL;
const floorctx = floor.getContext("2d");
const floorVerticalctx = floorVertical.getContext("2d");
core.registerAnimationFrame('lightFloor', true, function () {
globalAlphafloor += globalAlphafloorStatus;
if (globalAlphafloor === 100) globalAlphafloorStatus = -4
if (globalAlphafloor === 0) globalAlphafloorStatus = 4
if (core.domStyle.isVertical) {
core.clearMap(uictx, MAP_BLOCK_LEFT_VERTICAL, MAP_BLOCK_TOP_VERTICAL, 340, 360)
uictx.drawImage(floorVertical, 0, 0)
uictx.globalAlpha = globalAlphafloor / 100
core.drawImage(uictx, "green.png", MAP_BLOCK_LEFT_VERTICAL + 125, MAP_BLOCK_TOP_VERTICAL + 170)
uictx.globalAlpha = 1
} else {
core.clearMap(uictx, MAP_BLOCK_LEFT, MAP_BLOCK_TOP, 340, 360)
uictx.drawImage(floor, 0, 0)
uictx.globalAlpha = globalAlphafloor / 100
core.drawImage(uictx, "green.png", MAP_BLOCK_LEFT + 150, MAP_BLOCK_TOP + 170)
uictx.globalAlpha = 1
}
})
core.control.resize = function () { //自适应,可实现横竖屏切换
if (main.mode == 'editor') return;
const clientWidth = main.dom.body.clientWidth,
clientHeight = main.dom.body.clientHeight;
const canvasWidth = core.__PIXELS__;
const isVertical = clientHeight > clientWidth;
core.domStyle.isVertical = isVertical;
const totalWidth = isVertical ? GAMEVIEW_WIDTH_VERTICAL / 3 : GAMEVIEW_WIDTH / 3,
totalHeight = isVertical ? GAMEVIEW_HEIGHT_VERTICAL / 3 : GAMEVIEW_HEIGHT / 3;
const maxRatio = Math.min(clientWidth / totalWidth, clientHeight / totalHeight);
core.domStyle.availableScale = [];
[1, 1.25, 1.5, 1.75, 2].forEach(function (v) {
if (maxRatio >= v) {
core.domStyle.availableScale.push(v);
}
});
if (core.domStyle.availableScale.indexOf(core.domStyle.scale) < 0) {
core.domStyle.scale = Math.min(1, maxRatio);
} else if (core.getLocalStorage('scale') == null && core.domStyle.availableScale.length >= 2) {
core.domStyle.scale = core.domStyle.availableScale[core.domStyle.availableScale.length - 2];
core.setLocalStorage('scale', core.domStyle.scale);
}
const totalWidthScaled = totalWidth * core.domStyle.scale,
totalHeightScaled = totalHeight * core.domStyle.scale;
const gameDrawBox = isVertical ? { left: BORDER_WIDTH / 3, top: BAR_HEIGHT_VERTICAL / 3 + BORDER_HEIGHT / 3 } : { left: BAR_WIDTH / 3 + BORDER_WIDTH / 3, top: BORDER_HEIGHT / 3 };
const obj = {
clientWidth: clientWidth,
clientHeight: clientHeight,
canvasWidth: canvasWidth,
totalWidth: totalWidthScaled,
totalHeight: totalHeightScaled,
gameDrawBox: gameDrawBox,
globalAttribute: core.status.globalAttribute || core.initStatus.globalAttribute,
};
_resize_gameGroup(obj);
_resize_canvas(obj);
if (core.status.automaticRoute == null) core.status.automaticRoute = {};
core.updateStatusBar();
2024-12-01 14:52:03 +08:00
core.ui.CG.update()
}
class StatusBar {
constructor() {
//道具栏列表
this.itemMx = [ //空位用none填充当前ui至多4列6行
["book", "wand", 'none', "fly"],
["cross", "superPotion", "pickaxe"],
["bomb", "centerFly", "upFly"],
["none", "none", "none"],
["downFly", "knife", "snow"],
["bigKey", "earthquake", "coin"],
];
}
//初始化内容(工具栏/录像操作执行函数)
init() {
this.toolbarAction = [
[main.core.openKeyBoard, main.core.openQuickShop, core.openToolbox, core.doSL],
[main.core.openSettings, main.core.save, main.core.load, core.doSL]
];
this.replayAction = [
[core.triggerReplay, core.stopReplay, core.rewindReplay],
[core.speedDownReplay, core.speedUpReplay, core.saveReplay]
];
}
//更新
update() {
this._update_background(); //更新背景
this._update_props(); //更新属性
//this._update_items(); //更新道具
//this._update_equips(); //更新装备
//this._update_keys(); //更新钥匙
//this._update_infoWindow(); //更新道具说明
2024-11-30 13:57:26 +08:00
this._update_toolBox(); //更新工具栏
this._redrawMap()
}
_redrawMap() {
if (core.domStyle.isVertical) {
core.clearMap(uictx, MAP_BLOCK_LEFT_VERTICAL, MAP_BLOCK_TOP_VERTICAL, 340, 360)
uictx.drawImage(floorVertical, 0, 0)
uictx.globalAlpha = globalAlphafloor / 100
core.drawImage(uictx, "green.png", MAP_BLOCK_LEFT_VERTICAL + 125, MAP_BLOCK_TOP_VERTICAL + 170)
uictx.globalAlpha = 1
} else {
core.clearMap(uictx, MAP_BLOCK_LEFT, MAP_BLOCK_TOP, 340, 360)
uictx.drawImage(floor, 0, 0)
uictx.globalAlpha = globalAlphafloor / 100
core.drawImage(uictx, "green.png", MAP_BLOCK_LEFT + 150, MAP_BLOCK_TOP + 170)
uictx.globalAlpha = 1
}
}
//更新背景
_update_background() {
if (core.domStyle.isVertical) {
bgctx.canvas.width = GAMEVIEW_WIDTH_VERTICAL;
bgctx.canvas.height = GAMEVIEW_HEIGHT_VERTICAL;
uictx.canvas.width = GAMEVIEW_WIDTH_VERTICAL;
uictx.canvas.height = GAMEVIEW_HEIGHT_VERTICAL;
const bg = core.material.images.images["bg.jpg"]; //竖屏背景(上)
bgctx.drawImage(bg, 0, 0, GAMEVIEW_WIDTH_VERTICAL, BAR_HEIGHT_VERTICAL);
const bg2 = core.material.images.images["bg.jpg"]; //竖屏背景(下)
bgctx.drawImage(bg2, 0, BAR_HEIGHT_VERTICAL + GAMEVIEW_WIDTH_VERTICAL, GAMEVIEW_WIDTH_VERTICAL, BAR_HEIGHT_VERTICAL);
bgctx.globalAlpha = globalAlpha;
const bg3 = core.material.images.images["statusBackground2.png"]; //竖屏按钮
//bgctx.drawImage(bg3, 0, 0, GAMEVIEW_WIDTH_VERTICAL, GAMEVIEW_HEIGHT_VERTICAL);
bgctx.globalAlpha = 1;
core.setTextAlign('outerUI', 'center');
} else {
bgctx.canvas.width = GAMEVIEW_WIDTH;
bgctx.canvas.height = GAMEVIEW_HEIGHT;
uictx.canvas.width = GAMEVIEW_WIDTH;
uictx.canvas.height = GAMEVIEW_HEIGHT;
const bg = core.material.images.images["bg.jpg"]; //横屏背景(左)
bgctx.drawImage(bg, 0, 0, BAR_WIDTH, GAMEVIEW_HEIGHT);
const bg2 = core.material.images.images["bg.jpg"]; //横屏背景(右)
bgctx.drawImage(bg2, BAR_WIDTH + GAMEVIEW_HEIGHT, 0, BAR_WIDTH, GAMEVIEW_HEIGHT);
bgctx.globalAlpha = globalAlpha;
const bg3 = core.material.images.images["statusBackground.png"]; //横屏按钮
//bgctx.drawImage(bg3, 0, 0, GAMEVIEW_WIDTH, GAMEVIEW_HEIGHT);
bgctx.globalAlpha = 1;
core.setTextAlign('outerUI', 'center');
}
}
// 更新属性
_update_props(updatedFloorTitle) {
if (!updatedFloorTitle && core.status.floorId) {
updatedFloorTitle = core.status.maps[core.status.floorId].title;
}
const statusList = ['hp', 'atk', 'def', 'money']; //属性列表图标在函数复写core.statusBar.icons中声明数字为project\materials\icons.png中的图标序号可使用便捷ps追加第一个序号为0
const drawStatusList = (baseX, baseY) => {
let curh = baseY;
core.setTextAlign('outerUI', 'right');
statusList.forEach((item) => {
// 绘制图标
core.drawIcon('outerUI', item, baseX - 95 * 3, curh - 18 * 3, 22 * 3, 22 * 3)
// 四舍五入
core.status.hero[item] = Math.round(core.status.hero[item]);
// 大数据格式化
core.fillText("outerUI", core.getRealStatus(item), baseX, curh, TEXT_COLOR);
curh += 24 * 3;
if (curh > 130 * 3 && core.domStyle.isVertical) {
curh = 24 * 3;
baseX += 105 * 3
}
});
core.setTextAlign('outerUI', 'center');
};
if (core.domStyle.isVertical) {
core.clearMap("outerUI", 10 * 3, 0, 210 * 3, 120 * 3);
core.setFont("outerUI", 'bold 42px Verdana');
if (updatedFloorTitle) {
core.fillText("outerUI", updatedFloorTitle, 60 * 3, 22 * 3, TEXT_COLOR);
}
drawStatusList(96 * 3, 46 * 3);
} else {
core.clearMap("outerUI", 10 * 3, 40 * 3, 105 * 3, 250 * 3);
core.setFont("outerUI", 'bold 48px Verdana');
if (updatedFloorTitle) {
core.fillText("outerUI", updatedFloorTitle, 62 * 3, 41 * 3, TEXT_COLOR);
}
drawStatusList(110 * 3, 93 * 3);
}
}
_update_items() { //更新道具栏
const drawItemMx = (drawFn) => {
for (let i = 0; i < this.itemMx.length; i++) {
for (let j = 0; j < this.itemMx[i].length; j++) {
var item = this.itemMx[i][j];
drawFn(i, j, item);
}
}
};
const drawItem = (item, posx, posy) => {
const icon = core.material.icons.items[item],
image = core.material.images.items;
core.drawImage('outerUI', image, 0, 32 * icon, 32, 32, posx, posy, 30 * 3, 30 * 3);
const cnt = core.itemCount(item);
if ((core.items.items[item].cls === "tools" && cnt > 1) || FORCE_COUNTABLE_ITEMS.includes(item)) {
core.fillText('outerUI', cnt, posx + 25 * 3, posy + 28 * 3, '#FFFFFF', "bold 36px Verdana");
}
}
if (core.domStyle.isVertical) {
core.clearMap("outerUI", ITEM_BOX_LEFT_VERTICAL, ITEM_BOX_TOP_VERTICAL, 185 * 3, 125 * 3);
drawItemMx((i, j, item) => {
if (core.hasItem(item)) {
const posx = ITEM_BOX_LEFT_VERTICAL + i * 30 * 3,
posy = ITEM_BOX_TOP_VERTICAL + j * 31 * 3;
drawItem(item, posx, posy);
}
});
} else {
core.clearMap("outerUI", ITEM_BOX_LEFT, ITEM_BOX_TOP, 125 * 3, 185 * 3);
drawItemMx((i, j, item) => {
if (core.hasItem(item)) {
const posx = ITEM_BOX_LEFT + j * 30 * 3,
posy = ITEM_BOX_TOP + i * 31 * 3;
drawItem(item, posx, posy);
}
});
}
}
_update_map(floorId = core.status.floorId) {
const x = core.domStyle.isVertical ? MAP_BLOCK_LEFT_VERTICAL : MAP_BLOCK_LEFT;
const y = core.domStyle.isVertical ? MAP_BLOCK_TOP_VERTICAL : MAP_BLOCK_TOP;
const w = core.domStyle.isVertical ? 300 : 300;
const h = core.domStyle.isVertical ? 300 : 300;
let sx, sy;
if (core.domStyle.isVertical) {
sy = y + 50
sx = x + 5
} else {
sy = y + 50
sx = x + 30
}
if (!floorId) return
const info = core.plugin.getMapDrawInfo(floorId, Infinity, true);
//core.clearMap(uictx, sx, sy, w + 40, h + 60)
//core.fillRect(uictx, sx, sy, w, h, '#000')
//core.strokeRect(uictx, sx, sy, w, h, '#fff', 5)
core.setTextAlign('outerUI', 'center')
core.plugin.drawSmallMap(floorctx, info, floorId, MAP_BLOCK_LEFT, MAP_BLOCK_TOP, w, h, false)
core.plugin.drawSmallMap(floorVerticalctx, info, floorId, MAP_BLOCK_LEFT_VERTICAL, MAP_BLOCK_TOP_VERTICAL, w, h, true)
//core.fillText(uictx, core.status.maps[floorId].areas, sx + w / 2, sy - 10, '#FFFFFF')
}
_update_equips() {
return
core.setFont("outerUI", 'bold 48px Verdana');
const drawEquip = (baseX, baseY, id, color, back) => {
if (!id) core.fillText("outerUI", back, baseX + 20 * 3, baseY + 22 * 3, color);
else {
var icon = core.material.icons.items[id];
core.drawImage('outerUI', core.material.images.items, 0, 32 * icon, 32, 32, baseX + 5 * 3, baseY, 32 * 3, 32 * 3);
}
};
if (core.domStyle.isVertical) {
core.clearMap("outerUI", EQUIP_BLOCK_LEFT_VERTICAL, EQUIP_BLOCK_TOP_VERTICAL, 90 * 3, 130 * 3);
drawEquip(EQUIP_BLOCK_LEFT_VERTICAL, EQUIP_BLOCK_TOP_VERTICAL, core.getEquip(0), "#D1CEFF", "无");
drawEquip(EQUIP_BLOCK_LEFT_VERTICAL + 45 * 3, EQUIP_BLOCK_TOP_VERTICAL, core.getEquip(1), "#D1CEFF", "无");
drawEquip(EQUIP_BLOCK_LEFT_VERTICAL, EQUIP_BLOCK_TOP_VERTICAL + 45 * 3, core.getEquip(2), "#D1CEFF", "无");
drawEquip(EQUIP_BLOCK_LEFT_VERTICAL + 45 * 3, EQUIP_BLOCK_TOP_VERTICAL + 45 * 3, core.getEquip(3), "#D1CEFF", "无");
drawEquip(EQUIP_BLOCK_LEFT_VERTICAL, EQUIP_BLOCK_TOP_VERTICAL + 90 * 3, core.getEquip(4), "#D1CEFF", "无");
drawEquip(EQUIP_BLOCK_LEFT_VERTICAL + 45 * 3, EQUIP_BLOCK_TOP_VERTICAL + 90 * 3, core.getEquip(5), "#D1CEFF", "无");
} else {
core.clearMap("outerUI", EQUIP_BLOCK_LEFT, EQUIP_BLOCK_TOP, 130 * 3, 95 * 3);
drawEquip(EQUIP_BLOCK_LEFT, EQUIP_BLOCK_TOP, core.getEquip(0), "#D1CEFF", "无");
drawEquip(EQUIP_BLOCK_LEFT + 42 * 3, EQUIP_BLOCK_TOP, core.getEquip(1), "#D1CEFF", "无");
drawEquip(EQUIP_BLOCK_LEFT + 85 * 3, EQUIP_BLOCK_TOP, core.getEquip(2), "#D1CEFF", "无")
drawEquip(EQUIP_BLOCK_LEFT, EQUIP_BLOCK_TOP + 45 * 3, core.getEquip(3), "#D1CEFF", "无");
drawEquip(EQUIP_BLOCK_LEFT + 42 * 3, EQUIP_BLOCK_TOP + 45 * 3, core.getEquip(4), "#D1CEFF", "无");
drawEquip(EQUIP_BLOCK_LEFT + 85 * 3, EQUIP_BLOCK_TOP + 45 * 3, core.getEquip(5), "#D1CEFF", "无")
}
}
_update_keys() {
const drawKeyList = (baseX, baseY) => {
const todraw = [],
keyList = ['yellowKey', 'blueKey', 'redKey', 'greenKey'];
let total = 0;
keyList.forEach(function (key, i) {
todraw[i] = core.itemCount(key);
total += todraw[i];
});
let dn = 3;
for (let i = 0; i <= dn; i++) {
let delta = i * 32 * 3;
if (core.domStyle.isVertical) {
this.drawKey(keyList[i], baseX, baseY + delta);
} else {
this.drawKey(keyList[i], baseX + delta, baseY);
}
core.setFont("outerUI", 'bold 48px Verdana');
core.setTextAlign("outerUI", "left");
if (core.domStyle.isVertical) {
core.fillText("outerUI", todraw[i], baseX + 20 * 3, baseY + 14 * 3 + delta, TEXT_COLOR);
} else {
core.fillText("outerUI", todraw[i], baseX + delta, baseY + 32 * 3, TEXT_COLOR);
}
}
};
if (core.domStyle.isVertical) {
core.clearMap("outerUI", KEY_BLOCK_LEFT_VERTICAL, KEY_BLOCK_TOP_VERTICAL, 45 * 3, 130 * 3);
drawKeyList(KEY_BLOCK_LEFT_VERTICAL + 3 * 3, KEY_BLOCK_TOP_VERTICAL + 5 * 3);
} else {
core.clearMap("outerUI", KEY_BLOCK_LEFT, KEY_BLOCK_TOP, 130 * 3, 45 * 3);
drawKeyList(KEY_BLOCK_LEFT + 10 * 3, KEY_BLOCK_TOP);
}
}
drawKey(key, x, y) {
let sx = 0,
sy = 0;
if (key == "yellowKey") sx += 13;
else if (key == "blueKey") sx += 26;
else if (key == "greenKey") sx += 39;
core.drawImage("outerUI", 'maba.png', sx, sy, 13, 26, x, y, 13 * 3, 26 * 3);
}
_update_infoWindow() {
const itemId = this.selectedItem;
let text = ""
if (this.selectedItem) {
text = core.replaceText(core.material.items[itemId]?.text)
if (text[0] == "," || text[0] == "") text = text.substring(1);
}
if (core.domStyle.isVertical) {
core.clearMap("outerUI", INFO_BLOCK_LEFT_VERTICAL, INFO_BLOCK_TOP_VERTICAL, 300 * 3, 120 * 3);
if (this.selectedItem) {
const icon = core.material.icons.items[itemId];
core.setTextAlign('outerUI', 'left')
core.fillText("outerUI", core.material.items[itemId].name, INFO_BLOCK_LEFT_VERTICAL + 50 * 3, INFO_BLOCK_TOP_VERTICAL + 27 * 3, "#D1CEFF");
core.drawImage('outerUI', core.material.images.items, 0, 32 * icon, 32, 32, INFO_BLOCK_LEFT_VERTICAL + 10 * 3, INFO_BLOCK_TOP_VERTICAL + 8 * 3, 32 * 3, 32 * 3);
core.ui.drawTextContent("outerUI", text, {
left: INFO_BLOCK_LEFT_VERTICAL + 10 * 3,
top: INFO_BLOCK_TOP_VERTICAL + 40 * 3,
maxWidth: 275 * 3,
color: "#D1CEFF",
fontSize: 36
});
}
} else {
core.clearMap("outerUI", INFO_BLOCK_LEFT, INFO_BLOCK_TOP, 115 * 3, 230 * 3);
if (this.selectedItem) {
const icon = core.material.icons.items[itemId];
core.setTextAlign('outerUI', 'center')
core.fillText("outerUI", core.material.items[itemId].name, INFO_BLOCK_LEFT + 60 * 3, INFO_BLOCK_TOP + 25 * 3, "#D1CEFF");
core.drawImage('outerUI', core.material.images.items, 0, 32 * icon, 32, 32, INFO_BLOCK_LEFT + 45 * 3, INFO_BLOCK_TOP + 30 * 3, 32 * 3, 32 * 3);
core.ui.drawTextContent("outerUI", text, {
left: INFO_BLOCK_LEFT + 10 * 3,
top: INFO_BLOCK_TOP + 60 * 3,
maxWidth: 105 * 3,
color: "#D1CEFF",
fontSize: 36
});
}
}
}
showItemInfo(itemId) { //展示道具说明
this.selectedItem = itemId;
this._update_infoWindow();
}
clearItemInfo() { //清除道具说明
this.selectedItem = null;
this._update_infoWindow();
}
_update_toolBox() {
const tools = core.isReplaying() ? [
[core.status.replay.pausing ? "play" : "pause", "stop", "rewind"],
["speedDown", "speedUp", "save"],
] : [
["keyboard", "shop", 'pack', "T332"],
["settings", "save", "load", 'T331'],
];
if (core.domStyle.isVertical) {
core.clearMap("outerUI", TOOL_BOX_LEFT_VERTICAL, TOOL_BOX_TOP_VERTICAL, 115, 130);
for (let i = 0; i < tools.length; i++) {
for (let j = 0; j < tools[i].length; j++) {
core.drawIcon("outerUI", tools[i][j], TOOL_BOX_LEFT_VERTICAL + i * 31 * 3, TOOL_BOX_TOP_VERTICAL + j * 31 * 3, 30 * 3, 30 * 3);
}
}
} else {
core.clearMap("outerUI", TOOL_BOX_LEFT, TOOL_BOX_TOP, 130 * 3, 80 * 3);
for (let i = 0; i < tools.length; i++) {
for (let j = 0; j < tools[i].length; j++) {
core.drawIcon("outerUI", tools[i][j], TOOL_BOX_LEFT + j * 31 * 3, TOOL_BOX_TOP + i * 31 * 3, 30 * 3, 30 * 3);
}
}
}
}
onclick(x, y) {
const makeBox = ([x, y], [w, h]) => {
return [
[x, y],
[x + w, y + h]
];
}
const gridify = ([x, y], [gw, gh]) => {
return [Math.floor(x / gw), Math.floor(y / gh)];
}
const useItem = (itemId) => {
if (!core.hasItem(itemId)) return;
if (itemId != this.selectedItem) {
this.showItemInfo(itemId);
} else {
switch (itemId) {
case "centerFly":
core.ui._drawCenterFly();
break;
case "book":
core.openBook(true);
break;
case "wand":
core.insertAction({
type: "useItem",
id: itemId
});
break;
2024-11-30 13:57:26 +08:00
case "fly":
core.useItem(itemId, true)
break;
default:
core.useItem(itemId);
}
}
}
const inRect = ([x, y], [
[sx, sy],
[dx, dy]
]) => {
return sx <= x && x <= dx && sy <= y && y <= dy;
};
const relativeTo = ([x, y], [ax, ay]) => {
return [x - ax, y - ay];
}
const pos = [x, y];
if (core.domStyle.isVertical) {
const itemBox = makeBox([ITEM_BOX_LEFT_VERTICAL, ITEM_BOX_TOP_VERTICAL], [30 * 6 * 3, 31 * 4 * 3]);
if (inRect(pos, itemBox)) {
const [gx, gy] = gridify(relativeTo(pos, itemBox[0]), [30 * 3, 31 * 3]);
const itemId = this.itemMx[gx][gy];
if ((core.status.event.id == 'viewMaps' || core.status.event.id == 'fly') && itemId === 'book') core.openBook(true)
if (core.isReplaying() || core.status.lockControl || core.isMoving()) return;
useItem(itemId);
return;
}
const toolBox = makeBox([TOOL_BOX_LEFT_VERTICAL, TOOL_BOX_TOP_VERTICAL], [31 * 2 * 3, 31 * 4 * 3]);
if (inRect(pos, toolBox)) {
const [col, row] = gridify(relativeTo(pos, toolBox[0]), [31 * 3, 31 * 3]);
if (core.isReplaying()) {
this.replayAction[col][row].call(core);
} else if (core.isPlaying()) {
if (col === 0 && row === 3) {
core.doSL("autoSave", "load");
} else if (col === 1 && row === 3) {
core.doSL("autoSave", "reload");
} else {
this.toolbarAction[col][row].call(core, true);
}
}
return;
}
const equipBox = makeBox([EQUIP_BLOCK_LEFT_VERTICAL, EQUIP_BLOCK_TOP_VERTICAL], [90 * 3, 130 * 3])
if (inRect(pos, equipBox)) {
if (core.isReplaying() || core.status.lockControl || core.isMoving()) return;
core.openEquipbox(true)
return;
}
} else {
const equipBox = makeBox([EQUIP_BLOCK_LEFT, EQUIP_BLOCK_TOP], [130, 95])
if (inRect(pos, equipBox)) {
if (core.isReplaying() || core.status.lockControl || core.isMoving()) return;
core.openEquipbox(true)
return;
}
const itemBox = makeBox([ITEM_BOX_LEFT, ITEM_BOX_TOP], [31 * 4 * 3, 30 * 6 * 3]);
if (inRect(pos, itemBox)) {
const [gx, gy] = gridify(relativeTo(pos, itemBox[0]), [31 * 3, 30 * 3]);
const itemId = this.itemMx[gy][gx];
if ((core.status.event.id == 'viewMaps' || core.status.event.id == 'fly') && itemId === 'book') core.openBook(true)
if (core.isReplaying() || core.status.lockControl || core.isMoving()) return;
useItem(itemId);
return;
}
const toolBox = makeBox([TOOL_BOX_LEFT, TOOL_BOX_TOP], [31 * 4 * 3, 31 * 2 * 3]);
if (inRect(pos, toolBox)) {
const [row, col] = gridify(relativeTo(pos, toolBox[0]), [31 * 3, 31 * 3]);
if (core.isReplaying()) {
this.replayAction[col][row].call(core);
} else if (core.isPlaying()) {
if (col === 0 && row === 3) {
core.doSL("autoSave", "load");
} else if (col === 1 && row === 3) {
core.doSL("autoSave", "reload");
} else {
this.toolbarAction[col][row].call(core, true);
}
}
return;
}
}
}
}
core.ui.statusBar = new StatusBar();
core.control.clearStatusBar = function () {
core.clearMap("outerUI");
}
// init() called in `afterLoadResources`.
},
"override": function () {
core.statusBar.icons = {
'floor': 0,
'name': null,
'lv': 1,
'hpmax': 2,
'hp': 3,
'atk': 4,
'def': 5,
'mdef': 6,
'money': 7,
'exp': 8,
'up': 9,
'book': 10,
'fly': 11,
'toolbox': 12,
'keyboard': 13,
'shop': 14,
'save': 15,
'load': 16,
'settings': 17,
'play': 18,
'pause': 19,
'stop': 20,
'speedDown': 21,
'speedUp': 22,
'rewind': 23,
'equipbox': 24,
'mana': 25,
'skill': 26,
'exit': 27,
'btn1': 28,
'btn2': 29,
'btn3': 30,
'btn4': 31,
'btn5': 32,
'btn6': 33,
'btn7': 34,
'alt': 35,
'keys': 36,
'help': 37,
'battle': 38
};
core.actions._getClickLoc = function (x, y) {
var size = 32 * core.domStyle.scale;
var left = main.dom.gameDraw.offsetLeft + main.dom.gameGroup.offsetLeft;
var top = main.dom.gameDraw.offsetTop + main.dom.gameGroup.offsetTop;
var loc = { 'x': Math.max(x - left, 0), 'y': Math.max(y - top, 0), 'size': size };
return loc;
}
core.ui._drawWindowSelector = function (background, x, y, w, h) {
w = Math.round(w) + 48;
h = Math.round(h);
var ctx = core.ui.createCanvas("_selector", x - 24, y, w, h, 165);
ctx.canvas.id = '';
this._drawSelector(ctx, background, w, h);
}
core.ui._drawSelector = function (ctx, background, w, h, left, top) {
left = left || 0;
top = top || 0;
ctx = this.getContextByName(ctx);
if (!ctx) return;
if (typeof background == 'string')
background = core.material.images.images[background];
if (!(background instanceof Image)) return;
// badge
ctx.drawImage(background, 132, 68, 24, 24, left + 4, top + 4, 24, 24);
ctx.drawImage(background, 132, 68, 24, 24, w - left - 28, top + 4, 24, 24);
}
enemys.prototype._nextCriticals_useBinarySearch = function (enemy, info, number, x, y, floorId) {
var mon_hp = info.mon_hp,
hero_atk = core.status.hero.atk,
mon_def = info.mon_def,
pre = info.damage;
var list = [];
var start_atk = hero_atk;
if (info.__over__) {
start_atk += info.__overAtk__;
list.push([info.__overAtk__, -info.damage]);
}
var calNext = function (currAtk, maxAtk) {
var start = Math.floor(currAtk),
end = Math.floor(maxAtk);
if (start > end) return null;
while (start < end) {
var mid = Math.floor((start + end) / 2);
if (mid - start > end - mid) mid--;
var nextInfo = core.enemys.getDamageInfo(enemy, { "atk": mid }, x, y, floorId);
if (nextInfo == null || (typeof nextInfo == 'number')) return null;
if (pre > nextInfo.damage) end = mid;
else start = mid + 1;
}
var nextInfo = core.enemys.getDamageInfo(enemy, { "atk": start }, x, y, floorId);
return nextInfo == null || (typeof nextInfo == 'number') || nextInfo.damage >= pre ? null : [start, nextInfo.damage];
}
var currAtk = start_atk;
while (true) {
var next = calNext(currAtk + 1, Number.MAX_SAFE_INTEGER, pre);
if (next == null) break;
currAtk = next[0];
pre = next[1];
list.push([currAtk - hero_atk, info.damage - pre]);
if (pre <= 0 && !core.flags.enableNegativeDamage) break;
if (list.length >= number) break;
}
if (list.length == 0) list.push([0, 0]);
return list;
}
core.ui.clearMap = function (name, x, y, width, height) {
if (name == 'all') {
for (var m in core.canvas) {
core.canvas[m].clearRect(-32, -32, core.canvas[m].canvas.width + 32, core.canvas[m].canvas.height + 32);
}
core.clearMap("outerUI");
core.dom.gif.innerHTML = "";
core.removeGlobalAnimate();
core.deleteCanvas(function (one) { return one.startsWith('_bigImage_'); });
core.setWeather(null);
} else {
var ctx = this.getContextByName(name);
if (ctx) ctx.clearRect(x || 0, y || 0, width || ctx.canvas.width, height || ctx.canvas.height);
}
}
events.prototype.openBook = function (fromUserAction) {
if (core.isReplaying()) return;
// 如果能恢复事件从callBook事件触发
if (core.status.event.id == 'book' && core.events.recoverEvents(core.status.event.interval))
return;
// 当前是book且从“浏览地图”打开
if (core.status.event.id == 'book' && core.status.event.ui) {
core.status.boxAnimateObjs = [];
core.ui._drawViewMaps(core.status.event.ui);
return;
}
// 从“浏览地图”页面打开
if (core.status.event.id == 'viewMaps' || core.status.event.id == 'fly') {
fromUserAction = false;
core.status.event.ui = core.status.event.data;
}
if (!this._checkStatus('book', fromUserAction, true)) return;
core.playSound('打开界面');
core.useItem('book', true);
}
////// 怪物手册界面时,放开某个键的操作 //////
core.actions._keyUpBook = function (keycode) {
if (keycode == 27 || keycode == 88) {
core.playSound('取消');
if (core.events.recoverEvents(core.status.event.interval)) {
return;
} else if (core.status.event.ui != null) {
core.status.boxAnimateObjs = [];
if (typeof core.status.event.ui === "number") {
core.status.event.id = "fly"
core.ui.drawFly(core.status.event.ui);
} else {
core.ui._drawViewMaps(core.status.event.ui);
}
} else core.ui.closePanel();
return;
}
if (keycode == 13 || keycode == 32 || keycode == 67) {
var data = core.status.event.data;
if (data != null) {
core.ui._drawBookDetail(data);
}
return;
}
}
////// 怪物手册界面的点击操作 //////
actions.prototype._clickBook = function (x, y) {
var pageinfo = core.ui._drawBook_pageinfo();
// 上一页
if ((x == this._HX_ - 2 || x == this._HX_ - 3) && y === core._HEIGHT_ - 1) {
core.playSound('光标移动');
core.ui.drawBook(core.status.event.data - pageinfo.per_page);
return;
}
// 下一页
if ((x == this._HX_ + 2 || x == this._HX_ + 3) && y === core._HEIGHT_ - 1) {
core.playSound('光标移动');
core.ui.drawBook(core.status.event.data + pageinfo.per_page);
return;
}
// 返回
if (x >= this.LAST - 2 && y === core._HEIGHT_ - 1) {
core.playSound('取消');
if (core.events.recoverEvents(core.status.event.interval)) {
return;
} else if (core.status.event.ui != null) {
core.status.boxAnimateObjs = [];
if (typeof core.status.event.ui === "number") {
core.status.event.id = "fly"
core.ui.drawFly(core.status.event.ui);
} else {
core.ui._drawViewMaps(core.status.event.ui);
}
} else core.ui.closePanel();
return;
}
// 怪物信息
var data = core.status.event.data;
if (data != null && y < core._HEIGHT_ - 1) {
var per_page = pageinfo.per_page,
page = parseInt(data / per_page);
var u = (core._HEIGHT_ - 1) / per_page;
for (var i = 0; i < per_page; ++i) {
if (y >= u * i && y < u * (i + 1)) {
var index = per_page * page + i;
core.ui.drawBook(index);
core.ui._drawBookDetail(index);
break;
}
}
return;
}
return;
}
},
"额外信息": function () {
/*
* 注意不要在道具属性中直接操作flags使用core.status.hero.flags或core.setFlag系列函数代替
* 需要将 变量itemDetail改为true才可正常运行
* 请尽量减少勇士的属性数量否则可能会出现严重卡顿划掉现在你放一万个属性也不会卡
* 注意这里的属性必须是core.status.hero里面的flag无法显示
* 如果不想显示可以core.setFlag("itemDetail", false);
* 然后再core.getItemDetail();
* 如有bug在大群或造塔群@古祠
*/
// 忽略的道具
const ignore = ['superPotion'];
// 取消注释下面这句可以减少超大地图的判定。
// 如果地图宝石过多,可能会略有卡顿,可以尝试取消注释下面这句话来解决。
// core.bigmap.threshold = 256;
const origin = core.control.updateStatusBar;
core.updateStatusBar = core.control.updateStatusBar = function () {
if (core.getFlag('__statistics__')) return;
else return origin.apply(core.control, arguments);
}
core.control.updateDamage = function (floorId, ctx) {
floorId = floorId || core.status.floorId;
if (!floorId || core.status.gameOver || main.mode != 'play') return;
const onMap = ctx == null;
// 没有怪物手册
if (!core.hasItem('book')) return;
core.status.damage.posX = core.bigmap.posX;
core.status.damage.posY = core.bigmap.posY;
if (!onMap) {
const width = core.floors[floorId].width,
height = core.floors[floorId].height;
// 地图过大的缩略图不绘制显伤
if (width * height > core.bigmap.threshold) return;
}
this._updateDamage_damage(floorId, onMap);
this._updateDamage_extraDamage(floorId, onMap);
core.getItemDetail(floorId); // 宝石血瓶详细信息
this.drawDamage(ctx);
};
// 获取宝石信息 并绘制
this.getItemDetail = function (floorId) {
if (!core.getFlag('itemDetail')) return;
if (!core.status.thisMap) return;
floorId = floorId ?? core.status.thisMap.floorId;
const beforeRatio = core.status.thisMap.ratio;
core.status.thisMap.ratio = core.status.maps[floorId].ratio;
let diff = {};
const before = core.status.hero;
const hero = core.clone(core.status.hero);
const handler = {
set(target, key, v) {
diff[key] = v - (target[key] || 0);
if (!diff[key]) diff[key] = void 0;
return true;
}
};
core.status.hero = new Proxy(hero, handler);
core.status.maps[floorId].blocks.forEach(function (block) {
if (
block.event.cls !== 'items' ||
ignore.includes(block.event.id) ||
block.disable
)
return;
const x = block.x,
y = block.y;
// v2优化只绘制范围内的部分
if (core.bigmap.v2) {
if (
x < core.bigmap.posX - core.bigmap.extend ||
x > core.bigmap.posX + core._WIDTH_ + core.bigmap.extend ||
y < core.bigmap.posY - core.bigmap.extend ||
y > core.bigmap.posY + core._HEIGHT_ + core.bigmap.extend
) {
return;
}
}
diff = {};
const id = block.event.id;
const item = core.material.items[id];
if (item.cls === 'equips') {
// 装备也显示
const diff = item.equip.value ?? {};
const per = item.equip.percentage ?? {};
for (const name in per) {
diff[name + 'per'] = per[name].toString() + '%';
}
drawItemDetail(diff, x, y);
return;
}
// 跟数据统计原理一样 执行效果 前后比较
core.setFlag('__statistics__', true);
try {
eval(item.itemEffect);
} catch (error) {}
drawItemDetail(diff, x, y);
});
core.status.thisMap.ratio = beforeRatio;
core.status.hero = before;
window.hero = before;
window.flags = before.flags;
};
// 绘制
function drawItemDetail(diff, x, y) {
const px = 32 * x + 2,
py = 32 * y + 30;
let content = '';
// 获得数据和颜色
let i = 0;
for (const name in diff) {
if (!diff[name]) continue;
let color = '#fff';
if (typeof diff[name] === 'number')
content = core.formatBigNumber(diff[name], true);
else content = diff[name];
switch (name) {
case 'atk':
case 'atkper':
color = '#FF7A7A';
break;
case 'def':
case 'defper':
color = '#00E6F1';
break;
case 'mdef':
case 'mdefper':
color = '#6EFF83';
break;
case 'hp':
color = '#A4FF00';
break;
case 'hpmax':
case 'hpmaxper':
color = '#F9FF00';
break;
case 'mana':
color = '#c66';
break;
}
// 绘制
core.status.damage.data.push({
text: content,
px: px,
py: py - 10 * i,
color: color
});
i++;
}
}
},
"编辑器显伤": function () {
// 在此增加新插件
/////// 用户设置 ///////
// 将__enable置为false将关闭插件
var __enable = true;
// 魔防攻速之类的属性可以在这里加 ['atk', 'def', 'mdef']
var heroStatus = ['atk', 'def', 'mdef', 'hp'];
// saveHero为true 将会把每次造塔测试时的角色数据存下来 否则会读取初始属性
// 用不着可以关了 节约缓存空间 (虽然根本没多少 还没一个存档大
// 也可以手动清理 控制台输入core.removeLocalStorage('editorHero')即可
var saveHero = true;
// 下为具体实现 懒得写注释了 大概就是写HTML然后注册交互
if (!__enable || main.mode != 'editor') return;
core.plugin.initEditorDamage = false;
if (heroStatus.length >= 4 && !editor.isMobile) editor.dom.mid2.style.top = 650 + 30 * (heroStatus.length - 3) + 'px';
editor.statusRatio = core.getLocalStorage('statusRatio', 1);
editor.saveHero = saveHero;
editor._heroStatus = heroStatus;
editor.dom.mapEdit.appendChild(core.canvas.damage.canvas)
var HTML = "<input type='button' value='←'/><input type='button' value='↑'/><input type='button' value='↓'/><input type='button' value='→'/><input type='button' id='bigmapBtn' value='大地图'' style='margin-left: '5px'/>";
//if (heroStatus.length >= 4 && !editor.isMobile) editor.dom.mid2.style.top = 650 + 30 * (heroStatus.length - 3) + 'px';
heroStatus.forEach(function (status) {
var id = status + 'set',
id2 = status + 'add',
id3 = status + 'rec',
id4 = status + 'help';
HTML += "<br/><input type='text' size='15' id='" + id + "'><input type='button' id='" + id2 + "' value = '+'><input type='button' id='" + id3 + "' value = '-'><input type='button' value='?' id = '" + id4 + "'>"
});
document.getElementById('viewportButtons').innerHTML = HTML;
['set', 'add', 'rec', 'help'].forEach(function (e) {
heroStatus.forEach(function (status) {
editor.dom[status + e] = document.getElementById(status + e);
});
});
var _hasItem = core.items.hasItem;
core.items.hasItem = function (itemId) {
if (itemId == 'book' && main.mode == 'editor') return true;
return _hasItem.call(core.items, itemId);
}
if (main.mode == "editor") {
var applyList = ["getDamageString", "nextCriticals", "getEnemyInfo", "getEnemyValue"];
applyList.forEach(function (name) {
var func = core.enemys[name];
core.enemys[name] = function () {
var args = (arguments.length === 1 ? [arguments[0]] : Array.apply(null, arguments));
if (typeof args[0] == "string") args[0] = core.enemys.enemys[args[0]];
return func.apply(core.enemys, args);
}
});
}
////// 获得勇士属性 //////
core.control.getStatus = function (name) {
if (!core.status.hero) return null;
if (name == 'x' || name == 'y' || name == 'direction')
return this.getHeroLoc(name);
/*if ( main.mode == 'editor' && !core.hasFlag('__statistics__')) {
return data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d.firstData.hero[name];
}*/
return core.status.hero[name];
}
core.control.updateDamage = function (floorId, ctx) {
floorId = floorId || core.status.floorId;
if (!floorId || core.status.gameOver) return;
var onMap = ctx == null;
if (main.mode == 'editor') {
ctx = core.canvas.damage;
core.updateCheckBlock();
core.clearMap(ctx);
if (editor.uivalues.bigmap) return;
}
// 没有怪物手册
if (!core.hasItem('book')) return;
core.status.damage.posX = core.bigmap.posX;
core.status.damage.posY = core.bigmap.posY;
if (!onMap) {
var width = core.floors[floorId].width,
height = core.floors[floorId].height;
// 地图过大的缩略图不绘制显伤
if (width * height > core.bigmap.threshold) return;
}
this._updateDamage_damage(floorId, onMap);
this._updateDamage_extraDamage(floorId, onMap);
this.drawDamage(ctx);
}
core.control.drawDamage = function (ctx) {
if (core.status.gameOver || !core.status.damage /* || main.mode != 'play'*/ ) return;
var onMap = false;
if (ctx == null) {
ctx = core.canvas.damage;
core.clearMap('damage');
onMap = true;
}
if (onMap && core.bigmap.v2) {
// 检查是否需要重算...
if (Math.abs(core.bigmap.posX - core.status.damage.posX) >= core.bigmap.extend - 1 ||
Math.abs(core.bigmap.posY - core.status.damage.posY) >= core.bigmap.extend - 1) {
return this.updateDamage();
}
}
return this._drawDamage_draw(ctx, onMap);
}
////// 以x,y的形式返回每个点的事件 //////
core.maps.getMapBlocksObj = function (floorId, noCache) {
floorId = floorId || core.status.floorId;
if (core.status.mapBlockObjs[floorId] && !noCache && main.mode != 'editor')
return core.status.mapBlockObjs[floorId];
var obj = {};
core.extractBlocks(floorId);
core.status.maps[floorId].blocks.forEach(function (block) {
obj[block.x + "," + block.y] = block;
});
core.status.mapBlockObjs[floorId] = obj
return obj;
}
this.bignum = function (num, defaultValue) {
if (num == null || num == "") return defaultValue;
num = num + "";
var list = {
'w': 1e4,
'e': 1e8,
'z': 1e12,
'j': 1e16,
'g': 1e20
};
// 浮点数问题
function checkFloat(num) {
if (!core.isset(num)) return 0;
num = num + "";
var index = num.indexOf(".");
if (index < 0) return 0;
else return num.slice(index + 1).length;
}
var index = num.search(/w|e|z|j|g/);
if (index <= 0) {
num = parseInt(num);
if (core.isset(num)) return num;
else {
alert('不正确的输入');
return defaultValue;
}
}
for (; index > 0; index = num.search(/w|e|z|j|g/)) {
var p = num[index],
q = list[p],
n = num.slice(0, index),
m = Math.pow(10, checkFloat(n));
num = n * m * q / m + num.slice(index + 1);
}
return parseInt(num);
}
this.updateEditorDamage = function (noSave) {
core.updateDamage();
heroStatus.forEach(function (status) {
editor.dom[status + 'set'].value = core.status.hero[status];
});
if (!noSave && editor.saveHero) core.setLocalStorage('editorHero', core.status.hero);
}
var _resizeMap = core.maps.resizeMap;
core.maps.resizeMap = function (floorId) {
_resizeMap.call(core.maps, floorId);
if (!core.plugin.initEditorDamage && main.mode == 'editor') {
core.plugin.initEditorDamage = true;
var editorHero = core.getLocalStorage('editorHero');
if (editorHero && saveHero) core.status.hero = editorHero;
else core.removeLocalStorage('editorHero');
editor._heroStatus.forEach(function (e) {
editor.dom[e + 'set'].onchange = function () {
var status = this.id.slice(0, -3);
core.status.hero[status] = core.bignum(this.value, core.status.hero[status]);
core.updateEditorDamage();
}
editor.dom[e + 'add'].onclick = function () {
var status = this.id.slice(0, -3);
core.status.hero[status] += editor.statusRatio;
core.updateEditorDamage();
}
editor.dom[e + 'rec'].onclick = function () {
var status = this.id.slice(0, -3);
core.status.hero[status] -= editor.statusRatio;
core.updateEditorDamage();
}
editor.dom[e + 'help'].onclick = function () {
var status = this.id.slice(0, -4),
name = core.getStatusLabel(status);
var ratio = parseInt(prompt("当前属性:" + name + "\n现在的点击按钮变化值:" + editor.statusRatio + ",请输入按下一次+/-按钮的属性变化量,可以写4w 10.2e这种字母缩写"));
if (!core.isset(ratio)) {
printe('不合法的输入');
return;
}
editor.statusRatio = ratio;
core.setLocalStorage('statusRatio', ratio);
}
});
var _updateMap = editor.updateMap;
editor.updateMap = function () {
_updateMap.call(editor);
core.updateEditorDamage(true);
}
editor.mode.onmode = function (mode, callback) {
if (editor_mode.mode != mode) {
if (mode === 'save') {
editor_mode.doActionList(editor_mode.mode, editor_mode.actionList, function () {
if (callback) callback();
core.updateEditorDamage();
});
}
if (editor_mode.mode === 'nextChange' && mode) editor_mode.showMode(mode);
if (mode !== 'save') editor_mode.mode = mode;
editor_mode.actionList = [];
}
}
}
}
},
"手册区分特殊属性": function () {
// 在此增加新插件
this.arrsame = function (Arraya, Arrayb) {
let a = Arraya || [];
let b = Arrayb || [];
if (typeof a === 'number') a = [a]
if (typeof b === 'number') b = [b]
let c = [...a, ...b]
for (const i of c)
if (!a.includes(i) || !b.includes(i)) {
return false
}
return true
}
enemys.prototype.getCurrentEnemys = function (floorId) {
floorId = floorId || core.status.floorId;
var enemys = [],
used = {};
core.extractBlocks(floorId);
core.status.maps[floorId].blocks.forEach(function (block) {
if (!block.disable && block.event.cls.indexOf('enemy') == 0) {
this._getCurrentEnemys_addEnemy(block.event.id, enemys, used, block.x, block.y, floorId);
}
}, this);
return this._getCurrentEnemys_sort(enemys);
}
enemys.prototype._getCurrentEnemys_getEnemy = function (enemyId) {
var enemy = core.material.enemys[enemyId];
if (!enemy) return null;
// 检查朝向displayIdInBook
return core.material.enemys[enemy.displayIdInBook] || core.material.enemys[(enemy.faceIds || {}).down] || enemy;
}
enemys.prototype._getCurrentEnemys_addEnemy = function (enemyId, enemys, used, x, y, floorId) {
var enemy = this._getCurrentEnemys_getEnemy(enemyId);
if (enemy == null) return;
var id = enemy.id;
var enemyInfo = this.getEnemyInfo(enemy, null, null, null, floorId);
var locEnemyInfo = this.getEnemyInfo(enemy, null, x, y, floorId);
if (!core.flags.enableEnemyPoint || (locEnemyInfo.atk == enemyInfo.atk && locEnemyInfo.def == enemyInfo.def && locEnemyInfo.hp == enemyInfo.hp && core.plugin.arrsame(locEnemyInfo.special, enemyInfo.special))) {
x = null;
y = null;
} else {
// 检查enemys里面是否使用了存在的内容
for (var i = 0; i < enemys.length; ++i) {
var one = enemys[i];
if (id == one.id && one.locs != null &&
locEnemyInfo.atk == one.atk && locEnemyInfo.def == one.def && locEnemyInfo.hp == one.hp && core.plugin.arrsame(locEnemyInfo.special, one.special)) {
one.locs.push([x, y]);
return;
}
}
enemyInfo = locEnemyInfo;
}
var id = enemy.id + ":" + x + ":" + y;
if (used[id]) return;
used[id] = true;
var specialText = core.enemys.getSpecialText(enemy, x, y, floorId);
var specialColor = core.enemys.getSpecialColor(enemy, x, y, floorId);
var critical = this.nextCriticals(enemy, 1, x, y, floorId);
if (critical.length > 0) critical = critical[0];
var e = core.clone(enemy);
for (var v in enemyInfo) {
e[v] = enemyInfo[v];
}
if (x != null && y != null) {
e.locs = [
[x, y]
];
}
e.name = core.getEnemyValue(enemy, 'name', x, y, floorId);
e.specialText = specialText;
e.specialColor = specialColor;
e.damage = this.getDamage(enemy, x, y, floorId);
e.critical = critical[0];
e.criticalDamage = critical[1];
e.defDamage = this._getCurrentEnemys_addEnemy_defDamage(enemy, x, y, floorId);
enemys.push(e);
}
enemys.prototype._getCurrentEnemys_addEnemy_defDamage = function (enemy, x, y, floorId) {
var ratio = core.status.maps[floorId || core.status.floorId].ratio || 1;
return this.getDefDamage(enemy, ratio, x, y, floorId);
}
enemys.prototype._getCurrentEnemys_sort = function (enemys) {
return enemys.sort(function (a, b) {
if (a.damage == b.damage) {
return a.money - b.money;
}
if (a.damage == null) {
return 1;
}
if (b.damage == null) {
return -1;
}
return a.damage - b.damage;
});
}
////// 获得所有特殊属性的名称 //////
enemys.prototype.getSpecialText = function (enemy, x, y, floorId) {
if (typeof enemy == 'string') enemy = this.getEnemyInfo(enemy, null, x, y, floorId);
if (!enemy) return [];
var special = enemy.special;
var text = [];
var specials = this.getSpecials();
if (specials) {
for (var i = 0; i < specials.length; i++) {
if (this.hasSpecial(special, specials[i][0]))
text.push(this._calSpecialContent(enemy, specials[i][1]));
}
}
return text;
}
////// 获得所有特殊属性的颜色 //////
enemys.prototype.getSpecialColor = function (enemy, x, y, floorId) {
if (typeof enemy == 'string') enemy = this.getEnemyInfo(enemy, null, x, y, floorId);
if (!enemy) return [];
var special = enemy.special;
var colors = [];
var specials = this.getSpecials();
if (specials) {
for (var i = 0; i < specials.length; i++) {
if (this.hasSpecial(special, specials[i][0]))
colors.push(specials[i][3] || null);
}
}
return colors;
}
////// 获得所有特殊属性的额外标记 //////
enemys.prototype.getSpecialFlag = function (enemy, x, y, floorId) {
if (typeof enemy == 'string') enemy = getEnemyInfo(enemy, null, x, y, floorId);
if (!enemy) return [];
var special = enemy.special;
var flag = 0;
var specials = this.getSpecials();
if (specials) {
for (var i = 0; i < specials.length; i++) {
if (this.hasSpecial(special, specials[i][0]))
flag |= (specials[i][4] || 0);
}
}
return flag;
}
////// 获得每个特殊属性的说明 //////
enemys.prototype.getSpecialHint = function (enemy, special) {
var specials = this.getSpecials();
if (special == null) {
if (specials == null) return [];
var hints = [];
for (var i = 0; i < specials.length; i++) {
if (this.hasSpecial(enemy, specials[i][0]))
hints.push("\r[" + core.arrayToRGBA(specials[i][3] || "#FF6A6A") + "]\\d" + this._calSpecialContent(enemy, specials[i][1]) +
"\\d\r[]" + this._calSpecialContent(enemy, specials[i][2]));
}
return hints;
}
if (specials == null) return "";
for (var i = 0; i < specials.length; i++) {
if (special == specials[i][0])
return "\r[#FF6A6A]\\d" + this._calSpecialContent(enemy, specials[i][1]) + "\\d\r[]" + this._calSpecialContent(enemy, specials[i][2]);
}
return "";
}
ui.prototype._drawBook_drawName = function (index, enemy, top, left, width) {
// 绘制第零列(名称和特殊属性)
// 如果需要添加自己的比如怪物的称号等,也可以在这里绘制
core.setTextAlign('ui', 'center');
if (core.enemys.getSpecialText(enemy).length == 0) {
core.fillText('ui', enemy.name, left + width / 2,
top + 35, '#DDDDDD', this._buildFont(17, true), width);
} else {
core.fillText('ui', enemy.name, left + width / 2,
top + 28, '#DDDDDD', this._buildFont(17, true), width);
switch (core.enemys.getSpecialText(enemy).length) {
case 1:
core.fillText('ui', core.enemys.getSpecialText(enemy)[0], left + width / 2,
top + 50, core.arrayToRGBA((core.enemys.getSpecialColor(enemy) || [])[0] || '#FF6A6A'),
this._buildFont(15, true), width);
break;
case 2:
// Step 1: 计算字体
var text = core.enemys.getSpecialText(enemy)[0] + " " + core.enemys.getSpecialText(enemy)[1];
core.setFontForMaxWidth('ui', text, width, this._buildFont(15, true));
// Step 2: 计算总宽度
var totalWidth = core.calWidth('ui', text);
var leftWidth = core.calWidth('ui', core.enemys.getSpecialText(enemy)[0]);
var rightWidth = core.calWidth('ui', core.enemys.getSpecialText(enemy)[1]);
// Step 3: 绘制
core.fillText('ui', core.enemys.getSpecialText(enemy)[0], left + (width + leftWidth - totalWidth) / 2,
top + 50, core.arrayToRGBA((core.enemys.getSpecialColor(enemy) || [])[0] || '#FF6A6A'));
core.fillText('ui', core.enemys.getSpecialText(enemy)[1], left + (width + totalWidth - rightWidth) / 2,
top + 50, core.arrayToRGBA((core.enemys.getSpecialColor(enemy) || [])[1] || '#FF6A6A'));
break;
default:
core.fillText('ui', '多属性...', left + width / 2,
top + 50, '#FF6A6A', this._buildFont(15, true), width);
}
}
}
ui.prototype._drawBookDetail_getInfo = function (index) {
var floorId = core.floorIds[(core.status.event.ui || {}).index] || core.status.floorId;
// 清除浏览地图时的光环缓存
if (floorId != core.status.floorId && core.status.checkBlock) {
core.status.checkBlock.cache = {};
}
var enemys = core.enemys.getCurrentEnemys(floorId);
console.log(123);
if (enemys.length == 0) return [];
index = core.clamp(index, 0, enemys.length - 1);
var enemy = enemys[index];
var texts = core.enemys.getSpecialHint(enemy);
if (texts.length == 0) texts.push("该怪物无特殊属性。");
if (enemy.description) texts.push(enemy.description + "\r");
this._drawBookDetail_getTexts(enemy, floorId, texts);
texts.push("");
return [enemy, texts];
}
},
"一防减伤": function () {
// 在此增加新插件
ui.prototype._drawBook_drawRow3 = function (index, enemy, top, left, width, position) {
// 绘制第三行
core.setTextAlign('ui', 'left');
var b13 = this._buildFont(13, true),
f13 = this._buildFont(13, false);
var col1 = left,
col2 = left + width * 9 / 25,
col3 = left + width * 17 / 25;
core.fillText('ui', '临界', col1, position, '#DDDDDD', f13);
core.fillText('ui', core.formatBigNumber(enemy.critical || 0), col1 + 30, position, null, b13);
core.fillText('ui', '减伤', col2, position, null, f13);
core.fillText('ui', core.formatBigNumber(enemy.criticalDamage || 0), col2 + 30, position, null, b13);
//core.fillText('ui', '加防', col3, position, null, f13);
core.fillText('ui', '1防', col3, position, null, f13);
core.fillText('ui', core.formatBigNumber(enemy.defDamage || 0), col3 + 30, position, null, b13);
}
////// 1防减伤计算 //////
enemys.prototype.getDefDamage = function (enemy, k, x, y, floorId) {
if (typeof enemy == 'string') enemy = core.material.enemys[enemy];
k = k || 1;
var nowDamage = this._getDamage(enemy, null, x, y, floorId);
var nextDamage = this._getDamage(enemy, { "def": core.status.hero.def + k }, x, y, floorId);
if (nowDamage == null || nextDamage == null) return "???";
return nowDamage - nextDamage;
}
//防御倍数
enemys.prototype._getCurrentEnemys_addEnemy_defDamage = function (enemy, x, y, floorId) {
var ratio = core.status.maps[floorId || core.status.floorId].ratio || 1;
//第一行为按照ratio值计算减防第二行为1防减伤
//return this.getDefDamage(enemy, ratio, x, y, floorId);
return this.getDefDamage(enemy, null, x, y, floorId);
}
},
"新道具栏/装备栏": function () {
// 在此增加新插件
// 注:///// *** 裹起来的区域: 该区域内参数可以随意更改调整ui绘制 不会影响总体布局
// 请尽量修改该区域而不是其他区域 修改的时候最好可以对照现有ui修改
///// *** 道具类型
// cls对应name
var itemClsName = {
"constants": "永久道具",
"tools": "消耗道具",
}
// 一页最大放的道具数量 将把整个道具左栏分成num份 每份是一个道具项
var itemNum = 12;
///// ***
// 背景设置
this.drawBoxBackground = function (ctx) {
core.setTextAlign(ctx, "left");
core.clearMap(ctx);
core.deleteCanvas("_selector");
var info = core.status.thisUIEventInfo || {};
///// *** 背景设置
var max = core.__PIXELS__;
var x = 2,
y = x,
w = max - x * 2,
h = w;
var borderWidth = 2,
borderRadius = 5, // radius:圆角矩形的圆角半径
borderStyle = "#fff";
var backgroundColor = "gray";
// 设置背景不透明度(0.85)
var backgroundAlpha = 0.85;
///// ***
var start_x = x + borderWidth / 2,
start_y = y + borderWidth / 2,
width = max - start_x * 2,
height = max - start_y * 2;
// 渐变色背景的一个例子(黑色渐变白色)
// 有关渐变色的具体知识请网上搜索canvas createGradient了解
/*
var grd = ctx.createLinearGradient(x, y, x + w, y);
grd.addColorStop(0, "black");
grd.addColorStop(1, "white");
backgroundColor = grd;
*/
// 使用图片背景要注释掉下面的strokeRect和fillRoundRect
// 图片背景的一个例子:
/*
core.drawImage(ctx, "xxx.png", x, y, w, h);
core.strokeRect(ctx, x, y, w, h, borderStyle, borderWidth);
*/
core.setAlpha(ctx, backgroundAlpha);
core.strokeRoundRect(ctx, x, y, w, h, borderRadius, borderStyle, borderWidth);
core.fillRoundRect(ctx, start_x, start_y, width, height, borderRadius, backgroundColor);
core.setAlpha(ctx, 1);
///// *** 左栏配置
var leftbar_height = height;
// 左边栏宽度(width*0.6) 本身仅为坐标使用 需要与底下的rightbar_width(width*0.4)同时更改
var leftbar_width = width * 0.6;
///// ***
// xxx_right参数 代表最右侧坐标
var leftbar_right = start_x + leftbar_width - borderWidth / 2;
var leftbar_bottom = start_y + leftbar_height;
var leftbar_x = start_x;
var leftbar_y = start_y;
///// *** 道具栏配置
var boxName_color = "#fff";
var boxName_fontSize = 15;
var boxName_font = core.ui._buildFont(boxName_fontSize, true);
var arrow_x = 10 + start_x;
var arrow_y = 10 + start_y;
var arrow_width = 20;
var arrow_style = "white";
// 暂时只能是1 否则不太行 等待新样板(2.7.3)之后对drawArrow做优化
var arrow_lineWidth = 1;
// 右箭头
var rightArrow_right = leftbar_right - 10;
// 道具内栏顶部坐标 本质是通过该项 控制(道具栏顶部文字和箭头)与道具内栏顶部的间隔
var itembar_top = arrow_y + 15;
///// ***
var itembar_right = rightArrow_right;
var boxName = core.status.event.id == "toolbox" ? "\r[yellow]道具栏\r | 装备栏" : "道具栏 | \r[yellow]装备栏\r";
core.drawArrow(ctx, arrow_x + arrow_width, arrow_y, arrow_x, arrow_y, arrow_style, arrow_lineWidth);
core.drawArrow(ctx, rightArrow_right - arrow_width, arrow_y, rightArrow_right, arrow_y, arrow_style, arrow_lineWidth);
core.setTextAlign(ctx, "center");
core.setTextBaseline(ctx, "middle");
var changeBox = function () {
var id = core.status.event.id;
core.closePanel();
if (id == "toolbox") core.openEquipbox();
else core.openToolbox();
}
core.fillText(ctx, boxName, (leftbar_right + leftbar_x) / 2, arrow_y + 2, boxName_color, boxName_font);
///// *** 底栏按钮
var pageBtn_radius = 8;
// xxx_left 最左侧坐标
var pageBtn_left = leftbar_x + 3;
var pageBtn_right = leftbar_right - 3;
// xxx_bottom 最底部坐标
var pageBtn_bottom = leftbar_bottom - 2;
var pageBtn_borderStyle = "#fff";
var pageBtn_borderWidth = 2;
var pageText_color = "#fff";
// 底部按钮与上面的道具内栏的间隔大小
var bottomSpace = 8;
///// ***
core.drawItemListbox_setPageBtn(ctx, pageBtn_left, pageBtn_right, pageBtn_bottom, pageBtn_radius, pageBtn_borderStyle, pageBtn_borderWidth);
var page = info.page || 1;
var pageFontSize = pageBtn_radius * 2 - 4;
var pageFont = core.ui._buildFont(pageFontSize);
core.setPageItems(page);
var num = itemNum;
if (core.status.event.id == "equipbox") num -= 5;
var maxPage = info.maxPage;
var pageText = page + " / " + maxPage;
core.setTextAlign(ctx, "center");
core.setTextBaseline(ctx, "bottom");
core.fillText(ctx, pageText, (leftbar_x + leftbar_right) / 2, pageBtn_bottom, pageText_color, pageFont);
core.addUIEventListener(start_x, start_y, leftbar_right - start_x, arrow_y - start_y + 13, changeBox);
var itembar_height = Math.ceil(pageBtn_bottom - pageBtn_radius * 2 - pageBtn_borderWidth / 2 - bottomSpace - itembar_top);
var oneItemHeight = (itembar_height - 4) / itemNum;
return {
x: start_x,
y: start_y,
width: width,
height: height,
leftbar_right: leftbar_right,
obj: {
x: arrow_x,
y: itembar_top,
width: itembar_right - arrow_x,
height: itembar_height,
oneItemHeight: oneItemHeight
}
}
}
this.drawItemListbox = function (ctx, obj) {
ctx = ctx || core.canvas.ui;
var itembar_x = obj.x,
itembar_y = obj.y,
itembar_width = obj.width,
itembar_height = obj.height,
itemNum = obj.itemNum,
oneItemHeight = obj.oneItemHeight;
var itembar_right = itembar_x + itembar_width;
var info = core.status.thisUIEventInfo || {};
var obj = {};
var page = info.page || 1,
index = info.index,
select = info.select || {};
///// *** 道具栏内栏配置
var itembar_style = "black";
var itembar_alpha = 0.7;
// 一个竖屏下减少道具显示的例子:
// if (core.domStyle.isVertical) itemNum = 10;
// 每个道具项的上下空隙占总高度的比例
var itembar_marginHeightRatio = 0.2;
// 左右间隔空隙
var item_marginLeft = 2;
var item_x = itembar_x + 2,
item_y = itembar_y + 2,
item_right = itembar_right - 2,
itemName_color = "#fff";
// 修改此项以更换闪烁光标
var item_selector = "winskin.png";
///// ***
core.setAlpha(ctx, itembar_alpha);
core.fillRect(ctx, itembar_x, itembar_y, itembar_width, itembar_height, itembar_style);
core.setAlpha(ctx, 1);
var pageItems = core.setPageItems(page);
var marginHeight = itembar_marginHeightRatio * oneItemHeight;
core.setTextBaseline(ctx, "middle");
var originColor = itemName_color;
for (var i = 0; i < pageItems.length; i++) {
itemName_color = originColor;
var item = pageItems[i];
// 设置某个的字体颜色的一个例子
// if (item.id == "xxx") itemName_color = "green";
core.drawItemListbox_drawItem(ctx, item_x, item_right, item_y, oneItemHeight, item_marginLeft, marginHeight, itemName_color, pageItems[i]);
if (index == i + 1) core.ui._drawWindowSelector(item_selector, item_x + 1, item_y - 1, item_right - item_x - 2, oneItemHeight - 2);
item_y += oneItemHeight;
}
}
this.drawToolboxRightbar = function (ctx, obj) {
ctx = ctx || core.canvas.ui;
var info = core.status.thisUIEventInfo || {};
var page = info.page || 1,
index = info.index || 1,
select = info.select || {};
var start_x = obj.x,
start_y = obj.y,
width = obj.width,
height = obj.height;
var toolboxRight = start_x + width,
toolboxBottom = start_y + height;
///// *** 侧边栏(rightbar)背景设置(物品介绍)
var rightbar_width = width * 0.4;
var rightbar_height = height;
var rightbar_lineWidth = 2;
var rightbar_lineStyle = "#fff";
///// ***
var rightbar_x = toolboxRight - rightbar_width - rightbar_lineWidth / 2;
var rightbar_y = start_y;
core.drawLine(ctx, rightbar_x, rightbar_y, rightbar_x, rightbar_y + rightbar_height, rightbar_lineStyle, rightbar_lineWidth);
// 获取道具id(有可能为null)
var itemId = select.id;
var item = core.material.items[itemId];
///// *** 侧边栏物品Icon信息
var iconRect_y = rightbar_y + 10;
// space间距
// 这里布局设定iconRect与侧边栏左边框 itemName与工具栏右边框 itemRect与itemName的间距均为space
var space = 15;
var iconRect_x = rightbar_x + space;
var iconRect_radius = 2,
iconRect_width = 32,
iconRect_height = 32,
iconRect_style = "#fff",
iconRect_lineWidth = 2;
///// ***
var iconRect_bottom = iconRect_y + iconRect_height,
iconRect_right = iconRect_x + iconRect_width;
///// *** 侧边栏各项信息
var itemTextFontSize = 15,
itemText_x = iconRect_x - 4,
itemText_y = Math.floor(start_y + rightbar_height * 0.25), // 坐标取整防止模糊
itemClsFontSize = 15,
itemClsFont = core.ui._buildFont(itemClsFontSize),
itemClsColor = "#fff",
itemCls_x = itemText_x - itemClsFontSize / 2,
itemCls_middle = (iconRect_bottom + itemText_y) / 2, //_middle代表文字的中心y坐标
itemNameFontSize = 18,
itemNameColor = "#fff",
itemNameFont = core.ui._buildFont(itemNameFontSize, true);
var itemName_x = iconRect_right + space;
var itemName_middle = iconRect_y + iconRect_height / 2 + iconRect_lineWidth;
// 修改这里可以编辑未选中道具时的默认值
var defaultItem = {
cls: "constants",
name: "未知道具",
text: "没有道具最永久"
}
var defaultEquip = {
cls: "equips",
name: "未知装备",
text: "一无所有,又何尝不是一种装备",
equip: {
type: "装备"
}
}
///// ***
var originItem = item;
if (core.status.event.id == "equipbox") item = item || defaultEquip;
item = item || defaultItem;
var itemCls = item.cls,
itemName = item.name,
itemText = item.text;
itemText = core.replaceText(itemText);
if (itemText[0] == "," || itemText[0] == "") itemText = itemText.substring(1)
/* id()
* if (item.id == "xxx") itemNameColor = "red";
*/
var itemClsName = core.getItemClsName(item);
var itemNameMaxWidth = rightbar_width - iconRect_width - iconRect_lineWidth * 2 - space * 2;
core.strokeRoundRect(ctx, iconRect_x, iconRect_y, iconRect_width, iconRect_height, iconRect_radius, iconRect_style, iconRect_lineWidth);
if (item.id)
core.drawIcon(ctx, item.id, iconRect_x + iconRect_lineWidth / 2, iconRect_y + iconRect_lineWidth / 2, iconRect_width - iconRect_lineWidth, iconRect_height - iconRect_lineWidth);
core.setTextAlign(ctx, "left");
core.setTextBaseline(ctx, "middle");
core.fillText(ctx, itemName, itemName_x, itemName_middle, itemNameColor, itemNameFont, itemNameMaxWidth);
core.fillText(ctx, "【" + itemClsName + "】", itemCls_x, itemCls_middle, itemClsColor, itemClsFont);
var statusText = "";
if (core.status.event.id == "equipbox") {
var type = item.equip.type;
if (typeof type == "string") type = core.getEquipTypeByName(type);
var compare = core.compareEquipment(item.id, core.getEquip(type));
if (info.select.action == "unload") compare = core.compareEquipment(null, item.id);
// --- 变化值...
for (var name in core.status.hero) {
if (typeof core.status.hero[name] != 'number') continue;
var nowValue = core.getRealStatus(name);
// 查询新值
var newValue = Math.floor((core.getStatus(name) + (compare.value[name] || 0)) *
(core.getBuff(name) * 100 + (compare.percentage[name] || 0)) / 100);
if (nowValue == newValue) continue;
var color = newValue > nowValue ? '#00FF00' : '#FF0000';
nowValue = core.formatBigNumber(nowValue);
newValue = core.formatBigNumber(newValue);
statusText += core.getStatusLabel(name) + " " + nowValue + "->\r[" + color + "]" + newValue + "\r\n";
}
}
itemText = statusText + itemText;
core.drawTextContent(ctx, itemText, {
left: itemText_x,
top: itemText_y,
bold: false,
color: "white",
align: "left",
fontSize: itemTextFontSize,
maxWidth: rightbar_width - (itemText_x - rightbar_x) * 2 + itemTextFontSize / 2
});
///// *** 退出按钮设置
var btnRadius = 10;
var btnBorderWidth = 2;
var btnRight = toolboxRight - 2;
var btnBottom = toolboxBottom - 2;
var btnBorderStyle = "#fff";
///// ***
// 获取圆心位置
var btn_x = btnRight - btnRadius - btnBorderWidth / 2,
btn_y = btnBottom - btnRadius - btnBorderWidth / 2;
core.drawToolbox_setExitBtn(ctx, btn_x, btn_y, btnRadius, btnBorderStyle, btnBorderWidth);
///// *** 使用按钮设置
var useBtnHeight = btnRadius * 2;
// 这里不设置useBtnWidth而是根据各项数据自动得出width
var useBtnRadius = useBtnHeight / 2;
var useBtn_x = rightbar_x + 4,
useBtn_y = btnBottom - useBtnHeight;
var useBtnBorderStyle = "#fff";
var useBtnBorderWidth = btnBorderWidth;
///// ***
core.drawToolbox_setUseBtn(ctx, useBtn_x, useBtn_y, useBtnRadius, useBtnHeight, useBtnBorderStyle, useBtnBorderWidth);
}
this.drawEquipbox_drawOthers = function (ctx, obj) {
var info = core.status.thisUIEventInfo;
///// *** 装备格设置
var equipList_lineWidth = 2;
var equipList_boxSize = 32;
var equipList_borderWidth = 2;
var equipList_borderStyle = "#fff";
var equipList_nameColor = "#fff";
///// ***
var equipList_x = obj.x + 4,
equipList_bottom = obj.obj.y - equipList_lineWidth,
equipList_y = equipList_bottom - obj.obj.oneItemHeight * reduceItem - 2,
equipList_height = equipList_bottom - equipList_y;
var equipList_right = obj.leftbar_right,
equipList_width = equipList_right - equipList_x;
core.drawLine(ctx, obj.x, equipList_bottom + equipList_lineWidth / 2, equipList_right, equipList_bottom + equipList_lineWidth / 2, equipList_borderStyle, equipList_lineWidth);
var toDrawList = core.status.globalAttribute.equipName,
len = toDrawList.length;
///// *** 装备格设置
var maxItem = 4;
var box_width = 32,
box_height = 32,
box_borderStyle = "#fff",
box_selectBorderStyle = "gold", // 选中的装备格的颜色
box_borderWidth = 2;
var boxName_fontSize = 14,
boxName_space = 2,
boxName_color = "#fff"; // 装备格名称与上面的装备格框的距离
var maxLine = Math.ceil(len / maxItem);
///// ***
var l = Math.sqrt(len)
if (Math.pow(l) == len && len != 4) {
if (l <= maxItem) maxItem = l;
}
maxItem = Math.min(toDrawList.length, maxItem);
info.equips = maxItem;
var boxName_font = core.ui._buildFont(boxName_fontSize);
// 总宽高减去所有装备格宽高得到空隙大小
var oneBoxWidth = box_width + box_borderWidth * 2;
var oneBoxHeight = box_height + boxName_fontSize + boxName_space + 2 * box_borderWidth;
var space_y = (equipList_height - maxLine * oneBoxHeight) / (1 + maxLine),
space_x = (equipList_width - maxItem * oneBoxWidth) / (1 + maxItem);
var box_x = equipList_x + space_x,
box_y = equipList_y + space_y;
for (var i = 0; i < len; i++) {
var id = core.getEquip(i),
name = toDrawList[i];
var selectBorder = false;
if (core.status.thisUIEventInfo.select.type == i) selectBorder = true;
var borderStyle = selectBorder ? box_selectBorderStyle : box_borderStyle;
core.drawEquipbox_drawOne(ctx, name, id, box_x, box_y, box_width, box_height, boxName_space, boxName_font, boxName_color, borderStyle, box_borderWidth);
var todo = new Function("core.clickOneEquipbox('" + id + "'," + i + ")");
core.addUIEventListener(box_x - box_borderWidth / 2, box_y - box_borderWidth / 2, oneBoxWidth, oneBoxHeight, todo);
box_x += space_x + oneBoxWidth;
if ((i + 1) % maxItem == 0) {
box_x = equipList_x + space_x;
box_y += space_y + oneBoxHeight;
}
}
}
this.drawToolbox = function (ctx) {
ctx = ctx || core.canvas.ui;
core.status.thisEventClickArea = [];
var info = core.drawBoxBackground(ctx);
info.itemNum = itemNum;
core.drawItemListbox(ctx, info.obj);
core.drawToolboxRightbar(ctx, info);
core.setTextBaseline(ctx, "alphabetic");
core.setTextAlign("left");
}
var reduceItem = 4;
this.drawEquipbox = function (ctx) {
ctx = ctx || core.canvas.ui;
core.status.thisEventClickArea = [];
var info = core.drawBoxBackground(ctx);
info.itemNum = itemNum - reduceItem;
info.obj.y += info.obj.oneItemHeight * reduceItem;
info.obj.height -= info.obj.oneItemHeight * reduceItem;
core.drawItemListbox(ctx, info.obj);
core.drawEquipbox_drawOthers(ctx, info);
core.drawToolboxRightbar(ctx, info);
core.setTextBaseline(ctx, "alphabetic");
core.setTextAlign("left");
}
this.drawEquipbox_drawOne = function (ctx, name, id, x, y, width, height, space, font, color, style, lineWidth) {
if (id) core.drawIcon(ctx, id, x + lineWidth / 2, y + lineWidth / 2, width, height);
core.strokeRect(ctx, x, y, width + lineWidth, height + lineWidth, style, lineWidth);
core.setTextAlign(ctx, "center");
core.setTextBaseline(ctx, "top");
var tx = (x + x + lineWidth / 2 + width) / 2,
ty = y + height + lineWidth / 2 * 3 + space;
core.fillText(ctx, name, tx, ty, color, font);
core.setTextBaseline(ctx, "alphabetic");
core.setTextAlign("left");
}
this.drawItemListbox_drawItem = function (ctx, left, right, top, height, marginLeft, marginHeight, style, id) {
var info = core.status.thisUIEventInfo;
var nowClick = info.index;
var item = core.material.items[id] || {};
var name = item.name || "???";
var num = core.itemCount(id) || 0;
var fontSize = Math.floor(height - marginHeight * 2);
core.setTextAlign(ctx, "right");
var numText = "x" + num;
core.fillText(ctx, numText, right - marginLeft, top + height / 2, style, core.ui._buildFont(fontSize));
if (name != "???") core.drawIcon(ctx, id, left + marginLeft, top + marginHeight, fontSize, fontSize);
var text_x = left + marginLeft + fontSize + 2;
var maxWidth = right - core.calWidth(ctx, numText) - text_x;
core.setTextAlign(ctx, "left");
core.fillText(ctx, name, text_x, top + height / 2, style, core.ui._buildFont(fontSize), maxWidth);
var todo = new Function("core.clickItemFunc('" + id + "');");
core.addUIEventListener(left, top, right - left, height, todo);
}
this.setPageItems = function (page) {
var num = itemNum;
if (core.status.event.id == "equipbox") num -= reduceItem;
var info = core.status.thisUIEventInfo;
if (!info) return;
page = page || info.page;
var items = core.getToolboxItems(core.status.event.id == "toolbox" ? "all" : "equips");
info.allItems = items;
var maxPage = Math.ceil(items.length / num);
info.maxPage = maxPage;
var pageItems = items.slice((page - 1) * num, page * num);
info.pageItems = pageItems;
info.maxItem = pageItems.length;
if (items.length == 0 && pageItems.length == 0) info.index = null;
if (pageItems.length == 0 && info.page > 1) {
info.page = Math.max(1, info.page - 1);
return core.setPageItems(info.page);
}
return pageItems;
}
this.drawToolbox_setExitBtn = function (ctx, x, y, r, style, lineWidth) {
core.strokeCircle(ctx, x, y, r, style, lineWidth);
ctx.textAlign = "center";
ctx.textBaseline = "middle";
var textSize = Math.sqrt(2) * r;
core.fillText(ctx, "x", x, y, style, core.ui._buildFont(textSize), textSize);
core.setTextAlign(ctx, "start");
core.setTextBaseline(ctx, "top");
var todo = function () {
core.closePanel();
}
core.addUIEventListener(x - r, y - r, r * 2, r * 2, todo);
}
this.drawToolbox_setUseBtn = function (ctx, x, y, r, h, style, lineWidth) {
core.setTextAlign(ctx, "left");
core.setTextBaseline(ctx, "top");
var fontSize = h - 4;
var font = core.ui._buildFont(fontSize);
var text = core.status.event.id == "toolbox" ? "使用" : "装备";
if (core.status.thisUIEventInfo.select.action == "unload") text = "卸下";
var w = core.calWidth(ctx, text, font) + 2 * r + lineWidth / 2;
core.strokeRoundRect(ctx, x, y, w, h, r, style, lineWidth);
core.fillText(ctx, text, x + r, y + lineWidth / 2 + 2, style, font);
var todo = function () {
core.useSelectItemInBox();
}
core.addUIEventListener(x, y, w, h, todo);
}
this.drawItemListbox_setPageBtn = function (ctx, left, right, bottom, r, style, lineWidth) {
var offset = lineWidth / 2 + r;
var x = left + offset;
var y = bottom - offset;
var pos = Math.sqrt(2) / 2 * (r - lineWidth / 2);
core.fillPolygon(ctx, [
[x - pos, y],
[x + pos - 2, y - pos],
[x + pos - 2, y + pos]
], style);
core.strokeCircle(ctx, x, y, r, style, lineWidth);
var todo = function () {
core.addItemListboxPage(-1);
}
core.addUIEventListener(x - r - 2, y - r - 2, r * 2 + 4, r * 2 + 4, todo);
x = right - offset;
core.fillPolygon(ctx, [
[x + pos, y],
[x - pos + 2, y - pos],
[x - pos + 2, y + pos]
], style);
core.strokeCircle(ctx, x, y, r, style, lineWidth);
var todo = function () {
core.addItemListboxPage(1);
}
core.addUIEventListener(x - r - 2, y - r - 2, r * 2 + 4, r * 2 + 4, todo);
}
this.clickItemFunc = function (id) {
var info = core.status.thisUIEventInfo;
if (!info) return;
if (info.select.id == id) return core.useSelectItemInBox();
info.select = {};
info.select.id = id;
core.setIndexAndSelect('index');
core.refreshBox();
}
this.clickOneEquipbox = function (id, type) {
var info = core.status.thisUIEventInfo;
if (!info) return;
if (info.select.id == id && info.select.type == type) core.useSelectItemInBox();
else core.status.thisUIEventInfo.select = {
id: id,
type: type,
action: "unload"
}
return core.refreshBox();
}
core.ui.getToolboxItems = function (cls) {
var list = Object.keys(core.status.hero.items[cls] || {});
if (cls == "all") {
for (var name in core.status.hero.items) {
if (name == "equips") continue;
list = list.concat(Object.keys(core.status.hero.items[name]));
}
return list.filter(function (id) {
return !core.material.items[id].hideInToolbox;
}).sort();
}
if (this.uidata.getToolboxItems) {
return this.uidata.getToolboxItems(cls);
}
return list.filter(function (id) {
return !core.material.items[id].hideInToolbox;
}).sort();
}
this.useSelectItemInBox = function () {
var info = core.status.thisUIEventInfo;
if (!info) return;
if (!info.select.id) return;
var id = info.select.id;
if (core.status.event.id == "toolbox") {
core.events.tryUseItem(id);
// core.closePanel();
} else if (core.status.event.id == "equipbox") {
var action = info.select.action || "load";
info.index = 1;
if (action == "load") {
var type = core.getEquipTypeById(id);
core.loadEquip(id, function () {
core.status.route.push("equip:" + id);
info.select.type = type;
core.setIndexAndSelect("select");
core.drawEquipbox();
});
} else {
var type = info.select.type;
core.unloadEquip(type, function () {
core.status.route.push("unEquip:" + type);
info.select.type = type;
//info.select.action = 'load'
core.setIndexAndSelect("select");
core.drawEquipbox();
});
}
}
}
this.setIndexAndSelect = function (toChange) {
var info = core.status.thisUIEventInfo;
if (!info) return;
core.setPageItems(info.page);
var index = info.index || 1;
var items = info.pageItems;
if (info.select.type != null) {
var type = info.select.type;
id = core.getEquip(type);
info.index = null;
info.select = {
id: id,
action: "unload",
type: type
};
return;
} else {
info.select.action = null;
info.select.type = null;
if (toChange == "index") info.index = items.indexOf(info.select.id) + 1;
info.select.id = items[info.index - 1];
}
}
this.addItemListboxPage = function (num) {
var info = core.status.thisUIEventInfo;
if (!info) return;
var maxPage = info.maxPage || 1;
info.page = info.page || 1;
info.page += num;
if (info.page <= 0) info.page = maxPage;
if (info.page > maxPage) info.page = 1;
info.index = 1;
core.setPageItems(info.page);
core.setIndexAndSelect("select");
core.refreshBox();
}
this.addItemListboxIndex = function (num) {
var info = core.status.thisUIEventInfo;
if (!info) return;
var maxItem = info.maxItem || 0;
info.index = info.index || 0;
info.index += num;
if (info.index <= 0) info.index = 1;
if (info.index > maxItem) info.index = maxItem;
core.setIndexAndSelect("select");
core.refreshBox();
}
this.addEquipboxType = function (num) {
var info = core.status.thisUIEventInfo;
var type = info.select.type;
if (type == null && num > 0) info.select.type = 0;
else info.select.type = type + num;
var max = core.status.globalAttribute.equipName.length;
if (info.select.type >= max) {
info.select = {};
core.setIndexAndSelect("select")
return core.addItemListboxPage(0);
} else {
var m = Math.abs(info.select.type);
if (info.select.type < 0) info.select.type = max - m;
core.setIndexAndSelect("select")
core.refreshBox();
return;
}
}
core.actions._keyDownToolbox = function (keycode) {
if (!core.status.thisEventClickArea) return;
if (keycode == 37) { // left
core.addItemListboxPage(-1);
return;
}
if (keycode == 38) { // up
core.addItemListboxIndex(-1);
return;
}
if (keycode == 39) { // right
core.addItemListboxPage(1);
return;
}
if (keycode == 40) { // down
core.addItemListboxIndex(1);
return;
}
}
////// 工具栏界面时,放开某个键的操作 //////
core.actions._keyUpToolbox = function (keycode) {
if (keycode == 81) {
core.ui.closePanel();
if (core.isReplaying())
core.control._replay_equipbox();
else
core.openEquipbox();
return;
}
if (keycode == 84 || keycode == 27 || keycode == 88) {
core.closePanel();
return;
}
if (keycode == 13 || keycode == 32 || keycode == 67) {
var info = core.status.thisUIEventInfo;
if (info.select) {
core.useSelectItemInBox();
}
return;
}
}
core.actions._keyDownEquipbox = function (keycode) {
if (!core.status.thisEventClickArea) return;
if (keycode == 37) { // left
var info = core.status.thisUIEventInfo;
if (info.index != null) return core.addItemListboxPage(-1);
return core.addEquipboxType(-1);
}
if (keycode == 38) { // up
var info = core.status.thisUIEventInfo;
if (info.index == 1) {
info.select.type = core.status.globalAttribute.equipName.length - 1;
core.setIndexAndSelect();
return core.refreshBox();
}
if (info.index) return core.addItemListboxIndex(-1);
return core.addEquipboxType(-1 * info.equips);
}
if (keycode == 39) { // right
var info = core.status.thisUIEventInfo;
if (info.index != null) return core.addItemListboxPage(1);
return core.addEquipboxType(1);
}
if (keycode == 40) { // down
var info = core.status.thisUIEventInfo;
if (info.index) return core.addItemListboxIndex(1);
return core.addEquipboxType(info.equips);
}
}
core.actions._keyUpEquipbox = function (keycode, altKey) {
if (altKey && keycode >= 48 && keycode <= 57) {
core.items.quickSaveEquip(keycode - 48);
return;
}
if (keycode == 84) {
core.ui.closePanel();
if (core.isReplaying())
core.control._replay_toolbox();
else
core.openToolbox();
return;
}
if (keycode == 81 || keycode == 27 || keycode == 88) {
core.closePanel();
return;
}
if (keycode == 13 || keycode == 32 || keycode == 67) {
var info = core.status.thisUIEventInfo;
if (info.select) core.useSelectItemInBox();
return;
}
}
core.registerAction("ondown", "inEventClickAction", function (x, y, px, py) {
if (!core.status.thisEventClickArea) return false;
// console.log(px + "," + py);
var info = core.status.thisEventClickArea;
for (var i = 0; i < info.length; i++) {
var obj = info[i];
if (px >= obj.x && px <= obj.x + obj.width && py > obj.y && py < obj.y + obj.height) {
if (obj.todo) obj.todo();
break;
}
}
return true;
}, 51);
core.registerAction("onclick", "stopClick", function () {
if (core.status.thisEventClickArea) return true;
}, 51);
this.addUIEventListener = function (x, y, width, height, todo) {
if (!core.status.thisEventClickArea) return;
var obj = {
x: x,
y: y,
width: width,
height: height,
todo: todo
}
core.status.thisEventClickArea.push(obj);
}
this.initThisEventInfo = function () {
core.status.thisUIEventInfo = {
page: 1,
select: {}
};
core.status.thisEventClickArea = [];
}
this.refreshBox = function () {
if (!core.status.event.id) return;
if (core.status.event.id == "toolbox") core.drawToolbox();
else core.drawEquipbox();
}
core.ui.closePanel = function () {
if (core.status.hero && core.status.hero.flags) {
// 清除全部临时变量
Object.keys(core.status.hero.flags).forEach(function (name) {
if (name.startsWith("@temp@") || /^arg\d+$/.test(name)) {
delete core.status.hero.flags[name];
}
});
}
this.clearUI();
core.maps.generateGroundPattern();
core.updateStatusBar(true);
core.unlockControl();
core.status.event.data = null;
core.status.event.id = null;
core.status.event.selection = null;
core.status.event.ui = null;
core.status.event.interval = null;
core.status.thisUIEventInfo = null;
core.status.thisEventClickArea = null
}
this.getItemClsName = function (item) {
if (item == null) return itemClsName;
if (item.cls == "equips") {
if (typeof item.equip.type == "string") return item.equip.type;
var type = core.getEquipTypeById(item.id);
return core.status.globalAttribute.equipName[type];
} else return itemClsName[item.cls] || item.cls;
}
core.events.openToolbox = function (fromUserAction) {
if (core.isReplaying()) return;
if (!this._checkStatus('toolbox', fromUserAction)) return;
core.initThisEventInfo();
let info = core.status.thisUIEventInfo
info.index = 1
core.setIndexAndSelect('select')
core.drawToolbox();
}
core.events.openEquipbox = function (fromUserAction) {
if (core.isReplaying()) return;
if (!this._checkStatus('equipbox', fromUserAction)) return;
core.initThisEventInfo();
let info = core.status.thisUIEventInfo
info.select.type = 0
core.setIndexAndSelect('select')
core.drawEquipbox();
}
core.control._replay_toolbox = function () {
if (!core.isPlaying() || !core.isReplaying()) return;
if (!core.status.replay.pausing) return core.drawTip("请先暂停录像");
if (core.isMoving() || core.status.replay.animate || core.status.event.id)
return core.drawTip("请等待当前事件的处理结束");
core.lockControl();
core.status.event.id = 'toolbox';
core.drawToolbox();
}
core.control._replay_equipbox = function () {
if (!core.isPlaying() || !core.isReplaying()) return;
if (!core.status.replay.pausing) return core.drawTip("请先暂停录像");
if (core.isMoving() || core.status.replay.animate || core.status.event.id)
return core.drawTip("请等待当前事件的处理结束");
core.lockControl();
core.status.event.id = 'equipbox';
core.drawEquipbox();
}
core.control._replayAction_item = function (action) {
if (action.indexOf("item:") != 0) return false;
var itemId = action.substring(5);
if (!core.canUseItem(itemId)) return false;
if (core.material.items[itemId].hideInReplay || core.status.replay.speed == 24) {
core.useItem(itemId, false, core.replay);
return true;
}
core.status.event.id = "toolbox";
core.initThisEventInfo();
var info = core.status.thisUIEventInfo;
var items = core.getToolboxItems("all");
core.setPageItems(1);
var index = items.indexOf(itemId) + 1;
info.page = Math.ceil(index / info.maxItem);
info.index = index % info.maxItem || info.maxItem;
core.setIndexAndSelect("select");
core.setPageItems(info.page);
core.drawToolbox();
setTimeout(function () {
core.ui.closePanel();
core.useItem(itemId, false, core.replay);
}, core.control.__replay_getTimeout());
return true;
}
core.control._replayAction_equip = function (action) {
if (action.indexOf("equip:") != 0) return false;
var itemId = action.substring(6);
var items = core.getToolboxItems('equips');
var index = items.indexOf(itemId) + 1;
if (index < 1) return false;
core.status.route.push(action);
if (core.material.items[itemId].hideInReplay || core.status.replay.speed == 24) {
core.loadEquip(itemId, core.replay);
return true;
}
core.status.event.id = "equipbox";
core.initThisEventInfo();
var info = core.status.thisUIEventInfo;
core.setPageItems(1);
info.page = Math.ceil(index / info.maxItem);
info.index = index % info.maxItem || info.maxItem;
core.setIndexAndSelect("select");
core.setPageItems(info.page);
core.drawEquipbox();
setTimeout(function () {
core.ui.closePanel();
core.loadEquip(itemId, core.replay);
}, core.control.__replay_getTimeout());
return true;
}
core.control._replayAction_unEquip = function (action) {
if (action.indexOf("unEquip:") != 0) return false;
var equipType = parseInt(action.substring(8));
if (!core.isset(equipType)) return false;
core.status.route.push(action);
if (core.status.replay.speed == 24) {
core.unloadEquip(equipType, core.replay);
return true;
}
core.status.event.id = "equipbox";
core.initThisEventInfo();
var info = core.status.thisUIEventInfo;
core.setPageItems(1);
info.select.type = equipType;
core.setIndexAndSelect();
core.drawEquipbox();
setTimeout(function () {
core.ui.closePanel();
core.unloadEquip(equipType, core.replay);
}, core.control.__replay_getTimeout());
return true;
}
core.registerReplayAction("item", core.control._replayAction_item);
core.registerReplayAction("equip", core.control._replayAction_equip);
core.registerReplayAction("unEquip", core.control._replayAction_unEquip);
},
"技能树": function () {
// 在此增加新插件
//
// 已学习的技能等级 flags._hasSkill_
//打开技能树 core.myskilltree()
//不需要自动连线可以在 core.myskilltree_draw_line开头取消return的注释
core.AllStatus = function () { //////在这个函数填写技能列表
var Skill_1 = {
'召唤之书': {
name: '召唤之书',
text: '每种召唤物至多存在一只,当存在召唤物时,伤害以花花、灰太狼、牛牛、蝴蝶、兔兔、勇士顺序进行结算,直到当前序列召唤物死亡前,下一序列不受伤。吸血、反伤、固伤等特殊属性直接作用于勇士',
image: 'I393',
maxLv: 1,
pos: [5, 7],
need: null,
exp: 0
},
'冥想': {
name: '冥想',
text: '默认主动技能战斗后恢复技能等级的MP',
image: 'I395',
maxLv: 5,
pos: [5, 11],
need: null,
exp: 20 + 30 * flags._hasSkill_['冥想'] //基础+每个等级需求提升
},
'召唤回收': {
name: '召唤回收',
text: '献祭召唤物回复20MP召唤物离场会导致对应图腾失效(涅槃图腾除外)',
image: 'I405',
maxLv: 1,
pos: [5, 5],
need: [{ '召唤之书': 1 }],
exp: 100
},
'蝴蝶': {
name: '蝴蝶',
text: '40MP召唤50+30*Lv生命的蝴蝶在场时提升0.5*LV点战后回蓝效果向上取整并提升Lv点经验获取',
image: 'I388',
maxLv: 5,
pos: [7, 9],
need: [{ '召唤之书': 1 }],
exp: 50 * flags._hasSkill_['蝴蝶']
},
'兔兔': {
name: '兔兔',
text: '40MP召唤50+30*Lv生命的兔兔在场时提勇士10%*LV金币获取',
image: 'I389',
maxLv: 5,
pos: [9, 9],
need: [{ '召唤之书': 1 }],
exp: 50 * flags._hasSkill_['兔兔']
},
'狼狼': {
name: '狼狼',
text: '40MP召唤30+50*LV生命的灰太狼在场时提升勇士2+4*LV点攻击',
image: 'I390',
maxLv: 5,
pos: [3, 9],
need: [{ '召唤之书': 1 }],
exp: 50 * flags._hasSkill_['狼狼']
},
'牛牛': {
name: '牛牛',
text: '40MP召唤50+40*LV生命的牛牛在场时提升勇士3%+5%*Lv伤害增幅',
image: 'I391',
maxLv: 5,
pos: [5, 9],
need: [{ '召唤之书': 1 }],
exp: 50 * flags._hasSkill_['牛牛']
},
'花花': {
name: '花花',
text: '40MP召唤50+100*LV生命上限、具有同等生命的花花战后回复15%已损失生命值',
image: 'I392',
maxLv: 5,
pos: [1, 9],
need: [{ '召唤之书': 1 }],
exp: 50 * flags._hasSkill_['花花']
}
}
var Skill_2 = {
'图腾之书': {
name: '图腾之书',
text: '学习后各图腾提升为1级获得图腾之书所有图腾共享20次公共战斗冷却',
image: 'I394',
maxLv: 1,
pos: [1, 7],
need: null,
exp: 200
},
'再生': {
name: '再生',
text: '召唤兽:花花在场时可使用生命恢复提升10%*LV召唤兽:花花离场后移除',
image: 'I392',
maxLv: 5,
pos: [1, 5],
need: [{ '图腾之书': 1 }],
exp: 50 * flags._hasSkill_['再生']
},
'嗜血': {
name: '嗜血',
text: '召唤兽:灰太狼在场时可使用勇士获得3%*LV吸血召唤兽:灰太狼离场后移除',
image: 'I390',
maxLv: 5,
pos: [3, 5],
need: [{ '图腾之书': 1 }],
exp: 50 * flags._hasSkill_['嗜血']
},
'顽强': {
name: '顽强',
text: '召唤兽:牛牛在场时可使用除牛牛外所有召唤物战后增加5*Lv生命花花不可超过生命上限召唤兽:牛牛离场后移除',
image: 'I391',
maxLv: 5,
pos: [5, 5],
need: [{ '图腾之书': 1 }],
exp: 50 * flags._hasSkill_['顽强']
},
'涅槃': {
name: '涅槃',
text: '召唤兽:蝴蝶在场时可使用战斗时任意召唤兽死亡时触发召唤兽临时消失该召唤兽生命变更为50*LV并在战斗结束后重新召唤此技能触发后战斗结束后移除',
image: 'I388',
maxLv: 5,
pos: [7, 5],
need: [{ '图腾之书': 1 }],
exp: 50 * flags._hasSkill_['涅槃']
},
'贪婪': {
name: '贪婪',
text: '召唤兽:兔兔在场时可使用每次战斗后额外获得0.5*Lv点法力向上取整0和LV点金币召唤兽:兔兔离场后移除',
image: 'I389',
maxLv: 5,
pos: [9, 5],
need: [{ '图腾之书': 1 }],
exp: 50 * flags._hasSkill_['贪婪']
},
'攻击': {
name: '攻击',
text: '被动提升勇者2点攻击',
image: 'atk',
maxLv: null,
pos: [3, 9],
need: null,
exp: 20 + 5 * flags._hasSkill_['攻击']
},
'防御': {
name: '防御',
text: '被动提升勇者2点防御',
image: 'def',
maxLv: null,
pos: [5, 9],
need: null,
exp: 20 + 5 * flags._hasSkill_['防御']
},
'魔力上限': {
name: '魔力上限',
text: '被动提升勇者10点MP上限',
image: 'mana',
maxLv: null,
pos: [7, 9],
need: null,
exp: 30 + 10 * flags._hasSkill_['魔力上限']
},
'火球': {
name: '火球',
text: '消耗8MP第一回合不进行普通攻击改为发出一枚100%+LV*20%攻击伤害的火球',
image: 'I397',
maxLv: 5,
pos: [3, 11],
need: null,
exp: 30 * flags._hasSkill_['火球']
},
'嘲讽': {
name: '嘲讽',
text: '消耗10MP本次强制怪物以勇士为目标同时勇士获得5%*LV减伤',
image: 'I399',
maxLv: 5,
pos: [5, 11],
need: null,
exp: 30 + 30 * flags._hasSkill_['嘲讽']
},
'治疗': {
name: '治疗',
text: '消耗10点MP战斗时勇者第一回合改为为自己施加100%+20%*lv防御数值的治疗术',
image: 'I396',
maxLv: 5,
pos: [7, 11],
need: null,
exp: 20 + 20 * flags._hasSkill_['治疗']
}
}
var AllSkill = [Skill_1, Skill_2]; ///////////把每页技能数组id填入这里比如三页技能要加上Skill3
return AllSkill
}
core.myskilltree = function () { //进入
if (!flags._hasSkill_)
flags._hasSkill_ = {};
core.clearUI();
core.status.holdingKeys = [];
core.lockControl();
core.status.event.page = 0
core.status.event.data = 0;
let Skill = core.AllStatus()[core.status.event.page]
core.status.event.pos = Object.values(Skill)[0].pos;
//初始坐标
core.status.event.id = 'myskilltree';
core.myskilltree_draw(); ///重绘页面
}
core.quit_myskilltree = function () {
core.clearUI();
core.status.event.id = null;
core.unlockControl();
if (core.isReplaying())
core.replay();
}
core.myskilltree_add = function () { //加点
let Skill = core.AllStatus()[core.status.event.page]
var Index = core.status.event.data;
var id = Object.keys(Skill)[Index]
var data = Object.values(Skill)[Index];
let ness
if (data.need) {
if (Array.isArray(data.need)) { //多前置
for (var need of data.need) {
var need_name = Object.keys(need);
//if (!Object.keys(flags._hasSkill_).includes(need))
if (!flags._hasSkill_[need_name] || flags._hasSkill_[need_name] < need[need_name]) {
ness = true
}
}
} else { //单前置
if (!Object.keys(flags._hasSkill_).includes(data.need)) {
ness = true
}
}
}
if (ness) {
core.drawTip(id + ' 未习得前置')
} else if (hero.exp < data.exp) {
core.drawTip(id + ' 经验值不足')
} else if (flags._hasSkill_[id] === data.maxLv) {
core.drawTip(id + ' 技能已满级')
} else { ///学习成功
flags._hasSkill_[id] = flags._hasSkill_[id] + 1 || 1;
hero.exp -= data.exp;
core.myskilltree_get(id);
core.status.route.push('skill:' + Index + ':' + data.pos[0] + ':' + data.pos[1] + ':' + core.status.event.page)
}
core.myskilltree_draw(); ///重绘页面
}
core.myskilltree_get = function (id) { ////技能升级效果
switch (id) {
case "图腾之书":
flags._hasSkill_["再生"] = 1
flags._hasSkill_["嗜血"] = 1
flags._hasSkill_["顽强"] = 1
flags._hasSkill_["涅槃"] = 1
flags._hasSkill_["贪婪"] = 1
core.getItem("I394")
break;
case "攻击":
core.status.hero.atk += 2
break;
case "防御":
core.status.hero.def += 2
break;
case "魔力上限":
core.status.hero.manamax += 10
break;
case "嘲讽":
core.getItem("I399")
break;
case "治疗":
core.getItem("I396")
break;
}
}
core.myskilltree_draw = function () { //绘制 总
core.clearMap('ui')
let Skill = core.AllStatus()[core.status.event.page]
var Index = core.status.event.data;
///推荐在此处 drawImage 绘制背景图
core.setAlpha('ui', 0.8);
core.setFillStyle('ui', '#dddddd');
core.fillRect('ui', 0, 0, core.__PIXELS__, core.__PIXELS__, '#000000');
core.setAlpha('ui', 1);
let name = Object.keys(Skill)[Index];
let text = Object.values(Skill)[Index].text;
let exp = Object.values(Skill)[Index].exp;
core.myskilltree_draw_text(name, text, exp);
core.myskilltree_draw_tree();
core.setTextAlign('ui', 'right');
core.fillText('ui', '返回游戏', 342, 342, '#ffffff', ui.prototype._buildFont(15, true));
core.setTextAlign('ui', "center");
core.fillText('ui', '上页', 352 / 2 - 50, 342, '#ffffff', ui.prototype._buildFont(15, true));
core.fillText('ui', '下页', 352 / 2 + 50, 342, '#ffffff', ui.prototype._buildFont(15, true));
core.fillText('ui', (core.status.event.page + 1) + '/' + core.AllStatus().length, 352 / 2, 342, '#ffffff', ui.prototype._buildFont(15, true));
}
core.myskilltree_draw_tree = function () { //绘制 树
let x0 = 0,
y0 = -80; //相对坐标
let nx = 32,
ny = 32; //间隔
let Skill = core.AllStatus()[core.status.event.page]
for (var value of Object.values(Skill)) { //先绘制前置线条,否则会遮挡技能图标
let posx = value.pos[0];
let posy = value.pos[1];
//前置技能
if (value.need) {
if (Array.isArray(value.need)) { //多前置
for (var need of value.need) {
var need_name = Object.keys(need);
//if (!Object.keys(flags._hasSkill_).includes(need))
if (!flags._hasSkill_[need_name] || flags._hasSkill_[need_name] < need[need_name]) {
core.setFilter('ui', 'brightness(50%)grayscale(70%)');
core.setAlpha('ui', 0.7);
}
let need_x = Skill[need_name].pos[0];
let need_y = Skill[need_name].pos[1];
core.myskilltree_draw_line(x0 + posx * nx + 16, y0 + posy * ny + 16, x0 + posx * nx + 16, y0 + need_y * ny + 16, 1) //y
core.myskilltree_draw_line(x0 + posx * nx + 16, y0 + need_y * ny + 16, x0 + need_x * nx + 16, y0 + need_y * ny + 16, 2) //x
}
} else { //单前置
if (!Object.keys(flags._hasSkill_).includes(value.need)) {
core.setFilter('ui', 'brightness(50%)grayscale(70%)');
core.setAlpha('ui', 0.7);
}
let need_x = Skill[value.need].pos[0];
let need_y = Skill[value.need].pos[1];
core.myskilltree_draw_line(x0 + posx * nx + 16, y0 + posy * ny + 16, x0 + posx * nx + 16, y0 + need_y * ny + 16, 1) //y
core.myskilltree_draw_line(x0 + posx * nx + 16, y0 + need_y * ny + 16, x0 + need_x * nx + 16, y0 + need_y * ny + 16, 2) //x
}
}
core.setFilter('ui', '');
core.setAlpha('ui', 1);
}
core.setTextAlign('ui', 'center');
let Ex = core.status.event.pos[0];
let Ey = core.status.event.pos[1];
//技能图标
for (var value of Object.values(Skill)) {
let posx = value.pos[0];
let posy = value.pos[1];
let image = value.image;
let boxx = x0 + posx * nx;
let boxy = y0 + posy * ny;
let name = value.name;
let lv = flags._hasSkill_[name] || 0;
//图标
core.myskilltree_draw_box(boxx, boxy, image);
//未学习前置的技能 黑色滤镜
let ness
if (value.need) {
if (Array.isArray(value.need)) { //多前置
for (var need of value.need) {
var need_name = Object.keys(need);
// if (!Object.keys(flags._hasSkill_).includes(need))
if (!flags._hasSkill_[need_name] || flags._hasSkill_[need_name] < need[need_name]) {
core.setFilter('ui', 'brightness(0%)');
core.setAlpha('ui', 0.7);
ness = true
}
}
} else { //单前置
if (!Object.keys(flags._hasSkill_).includes(value.need)) {
core.setFilter('ui', 'brightness(0%)');
core.setAlpha('ui', 0.7);
ness = true
}
}
}
//未学习的技能 灰色滤镜
if (!ness && !flags._hasSkill_[name]) {
core.setFilter('ui', 'brightness(50%)grayscale(70%)');
core.setAlpha('ui', 0.7);
}
core.drawIcon('ui', image, boxx, boxy, 32, 32);
//core.drawImage('ui', image, 0, 0, 32, 32, boxx, boxy, 32, 32);
core.setFilter('ui', '');
core.setAlpha('ui', 1);
if (Ex === posx && Ey === posy)
core.strokeRoundRect('ui', boxx - 2, boxy - 2, 36, 36, 4, '#ffff80', 2)
core.setAlpha('ui', 0.6);
core.fillRoundRect('ui', boxx, boxy + 16 + 8, 32, 16, 4, '#000000');
core.setAlpha('ui', 1);
core.fillText('ui', lv + (value.maxLv == null ? '' : ('/' + value.maxLv)), boxx + 16, boxy + 16 + 8 + 15, (lv === value.maxLv) ? '#ffff80' : '#ffffff', ui.prototype._buildFont(15, true));
}
}
core.myskilltree_draw_text = function (name, text, exp) { // 绘制 说明文本
let x0 = 0,
y0 = 50; //相对坐标
core.setTextAlign('ui', 'left');
core.fillText('ui', name, x0 + 10, y0 - 20, '#ffffff', ui.prototype._buildFont(22, true));
core.fillText('ui', '升级经验:' + exp + '/' + hero.exp, x0 + 200, y0 - 20, '#ffffff', ui.prototype._buildFont(15, true));
var height = null;
var max_height = 110;
if (text) {
for (var fontSize = 17; fontSize >= 9; fontSize -= 2) {
var config = { left: x0 + 10, top: y0 - 12, fontSize: 12, maxWidth: 352 - 20, bold: true, color: "#E1E1E1" };
height = 42 + core.getTextContentHeight(text, config);
if (height < max_height || fontSize == 9) {
core.drawTextContent('ui', text, config);
break;
}
}
}
}
core.myskilltree_draw_box = function (x, y, image) { //盒子包装
let col = '#dddddd'
core.fillRoundRect('ui', x, y, 32, 32, 4, col);
core.strokeRoundRect('ui', x - 2, y - 2, 36, 36, 4, col, 1)
}
core.myskilltree_draw_line = function (x1, y1, x2, y2, type) { //线 包装
//return;
let col = '#dddddd'
if (type === 1) {
core.drawLine('ui', x1 - 4, y1, x2 - 4, y2, col, 1);
core.drawLine('ui', x1 + 4, y1, x2 + 4, y2, col, 1);
core.drawLine('ui', x1, y1, x2, y2, col, 4);
} else if (type === 2) {
core.drawLine('ui', x1, y1 - 4, x2, y2 - 4, col, 1);
core.drawLine('ui', x1, y1 + 4, x2, y2 + 4, col, 1);
core.drawLine('ui', x1, y1, x2, y2, col, 4);
}
}
core.myChooseOnKey = function (dir) { //计算方向键应选择的坐标
let Skill = core.AllStatus()[core.status.event.page]
let x = core.status.event.pos[0];
let y = core.status.event.pos[1];
var temp = [];
var temp2 = [];
for (var i in Object.values(Skill)) {
let posx = Object.values(Skill)[i].pos[0];
let posy = Object.values(Skill)[i].pos[1];
let Index = Number(i);
let ok = ((dir === 'up' && posy < y) || (dir === 'down' && posy > y) || (dir === 'left' && posx < x) || (dir === 'right' && posx > x));
let ok2 = (((dir === 'up' || dir === 'down') && x === posx) || ((dir === 'left' || dir === 'right') && y === posy));
if (ok)
temp.push([posx, posy, Index]);
if (ok && ok2)
temp2.push([posx, posy, Index]);
}
if (temp2[0]) {
if (temp2.length === 1) {
return temp2[0]
} else {
let R = 999;
let rx, ry, ri;
for (var value of temp2) {
let posx = value[0];
let posy = value[1];
let Index = value[2];
let r = Math.abs(posx - x + posy - y);
if (r < R) {
R = r;
rx = posx;
ry = posy;
ri = Index
}
}
return [rx, ry, ri];
}
} else if (temp.length === 1) {
return temp[0]
} else {
let R = 9999;
let rx, ry, ri;
for (var value of temp) {
let posx = value[0];
let posy = value[1];
let Index = value[2];
let r = Math.pow(posx - x, 2) + Math.pow(posy - y, 2)
if (r < R) {
R = r;
rx = posx;
ry = posy;
ri = Index
}
}
if (rx && ry)
return [rx, ry, ri];
}
}
this.myskilltree_keyDown = function (keycode) {
if (core.status.event.id !== 'myskilltree') return false;
let Skill = core.AllStatus()[core.status.event.page]
let temp
if (keycode === 37 && !core.myChooseOnKey('left') && core.status.event.page > 0) {
core.status.event.page = core.status.event.page - 1
core.status.event.data = 0;
Skill = core.AllStatus()[core.status.event.page]
core.status.event.pos = Object.values(Skill)[0].pos;
} else if (keycode === 39 && !core.myChooseOnKey('right') && core.status.event.page < core.AllStatus().length - 1) {
core.status.event.page = core.status.event.page + 1
core.status.event.data = 0;
Skill = core.AllStatus()[core.status.event.page]
core.status.event.pos = Object.values(Skill)[0].pos;
} else if (keycode === 38 && core.myChooseOnKey('up')) {
temp = core.myChooseOnKey('up')
} else if (keycode === 40 && core.myChooseOnKey('down')) {
temp = core.myChooseOnKey('down')
} else if (keycode === 37 && core.myChooseOnKey('left')) {
temp = core.myChooseOnKey('left')
} else if (keycode === 39 && core.myChooseOnKey('right')) {
temp = core.myChooseOnKey('right')
}
if (temp) {
core.status.event.pos[0] = temp[0];
core.status.event.pos[1] = temp[1];
core.status.event.data = temp[2];
}
if (keycode === 32 || keycode === 13 || keycode === 67)
core.myskilltree_add();
core.myskilltree_draw(); ///重绘页面
return true;
}
core.registerAction('keyDown', 'myskilltree', 'myskilltree_keyDown', 100);
var myskilltree = function (keycode) {
if (core.status.event.id !== 'myskilltree') return false;
if (keycode == 88 || keycode == 70 || keycode == 27) { ////x、q和Esc退出
core.quit_myskilltree();
}
return true; ///全部拦截
};
core.registerAction('keyUp', 'myskilltree', myskilltree, 100);
this.myskilltree_onmove = function (x, y, px, py) {
if (core.status.event.id !== 'myskilltree') return false;
//if (core.domStyle.isVertical) return false
let x0 = 0,
y0 = -80; //相对坐标
let nx = 32,
ny = 32; //间隔
if (py >= 65 && py <= 320) {
let Skill = core.AllStatus()[core.status.event.page]
for (var i in Object.values(Skill)) {
let posx = Object.values(Skill)[i].pos[0];
let posy = Object.values(Skill)[i].pos[1];
let boxx = x0 + posx * nx;
let boxy = y0 + posy * ny;
if (px >= boxx && px <= boxx + 32 && py >= boxy && py <= boxy + 32) {
if (core.status.event.data !== Number(i)) {
core.status.event.pos[0] = posx;
core.status.event.pos[1] = posy;
core.status.event.data = Number(i);
core.myskilltree_draw(); ///重绘页面
}
//core.status.event.mouse = Number(i)
//if(core.status.event.mouse)
}
}
}
return true;
}
core.registerAction('onmove', 'myskilltree', 'myskilltree_onmove', 100);
core.registerAction('onclick', 'myskilltree', function (x, y, px, py) {
if (core.status.event.id !== 'myskilltree') return false;
let x0 = 0,
y0 = -80; //相对坐标
let nx = 32,
ny = 32; //间隔
let Skill = core.AllStatus()[core.status.event.page]
//console.log(px + ',' + py);
if (py >= 65 && py <= 320) {
for (var i in Object.values(Skill)) {
let posx = Object.values(Skill)[i].pos[0];
let posy = Object.values(Skill)[i].pos[1];
let boxx = x0 + posx * nx;
let boxy = y0 + posy * ny;
if (px >= boxx && px <= boxx + 32 && py >= boxy && py <= boxy + 32) {
if (core.status.event.data === Number(i)) {
core.myskilltree_add();
} else if (core.status.event.data !== Number(i)) {
core.status.event.pos[0] = posx;
core.status.event.pos[1] = posy;
core.status.event.data = Number(i);
core.myskilltree_draw(); ///重绘页面
}
}
}
} else if (px >= 280 && py >= 320) {
core.quit_myskilltree();
} else if (px >= 90 && px <= 165 && py >= 320 && core.status.event.page > 0) {
core.status.event.page = core.status.event.page - 1
core.status.event.data = 0;
core.status.event.pos = Object.values(Skill)[0].pos;
core.myskilltree_draw(); ///重绘页面
} else if (px >= 190 && px <= 280 && py >= 320 && core.status.event.page < core.AllStatus().length - 1) {
core.status.event.page = core.status.event.page + 1
core.status.event.data = 0;
core.status.event.pos = Object.values(Skill)[0].pos;
core.myskilltree_draw(); ///重绘页面
}
return true;
}, 100);
control.prototype._replayAction_skill = function (action) {
if (action.indexOf("skill:") != 0) return false;
core.myskilltree();
var pos = action.substring(6).split(":");
core.status.event.data = Number(pos[0]);
core.status.event.pos[0] = Number(pos[1]);
core.status.event.pos[1] = Number(pos[2]);
core.status.event.page = Number(pos[3]);
core.myskilltree_add();
//core.myskilltree_draw();
core.replay();
if (core.status.replay.speed == 24) {
core.quit_myskilltree();
return true;
}
setTimeout(function () {
core.quit_myskilltree();
//core.ui.closePanel();
}, core.control.__replay_getTimeout());
return true;
}
core.registerReplayAction("skill", control.prototype._replayAction_skill);
},
"animate": function(){// -------------------- 插件说明 -------------------- //
// github仓库https://github.com/unanmed/animate
// npm包名mutate-animate
// npm地址https://www.npmjs.com/package/mutate-animate
// 不要去尝试读这个插件,这个插件是经过了打包的,不是人类可读的(
// 想读的话可以去github读
// 该插件是一个轻量型多功能动画插件,可以允许你使用内置或自定义的速率曲线或轨迹等
// 除此之外,你还可以自定义绘制函数,来让你的动画可视化
// -------------------- 安装说明 -------------------- //
// 直接复制到插件中即可注意所有插件中不能出现插件名为animate的插件
// 该插件分为动画和渐变两部分,教程分开,动画在前,渐变在后
// -------------------- 动画使用教程 -------------------- //
// 1. 首先创建一个异步函数
// async function ani() { }
// 2. 引入插件中的类和函数,引入内容要看个人需求,所有可用的函数在本插件末尾可以看到
// const { Animation, linear, bezier, circle, hyper, trigo, power, inverseTrigo, shake, sleep } = core.plugin.animate
// 3. 在函数内部创建一个动画
// const animate = new Animation();
// 4. 为动画创建一个绘制函数这里以绘制一个矩形为例当然也可以使用core.fillRect替代ctx.fillRect来绘制矩形
// const ctx = core.createCanvas('animate', 0, 0, 416, 416, 100);
// ctx.save();
// const fn = () => {
// ctx.restore();
// ctx.save();
// ctx.clearRect(0, 0, 800, 800);
// ctx.translate(animate.x, animate.y);
// ctx.rotate(animate.angle * Math.PI / 180);
// const size = animate.size;
// ctx.fillRect(-30 * size, -30 * size, 60 * size, 60 * size);
// }
// animate.ticker.add(fn);
// 5. 执行动画
// 下面先对一些概念进行解释
// 动画分为很多种内置的有move(移动至某一点) rotate(旋转) scale(放缩) moveAs(以指定路径移动) shake(震动)
// 对于不同的动画种类其所对应的属性也不同move moveAs shake均对应x和y这两个属性
// rotate对应anglescale对应size。你也可以自定义属性这个之后会提到
// 除了执行动画之外,这里还提供了三个等待函数,可以等待某个动画执行完毕,以及一个等待指定时长的函数
// 分别是animate.n(等待指定数量的动画执行完毕)
// animate.w(等待指定类型的动画执行完毕,也可以是自定义类型)
// animate.all(等待所有动画执行完毕)
// sleep(等待指定时长)
// 执行动画时,要求一个渐变函数,当然这个插件内置了非常丰富的渐变函数,也就是速率曲线。
// 线性渐变函数 linear(),该函数返回一个线性变化函数
// 三角渐变函数 trigo('sin' | 'sec', EaseMode),该函数返回一个指定属性的三角函数变化函数
// 其中EaseMode可以填'in' 'out' 'in-out' 'center'
// 分别表示 慢-快 快-慢 慢-快-慢 快-慢-快
// 幂函数渐变 power(n, EaseMode)该函数返回一个以x^n变化的函数n是指数
// 双曲渐变函数 hyper('sin' | 'tan' | 'sec', EaseMode),该函数返回一个双曲函数,分别是双曲正弦、双曲正切、双曲正割
// 反三角渐变函数 inverseTrigo('sin' | 'tan', EaseMode),该函数返回一个反三角函数
// 贝塞尔曲线渐变函数 bezier(...cps),参数为贝塞尔曲线的控制点纵坐标(横坐标不能自定义,毕竟一个时刻不能对应多个速率)
// 示例bezier(0.4, 0.2, 0.7); // 三个控制点的四次贝塞尔曲线渐变函数
// 了解完渐变函数以后,这里还有一个特殊的渐变函数-shake
// shake(power, timing),这个函数是一个震荡函数,会让一个值来回变化,实现震动的效果
// 其中power是震动的最大值timing是渐变函数描述了power在震动时大小的变化
// 下面,我们就可以进行动画的执行了,我们以 运动 + 旋转 + 放缩为例
// animate.mode(hyper('sin', 'out')) // 设置渐变函数为 双曲正弦 快 -> 慢,注意不能加分号
// .time(1000) // 设置动画的执行时间为1000毫秒
// .move(300, 300) // 移动至[300, 300]的位置
// .relative() // 设置相对模式为相对之前,与之前为相加的关系
// .mode(power(3, 'center')) // 设置为 x^3 快-慢-快 的渐变函数
// .time(3000)
// .rotate(720) // 旋转720度
// .absolute() // 设置相对模式为绝对
// .mode(trigo('sin', 'in')) // 设置渐变函数为 正弦 慢 -> 快
// .time(1500)
// .scale(3); // 放缩大小至3倍
// 这样,我们就把三种基础动画都执行了一遍,同时,这种写法非常直观,出现问题时也可以很快地找到问题所在
// 下面,我们需要等待动画执行完毕,因为同一种动画不可能同时执行两个
// await animate.n(1); // 等待任意一个动画执行完毕别把await忘了
// await animate.w('scale'); // 等待放缩动画执行完毕
// await animate.all(); // 等待所有动画执行完毕
// await sleep(1000); // 等待1000毫秒
// 下面,还有一个特殊的动画函数-moveAs
// 这是一个非常强大的函数,它允许你让你的物体按照指定路线运动
// 说到这,我们需要先了解一下运动函数。
// 该插件内置了两个运动函数,分别是圆形运动和贝塞尔曲线运动
// 圆形运动 circle(r, n, timing, inverse)r是圆的半径n是圈数timing描述半径大小的变化inverse说明了是否翻转timing函数后面三个可以不填
// 贝塞尔曲线 bezierPath(start, end, ...cps)
// 其中start和end是起点和结束点应当填入[x, y]数组cps是控制点也是[x, y]数组
// 示例bezierPath([0, 0], [200, 200], [100, 50], [300, 150], [200, 180]);
// 这是一个起点为 [0, 0],终点为[200, 200],有三个控制点的四次贝塞尔曲线
// 下面,我们就可以使用路径函数了
// animate.mode(hyper('sin', 'in-out')) // 设置渐变曲线
// .time(5000)
// .relative() // 设置为相对模式,这个比较必要,不然的话很可能出现瞬移
// .moveAs(circle(100, 5, linear())) // 创建一个5圈的半径从0至100逐渐变大的圆轨迹是个螺旋线并让物体沿着它运动
//
// 最后,还有一个震动函数 shake(x, y)x和y表示了在横向上和纵向上的震动幅度1表示为震动幅度的100%
// 示例:
// animate.mode(shake(5, hyper('sin', 'in')), true) // 这里第二个参数说明是震动函数
// .time(2000)
// .shake(1, 0.5)
// 这样,所有内置动画就已经介绍完毕
// 6. 自定义动画属性
// 本插件允许你自定义一个动画属性,但功能可能不会像自带的属性那么强大
// 你可以在创建动画之后使用animate.register(key, init)来注册一个自定义属性
// 其中key是自定义属性的名称init是自定义属性的初始值这个值应当在0-1之间变化
// 你可以通过animate.value[key]来获取你注册的自定义属性
// 对于自定义属性的动画你应当使用animate.apply(key, n, first)
// 其中key是你的自定义属性的名称n是其目标值first是一个布尔值说明了是否将该动画插入到目前所有的动画之前即每帧会优先执行该动画
// 下面是一个不透明度的示例
// animate.register('opacity', 1); // 这句话应该放到刚创建动画之后
// ctx.globalAlpha = animate.value.opacity; // 这句话应当放到每帧绘制的函数里面,放在绘制之前
// animate.mode(bezier(0.9, 0.1, 0.05)) // 设置渐变函数
// .time(2000)
// .absolute()
// .apply('opacity', 0.3); // 将不透明度按照渐变曲线更改为0.3
// 7. 运行动画
// 还记得刚开始定义的async function 吗,直接调用它就能执行动画了!
// 示例ani(); // 执行刚刚写的所有动画
// 8. 自定义速率曲线和路径
// 该插件中,速率曲线和路径均可自定义
// 对于速率曲线,其类型为 (input: number) => number
// 它接受一个范围在 0-1 的值,输出一个 0-1 的值表示了动画的完成度1表示动画已完成0表示动画刚开始当前大于1小于0也不会报错也会执行相应的动画
// 对于路径,其类型为 (input: number) => [number, number]
// 它与速率曲线类似,接收一个 0-1 的值,输出一个坐标数组
// 9. 多个属性绑定
// 该插件中你可以绑定多个动画属性你可以使用ani.bind(...attr)来绑定。
// 绑定之后这三个动画属性可以被一个返回了长度为3的数组的渐变函数执行。
// 绑定使用ani.bind设置渐变函数仍然使用ani.mode注意它与单个动画属性是分开的也就是它不会影响正常的渐变函数。
// 然后使用ani.applyMulti即可执行动画
// 例如:
// // 自定义的一个三属性渐变函数
// function b(input) {
// return [input * 100, input ** 2 * 100, input ** 3 * 100];
// }
// ani.bind('a', 'b', 'c') // 这样会绑定abc这三个动画属性
// .mode(b) // 自定义的一个返回了长度为3的数组的函数
// .time(5000)
// .absolute()
// .applyMulti(); // 执行这个动画
// 9. 监听 动画的生命周期钩子
// 这个插件还允许你去监听动画的状态,可以监听动画的开始、结束、运行
// 你可以使用 animate.listen(type, fn)来监听fn的类型是 (a: Animation, type: string) => void
// 当然,一般情况下你不会用到这个功能,插件中已经帮你包装了三个等待函数,他们就是以这些监听为基础的
// 10. 自定义时间获取函数
// 你可以修改ani.getTime来修改动画的时间获取函数例如想让动画速度变成一半可以写ani.getTime = () => Date.now() / 2
// 这样可以允许你随意控制动画的运行速度,暂停,甚至是倒退。该值默认为`Date.now`
// -------------------- 渐变使用教程 -------------------- //
// 相比于动画,渐变属于一种较为简便的动画,它可以让你在设置一个属性后使属性缓慢变化值目标值而不是突变至目标值
// 现在假设你已经了解了动画的使用,下面我们来了解渐变。
// 1. 创建一个渐变实例
// 与动画类似你需要使用new来实例化一个渐变当然别忘了引入
// const { Transition } = core.plugin.animate;
// const tran = new Transition();
// 2. 绘制
// const ctx = core.createCanvas('transition', 0, 0, 416, 416, 100);
// ctx.save();
// const fn = () => {
// ctx.restore();
// ctx.save();
// ctx.clearRect(0, 0, 800, 800);
// ctx.beginPath();
// ctx.arc(tran.value.x, tran.value.y, 50, 0, Math.PI * 2); // 使用tran.value.xxx获取当前的属性
// ctx.fill();
// // 当然也可以用样板的api例如core.fillCircle();等
// }
// animate.ticker.add(fn);
// 3. 设置渐变
// 同样与动画类似你可以使用tran.time()设置渐变时间使用tran.mode()设置渐变函数使用tran.absolute()和tran.relative()设置相对模式
// 例如:
// tran.time(1000)
// .mode(hyper('sin', 'out'))
// .absolute();
// 4. 初始化渐变属性
// 与动画不同的是动画在执行一个自定义属性前都需要register而渐变不需要。
// 你可以通过tran.value.xxx = yyy来设置动画属性或使用tran.transition('xxx', yyy)来设置
// 你的首次赋值即是初始化了渐变属性,这时是不会执行渐变的,例如:
// tran.value.x = 200;
// tran.transition('y', 200);
// 上述例子便是将 x 和 y 初始化成了200
// 5. 执行渐变
// 初始化完成后,便可以直接执行渐变了,有两种方法
// tran.value.x = 400; // 将 x 缓慢移动至400
// tran.transition('y', 400); // 将 y 缓慢移动至400
// 6. 自定义时间获取函数
// 与动画类似你依然可以通过修改tran.getTime来修改时间获取函数
if (main.replayChecking) return core.plugin.animate = {};
var M = Object.defineProperty;
var E = (n, s, t) => s in n ? M(n, s, { enumerable: !0, configurable: !0, writable: !0, value: t }) : n[s] = t;
var o = (n, s, t) => (E(n, typeof s != "symbol" ? s + "" : s, t), t);
let b = [];
const k = (n) => {
for (const s of b)
if (s.status === "running")
try {
for (const t of s.funcs)
t(n - s.startTime);
} catch (t) {
s.destroy(), console.error(t);
}
requestAnimationFrame(k);
};
requestAnimationFrame(k);
class I {
constructor() {
o(this, "funcs", []);
o(this, "status", "stop");
o(this, "startTime", 0);
this.status = "running", b.push(this), requestAnimationFrame((s) => this.startTime = s);
}
add(s, t = !1) {
return t ? this.funcs.unshift(s) : this.funcs.push(s), this;
}
remove(s) {
const t = this.funcs.findIndex((e) => e === s);
if (t === -1)
throw new ReferenceError(
"You are going to remove nonexistent ticker function."
);
return this.funcs.splice(t, 1), this;
}
clear() {
this.funcs = [];
}
destroy() {
this.clear(), this.stop();
}
stop() {
this.status = "stop", b = b.filter((s) => s !== this);
}
}
class F {
constructor() {
o(this, "timing");
o(this, "relation", "absolute");
o(this, "easeTime", 0);
o(this, "applying", {});
o(this, "getTime", Date.now);
o(this, "ticker", new I());
o(this, "value", {});
o(this, "listener", {});
this.timing = (s) => s;
}
async all() {
if (Object.values(this.applying).every((s) => s === !0))
throw new ReferenceError("There is no animates to be waited.");
await new Promise((s) => {
const t = () => {
Object.values(this.applying).every((e) => e === !1) && (this.unlisten("end", t), s("all animated."));
};
this.listen("end", t);
});
}
async n(s) {
const t = Object.values(this.applying).filter((i) => i === !0).length;
if (t < s)
throw new ReferenceError(
`You are trying to wait ${s} animate, but there are only ${t} animate animating.`
);
let e = 0;
await new Promise((i) => {
const r = () => {
e++, e === s && (this.unlisten("end", r), i(`${s} animated.`));
};
this.listen("end", r);
});
}
async w(s) {
if (this.applying[s] === !1)
throw new ReferenceError(`The ${s} animate is not animating.`);
await new Promise((t) => {
const e = () => {
this.applying[s] === !1 && (this.unlisten("end", e), t(`${s} animated.`));
};
this.listen("end", e);
});
}
listen(s, t) {
var e, i;
(i = (e = this.listener)[s]) != null || (e[s] = []), this.listener[s].push(t);
}
unlisten(s, t) {
const e = this.listener[s].findIndex((i) => i === t);
if (e === -1)
throw new ReferenceError(
"You are trying to remove a nonexistent listener."
);
this.listener[s].splice(e, 1);
}
hook(...s) {
const t = Object.entries(this.listener).filter(
(e) => s.includes(e[0])
);
for (const [e, i] of t)
for (const r of i)
r(this, e);
}
}
function T(n) {
return n != null;
}
async function R(n) {
return new Promise((s) => setTimeout(s, n));
}
class Y extends F {
constructor() {
super();
o(this, "shakeTiming");
o(this, "path");
o(this, "multiTiming");
o(this, "value", {});
o(this, "size", 1);
o(this, "angle", 0);
o(this, "targetValue", {
system: {
move: [0, 0],
moveAs: [0, 0],
resize: 0,
rotate: 0,
shake: 0,
"@@bind": []
},
custom: {}
});
o(this, "animateFn", {
system: {
move: [() => 0, () => 0],
moveAs: () => 0,
resize: () => 0,
rotate: () => 0,
shake: () => 0,
"@@bind": () => 0
},
custom: {}
});
o(this, "ox", 0);
o(this, "oy", 0);
o(this, "sx", 0);
o(this, "sy", 0);
o(this, "bindInfo", []);
this.timing = (t) => t, this.shakeTiming = (t) => t, this.multiTiming = (t) => [t, t], this.path = (t) => [t, t], this.applying = {
move: !1,
scale: !1,
rotate: !1,
shake: !1
}, this.ticker.add(() => {
const { running: t } = this.listener;
if (T(t))
for (const e of t)
e(this, "running");
});
}
get x() {
return this.ox + this.sx;
}
get y() {
return this.oy + this.sy;
}
mode(t, e = !1) {
return typeof t(0) == "number" ? e ? this.shakeTiming = t : this.timing = t : this.multiTiming = t, this;
}
time(t) {
return this.easeTime = t, this;
}
relative() {
return this.relation = "relative", this;
}
absolute() {
return this.relation = "absolute", this;
}
bind(...t) {
return this.applying["@@bind"] === !0 && this.end(!1, "@@bind"), this.bindInfo = t, this;
}
unbind() {
return this.applying["@@bind"] === !0 && this.end(!1, "@@bind"), this.bindInfo = [], this;
}
move(t, e) {
return this.applying.move && this.end(!0, "move"), this.applySys("ox", t, "move"), this.applySys("oy", e, "move"), this;
}
rotate(t) {
return this.applySys("angle", t, "rotate"), this;
}
scale(t) {
return this.applySys("size", t, "resize"), this;
}
shake(t, e) {
this.applying.shake === !0 && this.end(!0, "shake"), this.applying.shake = !0;
const { easeTime: i, shakeTiming: r } = this, h = this.getTime();
if (this.hook("start", "shakestart"), i <= 0)
return this.end(!1, "shake"), this;
const l = () => {
const c = this.getTime() - h;
if (c > i) {
this.ticker.remove(l), this.applying.shake = !1, this.sx = 0, this.sy = 0, this.hook("end", "shakeend");
return;
}
const a = c / i,
m = r(a);
this.sx = m * t, this.sy = m * e;
};
return this.ticker.add(l), this.animateFn.system.shake = l, this;
}
moveAs(t) {
this.applying.moveAs && this.end(!0, "moveAs"), this.applying.moveAs = !0, this.path = t;
const { easeTime: e, relation: i, timing: r } = this, h = this.getTime(), [l, u] = [this.x, this.y], [c, a] = (() => {
if (i === "absolute")
return t(1); {
const [d, f] = t(1);
return [l + d, u + f];
}
})();
if (this.hook("start", "movestart"), e <= 0)
return this.end(!1, "moveAs"), this;
const m = () => {
const f = this.getTime() - h;
if (f > e) {
this.end(!0, "moveAs");
return;
}
const v = f / e,
[g, w] = t(r(v));
i === "absolute" ? (this.ox = g, this.oy = w) : (this.ox = l + g, this.oy = u + w);
};
return this.ticker.add(m, !0), this.animateFn.system.moveAs = m, this.targetValue.system.moveAs = [c, a], this;
}
register(t, e) {
if (typeof this.value[t] == "number")
return this.error(
`Property ${t} has been regietered twice.`,
"reregister"
);
this.value[t] = e, this.applying[t] = !1;
}
apply(t, e, i = !1) {
this.applying[t] === !0 && this.end(!1, t), t in this.value || this.error(
`You are trying to execute nonexistent property ${t}.`
), this.applying[t] = !0;
const r = this.value[t],
h = this.getTime(),
{ timing: l, relation: u, easeTime: c } = this,
a = u === "absolute" ? e - r : e;
if (this.hook("start"), c <= 0)
return this.end(!1, t), this;
const m = () => {
const f = this.getTime() - h;
if (f > c) {
this.end(!1, t);
return;
}
const v = f / c,
g = l(v);
this.value[t] = r + g * a;
};
return this.ticker.add(m, i), this.animateFn.custom[t] = m, this.targetValue.custom[t] = a + r, this;
}
applyMulti(t = !1) {
this.applying["@@bind"] === !0 && this.end(!1, "@@bind"), this.applying["@@bind"] = !0;
const e = this.bindInfo,
i = e.map((m) => this.value[m]),
r = this.getTime(),
{ multiTiming: h, relation: l, easeTime: u } = this,
c = h(1);
if (c.length !== i.length)
throw new TypeError(
`The number of binded animate attributes and timing function returns's length does not match. binded: ${e.length}, timing: ${c.length}`
);
if (this.hook("start"), u <= 0)
return this.end(!1, "@@bind"), this;
const a = () => {
const d = this.getTime() - r;
if (d > u) {
this.end(!1, "@@bind");
return;
}
const f = d / u,
v = h(f);
e.forEach((g, w) => {
l === "absolute" ? this.value[g] = v[w] : this.value[g] = i[w] + v[w];
});
};
return this.ticker.add(a, t), this.animateFn.custom["@@bind"] = a, this.targetValue.system["@@bind"] = c, this;
}
applySys(t, e, i) {
i !== "move" && this.applying[i] === !0 && this.end(!0, i), this.applying[i] = !0;
const r = this[t],
h = this.getTime(),
l = this.timing,
u = this.relation,
c = this.easeTime,
a = u === "absolute" ? e - r : e;
if (this.hook("start", `${i}start`), c <= 0)
return this.end(!1, i);
const m = () => {
const f = this.getTime() - h;
if (f > c) {
this.end(!0, i);
return;
}
const v = f / c,
g = l(v);
this[t] = r + a * g, t !== "oy" && this.hook(i);
};
this.ticker.add(m, !0), t === "ox" ? this.animateFn.system.move[0] = m : t === "oy" ? this.animateFn.system.move[1] = m : this.animateFn.system[i] = m, i === "move" ? (t === "ox" && (this.targetValue.system.move[0] = a + r), t === "oy" && (this.targetValue.system.move[1] = a + r)) : i !== "shake" && (this.targetValue.system[i] = a + r);
}
error(t, e) {
throw e === "repeat" ? new Error(
`Cannot execute the same animation twice. Info: ${t}`
) : e === "reregister" ? new Error(
`Cannot register an animated property twice. Info: ${t}`
) : new Error(t);
}
end(t, e) {
if (t === !0)
if (this.applying[e] = !1, e === "move" ? (this.ticker.remove(this.animateFn.system.move[0]), this.ticker.remove(this.animateFn.system.move[1])) : e === "moveAs" ? this.ticker.remove(this.animateFn.system.moveAs) : e === "@@bind" ? this.ticker.remove(this.animateFn.system["@@bind"]) : this.ticker.remove(
this.animateFn.system[e]
), e === "move") {
const [i, r] = this.targetValue.system.move;
this.ox = i, this.oy = r, this.hook("moveend", "end");
} else if (e === "moveAs") {
const [i, r] = this.targetValue.system.moveAs;
this.ox = i, this.oy = r, this.hook("moveend", "end");
} else
e === "rotate" ? (this.angle = this.targetValue.system.rotate, this.hook("rotateend", "end")) : e === "resize" ? (this.size = this.targetValue.system.resize, this.hook("resizeend", "end")) : e === "@@bind" ? this.bindInfo.forEach((r, h) => {
this.value[r] = this.targetValue.system["@@bind"][h];
}) : (this.sx = 0, this.sy = 0, this.hook("shakeend", "end"));
else
this.applying[e] = !1, this.ticker.remove(this.animateFn.custom[e]), this.value[e] = this.targetValue.custom[e], this.hook("end");
}
}
class j extends F {
constructor() {
super();
o(this, "now", {});
o(this, "target", {});
o(this, "transitionFn", {});
o(this, "value");
o(this, "handleSet", (t, e, i) => (this.transition(e, i), !0));
o(this, "handleGet", (t, e) => this.now[e]);
this.timing = (t) => t, this.value = new Proxy(this.target, {
set: this.handleSet,
get: this.handleGet
});
}
mode(t) {
return this.timing = t, this;
}
time(t) {
return this.easeTime = t, this;
}
relative() {
return this.relation = "relative", this;
}
absolute() {
return this.relation = "absolute", this;
}
transition(t, e) {
if (e === this.target[t])
return this;
if (!T(this.now[t]))
return this.now[t] = e, this;
this.applying[t] && this.end(t, !0), this.applying[t] = !0, this.hook("start");
const i = this.getTime(),
r = this.easeTime,
h = this.timing,
l = this.now[t],
u = e + (this.relation === "absolute" ? 0 : l),
c = u - l;
this.target[t] = u;
const a = () => {
const d = this.getTime() - i;
if (d >= r) {
this.end(t);
return;
}
const f = d / r;
this.now[t] = h(f) * c + l, this.hook("running");
};
return this.transitionFn[t] = a, r <= 0 ? (this.end(t), this) : (this.ticker.add(a), this);
}
end(t, e = !1) {
const i = this.transitionFn[t];
if (!T(i))
throw new ReferenceError(
`You are trying to end an ended transition: ${t}`
);
this.ticker.remove(this.transitionFn[t]), delete this.transitionFn[t], this.applying[t] = !1, this.hook("end"), e || (this.now[t] = this.target[t]);
}
}
const x = (...n) => n.reduce((s, t) => s + t, 0),
y = (n) => {
if (n === 0)
return 1;
let s = n;
for (; n > 1;)
n--, s *= n;
return s;
},
A = (n, s) => Math.round(y(s) / (y(n) * y(s - n))),
p = (n, s, t = (e) => 1 - s(1 - e)) => n === "in" ? s : n === "out" ? t : n === "in-out" ? (e) => e < 0.5 ? s(e * 2) / 2 : 0.5 + t((e - 0.5) * 2) / 2 : (e) => e < 0.5 ? t(e * 2) / 2 : 0.5 + s((e - 0.5) * 2) / 2,
$ = Math.cosh(2),
z = Math.acosh(2),
V = Math.tanh(3),
P = Math.atan(5);
function O() {
return (n) => n;
}
function q(...n) {
const s = [0].concat(n);
s.push(1);
const t = s.length,
e = Array(t).fill(0).map((i, r) => A(r, t - 1));
return (i) => {
const r = e.map((h, l) => h * s[l] * (1 - i) ** (t - l - 1) * i ** l);
return x(...r);
};
}
function U(n, s) {
if (n === "sin") {
const t = (i) => Math.sin(i * Math.PI / 2);
return p(s, (i) => 1 - t(1 - i), t);
}
if (n === "sec") {
const t = (i) => 1 / Math.cos(i);
return p(s, (i) => t(i * Math.PI / 3) - 1);
}
throw new TypeError(
"Unexpected parameters are delivered in trigo timing function."
);
}
function C(n, s) {
if (!Number.isInteger(n))
throw new TypeError(
"The first parameter of power timing function only allow integer."
);
return p(s, (e) => e ** n);
}
function G(n, s) {
if (n === "sin")
return p(s, (e) => (Math.cosh(e * 2) - 1) / ($ - 1));
if (n === "tan") {
const t = (i) => Math.tanh(i * 3) * 1 / V;
return p(s, (i) => 1 - t(1 - i), t);
}
if (n === "sec") {
const t = (i) => 1 / Math.cosh(i);
return p(s, (i) => 1 - (t(i * z) - 0.5) * 2);
}
throw new TypeError(
"Unexpected parameters are delivered in hyper timing function."
);
}
function N(n, s) {
if (n === "sin") {
const t = (i) => Math.asin(i) / Math.PI * 2;
return p(s, (i) => 1 - t(1 - i), t);
}
if (n === "tan") {
const t = (i) => Math.atan(i * 5) / P;
return p(s, (i) => 1 - t(1 - i), t);
}
throw new TypeError(
"Unexpected parameters are delivered in inverse trigo timing function."
);
}
function B(n, s = () => 1) {
let t = -1;
return (e) => (t *= -1, e < 0.5 ? n * s(e * 2) * t : n * s((1 - e) * 2) * t);
}
function D(n, s = 1, t = [0, 0], e = 0, i = (h) => 1, r = !1) {
return (h) => {
const l = s * h * Math.PI * 2 + e * Math.PI / 180,
u = Math.cos(l),
c = Math.sin(l),
a = n * i(i(r ? 1 - h : h));
return [a * u + t[0], a * c + t[1]];
};
}
function H(n, s, ...t) {
const e = [n].concat(t);
e.push(s);
const i = e.length,
r = Array(i).fill(0).map((h, l) => A(l, i - 1));
return (h) => {
const l = r.map((c, a) => c * e[a][0] * (1 - h) ** (i - a - 1) * h ** a),
u = r.map((c, a) => c * e[a][1] * (1 - h) ** (i - a - 1) * h ** a);
return [x(...l), x(...u)];
};
}
if ('animate' in core.plugin) throw new ReferenceError(`插件中已存在名为animate的属性`);
core.plugin.animate = {
Animation: Y,
AnimationBase: F,
Ticker: I,
Transition: j,
sleep: R,
circle: D,
bezierPath: H,
linear: O,
bezier: q,
trigo: U,
power: C,
hyper: G,
inverseTrigo: N,
shake: B
}},
"func": function () { // 功能函数集,具体有哪些函数看每个函数前的注释即可
// 安装方式:直接复制到插件里面,注意新建插件自带的 function () { } 不能删
// 使用方式:可以直接使用对象解构按需引入
// 例如const { has, slide } = core.plugin.utils;
// slide([1, 2, 3], -1); // [2, 3, 1]
/**
* 滑动数组使数组元素平移若干项
* @example slide([1, 2, 3], -1); // [2, 3, 1]
* @example slide([1, 3, 5], 10); // [5, 3, 1];
* @param {any[]} arr 需要滑动的数组
* @param {number} delta 滑动的项数正负均可
*/
function slide(arr, delta) {
if (delta === 0) return arr;
delta %= arr.length;
if (delta > 0) {
arr.unshift(...arr.splice(arr.length - delta, delta));
return arr;
}
if (delta < 0) {
arr.push(...arr.splice(0, -delta));
return arr;
}
};
/**
* 获取一个方向的反方向
* @example backDir('up'); // 'down'
* @example backDir('leftup'); // 'rightdown'
* @param {string} dir 方向
*/
function backDir(dir) {
const map = {
up: 'down',
down: 'up',
left: 'right',
right: 'left',
leftup: 'rightdown',
leftdown: 'rightup',
rightdown: 'leftup',
rightup: 'leftdown'
};
if (!dir in map) {
throw new TypeError(`Wrong dir is delivered when getting back direction.`);
}
return map[dir];
};
/**
* 判断一个值是否不是undefined和null
* @example has(0); // true
* @example has(false); // true
* @example has(NaN); // true
* @example has(null); // false
* @param {any} v 要判断的值
*/
function has(v) {
return v !== null && v !== void 0;
};
/**
* 解析css字符串为CSSStyleDeclaration对象
* @example
* parseCss('background-color: cyan; cursor: pointer; user-select: none');
* // 输出 { backgroundColor: 'cyan', cursor: 'pointer', userSelect: 'none' }
* @param {string} css 要解析的css字符串
*/
function parseCss(css) {
const str = css.replace(/[\n\s\t]*/g, '').replace(/;*/g, ';');
const styles = str.split(';');
const res = {};
for (const one of styles) {
const [key, data] = one.split(':');
const cssKey = key.replace(/\-([a-z])/g, (str, $1) => $1.toUpperCase());
res[cssKey] = data;
}
return res;
}
/**
* 等待一段时间需在async function中使用否则报错
* @example await sleep(500); // 等待500毫秒
* @param {number} time 等待的毫秒数
*/
async function sleep(time) {
return new Promise(res => setTimeout(res, time));
}
/**
* 在下一帧的下一帧执行一个函数
* @example nextFrame(() => console.log(1)); // 两帧后在控制台输出1
* @param cb 执行的函数
*/
function nextFrame(cb) {
requestAnimationFrame(() => {
requestAnimationFrame(cb);
});
}
/**
* 将一个css颜色解析成一个rgba数组
* 目前仅支持 #RGB #RGBA #RRGGBB #RRGGBBAA rgb() rgba() hsl() hsla() css自带颜色 这几种的转换
* @exmaple parseColor('#fff'); // [255, 255, 255]
* @example parseColor('#abcd'); // [170, 187, 204, 0.8666666666666667]
* @example parseColor('rgba(170, 230, 13, 0.2)'); // [170, 230, 13, 0.2]
* @example parseColor('cyan'); // [0, 255, 255]
* @example parseColor('lightcoral'); // [240, 128, 128]
* @example parseColor('hsla(0.2, 0.3, 0.4, 0.2)'); // [120, 133, 71, 0.2]
* @example parseColor('rgba(20%, 50, 33%, 0.2)'); // [51, 50, 84.15, 0.2]
* @param color 要解析的颜色字符串
*/
function parseColor(color) {
if (color.startsWith('rgb')) {
// rgb
const match = color.match(/rgba?\([\d\,\s\.%]+\)/);
if (!has(match)) throw new Error(`Invalid color is delivered!`);
const l = color.includes('a');
return match[0]
.slice(l ? 5 : 4, -1)
.split(',')
.map((v, i) => {
const vv = v.trim();
if (vv.endsWith('%')) {
if (i === 3) {
return parseInt(vv) / 100;
} else {
return (parseInt(vv) * 255) / 100;
}
} else return parseFloat(vv);
})
.slice(0, l ? 4 : 3);
} else if (color.startsWith('#')) {
// 十六进制
const content = color.slice(1);
if (![3, 4, 6, 8].includes(content.length)) {
throw new Error(`Invalid color is delivered!`);
}
if (content.length <= 4) {
const res = content
.split('')
.map(v => Number(`0x${v}${v}`));
if (res.length === 4) res[3] /= 255;
return res;
} else {
const res = Array(content.length / 2)
.fill(1)
.map((v, i) =>
Number(`0x${content[i * 2]}${content[i * 2 + 1]}`)
);
if (res.length === 4) res[3] /= 255;
return res;
}
} else if (color.startsWith('hsl')) {
// hsl转成rgb后输出
const match = color.match(/hsla?\([\d\,\s\.%]+\)/);
if (!has(match)) throw new Error(`Invalid color is delivered!`);
const l = color.includes('a');
const hsl = match[0]
.slice(l ? 5 : 4, -1)
.split(',')
.map(v => {
const vv = v.trim();
if (vv.endsWith('%')) return parseInt(vv) / 100;
else return parseFloat(vv);
});
const rgb = hslToRgb(hsl[0], hsl[1], hsl[2]);
return (l ? rgb.concat([hsl[3]]) : rgb);
} else {
// 单词
const rgb = cssColors[color];
if (!has(rgb)) {
throw new Error(`Invalid color is delivered!`);
}
return parseColor(rgb);
}
}
/**
* hsl转rgb
* @param h 色相
* @param s 饱和度
* @param l 亮度
*/
function hslToRgb(h, s, l) {
if (s == 0) {
return [0, 0, 0];
} else {
const hue2rgb = (p, q, t) => {
if (t < 0) t += 1;
if (t > 1) t -= 1;
if (t < 1 / 6) return p + (q - p) * 6 * t;
if (t < 1 / 2) return q;
if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6;
return p;
};
const q = l < 0.5 ? l * (1 + s) : l + s - l * s;
const p = 2 * l - q;
const r = hue2rgb(p, q, h + 1 / 3);
const g = hue2rgb(p, q, h);
const b = hue2rgb(p, q, h - 1 / 3);
return [Math.round(r * 255), Math.round(g * 255), Math.round(b * 255)];
}
}
/**
* 确保一个变量是一个数组不是的话转为数组并返回是的话直接返回传入的数组
* @param arr 要判断的变量
* @example ensureArray(1); // [1]
* @example ensureArray([1, 2]); // [1, 2]
* @example ensureArray('test'); // ['test']
*/
function ensureArray(arr) {
// @ts-ignore
return arr instanceof Array ? arr : [arr];
}
/**
* 返回一个坐标在某个方向上移动 d 格后的坐标
* @param d 移动多少格默认为1
* @example ofDir(7, 7, 'left'); // [6, 7]
* @example ofDir(10, 8, 'leftup', 5); // [5, 3]
*/
function ofDir(x, y, dir, d = 1) {
const { x: dx, y: dy } = core.utils.scan2[dir];
return [x + dx * d, y + dy * d];
}
const cssColors = {
black: '#000000',
silver: '#c0c0c0',
gray: '#808080',
white: '#ffffff',
maroon: '#800000',
red: '#ff0000',
purple: '#800080',
fuchsia: '#ff00ff',
green: '#008000',
lime: '#00ff00',
olive: '#808000',
yellow: '#ffff00',
navy: '#000080',
blue: '#0000ff',
teal: '#008080',
aqua: '#00ffff',
orange: '#ffa500',
aliceblue: '#f0f8ff',
antiquewhite: '#faebd7',
aquamarine: '#7fffd4',
azure: '#f0ffff',
beige: '#f5f5dc',
bisque: '#ffe4c4',
blanchedalmond: '#ffebcd',
blueviolet: '#8a2be2',
brown: '#a52a2a',
burlywood: '#deb887',
cadetblue: '#5f9ea0',
chartreuse: '#7fff00',
chocolate: '#d2691e',
coral: '#ff7f50',
cornflowerblue: '#6495ed',
cornsilk: '#fff8dc',
crimson: '#dc143c',
cyan: '#00ffff',
darkblue: '#00008b',
darkcyan: '#008b8b',
darkgoldenrod: '#b8860b',
darkgray: '#a9a9a9',
darkgreen: '#006400',
darkgrey: '#a9a9a9',
darkkhaki: '#bdb76b',
darkmagenta: '#8b008b',
darkolivegreen: '#556b2f',
darkorange: '#ff8c00',
darkorchid: '#9932cc',
darkred: '#8b0000',
darksalmon: '#e9967a',
darkseagreen: '#8fbc8f',
darkslateblue: '#483d8b',
darkslategray: '#2f4f4f',
darkslategrey: '#2f4f4f',
darkturquoise: '#00ced1',
darkviolet: '#9400d3',
deeppink: '#ff1493',
deepskyblue: '#00bfff',
dimgray: '#696969',
dimgrey: '#696969',
dodgerblue: '#1e90ff',
firebrick: '#b22222',
floralwhite: '#fffaf0',
forestgreen: '#228b22',
gainsboro: '#dcdcdc',
ghostwhite: '#f8f8ff',
gold: '#ffd700',
goldenrod: '#daa520',
greenyellow: '#adff2f',
grey: '#808080',
honeydew: '#f0fff0',
hotpink: '#ff69b4',
indianred: '#cd5c5c',
indigo: '#4b0082',
ivory: '#fffff0',
khaki: '#f0e68c',
lavender: '#e6e6fa',
lavenderblush: '#fff0f5',
lawngreen: '#7cfc00',
lemonchiffon: '#fffacd',
lightblue: '#add8e6',
lightcoral: '#f08080',
lightcyan: '#e0ffff',
lightgoldenrodyellow: '#fafad2',
lightgray: '#d3d3d3',
lightgreen: '#90ee90',
lightgrey: '#d3d3d3',
lightpink: '#ffb6c1',
lightsalmon: '#ffa07a',
lightseagreen: '#20b2aa',
lightskyblue: '#87cefa',
lightslategray: '#778899',
lightslategrey: '#778899',
lightsteelblue: '#b0c4de',
lightyellow: '#ffffe0',
limegreen: '#32cd32',
linen: '#faf0e6',
magenta: '#ff00ff',
mediumaquamarine: '#66cdaa',
mediumblue: '#0000cd',
mediumorchid: '#ba55d3',
mediumpurple: '#9370db',
mediumseagreen: '#3cb371',
mediumslateblue: '#7b68ee',
mediumspringgreen: '#00fa9a',
mediumturquoise: '#48d1cc',
mediumvioletred: '#c71585',
midnightblue: '#191970',
mintcream: '#f5fffa',
mistyrose: '#ffe4e1',
moccasin: '#ffe4b5',
navajowhite: '#ffdead',
oldlace: '#fdf5e6',
olivedrab: '#6b8e23',
orangered: '#ff4500',
orchid: '#da70d6',
palegoldenrod: '#eee8aa',
palegreen: '#98fb98',
paleturquoise: '#afeeee',
palevioletred: '#db7093',
papayawhip: '#ffefd5',
peachpuff: '#ffdab9',
peru: '#cd853f',
pink: '#ffc0cb',
plum: '#dda0dd',
powderblue: '#b0e0e6',
rosybrown: '#bc8f8f',
royalblue: '#4169e1',
saddlebrown: '#8b4513',
salmon: '#fa8072',
sandybrown: '#f4a460',
seagreen: '#2e8b57',
seashell: '#fff5ee',
sienna: '#a0522d',
skyblue: '#87ceeb',
slateblue: '#6a5acd',
slategray: '#708090',
slategrey: '#708090',
snow: '#fffafa',
springgreen: '#00ff7f',
steelblue: '#4682b4',
tan: '#d2b48c',
thistle: '#d8bfd8',
tomato: '#ff6347',
turquoise: '#40e0d0',
violet: '#ee82ee',
wheat: '#f5deb3',
whitesmoke: '#f5f5f5',
yellowgreen: '#9acd32',
transparent: '#0000'
};
if (has(core.plugin.utils)) {
throw new ReferenceError(`core.plugin上已经有'utils'属性,因此功能函数插件将无法使用!`);
}
core.plugin.utils = {
has,
slide,
backDir,
parseCss,
sleep,
nextFrame,
parseColor,
hslToRgb,
ensureArray,
ofDir
}
// Utility.js
// 通用函數插件
// 本插件與古祠發佈的《功能插件 --- 实用功能函数集》不同,函數是定義在全域的。
// 自訂常見事件模板插件(editorBlocklyconfigPlus.js)的前置插件
/**
* 使js暫停指定時間
* async環境下await Sleep(500)
* @param {number} millisecond 暫停毫秒數
*/
self.Sleep = async function (millisecond) {
return new Promise(resolve => setTimeout(resolve, millisecond));
}
/**
* 使js暫停一幀
* async環境下await SleepFrame()
*/
self.SleepFrame = async function () {
return new Promise(resolve => requestAnimationFrame(resolve));
}
/**
* editor_file的isset函數
*/
self.isset = function (val) {
if (val == undefined || val == null) {
return false;
}
return true
}
/**
* editor_file的checkCallback函數
*/
self.checkCallback = function (callback) {
if (!isset(callback)) {
printe('未设置callback');
throw ('未设置callback')
}
}
},
"怪物碎裂特效": function () {
// 在此增加新插件
// -------------------- 安装说明 -------------------- //
// 先安装两个在插件简介中说明的前置插件
// 然后再将本插件复制到插件编写中即可
// 插件自带一个打怪后显示碎裂特效的功能
// -------------------- 使用说明 -------------------- //
/*
本插件的核心是一个名为 applyFragWith 的函数打怪后的碎裂特效也是由它执行的
我们来说明一下这个函数的使用方式
1. 引入
你可以使用 const { applyFragWith } = core.plugin.frag; 在任何地方来引入这个函数
2. 函数的参数
该函数有三个参数分别是canvas, length, time
其中第一个参数意思是在执行碎裂时其内容由该画布决定这个特效并不会修改传入的画布因此原画布的内容会依然存在
第二个参数指的是每个碎片的边长虽然原则上每个碎片都是正方形但边缘一周的碎片可能不是正方形但中间的碎片一定是
第三个参数指的是这个特效要执行多长时间
第四个参数是一个对象包含四种配置量均为可选分别是maxMoveLengthmoveFlushmaxRotatefragTiming
当这些不存在时会默认取同名的常量作为默认值这些值有什么用可以看下面的常量注释
3. 函数的返回值
这个函数会返回一个特效控制器对象这个控制器共有三个属性
animation: 指的是当前特效的高级动画对象
onEnd: 一个Promise当这个特效执行完毕后会被 fulfilled
canvas: 特效所显示的画布这个画布不会自动部署到样板中需要你手动使用appendChild来部署具体可参考打怪后碎裂的样例
4. 修改一些常量
在下面有四个有注释的常量MAX_MOVE_LENGTH ~ FRAG_TIMING你可以根据你自己的需要来更改
*/
if (main.replayChecking) return core.plugin.frag = {};
const { Animation, linear, sleep } = core.plugin.animate;
const { has } = core.plugin.utils;
/** 最大移动距离,最终位置距离中心的距离变成原来的几倍 */
const MAX_MOVE_LENGTH = 1.15;
/** 移动距离波动,在最大移动距离的基础上加上多少倍距离的波动距离 */
const MOVE_FLUSH = 0.7;
/** 最大旋转角,单位是弧度,每个碎片都会有自己的旋转程度,是随机的 */
const MAX_ROTATE = 0.5;
/** 碎裂动画的速率曲线函数 */
const FRAG_TIMING = linear();
/**
* @param {HTMLCanvasElement} canvas 要执行特效的画布
* @param {number} length 切分成的碎片的边长碎片为正方形
* @param {number} time 特效持续时长
* @returns 返回一个碎裂特效控制器是一个对象详见开头的使用注释
*/
function applyFragWith(canvas, length = 4, time = 2000, config = {}) {
// 先切分图片
const imgs = splitCanvas(canvas, length);
const cx = canvas.width / 2;
const cy = canvas.height / 2;
let maxX = 0;
let maxY = 0;
const toMove = imgs.map(v => {
const centerX = v.x + v.canvas.width / 2;
const centerY = v.y + v.canvas.height / 2;
const onX = centerX === cx;
const onY = centerY === cy;
const mml = config.maxMoveLength ?? MAX_MOVE_LENGTH;
const mf = config.moveFlush ?? MOVE_FLUSH;
const rate = mml - 1 + Math.random() ** 3 * mf;
let endX = onY ? 0 : (centerX - cx) * rate;
let endY = onX ? 0 : (centerY - cy) * rate;
const mx = Math.abs(endX + centerX) + Math.abs(v.canvas.width);
const my = Math.abs(endY + centerY) + Math.abs(v.canvas.height);
if (mx > maxX) maxX = mx;
if (my > maxY) maxY = my;
const r = config.maxRotate ?? MAX_ROTATE;
const endRad = Math.random() * r * 2 - r;
return {
deltaX: endX,
deltaY: endY,
endRad,
x: centerX,
y: centerY,
canvas: v.canvas
};
});
// 再执行动画
const frag = document.createElement('canvas');
const ctx = frag.getContext('2d');
const ani = new Animation();
ani.register('rate', 0);
const ft = config.fragTiming ?? FRAG_TIMING;
ani.absolute().time(time).mode(ft).apply('rate', 1);
frag.width = maxX * 2;
frag.height = maxY * 2;
ctx.save();
const dw = maxX - canvas.width / 2;
const dh = maxY - canvas.height / 2;
const fragFn = () => {
const rate = ani.value.rate;
const opacity = 1 - rate;
ctx.globalAlpha = opacity;
ctx.clearRect(0, 0, frag.width, frag.height);
toMove.forEach(v => {
ctx.save();
const nx = v.deltaX * rate;
const ny = v.deltaY * rate;
const rotate = v.endRad * rate;
ctx.translate(nx + v.x + dw, ny + v.y + dh);
ctx.rotate(rotate);
ctx.drawImage(
v.canvas,
nx - v.canvas.width / 2,
ny - v.canvas.height / 2
);
ctx.restore();
});
};
const onEnd = () => {};
ani.ticker.add(fragFn);
return makeFragManager(frag, ani, time, onEnd);
}
function makeFragManager(canvas, ani, time, onEnd) {
const promise = sleep(time + 50);
return {
animation: ani,
onEnd: promise.then(() => {
ani.ticker.destroy();
onEnd();
}),
canvas
};
}
function withImage(image, sx, sy, sw, sh) {
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
canvas.width = sw;
canvas.height = sh;
ctx.drawImage(image, sx, sy, sw, sh, 0, 0, sw, sh);
return { canvas, x: sx, y: sy };
}
/**
* 切分画布
* @param canvas 要被切分的画布
* @param l 切分小块的边长
*/
function splitCanvas(canvas, l) {
if (canvas.width / l < 2 || canvas.height / l < 2) {
console.warn('切分画布要求切分边长大于等于画布长宽的一半!');
return [];
}
const w = canvas.width;
const h = canvas.height;
const numX = Math.floor(w / l);
const numY = Math.floor(h / l);
const rw = (w - numX * l) / 2;
const rh = (h - numY * l) / 2;
const res = [];
if (rw > 0) {
if (rh > 0) {
res.push(
withImage(canvas, 0, 0, rw, rh),
withImage(canvas, 0, canvas.height - rh, rw, rh),
withImage(canvas, canvas.width - rw, 0, rw, rh),
withImage(canvas, canvas.width - rw, canvas.height - rh, rw, rh)
);
}
for (const x of [0, canvas.width - rw]) {
for (let ny = 0; ny < numY; ny++) {
res.push(withImage(canvas, x, rh + l * ny, rw, l));
}
}
}
if (rh > 0) {
for (const y of [0, canvas.height - rh]) {
for (let nx = 0; nx < numX; nx++) {
res.push(withImage(canvas, rw + l * nx, y, l, rh));
}
}
}
for (let nx = 0; nx < numX; nx++) {
for (let ny = 0; ny < numY; ny++) {
res.push(withImage(canvas, rw + l * nx, rh + l * ny, l, l));
}
}
return res;
}
const origin = core.events.afterBattle;
core.events.afterBattle = function (enemyId, x, y) {
// 打怪特效
if (has(x) && has(y)) {
const frame = core.status.globalAnimateStatus % 2;
// 生成怪物图像
const canvas = document.createElement('canvas');
canvas.width = 32;
canvas.height = 32;
core.drawIcon(canvas, enemyId, 0, 0, 32, 32, frame);
// 执行动画
const manager = applyFragWith(canvas);
const frag = manager.canvas;
// 设置特效画布的css属性
frag.style.imageRendering = 'pixelated';
frag.style.width = `${frag.width * core.domStyle.scale}px`;
frag.style.height = `${frag.height * core.domStyle.scale}px`;
const left = (x * 32 + 16 - frag.width / 2 - core.bigmap.offsetX) * core.domStyle.scale;
const top = (y * 32 + 16 - frag.height / 2 - core.bigmap.offsetY) * core.domStyle.scale;
frag.style.left = `${left}px`;
frag.style.top = `${top}px`;
frag.style.zIndex = '45';
frag.style.position = 'absolute';
// 将特效画布部署到样板上
core.dom.gameDraw.appendChild(frag);
// 当特效执行完毕后移除这个特效画布
manager.onEnd.then(() => {
frag.remove();
});
}
return origin.apply(this, arguments);
}
if ('frag' in core.plugin) {
throw new ReferenceError(`core.plugin上已存在名为frag的属性`);
}
core.plugin.frag = {
applyFragWith
};
},
"自定义常用事件": function () {
// editorBlocklyconfigPlus.js
// 自訂常見事件模板插件
// 本插件引用了通用函數插件(Utility.js)
// 適用樣板2.10.3
// 請注意:
// 此插件對事件編輯器(editor_blocklyconfig)進行複寫,若還有其它針對事件編輯器做複寫的插件,請謹慎使用!
// 此插件對表格操作行為(editor_mode.doActionList)進行複寫,若還有其它對表格操作行為做複寫的插件,請謹慎使用!
// 使用方法:
// 現在在主頁下拉選單多了個常用事件模版,在那邊可以自由設定常用事件模板。
// 設定完後按F5刷新再到事件編輯器看就有你設定好的常用事件模板了。
if (main.mode == "editor") {
//#region 配置表格初始化
let TableFileName = "project/table/CommonEventTemplate_comment.js";
let TableRow = `
var CommonEventTemplate_comment = {"_type": "object",
"_data": {
"CommonEventTemplate": {
"_type": "object",
"_data": function (key) {
var obj = {
"检测音乐如果没有开启则系统提示开启": {
"_leaf": true,
"_type": "event",
"_event": "commonEvent",
"_data": "检测音乐如果没有开启则系统提示开启"
},
"仿新新魔塔一次性商人": {
"_leaf": true,
"_type": "event",
"_event": "commonEvent",
"_data": "仿新新魔塔一次性商人"
},
"全地图选中一个点": {
"_leaf": true,
"_type": "event",
"_event": "commonEvent",
"_data": "全地图选中一个点"
},
"多阶段Boss战斗": {
"_leaf": true,
"_type": "event",
"_event": "commonEvent",
"_data": "多阶段Boss战斗"
},
}
if (obj[key]) return obj[key];
return {
"_leaf": true,
"_type": "event",
"_event": "commonEvent",
"_data": "常見事件模板"
}
}
}
}}
`;
if (!events_c12a15a8_c380_4b28_8144_256cba95f760.CommonEventTemplate) {
/**
* @type {{[EvnetName:actionParserJson]}}
*/
events_c12a15a8_c380_4b28_8144_256cba95f760.CommonEventTemplate = {
"检测音乐如果没有开启则系统提示开启": [{
"type": "if",
"condition": "!core.musicStatus.bgmStatus",
"true": [
"\t[系统提示]你当前音乐处于关闭状态,本塔开音乐游戏效果更佳"
],
"false": []
}],
"仿新新魔塔一次性商人": [{
"type": "if",
"condition": "switch:A",
"true": [
"\t[行商,trader]\b[this]这是购买我的道具后我给玩家的提示。",
{
"type": "comment",
"text": "下一条指令可视情况使用或不使用"
},
{
"type": "hide",
"remove": true,
"time": 250
}
],
"false": [{
"type": "confirm",
"text": "我有3把黄钥匙\n你出50金币就卖给你。",
"yes": [{
"type": "if",
"condition": "status:money>=50",
"true": [{
"type": "setValue",
"name": "status:money",
"operator": "-=",
"value": "50"
},
{
"type": "setValue",
"name": "item:yellowKey",
"operator": "+=",
"value": "3"
},
{
"type": "playSound",
"name": "确定",
"stop": true
},
{
"type": "setValue",
"name": "switch:A",
"value": "true"
}
],
"false": [{
"type": "playSound",
"name": "操作失败"
},
"\t[行商,trader]\b[this]你的金币不足!"
]
}],
"no": []
}]
}],
"全地图选中一个点": [{
"type": "comment",
"text": "全地图选中一个点,需要用鼠标或触屏操作"
},
{
"type": "setValue",
"name": "temp:X",
"value": "status:x"
},
{
"type": "setValue",
"name": "temp:Y",
"value": "status:y"
},
{
"type": "tip",
"text": "再次点击闪烁位置确认"
},
{
"type": "while",
"condition": "true",
"data": [{
"type": "drawSelector",
"image": "winskin.png",
"code": 1,
"x": "32*temp:X",
"y": "32*temp:Y",
"width": 32,
"height": 32
},
{
"type": "wait"
},
{
"type": "if",
"condition": "(flag:type === 1)",
"true": [{
"type": "if",
"condition": "((temp:X===flag:x)&&(temp:Y===flag:y))",
"true": [{
"type": "break",
"n": 1
}]
},
{
"type": "setValue",
"name": "temp:X",
"value": "flag:x"
},
{
"type": "setValue",
"name": "temp:Y",
"value": "flag:y"
}
]
}
]
},
{
"type": "drawSelector",
"code": 1
},
{
"type": "comment",
"text": "流程进行到这里可以对[X,Y]点进行处理,比如"
},
{
"type": "closeDoor",
"id": "yellowDoor",
"loc": [
"temp:X",
"temp:Y"
]
}
],
"多阶段Boss战斗": [{
"type": "comment",
"text": "多阶段boss请直接作为战后事件使用"
},
{
"type": "setValue",
"name": "switch:A",
"operator": "+=",
"value": "1"
},
{
"type": "switch",
"condition": "switch:A",
"caseList": [{
"case": "1",
"action": [{
"type": "setBlock",
"number": "redSlime"
},
"\t[2阶段boss,redSlime]\b[this]你以为你已经打败我了吗?没听说过史莱姆有九条命吗?"
]
},
{
"case": "2",
"action": [{
"type": "setBlock",
"number": "blackSlime"
},
"\t[3阶段boss,blackSlime]\b[this]不能消灭我的,只会让我更强大!"
]
},
{
"case": "3",
"action": [{
"type": "setBlock",
"number": "slimelord"
},
"\t[4阶段boss,slimelord]\b[this]我还能打!"
]
},
{
"case": "4",
"action": [
"\t[4阶段boss,slimelord]我一定会回来的!"
]
}
]
}
],
};
}
//#endregion
// 新增模板選項
let editModeSelect = document.getElementById("editModeSelect");
let newEditModeOption = document.createElement("option");
newEditModeOption.value = "CommonEventTemplate";
newEditModeOption.text = "常見事件模板";
editModeSelect.add(newEditModeOption);
//檢查可用的編輯模板ID
let leftIDNumber = 11 - 1;
let ExistLeftElement = document.querySelector(".main");
while (ExistLeftElement) {
leftIDNumber++;
ExistLeftElement = document.getElementById(`left${leftIDNumber}`);
}
//新增編輯模板
let MainDiv = document.querySelector('.main');
let CommonEventTemplateMainDiv = document.createElement("div");
CommonEventTemplateMainDiv.id = `left${leftIDNumber}`;
CommonEventTemplateMainDiv.className = 'leftTab';
CommonEventTemplateMainDiv.style.zIndex = '-1';
CommonEventTemplateMainDiv.style.opacity = '0';
CommonEventTemplateMainDiv.innerHTML = `
<!-- CommonEventTemplate -->
<h3 class="leftTabHeader">
常見事件模板  
<button onclick="editor.mode.onmode('save')">保存</button>  
<button onclick="editor.table.CommonEventTemplateAddFunc()">添加</button>  
<button onclick="editor.mode.changeDoubleClickModeByButton('delete')">删除</button>  
<button onclick="editor_multi.CommonEventTemplateEditCommentJs('CommonEventTemplate')">配置表格</button>
</h3>
<div class="leftTabContent">
<div class='etable'>
<table>
<tbody id='table_298572d8-93dd-4c6e-a278-6a7d49831e3a'>
<tr>
<td>条目</td>
<td>注释</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
`;
MainDiv.appendChild(CommonEventTemplateMainDiv);
(async function () {
//等待編輯器初始化
while (!editor_mode.ids) {
await Sleep(100);
}
//新增編輯模板ID
editor_mode.ids["CommonEventTemplate"] = `left${leftIDNumber}`;
editor_mode.init_dom_ids();
//切換至常見事件模板
editor_mode.CommonEventTemplate = function (callback) {
var objs = [];
editor.file.editCommonEventTemplate([], function (objs_) {
objs = objs_;
//console.log(objs_)
});
//只查询不修改时,内部实现不是异步的,所以可以这么写
var tableinfo = editor.table.objToTable(objs[0], objs[1]);
document.getElementById('table_298572d8-93dd-4c6e-a278-6a7d49831e3a').innerHTML = tableinfo.HTML;
tableinfo.listen(tableinfo.guids);
if (Boolean(callback)) callback();
}
//檢查配置表格存在
let TableRowExist = null;
fs.readFile(TableFileName, 'base64', function (err, data) {
if (err) {
console.log(`察覺常見事件模板配置表格不存在,原因:${err}`);
console.log("新建一個常見事件模板配置表格。");
TableRowExist = false;
} else {
TableRowExist = true;
}
})
//等待配置表格載入完畢(最多0.3秒,超過則視為失敗)
for (let i = 0; i < 3; i++) {
if (TableRowExist == null) {
await Sleep(100);
}
}
//配置表格初始化
if (TableRowExist != true) {
fs.mkdir("project/table", function (err, data) {
if (err) throw `常見事件模板配置表格目錄初始化失敗,原因:${err}`;
});
fs.writeFile(TableFileName, editor.util.encode64(TableRow || ''), 'base64', function (err, data) {
if (err) throw `常見事件模板配置表格文件初始化失敗,原因:${err}`;
});
}
//載入配置表格
//editor.file.loadCommentjs(callback);
(function () {
var key = "CommonEventTemplate_comment";
var script = document.createElement('script');
script.src = 'project/table/' + key + '.js';
document.body.appendChild(script);
script.onload = function () {
editor.file[key] = eval(key.replace('.', '_'));
var loaded = Boolean(editor.file[key]);
}
})();
//按下配置表格
editor_multi.CommonEventTemplateEditCommentJs = function (mod) {
editor_multi.lintAutocomplete = true;
editor_multi.setLint();
editor_multi.importFile(TableFileName)
}
//定義表格操作行為
editor_mode.OriginDoActionList = editor_mode.doActionList;
editor_mode.doActionList = function (mode, actionList, callback) {
if (editor_mode.mode == "CommonEventTemplate") {
if (actionList.length == 0) return;
printf('修改中...');
var cb = function (objs_) {
if (objs_.slice(-1)[0] != null) {
printe(objs_.slice(-1)[0]);
throw (objs_.slice(-1)[0])
};
var str = '修改成功!';
if (data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d.firstData.name == 'template')
str += '<br/>请注意全塔属性的name尚未修改请及时予以设置。';
printf(str);
if (callback) callback();
}
editor.file.editCommonEventTemplate(actionList, cb);
} else {
editor_mode.OriginDoActionList(mode, actionList, callback);
}
}
//添加表格列
editor.table.CommonEventTemplateAddFunc = function () {
let obj = events_c12a15a8_c380_4b28_8144_256cba95f760;
// 1.输入id
let newid = prompt('请输入新项的ID支持中文');
if (newid == null || newid.length == 0) {
return;
}
// 2.检查id是否符合规范或与已有id重复
var conflict = true;
var basefield = ("").replace(/\[[^\[]*\]$/, '');
try {
var baseobj = eval('obj' + basefield);
conflict = newid in baseobj;
} catch (ee) {
// 理论上这里不会发生错误
printe(ee);
throw ee;
}
if (conflict) {
printe('id已存在, 请直接修改该项的值');
return;
}
// 3.添加
editor_mode.addAction(['add', basefield + "['" + newid + "']", null]);
editor_mode.onmode('save', function () {
printf('添加成功,刷新后生效;也可以继续新增其他项目。')
}); //自动保存 删掉此行的话点保存按钮才会保存
}
//對表格的存讀
editor.file.editCommonEventTemplate = function (actionList, callback) {
/*actionList:[
["change","['test']",['123']],
]
[]时只查询不修改
*/
var data_obj = events_c12a15a8_c380_4b28_8144_256cba95f760.CommonEventTemplate;
checkCallback(callback);
if (isset(actionList) && actionList.length > 0) {
actionList.forEach(function (value) {
value[1] = "['CommonEventTemplate']" + value[1];
});
editor.file.saveSetting('events', actionList, function (err) {
callback([err]);
});
} else {
callback([
Object.assign({}, data_obj),
editor.file.CommonEventTemplate_comment._data.CommonEventTemplate,
null
]);
}
}
})();
//複寫事件編輯器(editor_blocklyconfig)
editor_blocklyconfig = (function () {
// start mark sfergsvae
(function () {
var getCategory = function (name, custom) {
for (var node of document.getElementById('toolbox').children) {
if (node.getAttribute('name') == name) return node;
}
var node = document.createElement('category');
node.setAttribute('name', name);
if (custom) node.setAttribute('custom', custom);
document.getElementById('toolbox').appendChild(node);
return node;
}
var toolboxObj = {
'入口方块': [
'<label text="入口方块会根据当前类型在此数组中筛选,具体控制在editor_blockly.entranceCategoryCallback中"></label>',
MotaActionFunctions.actionParser.parse([
"欢迎使用事件编辑器",
"本事件触发一次后会消失",
{ "type": "hide", "time": 500 },
], 'event'),
MotaActionFunctions.actionParser.parse({
"condition": "flag:__door__===2",
"currentFloor": true,
"priority": 0,
"delayExecute": false,
"multiExecute": false,
"data": [
{ "type": "openDoor", "loc": [10, 5] }
],
}, 'autoEvent'),
MotaActionBlocks['changeFloor_m'].xmlText(),
MotaActionFunctions.actionParser.parse([{
"id": "shop1",
"text": "\t[贪婪之神,moneyShop]勇敢的武士啊, 给我${20+2*flag:shop1}金币就可以:",
"textInList": "1F金币商店",
"choices": [{
"text": "生命+800",
"need": "status:money>=20+2*flag:shop1",
"action": [
{ "type": "comment", "text": "新版商店中需要手动扣减金币和增加访问次数" },
{ "type": "setValue", "name": "status:money", "operator": "-=", "value": "20+2*flag:shop1" },
{ "type": "setValue", "name": "flag:shop1", "operator": "+=", "value": "1" },
{ "type": "setValue", "name": "status:hp", "operator": "+=", "value": "800" }
]
}]
}, {
"id": "itemShop",
"item": true,
"textInList": "道具商店",
"choices": [
{ "id": "yellowKey", "number": 10, "money": 10 }
]
}, {
"id": "keyShop1",
"textInList": "回收钥匙商店",
"commonEvent": "回收钥匙商店",
"args": ""
}], 'shop'),
MotaActionBlocks['common_m'].xmlText(),
MotaActionBlocks['beforeBattle_m'].xmlText(),
MotaActionBlocks['afterBattle_m'].xmlText(),
MotaActionBlocks['afterGetItem_m'].xmlText(),
MotaActionBlocks['afterOpenDoor_m'].xmlText(),
MotaActionBlocks['firstArrive_m'].xmlText(),
MotaActionBlocks['eachArrive_m'].xmlText(),
MotaActionBlocks['level_m'].xmlText(),
MotaActionFunctions.actionParser.parse([
['MTx', '']
], 'floorPartition'),
MotaActionBlocks['commonEvent_m'].xmlText(),
MotaActionBlocks['item_m'].xmlText(),
MotaActionFunctions.actionParser.parse([{
"title": "简单",
"name": "Easy",
"hard": 1,
"action": [
{ "type": "comment", "text": "在这里写该难度需执行的事件" }
]
}], 'levelChoose'),
MotaActionFunctions.actionParser.parse({
"type": 0,
"value": { "atk": 10 },
"percentage": { "speed": 10 },
}, 'equip'),
MotaActionFunctions.actionParser.parse([{
"name": "bg.jpg",
"x": 0,
"y": 0,
"canvas": "bg"
}], 'floorImage'),
MotaActionFunctions.actionParser.parse({
"time": 160,
"openSound": "door.mp3",
"closeSound": "door.mp3",
"keys": { "yellowKey": 1, "orangeKey": 1 }
}, 'doorInfo'),
MotaActionBlocks['faceIds_m'].xmlText(),
MotaActionBlocks['mainStyle_m'].xmlText(),
MotaActionFunctions.actionParser.parse({
"背景音乐": "bgm.mp3",
"确定": "confirm.mp3",
"攻击": "attack.mp3",
"背景图": "bg.jpg",
"领域": "zone",
"文件名": "file.jpg"
}, 'nameMap'),
MotaActionFunctions.actionParser.parse([
{ "name": "hero.png", "width": 32, "height": 32, "prefix": "hero_" },
], 'splitImages'),
],
'显示文字': [
MotaActionBlocks['text_0_s'].xmlText(),
MotaActionBlocks['text_1_s'].xmlText(),
MotaActionFunctions.actionParser.parseList("\t[小妖精,fairy]\f[fairy.png,0,0]欢迎使用事件编辑器(双击方块可直接预览)"),
MotaActionBlocks['moveTextBox_s'].xmlText(),
MotaActionBlocks['clearTextBox_s'].xmlText(),
MotaActionBlocks['comment_s'].xmlText(),
MotaActionBlocks['autoText_s'].xmlText(),
MotaActionBlocks['scrollText_s'].xmlText(),
MotaActionBlocks['setText_s'].xmlText(),
MotaActionBlocks['tip_s'].xmlText(),
MotaActionBlocks['confirm_s'].xmlText(),
MotaActionBlocks['choices_s'].xmlText([
'选择剑或者盾', '流浪者', 'man', 0, '', MotaActionBlocks['choicesContext'].xmlText([
'剑', '', '', null, '', '', MotaActionFunctions.actionParser.parseList([{ "type": "openDoor", "loc": [3, 3] }]),
])
]),
MotaActionBlocks['win_s'].xmlText(),
MotaActionBlocks['lose_s'].xmlText(),
MotaActionBlocks['restart_s'].xmlText(),
],
'数据相关': [
MotaActionBlocks['setValue_s'].xmlText([
MotaActionBlocks['idIdList_e'].xmlText(['status', '生命']), '=', '', false
]),
MotaActionBlocks['setEnemy_s'].xmlText(),
MotaActionBlocks['setEnemyOnPoint_s'].xmlText(),
MotaActionBlocks['resetEnemyOnPoint_s'].xmlText(),
MotaActionBlocks['moveEnemyOnPoint_s'].xmlText(),
MotaActionBlocks['moveEnemyOnPoint_1_s'].xmlText(),
MotaActionBlocks['setEquip_s'].xmlText(),
MotaActionBlocks['setFloor_s'].xmlText(),
MotaActionBlocks['setGlobalAttribute_s'].xmlText(),
MotaActionBlocks['setGlobalValue_s'].xmlText(),
MotaActionBlocks['setGlobalFlag_s'].xmlText(),
MotaActionBlocks['setNameMap_s'].xmlText(),
MotaActionBlocks['input_s'].xmlText(),
MotaActionBlocks['input2_s'].xmlText(),
MotaActionBlocks['update_s'].xmlText(),
MotaActionBlocks['moveAction_s'].xmlText(),
MotaActionBlocks['changeFloor_s'].xmlText(),
MotaActionBlocks['changePos_s'].xmlText(),
MotaActionBlocks['battle_s'].xmlText(),
MotaActionBlocks['useItem_s'].xmlText(),
MotaActionBlocks['loadEquip_s'].xmlText(),
MotaActionBlocks['unloadEquip_s'].xmlText(),
MotaActionBlocks['openShop_s'].xmlText(),
MotaActionBlocks['disableShop_s'].xmlText(),
MotaActionBlocks['setHeroIcon_s'].xmlText(),
MotaActionBlocks['follow_s'].xmlText(),
MotaActionBlocks['unfollow_s'].xmlText(),
],
'地图处理': [
MotaActionBlocks['battle_1_s'].xmlText(),
MotaActionBlocks['openDoor_s'].xmlText(),
MotaActionBlocks['closeDoor_s'].xmlText(),
MotaActionBlocks['show_s'].xmlText(),
MotaActionBlocks['hide_s'].xmlText(),
MotaActionBlocks['setBlock_s'].xmlText(),
MotaActionBlocks['setBlockOpacity_s'].xmlText(),
MotaActionBlocks['setBlockFilter_s'].xmlText(),
MotaActionBlocks['turnBlock_s'].xmlText(),
MotaActionBlocks['moveHero_s'].xmlText(),
MotaActionBlocks['move_s'].xmlText(),
MotaActionBlocks['jumpHero_s'].xmlText(),
MotaActionBlocks['jumpHero_1_s'].xmlText(),
MotaActionBlocks['jump_s'].xmlText(),
MotaActionBlocks['jump_1_s'].xmlText(),
MotaActionBlocks['showBgFgMap_s'].xmlText(),
MotaActionBlocks['hideBgFgMap_s'].xmlText(),
MotaActionBlocks['setBgFgBlock_s'].xmlText(),
MotaActionBlocks['showFloorImg_s'].xmlText(),
MotaActionBlocks['hideFloorImg_s'].xmlText(),
],
'事件控制': [
MotaActionBlocks['if_1_s'].xmlText(),
MotaActionBlocks['if_s'].xmlText(),
MotaActionFunctions.actionParser.parseList({
"type": "switch",
"condition": "判别值",
"caseList": [
{ "action": [{ "type": "comment", "text": "当判别值是值的场合执行此事件" }] },
{ "case": "default", "action": [{ "type": "comment", "text": "当没有符合的值的场合执行default事件" }] },
]
}),
MotaActionFunctions.actionParser.parseList({ "type": "for", "name": "temp:A", "from": "0", "to": "12", "step": "1", "data": [] }),
MotaActionFunctions.actionParser.parseList({ "type": "forEach", "name": "temp:A", "list": ["status:atk", "status:def"], "data": [] }),
MotaActionBlocks['while_s'].xmlText(),
MotaActionBlocks['dowhile_s'].xmlText(),
MotaActionBlocks['break_s'].xmlText(),
MotaActionBlocks['continue_s'].xmlText(),
MotaActionBlocks['exit_s'].xmlText(),
MotaActionBlocks['trigger_s'].xmlText(),
MotaActionBlocks['insert_1_s'].xmlText(),
MotaActionBlocks['insert_2_s'].xmlText(),
],
'特效表现': [
MotaActionBlocks['sleep_s'].xmlText(),
MotaActionFunctions.actionParser.parseList({
"type": "wait",
"timeout": 0,
"data": [
{ "case": "keyboard", "keycode": "13,32", "action": [{ "type": "comment", "text": "当按下回车(keycode=13)或空格(keycode=32)时执行此事件\n超时剩余时间会写入flag:timeout" }] },
{ "case": "mouse", "px": [0, 32], "py": [0, 32], "action": [{ "type": "comment", "text": "当点击地图左上角时执行此事件\n超时剩余时间会写入flag:timeout" }] },
{ "case": "condition", "condition": "flag:type==0\n&&flag:keycode==13", "action": [{ "type": "comment", "text": "当满足自定义条件时会执行此事件\n超时剩余时间会写入flag:timeout" }] },
{ "case": "timeout", "action": [{ "type": "comment", "text": "当超时未操作时执行此事件" }] },
]
}),
MotaActionBlocks['waitAsync_s'].xmlText(),
MotaActionBlocks['stopAsync_s'].xmlText(),
MotaActionBlocks['vibrate_s'].xmlText(),
MotaActionBlocks['animate_s'].xmlText(),
MotaActionBlocks['animate_1_s'].xmlText(),
MotaActionBlocks['stopAnimate_s'].xmlText(),
MotaActionBlocks['setViewport_s'].xmlText(),
MotaActionBlocks['setViewport_1_s'].xmlText(),
MotaActionBlocks['lockViewport_s'].xmlText(),
MotaActionBlocks['showStatusBar_s'].xmlText(),
MotaActionBlocks['hideStatusBar_s'].xmlText(),
MotaActionBlocks['setHeroOpacity_s'].xmlText(),
MotaActionBlocks['setCurtain_0_s'].xmlText(),
MotaActionBlocks['setCurtain_1_s'].xmlText(),
MotaActionBlocks['screenFlash_s'].xmlText(),
MotaActionBlocks['setWeather_s'].xmlText(),
MotaActionBlocks['callBook_s'].xmlText(),
MotaActionBlocks['callSave_s'].xmlText(),
MotaActionBlocks['autoSave_s'].xmlText(),
MotaActionBlocks['forbidSave_s'].xmlText(),
MotaActionBlocks['callLoad_s'].xmlText(),
],
'音像处理': [
MotaActionBlocks['showImage_s'].xmlText(),
MotaActionBlocks['showImage_1_s'].xmlText(),
MotaActionBlocks['hideImage_s'].xmlText(),
MotaActionBlocks['showTextImage_s'].xmlText(),
MotaActionBlocks['moveImage_s'].xmlText(),
MotaActionBlocks['rotateImage_s'].xmlText(),
MotaActionBlocks['scaleImage_s'].xmlText(),
MotaActionBlocks['showGif_s'].xmlText(),
MotaActionBlocks['playBgm_s'].xmlText(),
MotaActionBlocks['pauseBgm_s'].xmlText(),
MotaActionBlocks['resumeBgm_s'].xmlText(),
MotaActionBlocks['loadBgm_s'].xmlText(),
MotaActionBlocks['freeBgm_s'].xmlText(),
MotaActionBlocks['playSound_s'].xmlText(),
MotaActionBlocks['playSound_1_s'].xmlText(),
MotaActionBlocks['stopSound_s'].xmlText(),
MotaActionBlocks['setVolume_s'].xmlText(),
MotaActionBlocks['setBgmSpeed_s'].xmlText(),
],
'UI绘制': [
MotaActionBlocks['previewUI_s'].xmlText(),
MotaActionBlocks['clearMap_s'].xmlText(),
MotaActionBlocks['setAttribute_s'].xmlText(),
MotaActionBlocks['setFilter_s'].xmlText(),
MotaActionBlocks['fillText_s'].xmlText(),
MotaActionBlocks['fillBoldText_s'].xmlText(),
MotaActionBlocks['drawTextContent_s'].xmlText(),
MotaActionBlocks['fillRect_s'].xmlText(),
MotaActionBlocks['strokeRect_s'].xmlText(),
MotaActionBlocks['drawLine_s'].xmlText(),
MotaActionBlocks['drawArrow_s'].xmlText(),
MotaActionBlocks['fillPolygon_s'].xmlText(),
MotaActionBlocks['strokePolygon_s'].xmlText(),
MotaActionBlocks['fillEllipse_s'].xmlText(),
MotaActionBlocks['strokeEllipse_s'].xmlText(),
MotaActionBlocks['fillArc_s'].xmlText(),
MotaActionBlocks['strokeArc_s'].xmlText(),
MotaActionBlocks['drawImage_s'].xmlText(),
MotaActionBlocks['drawImage_1_s'].xmlText(),
MotaActionBlocks['drawIcon_s'].xmlText(),
MotaActionBlocks['drawBackground_s'].xmlText(),
MotaActionBlocks['drawSelector_s'].xmlText(),
MotaActionBlocks['drawSelector_1_s'].xmlText(),
],
'原生脚本': [
MotaActionBlocks['function_s'].xmlText(),
MotaActionBlocks['unknown_s'].xmlText(),
],
'值块': [
MotaActionBlocks['setValue_s'].xmlText([
MotaActionBlocks['idIdList_e'].xmlText(['status', '生命']), '=', '', false
]),
MotaActionBlocks['expression_arithmetic_0'].xmlText(),
MotaActionBlocks['idFlag_e'].xmlText(),
MotaActionBlocks['idTemp_e'].xmlText(),
MotaActionBlocks['negate_e'].xmlText(),
MotaActionBlocks['unaryOperation_e'].xmlText(),
MotaActionBlocks['bool_e'].xmlText(),
MotaActionBlocks['idString_e'].xmlText(),
MotaActionBlocks['idIdList_e'].xmlText(),
MotaActionBlocks['idFixedList_e'].xmlText(),
MotaActionBlocks['enemyattr_e'].xmlText(),
MotaActionBlocks['blockId_e'].xmlText(),
MotaActionBlocks['blockNumber_e'].xmlText(),
MotaActionBlocks['blockCls_e'].xmlText(),
MotaActionBlocks['hasEquip_e'].xmlText(),
MotaActionBlocks['equip_e'].xmlText(),
MotaActionBlocks['nextXY_e'].xmlText(),
MotaActionBlocks['isReplaying_e'].xmlText(),
MotaActionBlocks['hasVisitedFloor_e'].xmlText(),
MotaActionBlocks['isShopVisited_e'].xmlText(),
MotaActionBlocks['canBattle_e'].xmlText(),
MotaActionBlocks['damage_e'].xmlText(),
MotaActionBlocks['damage_1_e'].xmlText(),
MotaActionBlocks['rand_e'].xmlText(),
MotaActionBlocks['evalString_e'].xmlText(),
],
'常见事件模板': [
'<label text="此处只是占位符,实际定义在#region 動態常見事件模板"></label>',
],
'最近使用事件': [
'<label text="此处只是占位符,实际定义在editor_blockly.searchBlockCategoryCallback中"></label>',
]
}
var toolboxgap = '<sep gap="5"></sep>'
//xml_text = MotaActionFunctions.actionParser.parse(obj,type||'event')
//MotaActionBlocks['idString_e'].xmlText()
//#region 動態常見事件模板
let CommonEventTemplateHTML = [];
for (let commonEventName in events_c12a15a8_c380_4b28_8144_256cba95f760.CommonEventTemplate) {
if (events_c12a15a8_c380_4b28_8144_256cba95f760.CommonEventTemplate.hasOwnProperty(commonEventName)) {
let actionParserJson = Array.from(events_c12a15a8_c380_4b28_8144_256cba95f760.CommonEventTemplate[commonEventName] ?? []);
let labelHTML = "";
let blockHTML = "";
labelHTML = `<label text="${commonEventName}"></label>`
if (actionParserJson.length > 1) {
actionParserJson = {
"type": "if",
"condition": "true",
"true": actionParserJson
}
} else if (actionParserJson.length < 1) {
actionParserJson = [
"空的常用事件模板。\n請在主頁下拉菜單中選擇常用事件模板進行編輯。\n編輯後需按F5刷新事件編輯器。",
]
}
blockHTML = MotaActionFunctions.actionParser.parseList(actionParserJson);
CommonEventTemplateHTML.push(labelHTML);
CommonEventTemplateHTML.push(blockHTML);
}
}
toolboxObj["常见事件模板"] = CommonEventTemplateHTML;
//#endregion
for (var name in toolboxObj) {
var custom = null;
if (name == '最近使用事件') custom = 'searchBlockCategory';
if (name == '入口方块') custom = 'entranceCategory';
getCategory(name, custom).innerHTML = toolboxObj[name].join(toolboxgap);
}
var blocklyArea = document.getElementById('blocklyArea');
var blocklyDiv = document.getElementById('blocklyDiv');
var workspace = Blockly.inject(blocklyDiv, {
media: '_server/blockly/media/',
toolbox: document.getElementById('toolbox'),
zoom: {
controls: true,
wheel: false, //滚轮改为上下(shift:左右)翻滚
startScale: 1.0,
maxScale: 3,
minScale: 0.3,
scaleSpeed: 1.08
},
trashcan: false,
});
editor_blockly.isCommonEntry = function () {
var commonEntries = ['beforeBattle', 'afterBattle', 'afterOpenDoor', 'firstArrive', 'eachArrive', 'commonEvent', 'item'];
return commonEntries.indexOf(editor_blockly.entryType) >= 0;
}
editor_blockly.entranceCategoryCallback = function (workspace) {
var list = toolboxObj['入口方块']
var xmlList = [];
var eventType = (editor_blockly.isCommonEntry() ? 'common' : editor_blockly.entryType) + '_m';
for (var ii = 0, blockText; blockText = list[ii]; ii++) {
if (new RegExp('<block type="' + eventType + '">').exec(blockText)) {
var block = Blockly.Xml.textToDom('<xml>' + blockText + '</xml>').firstChild;
block.setAttribute("gap", 5);
xmlList.push(block);
}
}
return xmlList;
}
workspace.registerToolboxCategoryCallback(
'entranceCategory', editor_blockly.entranceCategoryCallback);
editor_blockly.searchBlockCategoryCallback = function (workspace) {
var xmlList = [];
var labels = editor_blockly.searchBlock();
for (var i = 0; i < labels.length; i++) {
var blockText = '<xml>' +
MotaActionBlocks[labels[i]].xmlText() +
'</xml>';
var block = Blockly.Xml.textToDom(blockText).firstChild;
block.setAttribute("gap", 5);
xmlList.push(block);
}
return xmlList;
};
workspace.registerToolboxCategoryCallback(
'searchBlockCategory', editor_blockly.searchBlockCategoryCallback);
var onresize = function (e) {
blocklyDiv.style.width = blocklyArea.offsetWidth + 'px';
blocklyDiv.style.height = blocklyArea.offsetHeight + 'px';
Blockly.svgResize(workspace);
};
if (typeof editor !== "undefined" && !editor.isMobile) window.addEventListener('resize', onresize, false);
onresize();
//Blockly.svgResize(workspace);
//Blockly.bindEventWithChecks_(workspace.svgGroup_,"wheel",workspace,function(e){});
document.getElementById('blocklyDiv').onmousewheel = function (e) {
//console.log(e);
e.preventDefault();
var hvScroll = e.shiftKey ? 'hScroll' : 'vScroll';
var mousewheelOffsetValue = 20 / 380 * workspace.scrollbar[hvScroll].handleLength_ * 3;
workspace.scrollbar[hvScroll].handlePosition_ += (((e.deltaY || 0) + (e.detail || 0)) > 0 ? mousewheelOffsetValue : -mousewheelOffsetValue);
workspace.scrollbar[hvScroll].onScroll_();
// workspace.setScale(workspace.scale);
}
var doubleClickCheck = [
[0, 'abc']
];
function omitedcheckUpdateFunction(event) {
if (event.type === 'create') {
editor_blockly.addIntoLastUsedType(event.blockId);
}
if (event.type === 'ui' && event.element == 'click') {
var newClick = [new Date().getTime(), event.blockId];
var lastClick = doubleClickCheck.shift();
doubleClickCheck.push(newClick);
if (newClick[0] - lastClick[0] < 500) {
if (newClick[1] === lastClick[1]) {
editor_blockly.doubleClickBlock(newClick[1]);
}
}
}
// Only handle these events
if (["create", "move", "change", "delete"].indexOf(event.type) < 0) return;
if (editor_blockly.workspace.topBlocks_.length >= 2) {
editor_blockly.setValue('入口方块只能有一个');
return;
}
var eventType = editor_blockly.entryType;
if (editor_blockly.workspace.topBlocks_.length == 1) {
var blockType = editor_blockly.workspace.topBlocks_[0].type;
if (blockType !== eventType + '_m' && !(editor_blockly.isCommonEntry() && blockType == 'common_m')) {
editor_blockly.setValue('入口方块类型错误');
return;
}
}
try {
var code = Blockly.JavaScript.workspaceToCode(workspace).replace(/\\(i|c|d|e|g|z)/g, '\\\\$1');
editor_blockly.setValue(code);
} catch (error) {
editor_blockly.setValue(String(error));
if (error instanceof OmitedError) {
var blockName = error.blockName;
var varName = error.varName;
var block = error.block;
}
// console.log(error);
}
}
workspace.addChangeListener(omitedcheckUpdateFunction);
workspace.addChangeListener(Blockly.Events.disableOrphans);
editor_blockly.workspace = workspace;
MotaActionFunctions.workspace = function () {
return editor_blockly.workspace;
}
// 因为在editor_blockly.parse里已经HTML转义过一次了,所以这里要覆盖掉以避免在注释中出现<等
MotaActionFunctions.xmlText = function (ruleName, inputs, isShadow, comment, collapsed, disabled) {
var rule = MotaActionBlocks[ruleName];
var blocktext = isShadow ? 'shadow' : 'block';
var xmlText = [];
xmlText.push('<' + blocktext + ' type="' + ruleName + '"' + (collapsed ? ' collapsed="true"' : '') + (disabled ? ' disabled="true"' : '') + '>');
if (!inputs) inputs = [];
for (var ii = 0, inputType; inputType = rule.argsType[ii]; ii++) {
var input = inputs[ii];
var _input = '';
var noinput = (input === null || input === undefined);
if (noinput && inputType === 'field' && MotaActionBlocks[rule.argsGrammarName[ii]].type !== 'field_dropdown') continue;
if (noinput && inputType === 'field') {
noinput = false;
input = rule.fieldDefault(rule.args[ii])
}
if (noinput) input = '';
if (inputType === 'field' && MotaActionBlocks[rule.argsGrammarName[ii]].type === 'field_checkbox') input = input ? 'TRUE' : 'FALSE';
if (inputType !== 'field') {
var subList = false;
var subrulename = rule.argsGrammarName[ii];
var subrule = MotaActionBlocks[subrulename];
if (subrule instanceof Array) {
subrulename = subrule[subrule.length - 1];
subrule = MotaActionBlocks[subrulename];
subList = true;
}
_input = subrule.xmlText([], true);
if (noinput && !subList && !isShadow) {
//无输入的默认行为是: 如果语句块的备选方块只有一个,直接代入方块
input = subrule.xmlText();
}
}
xmlText.push('<' + inputType + ' name="' + rule.args[ii] + '">');
xmlText.push(_input + input);
xmlText.push('</' + inputType + '>');
}
if (comment) {
xmlText.push('<comment>');
xmlText.push(comment);
xmlText.push('</comment>');
}
var next = inputs[rule.args.length];
if (next) { //next
xmlText.push('<next>');
xmlText.push(next);
xmlText.push('</next>');
}
xmlText.push('</' + blocktext + '>');
return xmlText.join('');
}
})();
// end mark sfergsvae
}).toString().split('// start mark sfergsvae')[1].split('// end mark sfergsvae')[0]
}
},
"夹击激光动画": function () {
function createCanvas(name, zIndex) {
if (!name) return;
var canvas = document.createElement('canvas');
canvas.id = name;
canvas.className = 'gameCanvas';
// 将图层插入进游戏内容
document.getElementById('gameDraw').appendChild(canvas);
canvas.style.zIndex = zIndex || 0;
var ctx = canvas.getContext('2d');
core.canvas[name] = ctx;
canvas.width = core.__PIXELS__;
canvas.height = core.__PIXELS__;
return canvas;
}
var bg3Canvas = createCanvas('bg3', 25);
if (main.mode == "editor") { // 与编辑器显伤的神秘联动(((
editor.dom.mapEdit.insertBefore(bg3Canvas, core.canvas.event.canvas);
bg3Canvas.style.zIndex = null;
}
core.bigmap.canvas = ['bg', 'bg3', 'event', 'event2', 'fg', 'damage'];
core.plugin._betCanvas = "bg3";
this._drawBetweenAttack = function (x, y, pos, frame) {
var ctx = core.plugin._betCanvas;
var w = 32,
h = 68,
ix = x * 32,
iy = y * 32;
// 左右夹击
if (pos[0]) core.drawImage(ctx, "light.png", 32 * (frame - 1), 0, 32, 68, ix, iy - 18, w, h, 90 * Math.PI / 180);
// 上下夹击
if (pos[1]) core.drawImage(ctx, "light.png", 32 * (frame - 1), 0, 32, 68, ix, iy - 18, w, h);
}
core.registerAnimationFrame("betweenAttack", true, function (timestamp) {
if (!flags.betweenAttackData) {
core.clearMap(core.plugin._betCanvas, 0, 0, core.__PIXELS__, core.__PIXELS__);
return;
}
var time = core.events._timestamp;
if (time && timestamp - time < 400) return;
core.clearMap(core.plugin._betCanvas, 0, 0, core.__PIXELS__, core.__PIXELS__);
core.events._timestamp = timestamp;
var data = flags.betweenAttackData || {};
flags._frame = flags._frame || 1;
var frame = flags._frame;
for (var loc in data) {
var l = loc.split(",");
var x = parseInt(l[0]),
y = parseInt(l[1]);
core.plugin._drawBetweenAttack(x, y, data[loc], frame);
}
flags._frame = frame + 1;
if (flags._frame > 4) flags._frame = 1;
});
var origin_extraDamage = core.control._updateDamage_extraDamage;
core.control._updateDamage_extraDamage = function (floorId, onMap) {
flags.betweenAttackData = null;
if (!flags.useBetweenLight) return origin_extraDamage.call(core.control, floorId, onMap);
else {
core.status.damage.extraData = [];
if (!core.flags.displayExtraDamage) return;
var width = core.floors[floorId].width,
height = core.floors[floorId].height;
var startX = onMap && core.bigmap.v2 ? Math.max(0, core.bigmap.posX - core.bigmap.extend) : 0;
var endX = onMap && core.bigmap.v2 ? Math.min(width, core.bigmap.posX + core.__SIZE__ + core.bigmap.extend + 1) : width;
var startY = onMap && core.bigmap.v2 ? Math.max(0, core.bigmap.posY - core.bigmap.extend) : 0;
var endY = onMap && core.bigmap.v2 ? Math.min(height, core.bigmap.posY + core.__SIZE__ + core.bigmap.extend + 1) : height;
const find = function (x, y) {
return core.status.damage.extraData.find(function (data) {
return data.x == x && data.y == y
})
}
for (var x = startX; x < endX; x++) {
for (var y = startY; y < endY; y++) {
var alpha = 1;
if (core.noPass(x, y, floorId)) {
if (core.flags.extraDamageType == 2) alpha = 0;
else if (core.flags.extraDamageType == 1) alpha = 0.6;
}
var loc = x + "," + y;
var damage = core.status.checkBlock.damage[loc] || 0;
var getEnemy = function (x, y) {
var id = core.getBlockId(x, y, floorId);
var e = core.material.enemys[id];
if (main.mode == "editor") e = core.enemys.enemys[id];
return e;
}
if (damage > 0) { // 该点伤害
damage = core.formatBigNumber(damage, true);
var left = false,
top = false;
var e_left = getEnemy(x - 1, y),
e_right = getEnemy(x + 1, y);
var e_bottom = getEnemy(x, y - 1),
e_top = getEnemy(x, y + 1);
if (core.hasSpecial(e_left, 16) && core.hasSpecial(e_right, 16) && e_left.id == e_right.id)
left = true;
if (core.hasSpecial(e_bottom, 16) && core.hasSpecial(e_top, 16) && e_bottom.id == e_top.id)
top = true;
flags.betweenAttackData = flags.betweenAttackData || {};
if (flags.betweenAttackData[x + "," + y]) continue;
var data = [left, top];
let [px, py] = [32 * x + 16, 32 * (y + 1) - 14];
if (left || top) {
px += 15;
py -= 10;
flags.betweenAttackData[x + "," + y] = data;
}
core.plugin._drawBetweenAttack(x, y, data, 1);
if (left) {
if (!find(x - 1, y)) core.status.damage.extraData.push({ x: x, y: y, text: damage, px: 32 * x + 16, py: 32 * (y + 1) - 14, color: '#ffaa33', alpha: alpha })
} else if (top) {
if (!find(x, y - 1)) core.status.damage.extraData.push({ x: x, y: y, text: damage, px: 32 * x + 16, py: 32 * (y + 1) - 14, color: '#ffaa33', alpha: alpha });
} else {
core.status.damage.extraData.push({ text: damage, px: 32 * x + 16, py: 32 * (y + 1) - 14, color: '#ffaa33', alpha: alpha });
}
} else { // 检查捕捉
if (core.status.checkBlock.ambush[x + "," + y]) {
core.status.damage.extraData.push({ text: '!', px: 32 * x + 16, py: 32 * (y + 1) - 14, color: '#ffaa33', alpha: alpha });
}
}
}
}
}
}
},
"瞬移轨迹": function () {
// 在此增加新插件
function popMove() {
var ctx = core.getContextByName('popMove');
if (!ctx) ctx = core.createCanvas('popMove', 0, 0, core.__PIXELS__, core.__PIXELS__, 71);
core.dymCanvas.popMove.canvas.style.width = core.__PIXELS__ * core.domStyle.scale + "px";
core.dymCanvas.popMove.canvas.style.height = core.__PIXELS__ * core.domStyle.scale + "px";
core.clearMap(ctx);
if (core.status.replay.speed <= 3 && !flags.stopPop) {
var list = core.status.popMove || [];
var count = 0;
list.forEach(function (one) {
// 由frame计算出dy
one.frame++;
// 绘制
if (one.frame >= 0) core.setAlpha(ctx, 1 - one.frame / 30);
else core.setAlpha(ctx, 1);
var length = Math.sqrt(Math.pow((one.px2 - one.px), 2) + Math.pow((one.py2 - one.py), 2));
//console.log(length)
var li = (length / 16)
var lx = (one.px2 - one.px) / li
var ly = (one.py2 - one.py) / li
for (var i = 0; i < li; i += 1) {
core.setAlpha(ctx, (1 - one.frame / 30) * ((i / li) * 0.8 + 0.2));
core.drawLine('popMove', one.px + i * lx, one.py + i * ly, one.px + ((i + 0.5) * lx), one.py + ((i + 0.5) * ly), '#E1E1E1', 6);
if (i == 0)
core.strokeCircle('popMove', one.px, one.py, 6, '#E1E1E1', 3);
}
core.strokeCircle('popMove', one.px2, one.py2, 6, '#E1E1E1', 3);
core.strokeCircle('popMove', one.px2, one.py2, 6 + 16 * one.frame / 30, '#E1E1E1', 6 * (1 - one.frame / 30));
//core.drawLine('popMove', one.px, one.py, one.px2, one.py2, '#E1E1E1', 6);
if (one.frame >= 30) count++;
});
if (count > 0) list.splice(0, count);
}
}
if (!main.replayChecking) {
core.registerAnimationFrame('popMove', true, popMove);
}
this.addPopMove = function (px, py, px2, py2, frame) {
var data = { px: px, py: py, px2: px2, py2: py2, frame: frame || 0 };
if (core.status.replay.speed <= 3) {
if (!core.status.popMove) core.status.popMove = [data];
else core.status.popMove.push(data);
}
}
},
"墓碑(编辑器)": function () {
// 在此增加新插件
if (main.mode != 'editor') return; // 编辑器模式下使用
var mapData = null;
var drawMap = core.maps._drawMap_drawAll;
core.maps._drawMap_drawAll = function (floorId) {
floorId = floorId || core.status.floorId;
if (!main.useCompress) {
core.getLocalForage('autoSave', { 'maps': [] }, function (v) {
mapData = v.maps[floorId]?.map;
drawMap.call(core.maps, floorId);
}, function (e) { console.log(e) });
}
}
maps.prototype._drawBlockInfo = function (blockInfo, x, y) {
var alpha = 1.0;
if (mapData && !!mapData[y] && mapData[y][x] == 0) {
core.setAlpha('event', 0.5);
core.setAlpha('event2', 0.5);
}
var image = blockInfo.image,
posX = blockInfo.posX,
posY = blockInfo.posY,
height = blockInfo.height;
core.clearMap('event', x * 32, y * 32, 32, 32);
if (blockInfo.bigImage) {
this._drawBlockInfo_bigImage(blockInfo, x, y, 'event')
core.setAlpha('event', alpha);
core.setAlpha('event2', alpha);
return
}
core.drawImage('event', image, posX * 32, posY * height + height - 32, 32, 32, x * 32, y * 32, 32, 32);
if (height > 32) {
core.clearMap('event2', x * 32, y * 32 + 32 - height, 32, height - 32)
core.drawImage('event2', image, posX * 32, posY * height, 32, height - 32, x * 32, y * 32 + 32 - height, 32, height - 32);
}
core.setAlpha('event', alpha);
core.setAlpha('event2', alpha);
}
},
"小地图": function () {
// 在此增加新插件
// ----- 不可自定义 杂七杂八的变量
/** @type {{[x: string]: BFSResult}} */
let mapCache = {}; // 地图缓存
let drawCache = {}; // 绘制信息缓存
let status = 'none'; // 当前的绘制状态
/** @type {{[x: string]: Sprite}} */
let sprites = {}; // 当前所有的sprite
/** @type {{[x: string]: Sprite}} */
let canDrag = {}; // 可以拖拽的sprite
/** @type {{[x: string]: Button}} */
let areaSprite = {}; // 区域列表对应的sprite
let clicking = false; // 是否正在点击,用于拖拽判定
let drawingMap = ''; // 正在绘制的中心楼层
let nowScale = 0; // 当前绘制的放缩比例
let lastTouch = {}; // 上一次的单点点击信息
let lastLength = 0; // 手机端缩放时上一次的两指间距离
let nowDepth = 0; // 当前的遍历深度
let drawedThumbnail = {}; // 已经绘制过的缩略图
let moved = false; // 鼠标按下后是否移动了
let noBorder = false; // 是否是无边框拼接模式
let lastScale = 0; // 上一次缩放,用于优化缩略图绘制
let areaPage = 0; // 区域显示的当前页数
let nowArea = 0; // 当前区域index
let selecting = ''; // 选择时当前正在选择的地图
// ---- 不可自定义,常量
/** @type {Area} */
let areas = []; // 区域信息
const perPage = Math.floor((core._PY_ - 60) / 30); // 区域的每页显示数量
// ---- 可自定义默认的切换地图的图块id
const defaultChange = {
left: 'leftPortal', // 左箭头
up: 'upPortal', // 上箭头
right: 'rightPortal', // 右箭头
down: 'downPortal', // 下箭头
upFloor: 'upFloor', // 上楼
downFloor: 'downFloor' // 下楼
};
// ---- 可自定义,默认数值
const defaultValue = {
font: 'Verdana', // 默认字体
scale: 60, // 默认地图缩放比例
depth: Infinity, // 默认的遍历深度
};
// ---- 不可自定义,计算数据
const dirData = {
up: [1, 0],
down: [-1, 0],
left: [0, 1],
right: [0, -1],
upFloor: [0, 0],
downFloor: [0, 0]
}
let ignoreEnemies = this.ignoreEnemies = [];
let allChangeEntries = Object.entries(defaultChange);
const reset = core.events.resetGame;
core.events.resetGame = function () {
reset.apply(core.events, arguments);
areas = [];
// 获取所有分区,使用异步函数,保证不会卡顿
// 原理是用bfs扫将所有连在一起的地图合并成一个区域
(async function () {
let all = core.floorIds.slice();
const scanned = {
[all[0]]: true
};
while (all.length > 0) {
let now = all.shift();
if (core.status.maps[now].deleted) continue;
if (!now) return;
await new Promise(res => {
const result = core.plugin.bfsSearch(now, Infinity, true);
mapCache[`${now}_Infinity_false`] = result;
areas.push({ name: core.floors[now].areas, maps: result.order });
for (const map of result.order) {
scanned[map] = true;
all = all.filter(v => !result.order.includes(v));
}
res('success');
2024-11-30 13:57:26 +08:00
}).then(() => { core.setFlag("areas", areas) });
}
})();
}
/**
* 广度优先搜索搜索地图路径
* @param {string} center 中心地图的id
* @param {number} depth 搜索深度
* @param {boolean} noCache 是否不使用缓存
* @returns {BFSResult} 格式floorId_x_y_dir: floorId_x_y
*/
this.bfsSearch = function bfsSearch(center, depth, noCache) {
// 检查缓存
const id = `${center}_${depth}_${noBorder}`;
if (mapCache[id] && !noCache) return mapCache[id];
const used = {
[center]: true
}; // 搜索过的楼层
let queue = [];
let stack = [center]; // 当前栈
let nowDepth = -1;
const mapOrder = [center]; // 遍历顺序,顺便还能记录遍历了哪些楼层
const res = {}; // 输出结果格式floorId_x_y_dir: floorId_x_y
const enemies = {};
const upOrDown = {};
const mapdir = {};
// 开始循环搜索
while (nowDepth < depth && stack.length > 0) {
const now = stack.shift(); // 当前id
if (core.status.maps[now].deleted) continue;
mapdir[now] = mapdir[now] ?? [];
const blocks = core.getMapBlocksObj(now); // 获取当前地图的每点的事件
enemies[now] = {};
// 遍历,获取可以传送的点,只检测绿点事件,因此可用红点事件进行传送来实现分区功能
for (const i in blocks) {
const block = blocks[i];
// 整合漏怪检测,所以要检测怪物
if (block.event.trigger === 'battle') {
const id = block.event.id;
if (ignoreEnemies.includes(id)) continue;
else enemies[now][i] = block.event.id;
continue;
}
// 检测触发器是否为切换楼层,不是则直接跳过
if (block.event.trigger !== 'changeFloor') continue;
const dirEntries = allChangeEntries.find(v => v[1] === block.event.id);
// 如果不是那六种传送门,直接忽略
if (!dirEntries) continue;
const data = block.event.data;
const dir = dirEntries[0];
const route = now + '_' + i.replace(',', '_') + '_' + dir;
const target = data.floorId + '_' + data.loc.join('_');
mapdir[now].push(dir);
if (!used[data.floorId]) {
if (dir === 'upFloor' || dir === 'downFloor') {
upOrDown[now] = upOrDown[id] ?? [];
upOrDown[now].push(dir);
}
queue.push(data.floorId); // 没有搜索过,则加入栈中
mapOrder.push(data.floorId);
used[data.floorId] = true;
}
res[route] = target;
}
if (stack.length === 0) {
stack = queue;
queue = [];
nowDepth++;
}
if (stack.length === 0 && queue.length === 0) break;
}
return { res, order: mapOrder, enemies, upOrDown, mapdir };
}
/**
* 获取绘制信息
* @param {string?} center 中心地图id
* @param {number?} depth 搜索深度
* @param {boolean?} noCache 是否不使用缓存
* @returns {MapDrawInfo}
*/
this.getMapDrawInfo = function (center = core.status.floorId, depth = defaultValue.depth, noCache = false) {
nowDepth = depth;
drawingMap = center;
const id = `${center}_${depth}_${noBorder}`;
// 检查缓存
if (drawCache[id] && !noCache) return drawCache[id];
const map = core.plugin.bfsSearch(center, depth, noCache);
mapCache[id] = map;
const res = getDrawInfo(map.res, center, map.order);
res.upOrDown = map.upOrDown;
res.mapdir = map.mapdir;
drawCache[id] = res;
return res;
}
/**
* 提供地图的绘制信息
* @param {{[x: string]: string}} map 要绘制的地图格式floorId_x_y_dir: floorId_x_y
* @param {string} center 中心地图的id
* @param {string[]} order 遍历顺序
* @returns {MapDrawInfo} 地图的绘制信息
*/
function getDrawInfo(map, center, order) {
// 先根据地图id分类从而确定每个地图连接哪些地图同时方便处理
const links = {};
for (const i in map) {
const splitted = i.split('_');
const id = splitted[0]
if (!links[id]) links[id] = {};
links[id][i] = map[i];
}
// 分类完毕,然后根据连接点先计算出各个地图的坐标,然后再进行判断
const centerFloor = core.status.maps[center];
const visitedCenter = core.hasVisitedFloor(center);
const locs = { // 格式:[中心x, 中心y, 宽, 高, 是否到达过]
[center]: [2, 2, 1, 1, visitedCenter]
};
// 可以上楼下楼的地图
const upOrDown = {};
for (const id of order) {
const now = links[id];
// 遍历每一个地图的连接情况
for (const from in now) {
const to = now[from];
// 先根据from to计算物理位置
const fromData = from.split('_'),
toData = to.split('_');
const dir = fromData[3];
if (dir === 'upFloor' || dir === 'downFloor') continue;
if (!defaultChange[dir]) continue;
const v = dirData[dir][1], // 竖直数值
h = dirData[dir][0], // 水平数值
ha = Math.abs(h),
va = Math.abs(v);
const ff = id, // fromFloorId
tf = toData[0]; // toFloorId
const fromFloor = core.status.maps[ff],
toFloor = core.status.maps[tf];
const fhw = Math.floor(fromFloor.width / 2), // fromFloorHalfWidth
fhh = Math.floor(fromFloor.height / 2),
thw = Math.floor(toFloor.width / 2),
thh = Math.floor(toFloor.height / 2);
const fLoc = locs[id] ?? [0, 0];
if (!locs[ff]) continue;
let x, y;
if (locs && locs[tf]) {
x = locs[tf][0];
y = locs[tf][1];
} else {
// 计算坐标,公式可以通过画图推断出
x = fLoc[0] - v
y = fLoc[1] - h;
}
locs[tf] = locs[tf] ?? [x, y, 1, 1, core.hasVisitedFloor(tf)];
}
}
// 获取地图绘制需要的长宽
let width = 0,
height = 0;
let left, right, up, down;
for (const id in locs) {
const [x, y, w, h] = locs[id];
if (left === void 0) {
left = right = x;
up = down = y;
}
left = Math.min(x - 1, left);
right = Math.max(x + 1, right);
up = Math.min(y - 1, up);
down = Math.max(y + 1, down);
}
width = right - left;
height = down - up;
return { locs, width, height, layer: upOrDown };
}
function mapblock(mapdir) {
let mb = "";
if (mapdir.includes("up")) mb += "u"
if (mapdir.includes("down")) mb += "d"
if (mapdir.includes("left")) mb += "l"
if (mapdir.includes("right")) mb += "r"
return mb ? mb + ".png" : "null.png"
}
core.animateFrame.globalAlphaFloor = 0
core.animateFrame.globalAlphaFloorStatus = 1
/**
* 绘制小地图
* @param {MapDrawInfo} info 地图绘制信息
* @param {number} scale 地图的绘制比例
*/
this.drawSmallMap = function (ctx, info, center, sx, sy, sw, sh, vertical = core.domStyle.isVertical, scale = defaultValue.scale) {
core.clearMap(ctx, sx, sy, sw + 40, sh + 60)
if (vertical) {
sy += 50
sx += 5
} else {
sy += 50
sx += 30
}
core.fillRect(ctx, sx, sy, sw, sh, '#000')
core.strokeRect(ctx, sx, sy, sw, sh, '#fff', 5)
core.setTextAlign('outerUI', 'center')
2024-11-29 17:33:16 +08:00
core.fillText(ctx, core.status.maps[center].areas, sx + sw / 2, sy - 20, '#FFFFFF', 'bold 42px Verdana')
const locs = info.locs
for (const id in locs) {
const loc = locs[id];
let color = '#000';
if (!loc[4]) color = '#f0f';
const [x, y, w, h] = loc.map(v => typeof v === 'number' && v * scale);
const fx = x + sx,
fy = y + sy;
const mapdir = info.mapdir[id]
const img = mapblock(mapdir)
if (x < 0 || x > 4 * scale || y < 0 || y > 4 * scale) continue
core.drawImage(ctx, img, 0, 0, 60, 60, fx, fy, w, h)
const layer = info.upOrDown[id];
const min = Math.min(w, h);
if (layer?.includes('upFloor'))
core.drawIcon(ctx, defaultChange.upFloor, fx + min / 4, fy + min / 4, min / 2, min / 2);
if (layer?.includes('downFloor'))
core.drawIcon(ctx, defaultChange.downFloor, fx + min / 4, fy + min / 4, min / 2, min / 2);
// 显示漏怪数量
if (core.getFlag('showEnemy')) {
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
const c = drawingMap + '_' + nowDepth + '_' + noBorder;
const n = Object.keys(mapCache[c].enemies[id]).length;
color = '#fff';
if (n > 10) color = '#fc3';
if (n > 20) color = '#f22';
ctx.shadowBlur = 0.6 * nowScale;
ctx.shadowColor = '#000';
if (n > 0) core.fillText(ctx, n, fx + w * 3 / 10, fy + h * 7 / 10, color, 22 + 'px normal');
ctx.shadowBlur = 0;
}
}
}
},
"楼传": function () {
// 在此增加新插件
core.canMoveFloor = function () {
let canmove = false
core.status.thisMap.blocks.forEach(block => {
if (!block.disable && (block.event.id == 'upFloor' || block.event.id == 'downFloor')) {
let automaticRoute = core.automaticRoute(block.x, block.y)
if (!core.flags.flyNearStair || automaticRoute.length > 0) {
let loc = automaticRoute.pop()
loc = automaticRoute.pop()
if (core.canMoveDirectly(loc?.x, loc?.y) >= 0 || !loc) { canmove = true }
}
}
})
return canmove
}
ui.prototype._drawViewMaps_drawHint = function () {
core.playSound('打开界面');
}
////// 绘制浏览地图界面 //////
ui.prototype._drawViewMaps = function (index, x, y) {
core.lockControl();
2024-11-30 13:57:26 +08:00
core.clearMap('data')
core.status.event.id = 'viewMaps';
this.clearUI();
//console.log(index)
if (index == null) index = core.floorIds.indexOf(core.status.floorId)
core.animateFrame.tip = null;
core.status.checkBlock.cache = {};
let data = this._drawViewMaps_buildData(index, x, y);
core.drawWindowSkin('winskin1.png', 'ui', 0, 0, 416, 416);
let page = core.status.event.data.index;
let floorId = core.status.event.data.floorId;
2024-11-29 17:33:16 +08:00
core.ui.statusBar._update_map(floorId);
const bfs = core.plugin.bfsSearch(floorId, 1, true);
const mapdir = bfs.mapdir[floorId];
core.setTextAlign('ui', 'center');
2024-11-29 17:33:16 +08:00
let size = core.__PIXELS__ * 3 / 4; //312
2024-11-30 13:57:26 +08:00
const areas = core.getFlag('areas')
2024-11-29 13:41:05 +08:00
2024-11-30 13:57:26 +08:00
const i = areas.findIndex(v => v.name === core.status.maps[floorId].areas)
2024-11-29 13:41:05 +08:00
core.fillRoundRect('ui', 15 - 2, 15 - 2, 35 + 4, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4, 15 - 4, 35 + 8, 35 + 8, 4, "#444444", 1)
core.fillText('ui', '当前', 13 + 20, 17 + 20, '#FFFFFF', this._buildFont(18, true))
core.fillRoundRect('ui', 15 - 2, 15 - 2 + 35 + 8 + size + 8 - 54, 35 + 4, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4, 15 - 4 + 35 + 8 + size + 8 - 54, 35 + 8, 35 + 8, 4, "#444444", 1)
if (!core.status.maps[core.floorIds[page]].canFlyTo || !core.hasVisitedFloor(core.floorIds[page])) {
core.fillText('ui', '预览', 13 + 20, 17 + 20 + 35 + 8 + size + 8 - 54, '#909090', this._buildFont(18, true))
} else {
core.fillText('ui', '传送', 13 + 20, 17 + 20 + 35 + 8 + size + 8 - 54, '#909090', this._buildFont(18, true))
}
core.fillRoundRect('ui', 15 - 4 + size - 2 + 45, 15 - 2 + size - 4 + 45, 35 + 4, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4 + size - 4 + 45, 15 - 4 + size - 4 + 45, 35 + 8, 35 + 8, 4, "#444444", 1)
core.fillText('ui', '离开', 15 - 4 + size - 4 + 45 + 22, 15 - 4 + size - 4 + 45 + 26, '#FFFFFF', this._buildFont(18, true))
core.fillRoundRect('ui', 15 + 44 - 2, 15 - 2, size + 4 - 58, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 + 44 - 4, 15 - 4, size + 8 - 58, 35 + 8, 4, "#444444", 1)
if (mapdir.includes("up")) {
core.fillText('ui', '北▲', 30 + 145 + 10, 17 + 20, '#FFFFFF', this._buildFont(18, true))
} else {
core.fillText('ui', '北▲', 30 + 145 + 10, 17 + 20, '#909090', this._buildFont(18, true))
}
2024-11-30 13:57:26 +08:00
core.fillRoundRect('ui', 15 - 2, 59 - 2, 35 + 4, size + 4 - 58, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4, 59 - 4, 35 + 8, size + 8 - 58, 4, "#444444", 1)
if (mapdir.includes("left")) {
core.fillText('ui', '西', 15 + 17, 25 + 150, '#FFFFFF', this._buildFont(18, true))
core.fillText('ui', '◀', 15 + 17, 45 + 150, '#FFFFFF', this._buildFont(18, true))
} else {
core.fillText('ui', '西', 15 + 17, 25 + 150, '#909090', this._buildFont(18, true))
core.fillText('ui', '◀', 15 + 17, 45 + 150, '#909090', this._buildFont(18, true))
}
core.fillRoundRect('ui', 15 + 44 - 2, 15 - 2 + size - 4, size + 4 - 58, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 + 44 - 4, 15 - 4 + size - 4, size + 8 - 58, 35 + 8, 4, "#444444", 1)
if (mapdir.includes("down")) {
core.fillText('ui', '南▼', 30 + 145 + 10, 17 + 20 + size - 4, '#FFFFFF', this._buildFont(18, true))
} else {
core.fillText('ui', '南▼', 30 + 145 + 10, 17 + 20 + size - 4, '#909090', this._buildFont(18, true))
}
2024-11-30 13:57:26 +08:00
core.fillRoundRect('ui', 15 - 2 + size - 4, 59 - 2, 35 + 4, size + 4 - 58, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4 + size - 4, 59 - 4, 35 + 8, size + 8 - 58, 4, "#444444", 1)
if (mapdir.includes("right")) {
core.fillText('ui', '东', 15 + 17 + size - 4, 25 + 150, '#FFFFFF', this._buildFont(18, true))
core.fillText('ui', '▶', 15 + 17 + size - 4, 45 + 150, '#FFFFFF', this._buildFont(18, true))
} else {
core.fillText('ui', '东', 15 + 17 + size - 4, 25 + 150, '#909090', this._buildFont(18, true))
core.fillText('ui', '▶', 15 + 17 + size - 4, 45 + 150, '#909090', this._buildFont(18, true))
}
core.fillRoundRect('ui', 60 - 2, 60 - 2, size - 58 + 4, size - 58 + 4, 4, '#444444');
core.strokeRoundRect('ui', 60 - 4, 60 - 4, size - 58 + 8, size - 58 + 8, 4, "#444444", 1)
core.drawThumbnail(floorId, null, { damage: data.damage, ctx: 'ui', x: 58, y: 58, size: 0.62, all: data.all })
2024-11-29 13:41:05 +08:00
if (!core.status.maps[core.floorIds[page]].canFlyTo || !core.hasVisitedFloor(core.floorIds[page]))
core.drawImage('ui', 'lock.png', 0, 0, size, size, 58, 58, size - 8, size - 8);
core.fillRoundRect('ui', 15 + 44 - 2, 60 - 2 + size - 4, size + 4 - 58, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 + 44 - 4, 60 - 4 + size - 4, size + 8 - 58, 35 + 8, 4, "#444444", 1)
core.fillText('ui', core.status.maps[floorId].areas, 30 + 145 + 10, 17 + 65 + size - 4, '#FFFFFF', this._buildFont(18, true))
core.fillRoundRect('ui', 15 - 2, 60 - 2 + size - 4, 35 + 4, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4, 60 - 4 + size - 4, 35 + 8, 35 + 8, 4, "#444444", 1)
2024-11-30 13:57:26 +08:00
if (i === 0) {
core.fillText('ui', '◀', 35, 17 + 65 + size - 4, '#909090', this._buildFont(18, true))
} else {
core.fillText('ui', '◀', 35, 17 + 65 + size - 4, '#FFFFFF', this._buildFont(18, true))
}
core.fillRoundRect('ui', 15 - 2 + size - 4, 60 - 2 + size - 4, 35 + 4, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4 + size - 4, 60 - 4 + size - 4, 35 + 8, 35 + 8, 4, "#444444", 1)
2024-11-30 13:57:26 +08:00
if (i === areas.length - 1) {
core.fillText('ui', '▶', 30 + 300 + 10, 17 + 65 + size - 4, '#909090', this._buildFont(18, true))
} else {
core.fillText('ui', '▶', 30 + 300 + 10, 17 + 65 + size - 4, '#FFFFFF', this._buildFont(18, true))
}
core.fillRoundRect('ui', 15 - 2 + size - 4, 15 - 2, 80 + 4, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4 + size - 4, 15 - 4, 80 + 8, 35 + 8, 4, "#444444", 1)
if (mapdir.includes("upFloor")) {
core.fillText('ui', '上楼', 30 + 320 + 10, 17 + 20, '#FFFFFF', this._buildFont(18, true))
} else {
core.fillText('ui', '上楼', 30 + 320 + 10, 17 + 20, '#909090', this._buildFont(18, true))
}
core.fillRoundRect('ui', 15 - 2 + size - 4, 15 - 2 + size - 4, 80 + 4, 35 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4 + size - 4, 15 - 4 + size - 4, 80 + 8, 35 + 8, 4, "#444444", 1)
if (mapdir.includes("downFloor")) {
core.fillText('ui', '下楼', 30 + 320 + 10, 17 + 20 + size - 4, '#FFFFFF', this._buildFont(18, true))
} else {
core.fillText('ui', '下楼', 30 + 320 + 10, 17 + 20 + size - 4, '#909090', this._buildFont(18, true))
}
core.fillRoundRect('ui', 15 - 2 + size - 4 + 35 + 8, 60 - 2, 37 + 4, (size - 58) / 2 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4 + size - 4 + 35 + 8, 60 - 4, 37 + 8, (size - 58) / 2 + 8, 4, "#444444", 1)
const title = core.status.maps[floorId].title
//const length = title.length
fillTextVertical("ui", title, 15 - 4 + size - 4 + 45, 85, '#FFFFFF', 18)
//const uictx = main.dom.gameCanvas.ui.getContext('2d')
core.fillRoundRect('ui', 15 - 2 + size - 4 + 35 + 8, 60 - 2 + (size - 58) / 2 + 8, 37 + 4, 119 + 4, 4, '#444444');
core.strokeRoundRect('ui', 15 - 4 + size - 4 + 35 + 8, 60 - 4 + (size - 58) / 2 + 8, 37 + 8, 119 + 8, 4, "#444444", 1)
if (core.getFlag('showEnemy')) {
fillTextVertical("ui", "关闭漏怪检测", 15 - 4 + size - 4 + 45, 220, '#FFFFFF', 18)
} else {
fillTextVertical("ui", "开启漏怪检测", 15 - 4 + size - 4 + 45, 220, '#FFFFFF', 18)
}
//uictx.fillTextVertical(title, 15 - 4 + size - 4 + 35 + 29, 25 + 150)
//fillTextVertical('ui', title, 15 - 4 + size - 4 + 35 + 29, 25 + 150, '#FFFFFF', this._buildFont(18, true))
}
function fillTextVertical(name, text, x, y, style, fontsize) {
const ctx = core.ui.getContextByName(name);
if (!ctx) return;
const canvas = document.createElement('canvas');
const context = canvas.getContext("2d");
const length = text.length
canvas.width = fontsize * 2
canvas.height = fontsize * length * 2
if (style) context.fillStyle = core.arrayToRGBA(style)
if (fontsize) context.font = core.ui._buildFont(fontsize, true);
let arrText = text.split('');
let arrWidth = arrText.map(function (letter) {
return context.measureText(letter).width;
});
let align = context.textAlign;
let baseline = context.textBaseline;
let sx = fontsize,
sy = fontsize * length;
if (align == 'left') {
sx = sx + Math.max.apply(null, arrWidth) / 2;
} else if (align == 'right') {
sx = sx - Math.max.apply(null, arrWidth) / 2;
}
if (baseline == 'bottom' || baseline == 'alphabetic' || baseline == 'ideographic') {
sy = sy - arrWidth[0] / 2;
} else if (baseline == 'top' || baseline == 'hanging') {
sy = sy + arrWidth[0] / 2;
}
context.textAlign = 'center';
context.textBaseline = 'middle';
// 开始逐字绘制
arrText.forEach(function (letter, index) {
// 确定下一个字符的纵坐标位置
var letterWidth = arrWidth[index];
if (index > 0 && text.charCodeAt(index - 1) < 256) {
// y修正
sy = sy + arrWidth[index - 1] / 2;
}
context.fillText(letter, sx, sy);
// 旋转坐标系还原成初始态
context.setTransform(1, 0, 0, 1, 0, 0);
// 确定下一个字符的纵坐标位置
var letterWidth = arrWidth[index];
sy = sy + letterWidth;
});
// 水平垂直对齐方式还原
context.textAlign = align;
context.textBaseline = baseline;
//绘制到目标位置
ctx.drawImage(canvas, x, y - fontsize * length)
};
////// 点击楼层传送器时的打开操作 //////
events.prototype.useFly = function (fromUserAction) {
if (core.isReplaying()) return;
if (!core.status.maps[core.status.floorId].canFlyFrom) {
core.drawTip(core.material.items['fly'].name + "好像失效了", 'fly');
return;
}
// 从“浏览地图”页面:尝试直接传送到该层
if (core.status.event.id == 'viewMaps') {
if (!core.hasItem('fly')) {
core.playSound('操作失败');
core.drawTip('你没有' + core.material.items['fly'].name, 'fly');
} else if (core.flags.flyNearStair && !core.nearStair() && !core.canMoveFloor()) {
core.playSound('操作失败');
core.drawTip("无法到达楼梯边使用" + core.material.items['fly'].name, 'fly');
} else {
core.flyTo(core.status.event.data.floorId);
}
return;
}
if (!this._checkStatus('fly', fromUserAction, true)) return;
//if (core.flags.flyNearStair && !core.nearStair())
if (core.flags.flyNearStair && !core.nearStair() || !core.canMoveFloor()) {
core.playSound('操作失败');
core.drawTip("无法到达楼梯边使用" + core.material.items['fly'].name, 'fly');
core.unlockControl();
core.status.event.data = null;
core.status.event.id = null;
return;
}
if (!core.canUseItem('fly')) {
core.playSound('操作失败');
core.drawTip(core.material.items['fly'].name + "好像失效了", 'fly');
core.unlockControl();
core.status.event.data = null;
core.status.event.id = null;
return;
}
core.playSound('打开界面');
core.useItem('fly', true);
return;
}
////// 系统菜单栏界面时的点击操作 //////
actions.prototype._clickSettings = function (x, y) {
if (this._out(x)) return;
var choices = core.status.event.ui.choices;
var topIndex = this._getChoicesTopIndex(choices.length);
if (y >= topIndex && y < topIndex + choices.length) {
var selection = y - topIndex;
core.status.event.selection = selection;
switch (selection) {
case 0:
core.status.event.selection = 0;
core.playSound('确定');
core.ui._drawSwitchs();
break;
case 1:
// core.playSound('确定');
core.ui._drawKeyBoard();
break;
case 2:
// core.playSound('确定');
core.clearUI();
core.ui._drawViewMaps(core.floorIds.indexOf(core.status.floorId));
break;
case 3:
core.status.event.selection = 0;
core.playSound('确定');
core.ui._drawNotes();
break;
case 4:
core.status.event.selection = 0;
core.playSound('确定');
core.ui._drawSyncSave();
break;
case 5:
core.status.event.selection = 0;
core.playSound('确定');
core.ui._drawGameInfo();
break;
case 6:
return core.confirmRestart();
case 7:
core.playSound('取消');
core.ui.closePanel();
break;
}
}
return;
}
////// 查看地图界面时的点击操作 //////
actions.prototype._clickViewMaps = function (x, y, px, py) {
if (core.status.event.data == null) {
core.ui._drawViewMaps(core.floorIds.indexOf(core.status.floorId));
return;
}
2024-11-29 17:33:16 +08:00
let now = core.floorIds.indexOf(core.status.floorId);
let index = core.status.event.data.index;
let cx = core.status.event.data.x,
cy = core.status.event.data.y;
2024-11-29 17:33:16 +08:00
let floorId = core.floorIds[index],
mw = core.floors[floorId].width,
mh = core.floors[floorId].height;
2024-11-29 17:33:16 +08:00
let perpx = core.__PIXELS__ / 5,
cornerpx = perpx * 3 / 4;
2024-11-29 17:33:16 +08:00
const bfs = core.plugin.bfsSearch(floorId, 1, true)
const mapdir = bfs.mapdir[floorId]
const res = bfs.res;
const formto = {}
for (let from in res) {
const to = res[from]
const [fromfloorId, fromsx, fromsy, dir] = from.split('_')
const [tofloorId, tosx, tosy] = to.split('_')
if (!formto[fromfloorId]) formto[fromfloorId] = {}
if (!formto[fromfloorId][dir]) formto[fromfloorId][dir] = tofloorId
}
2024-11-30 13:57:26 +08:00
const areas = core.getFlag('areas')
let i = areas.findIndex(v => v.name === core.status.maps[floorId].areas)
2024-11-29 17:33:16 +08:00
if (px >= 11 && px <= 54 && py >= 11 && py <= 54) {
core.ui._drawViewMaps(core.floorIds.indexOf(core.status.floorId))
} else if (px >= 362 && px <= 407 && py >= 191 && py <= 318) {
flags.showEnemy = !flags.showEnemy
core.ui._drawViewMaps(index)
} else if (px >= 364 && px <= 407 && py >= 364 && py <= 407) {
core.clearMap('data');
core.playSound('取消');
core.ui.closePanel();
core.getItemDetail();
core.redrawMap();
2024-11-30 13:57:26 +08:00
core.ui.statusBar._update_map()
2024-11-29 17:33:16 +08:00
return;
} else if (px >= 55 && px <= 317 && py >= 11 && py <= 54) {
2024-11-30 13:57:26 +08:00
if (mapdir.includes("up")) core.ui._drawViewMaps(core.floorIds.indexOf(formto[floorId].up))
} else if (px >= 55 && px <= 317 && py >= 319 && py <= 362) {
if (mapdir.includes("down")) core.ui._drawViewMaps(core.floorIds.indexOf(formto[floorId].down))
} else if (px >= 11 && px <= 54 && py >= 55 && py <= 317) {
if (mapdir.includes("left")) core.ui._drawViewMaps(core.floorIds.indexOf(formto[floorId].left))
} else if (px >= 319 && px <= 362 && py >= 55 && py <= 317) {
if (mapdir.includes("right")) core.ui._drawViewMaps(core.floorIds.indexOf(formto[floorId].right))
} else if (px >= 319 && px <= 407 && py >= 11 && py <= 54) {
if (mapdir.includes("upFloor")) core.ui._drawViewMaps(core.floorIds.indexOf(formto[floorId].upFloor))
} else if (px >= 319 && px <= 407 && py >= 319 && py <= 362) {
if (mapdir.includes("downFloor")) core.ui._drawViewMaps(core.floorIds.indexOf(formto[floorId].downFloor))
} else if (px >= 55 && px <= 317 && py >= 55 && py <= 317 && !core.isReplaying()) {
core.useFly(false);
return;
} else if (px >= 11 && px <= 54 && py >= 364 && py <= 407) {
if (i > 0) {
i -= 1
core.ui._drawViewMaps(core.floorIds.indexOf(areas[i].maps[0]))
}
} else if (px >= 319 && px <= 362 && py >= 364 && py <= 407) {
if (i < areas.length - 1) {
i += 1
core.ui._drawViewMaps(core.floorIds.indexOf(areas[i].maps[0]))
2024-11-29 17:33:16 +08:00
}
}
}
2024-11-30 13:57:26 +08:00
const replayAction_fly = function (action) {
if (action.indexOf("fly:") != 0) return false;
var floorId = action.substring(4);
var toIndex = core.floorIds.indexOf(floorId);
if (!core.canUseItem('fly') || core.flags.flyNearStair && !core.nearStair()) return false;
core.ui._drawViewMaps(toIndex)
if (core.status.replay.speed == 24) {
if (!core.flyTo(floorId, core.replay))
core.control._replay_error(action);
return true;
}
setTimeout(function () {
if (!core.flyTo(floorId, core.replay))
core.control._replay_error(action);
}, core.control.__replay_getTimeout());
return true;
}
core.registerReplayAction("fly", replayAction_fly);
////// 查看地图界面时,放开某个键的操作 //////
actions.prototype._keyUpViewMaps = function (keycode) {
if (core.status.event.data == null) {
core.ui._drawViewMaps(core.floorIds.indexOf(core.status.floorId));
return;
}
var floorId = core.floorIds[core.status.event.data.index];
2024-11-30 13:57:26 +08:00
if (keycode == 27 || keycode == 71) {
core.clearMap('data');
core.playSound('取消');
core.ui.closePanel();
core.getItemDetail();
core.redrawMap();
2024-11-30 13:57:26 +08:00
core.ui.statusBar._update_map()
return;
}
if (keycode == 88) {
core.openBook(true)
return;
}
if (keycode == 86) {
core.status.event.data.damage = !core.status.event.data.damage;
core.playSound('光标移动');
core.ui._drawViewMaps(core.status.event.data);
return;
}
if (keycode == 66) {
core.openBook(false);
return;
}
if ((keycode == 13 || keycode == 32 || keycode == 67) && !core.isReplaying()) {
core.useFly(false);
return;
}
return;
}
actions.prototype._keyDownViewMaps = function (keycode) {
if (core.status.event.data == null) return;
var floorId = core.floorIds[core.status.event.data.index],
mh = core.floors[floorId].height;
2024-11-30 13:57:26 +08:00
if (keycode == 39) this._clickViewMaps(9, 1, 330, 250);
if (keycode == 37) this._clickViewMaps(9, 8, 25, 200);
if (keycode == 40) this._clickViewMaps(9, 6, 250, 330);
if (keycode == 38) this._clickViewMaps(9, 3, 200, 25);
if (keycode == 34) this._clickViewMaps(9, 3, 350, 330);
if (keycode == 33) this._clickViewMaps(9, 3, 350, 25);
return;
}
actions.prototype._sys_onmousewheel = function (direct) {
// 向下滚动是 -1 ,向上是 1
if (this._checkReplaying()) {
// 滚轮控制速度
if (direct == 1) core.speedUpReplay();
if (direct == -1) core.speedDownReplay();
return;
}
// 楼层飞行器
if (core.status.lockControl && core.status.event.id == 'fly') {
if (direct == 1) core.ui.drawFly(this._getNextFlyFloor(1));
if (direct == -1) core.ui.drawFly(this._getNextFlyFloor(-1));
return;
}
// 怪物手册
if (core.status.lockControl && core.status.event.id == 'book') {
var pageinfo = core.ui._drawBook_pageinfo();
if (direct == 1) core.ui.drawBook(core.status.event.data - pageinfo.per_page);
if (direct == -1) core.ui.drawBook(core.status.event.data + pageinfo.per_page);
return;
}
// 存读档
if (core.status.lockControl && (core.status.event.id == 'save' || core.status.event.id == 'load')) {
var index = core.status.event.data.page * 10 + core.status.event.data.offset;
if (direct == 1) core.ui._drawSLPanel(index - 10);
if (direct == -1) core.ui._drawSLPanel(index + 10);
return;
}
// 浏览地图
if (core.status.lockControl && core.status.event.id == 'viewMaps') {
2024-11-30 13:57:26 +08:00
let floorId = core.floorIds[core.status.event.data.index]
if (!flags.__visited__[floorId]) floorId = core.status.floorId;
const visit = Object.keys(flags.__visited__);
let index = visit.indexOf(floorId)
if (direct == 1) { if (index > 0) core.ui._drawViewMaps(core.floorIds.indexOf(visit[index - 1])) }
if (direct == -1) { if (index < visit.length - 1) core.ui._drawViewMaps(core.floorIds.indexOf(visit[index + 1])) }
return;
}
// wait事件
if (core.status.lockControl && core.status.event.id == 'action' && core.status.event.data.type == 'wait') {
var timeout = Math.max(0, core.status.event.timeout - new Date().getTime()) || 0;
core.setFlag('type', 0);
var keycode = direct == 1 ? 33 : 34;
core.setFlag('keycode', keycode);
core.setFlag('timeout', timeout);
var executed = core.events.__action_wait_afterGet(core.status.event.data.current);
if (executed || !core.status.event.data.current.forceChild) {
core.status.route.push("input:" + (1e8 * timeout + keycode));
clearTimeout(core.status.event.interval);
delete core.status.event.timeout;
core.doAction();
}
return;
}
}
core.registerAction('onmousewheel', '_sys_onmousewheel', actions.prototype._sys_onmousewheel, 0);
2024-12-01 14:52:03 +08:00
},
"CG回廊": function () {
// 在此增加新插件
const CGUI = document.createElement('canvas'); //CGui画布设置
CGUI.style.position = 'absolute';
CGUI.style.zIndex = 0;
CGUI.id = 'CGUI';
main.dom.gameGroup.insertAdjacentElement('afterend', CGUI)
CGUI.style.top = "50%"
CGUI.style.left = "50%"
CGUI.style.transform = "translate(-50%,-50%)"
const ctx = CGUI.getContext("2d");
main.dom.CGUI = CGUI;
2024-12-01 17:42:24 +08:00
let page = 0; // 当前页面变量
let select = 'view'; // 'view'为浏览模式,'zoom'为放大模式
2024-12-01 14:52:03 +08:00
CGUI.onclick = function (e) {
try {
e.preventDefault();
if (core.isPlaying()) return false;
const left = core.dom.gameGroup.offsetLeft;
const top = core.dom.gameGroup.offsetTop;
const px = Math.floor((e.clientX - left) / core.domStyle.scale),
py = Math.floor((e.clientY - top) / core.domStyle.scale);
core.ui.CG.onclick(px * 3, py * 3);
} catch (ee) {
main.log(ee);
}
}
2024-12-01 17:42:24 +08:00
2024-12-01 14:52:03 +08:00
function drawImage(name, image, x, y, w, h, x1, y1, w1, h1, angle, reverse) {
// 检测文件名以 :x, :y, :o 结尾,表示左右翻转,上下翻转和中心翻转
image = core.material.images.images[image];
var scale = {
'x': [-1, 1],
'y': [1, -1],
'o': [-1, -1]
};
// 只能接受2, 4, 8个参数
if (x != null && y != null) {
if (w == null || h == null) {
// 两个参数变成四个参数
w = image.width;
h = image.height;
}
if (x1 != null && y1 != null && w1 != null && h1 != null) {
if (!reverse && !angle) {
name.drawImage(image, x, y, w, h, x1, y1, w1, h1);
} else {
name.save();
name.translate(x1 + w1 / 2, y1 + h1 / 2);
if (reverse) name.scale(scale[reverse][0], scale[reverse][1]);
if (angle) name.rotate(angle);
name.drawImage(image, x, y, w, h, -w1 / 2, -h1 / 2, w1, h1);
name.restore();
}
return;
}
if (!reverse && !angle) {
name.drawImage(image, x, y, w, h);
} else {
name.save();
name.translate(x + w / 2, y + h / 2);
if (reverse) name.scale(scale[reverse][0], scale[reverse][1]);
if (angle) name.rotate(angle);
name.drawImage(image, -w / 2, -h / 2, w, h);
name.restore();
}
return;
}
}
function drawWindow(background, ctx, x, y, w, h, direction, px, py) {
// 仿RM窗口皮肤 ↓
drawImage(ctx, background, 0, 0, 128, 128, x + 2, y + 2, w - 4, h - 4);
// 绘制边框
// 上方
drawImage(ctx, background, 128, 0, 16, 16, x, y, 16, 16);
for (var dx = 0; dx < w - 64; dx += 32) {
drawImage(ctx, background, 144, 0, 32, 16, x + dx + 16, y, 32, 16);
drawImage(ctx, background, 144, 48, 32, 16, x + dx + 16, y + h - 16, 32, 16);
}
drawImage(ctx, background, 144, 0, w - dx - 32, 16, x + dx + 16, y, w - dx - 32, 16);
drawImage(ctx, background, 144, 48, w - dx - 32, 16, x + dx + 16, y + h - 16, w - dx - 32, 16);
drawImage(ctx, background, 176, 0, 16, 16, x + w - 16, y, 16, 16);
// 左右
for (var dy = 0; dy < h - 64; dy += 32) {
drawImage(ctx, background, 128, 16, 16, 32, x, y + dy + 16, 16, 32);
drawImage(ctx, background, 176, 16, 16, 32, x + w - 16, y + dy + 16, 16, 32);
}
drawImage(ctx, background, 128, 16, 16, h - dy - 32, x, y + dy + 16, 16, h - dy - 32);
drawImage(ctx, background, 176, 16, 16, h - dy - 32, x + w - 16, y + dy + 16, 16, h - dy - 32);
// 下方
drawImage(ctx, background, 128, 48, 16, 16, x, y + h - 16, 16, 16);
drawImage(ctx, background, 176, 48, 16, 16, x + w - 16, y + h - 16, 16, 16);
// arrow
if (px != null && py != null) {
if (direction == 'up') {
drawImage(ctx, background, 128, 96, 32, 32, px, y + h - 3, 32, 32);
} else if (direction == 'down') {
drawImage(ctx, background, 160, 96, 32, 32, px, y - 29, 32, 32);
}
}
// 仿RM窗口皮肤 ↑
}
class CG {
constructor() {
//cg列表
this.UIMx = [ //空位用none填充当前ui至多4列6行
["none", "none", 'none'],
["none", "none", "none"],
["none", "none", "none"],
];
}
//更新
update() {
this.background()
this.drawUI()
}
background() {
if (core.domStyle.isVertical) {
ctx.canvas.width = 1248;
ctx.canvas.height = 2028;
core.setTextAlign(ctx, 'center');
} else {
ctx.canvas.width = 2028;
ctx.canvas.height = 1248;
core.setTextAlign(ctx, 'center');
}
}
onclick(px, py) { //点击
console.log([px, py])
if (px >= 33 && px <= 177 && py >= 33 && py <= 177) { //离开按钮是一致的,其余的记区分横竖屏
CGUI.style.zIndex = 0
core.clearMap(ctx)
core.restart();
}
2024-12-01 17:42:24 +08:00
if (select === 'view') {
// 浏览模式,点击切换页面
page = (page + 1) % main.core.ui.CG.UIMx.length;
main.core.ui.CG.update();
} else if (select === 'zoom') {
// 放大模式,点击清空画布重绘当前页面
core.clearMap(ctx);
main.core.ui.CG.drawUI();
}
2024-12-01 14:52:03 +08:00
}
drawUI() {
core.clearMap(CGUI)
if (!core?.material?.images?.images['winskin1.png']) return
if (core.domStyle.isVertical) { //竖屏
2024-12-01 17:42:24 +08:00
core.drawWindowSkin('winskin1.png', ctx, 0, 0, 1248, 2028);
2024-12-01 14:52:03 +08:00
core.setTextAlign(ctx, 'center');
2024-12-01 17:42:24 +08:00
core.fillRoundRect(ctx, 45 - 6, 45 - 6, 120 + 12, 80 + 12, 6, '#444444');
core.strokeRoundRect(ctx, 45 - 12, 45 - 12, 120 + 24, 80 + 24, 12, "#444444", 3);
core.fillText(ctx, '离开', 100, 110, '#FFFFFF', core.ui._buildFont(33, true));
// 添加向上翻页和向下翻页的按钮
core.fillRoundRect(ctx, 100 - 6, 100 - 6, 120 + 12, 120 + 12, 6, '#444444');
core.strokeRoundRect(ctx, 100 - 12, 100 - 12, 120 + 24, 120 + 120, 12, "#444444", 3);
core.fillText(ctx, '向上翻页', 100, 250, '#FFFFFF', core.ui._buildFont(24, true));
core.fillText(ctx, '向下翻页', 100, 1500, '#FFFFFF', core.ui._buildFont(24, true));
// 添加3*2个4:3的画框
for (let i = 0; i < 3; i++) {
for (let j = 0; j < 2; j++) {
core.strokeRect(ctx, 200 + j * 200, 300 + i * 300, 160, 120, "#FFFFFF", 2);
core.fillRect(ctx, 200 + j * 200, 300 + i * 300, 160, 120, '#FFFFFF');
}
}
// 添加浏览模式和CG模式的字样
core.fillText(ctx, '浏览模式', 400, 180, '#FFFFFF', core.ui._buildFont(24, true));
core.fillText(ctx, 'CG模式', 1200, 180, '#FFFFFF', core.ui._buildFont(24, true));
2024-12-01 14:52:03 +08:00
} else { //横屏
ctx.canvas.width = 2028;
ctx.canvas.height = 1248;
2024-12-01 17:42:24 +08:00
core.drawWindowSkin('winskin1.png', ctx, 0, 0, 2028, 1248);
2024-12-01 14:52:03 +08:00
core.setTextAlign(ctx, 'center');
core.fillRoundRect(ctx, 45 - 6, 45 - 6, 120 + 12, 120 + 12, 6, '#444444');
2024-12-01 17:42:24 +08:00
core.strokeRoundRect(ctx, 45 - 12, 45 - 12, 120 + 24, 120 + 24, 12, "#444444", 3);
core.fillText(ctx, '离开', 100, 110, '#FFFFFF', core.ui._buildFont(33, true));
// 添加向上翻页和向下翻页的按钮
core.fillRoundRect(ctx, 45 - 6, 350 - 6, 120 + 12, 120 + 12, 6, '#444444');
core.strokeRoundRect(ctx, 45 - 12, 350 - 12, 120 + 24, 120 + 24, 12, "#444444", 3);
core.fillText(ctx, '向上翻页', 100, 400, '#FFFFFF', core.ui._buildFont(24, true));
core.fillRoundRect(ctx, 45 - 6, 850 - 6, 120 + 12, 120 + 12, 6, '#444444');
core.strokeRoundRect(ctx, 45 - 12, 850 - 12, 120 + 24, 120 + 24, 12, "#444444", 3);
core.fillText(ctx, '向下翻页', 100, 900, '#FFFFFF', core.ui._buildFont(24, true));
// 添加3*2个4:3的画框
for (let i = 0; i < 2; i++) {
for (let j = 0; j < 6; j++) {
core.fillRect(ctx, 200 + j * 300, 350 + i * 450, 240, 160, '#FFFFFF');
core.strokeRect(ctx, 200 + j * 300, 350 + i * 450, 240, 160, "#444444", 2);
}
}
// 添加浏览模式和CG模式的字样
core.fillRoundRect(ctx, 550 - 6, 45 - 6, 120 + 12, 120 + 12, 6, '#444444');
core.strokeRoundRect(ctx, 550 - 12, 45 - 12, 120 + 24, 120 + 24, 12, "#444444", 3);
core.fillText(ctx, '浏览模式', 600, 100, '#FFFFFF', core.ui._buildFont(24, true));
core.fillRoundRect(ctx, 1150 - 6, 45 - 6, 120 + 12, 120 + 12, 6, '#444444');
core.strokeRoundRect(ctx, 1150 - 12, 45 - 12, 120 + 24, 120 + 24, 12, "#444444", 3);
core.fillText(ctx, 'CG模式', 1200, 100, '#FFFFFF', core.ui._buildFont(24, true));
2024-12-01 14:52:03 +08:00
}
}
}
core.ui.CG = new CG();
main.dom.CGMode.onclick = function () {
main.core.control.checkBgm();
CGUI.style.zIndex = 10000
main.core.ui.CG.update()
}
}
}