Eustia/_server/CodeMirror/defs.js

4527 lines
204 KiB
JavaScript
Raw Normal View History

2024-11-29 12:40:31 +08:00
var terndefs_f6783a0a_522d_417e_8407_94c67b692e50 = [
{
"!name": "browser",
Node: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
prototype: {
nextSibling: {
2024-11-29 12:40:31 +08:00
"!type": "+Element",
"!doc":
"返回紧接其父节点的childNodes列表中指定节点之后的节点如果指定节点是该列表中的最后一个节点,则返回null.",
2024-11-29 12:40:31 +08:00
},
previousSibling: {
2024-11-29 12:40:31 +08:00
"!type": "+Element",
"!doc":
"返回紧接其父节点的childNodes列表中指定节点之前的节点,如果指定节点是该列表中的第一个节点,则返回null.",
2024-11-29 12:40:31 +08:00
},
lastChild: {
2024-11-29 12:40:31 +08:00
"!type": "+Element",
"!doc": "返回节点的最后一个孩子.",
2024-11-29 12:40:31 +08:00
},
firstChild: {
2024-11-29 12:40:31 +08:00
"!type": "+Element",
"!doc":
"返回树中该节点的第一个子节点;如果该节点为无子节点,则返回null.如果该节点是Document,则返回其直接子节点列表中的第一个节点.",
2024-11-29 12:40:31 +08:00
},
childNodes: {
2024-11-29 12:40:31 +08:00
"!type": "+NodeList",
"!doc": "返回给定元素的子节点的集合.",
2024-11-29 12:40:31 +08:00
},
parentNode: {
2024-11-29 12:40:31 +08:00
"!type": "+Element",
"!doc": "返回DOM树中指定节点的父级.",
2024-11-29 12:40:31 +08:00
},
tagName: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "将当前节点的名称作为字符串返回.",
2024-11-29 12:40:31 +08:00
},
insertBefore: {
2024-11-29 12:40:31 +08:00
"!type": "fn(newElt: +Element, before: +Element) -> +Element",
"!doc": "将指定的节点插入到参考元素之前,作为当前节点的子级.",
},
removeChild: {
2024-11-29 12:40:31 +08:00
"!type": "fn(oldNode: +Element) -> +Element",
"!doc": "从DOM中删除一个子节点.返回已删除的节点.",
},
appendChild: {
2024-11-29 12:40:31 +08:00
"!type": "fn(newNode: +Element) -> +Element",
"!doc":
"将一个节点添加到指定父节点的子节点列表的末尾.如果该节点已经存在,则将其从当前父节点中删除,然后添加到新的父节点中.",
2024-11-29 12:40:31 +08:00
},
cloneNode: {
2024-11-29 12:40:31 +08:00
"!type": "fn(deep: bool) -> +Element",
"!doc": "返回在其上调用此方法的节点的副本.",
2024-11-29 12:40:31 +08:00
},
addEventListener: {
2024-11-29 12:40:31 +08:00
"!type": "fn(type: string, listener: fn(e: +Event), capture: bool)",
"!doc":
"在单个目标上注册单个事件侦听器.事件目标可以是文档中的单个元素,文档本身,窗口或XMLHttpRequest.",
2024-11-29 12:40:31 +08:00
},
removeEventListener: {
2024-11-29 12:40:31 +08:00
"!type": "fn(type: string, listener: fn(), capture: bool)",
"!doc": "允许从事件目标中删除事件侦听器.",
},
innerText: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "获取或设置节点及其后代的文本内容.",
},
2024-11-29 12:40:31 +08:00
},
"!doc":
"节点是一个接口,许多DOM类型都从该接口继承,并允许类似地对待(或测试)这些各种类型.",
2024-11-29 12:40:31 +08:00
},
Element: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
prototype: {
2024-11-29 12:40:31 +08:00
"!proto": "Node.prototype",
getAttribute: {
2024-11-29 12:40:31 +08:00
"!type": "fn(name: string) -> string",
"!doc":
'返回指定元素上的命名属性的值.如果命名属性不存在,则返回的值将为null或" "(空字符串).',
2024-11-29 12:40:31 +08:00
},
setAttribute: {
2024-11-29 12:40:31 +08:00
"!type": "fn(name: string, value: string)",
"!doc": "在指定元素上添加新属性或更改现有属性的值.",
},
removeAttribute: {
2024-11-29 12:40:31 +08:00
"!type": "fn(name: string)",
"!doc": "从指定元素中删除属性.",
},
getElementsByTagName: {
2024-11-29 12:40:31 +08:00
"!type": "fn(tagName: string) -> +NodeList",
"!doc":
"返回具有给定标签名的元素列表.搜索指定元素下面的子树,不包括元素本身.返回的列表是活动的,这意味着它将自动使用DOM树进行更新.因此,无需使用相同的元素和参数多次调用element.getElementsByTagName.",
2024-11-29 12:40:31 +08:00
},
getElementsByClassName: {
2024-11-29 12:40:31 +08:00
"!type": "fn(name: string) -> +NodeList",
"!doc":
"返回具有所有给定类名称的一组元素.在文档对象上调用时,将搜索整个文档,包括根节点.您还可以在任何元素上调用getElementsByClassName它将仅返回元素,它们是具有给定类名的指定根元素的后代.",
2024-11-29 12:40:31 +08:00
},
children: {
2024-11-29 12:40:31 +08:00
"!type": "+HTMLCollection",
"!doc": "返回给定元素的子元素的集合.",
2024-11-29 12:40:31 +08:00
},
className: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "获取并设置指定元素的class属性的值.",
},
style: {
cssText: "string",
alignmentBaseline: "string",
background: "string",
backgroundAttachment: "string",
backgroundClip: "string",
backgroundColor: "string",
backgroundImage: "string",
backgroundOrigin: "string",
backgroundPosition: "string",
backgroundPositionX: "string",
backgroundPositionY: "string",
backgroundRepeat: "string",
backgroundRepeatX: "string",
backgroundRepeatY: "string",
backgroundSize: "string",
baselineShift: "string",
border: "string",
borderBottom: "string",
borderBottomColor: "string",
borderBottomLeftRadius: "string",
borderBottomRightRadius: "string",
borderBottomStyle: "string",
borderBottomWidth: "string",
borderCollapse: "string",
borderColor: "string",
borderImage: "string",
borderImageOutset: "string",
borderImageRepeat: "string",
borderImageSlice: "string",
borderImageSource: "string",
borderImageWidth: "string",
borderLeft: "string",
borderLeftColor: "string",
borderLeftStyle: "string",
borderLeftWidth: "string",
borderRadius: "string",
borderRight: "string",
borderRightColor: "string",
borderRightStyle: "string",
borderRightWidth: "string",
borderSpacing: "string",
borderStyle: "string",
borderTop: "string",
borderTopColor: "string",
borderTopLeftRadius: "string",
borderTopRightRadius: "string",
borderTopStyle: "string",
borderTopWidth: "string",
borderWidth: "string",
bottom: "string",
boxShadow: "string",
boxSizing: "string",
captionSide: "string",
clear: "string",
clip: "string",
clipPath: "string",
clipRule: "string",
color: "string",
colorInterpolation: "string",
colorInterpolationFilters: "string",
colorProfile: "string",
colorRendering: "string",
content: "string",
counterIncrement: "string",
counterReset: "string",
cursor: "string",
direction: "string",
display: "string",
dominantBaseline: "string",
emptyCells: "string",
enableBackground: "string",
fill: "string",
fillOpacity: "string",
fillRule: "string",
filter: "string",
float: "string",
floodColor: "string",
floodOpacity: "string",
font: "string",
fontFamily: "string",
fontSize: "string",
fontStretch: "string",
fontStyle: "string",
fontVariant: "string",
fontWeight: "string",
glyphOrientationHorizontal: "string",
glyphOrientationVertical: "string",
height: "string",
imageRendering: "string",
kerning: "string",
left: "string",
letterSpacing: "string",
lightingColor: "string",
lineHeight: "string",
listStyle: "string",
listStyleImage: "string",
listStylePosition: "string",
listStyleType: "string",
margin: "string",
marginBottom: "string",
marginLeft: "string",
marginRight: "string",
marginTop: "string",
marker: "string",
markerEnd: "string",
markerMid: "string",
markerStart: "string",
mask: "string",
maxHeight: "string",
maxWidth: "string",
minHeight: "string",
minWidth: "string",
opacity: "string",
orphans: "string",
outline: "string",
outlineColor: "string",
outlineOffset: "string",
outlineStyle: "string",
outlineWidth: "string",
overflow: "string",
overflowWrap: "string",
overflowX: "string",
overflowY: "string",
padding: "string",
paddingBottom: "string",
paddingLeft: "string",
paddingRight: "string",
paddingTop: "string",
page: "string",
pageBreakAfter: "string",
pageBreakBefore: "string",
pageBreakInside: "string",
pointerEvents: "string",
position: "string",
quotes: "string",
resize: "string",
right: "string",
shapeRendering: "string",
size: "string",
speak: "string",
src: "string",
stopColor: "string",
stopOpacity: "string",
stroke: "string",
strokeDasharray: "string",
strokeDashoffset: "string",
strokeLinecap: "string",
strokeLinejoin: "string",
strokeMiterlimit: "string",
strokeOpacity: "string",
strokeWidth: "string",
tabSize: "string",
tableLayout: "string",
textAlign: "string",
textAnchor: "string",
textDecoration: "string",
textIndent: "string",
textLineThrough: "string",
textLineThroughColor: "string",
textLineThroughMode: "string",
textLineThroughStyle: "string",
textLineThroughWidth: "string",
textOverflow: "string",
textOverline: "string",
textOverlineColor: "string",
textOverlineMode: "string",
textOverlineStyle: "string",
textOverlineWidth: "string",
textRendering: "string",
textShadow: "string",
textTransform: "string",
textUnderline: "string",
textUnderlineColor: "string",
textUnderlineMode: "string",
textUnderlineStyle: "string",
textUnderlineWidth: "string",
top: "string",
unicodeBidi: "string",
unicodeRange: "string",
vectorEffect: "string",
verticalAlign: "string",
visibility: "string",
whiteSpace: "string",
width: "string",
wordBreak: "string",
wordSpacing: "string",
wordWrap: "string",
writingMode: "string",
zIndex: "string",
zoom: "string",
"!doc": "返回一个表示元素的style属性的对象.",
},
classList: {
2024-11-29 12:40:31 +08:00
"!type": "+DOMTokenList",
"!doc": "返回元素的class属性的标记列表.",
2024-11-29 12:40:31 +08:00
},
title: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc":
' "\u5efa\u7acb\u5f53\u9f20\u6807\u60ac\u505c\u5728\u663e\u793a\u7684\u8282\u70b9\u4e0a\u65f6\u5728"\u5de5\u5177\u63d0\u793a"\u5f39\u51fa\u7a97\u53e3\u4e2d\u663e\u793a\u7684\u6587\u672c.",',
2024-11-29 12:40:31 +08:00
},
width: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "返回元素的布局宽度.",
2024-11-29 12:40:31 +08:00
},
height: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "元素相对于元素的offsetParent的高度.",
2024-11-29 12:40:31 +08:00
},
getContext: {
2024-11-29 12:40:31 +08:00
"!type": "fn(id: string) -> CanvasRenderingContext2D",
"!doc":
" DOM画布元素公开了HTMLCanvasElement接口,该接口提供了用于操纵画布元素的布局和表示的属性和方法.HTMLCanvasElement接口继承了元素对象接口的属性和方法.",
2024-11-29 12:40:31 +08:00
},
innerHTML: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "设置或获取描述元素后代的HTML语法.",
},
2024-11-29 12:40:31 +08:00
},
"!doc": "表示HTML或XML文档中的元素.",
},
Document: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
prototype: {
2024-11-29 12:40:31 +08:00
"!proto": "Node.prototype",
height: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "返回当前文档的<body>元素的高度.",
},
width: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "以像素为单位返回当前文档的<body>元素的宽度.",
},
body: {
2024-11-29 12:40:31 +08:00
"!type": "+Element",
"!doc": "返回当前文档的<body>或<frameset>节点.",
},
cookie: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "获取并设置与当前文档关联的cookie.",
},
URL: "string",
title: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "获取或设置文档的标题.",
2024-11-29 12:40:31 +08:00
},
getElementById: {
2024-11-29 12:40:31 +08:00
"!type": "fn(id: string) -> +Element",
"!doc": "通过元素ID返回对该元素的引用.",
2024-11-29 12:40:31 +08:00
},
getElementsByTagName: {
2024-11-29 12:40:31 +08:00
"!type": "fn(tagName: string) -> +NodeList",
"!doc":
"返回具有给定标签名称的元素的NodeList.将搜索整个文档,包括根节点.返回的NodeList处于活动状态,这意味着它会自动更新自身以与DOM树保持同步,而无需再次调用document.getElementsByTagName.",
2024-11-29 12:40:31 +08:00
},
getElementsByName: {
2024-11-29 12:40:31 +08:00
"!type": "fn(name: string) -> +HTMLCollection",
"!doc": "返回HTML文档中具有给定名称的元素列表.",
},
getElementsByClassName: "Element.prototype.getElementsByClassName",
2024-11-29 12:40:31 +08:00
},
"!doc":
"浏览器中加载的每个网页都有其自己的文档对象.此对象用作网页内容(DOM树,包括诸如<body>和<table>之类的元素)的入口点,并提供文档的全局功能(例如获取页面的URL和在文档中创建新元素).",
2024-11-29 12:40:31 +08:00
},
document: {
2024-11-29 12:40:31 +08:00
"!type": "+Document",
"!doc":
"浏览器中加载的每个网页都有其自己的文档对象.此对象用作网页内容(DOM树,包括诸如<body>和<table>之类的元素)的入口点,并提供文档的全局功能(例如获取页面的URL和在文档中创建新元素).",
2024-11-29 12:40:31 +08:00
},
Event: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
prototype: {
stopPropagation: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
"!doc": "防止当前事件进一步传播.",
2024-11-29 12:40:31 +08:00
},
preventDefault: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
"!doc": "如果可以取消事件,则取消该事件,而不停止事件的进一步传播.",
2024-11-29 12:40:31 +08:00
},
stopImmediatePropagation: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
"!doc": "防止同一事件的其他侦听器被调用.",
2024-11-29 12:40:31 +08:00
},
type: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "返回包含事件类型的字符串.",
2024-11-29 12:40:31 +08:00
},
target: {
2024-11-29 12:40:31 +08:00
"!type": "+Element",
"!doc":
" EventTarget是由对象实现的DOM接口,这些对象可以接收DOM事件并具有侦听器.最常见的EventTarget是DOM元素,尽管其他对象也可以是EventTarget,例如文档,窗口,XMLHttpRequest,和别的.",
2024-11-29 12:40:31 +08:00
},
clientX: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc":
"返回事件发生的应用程序客户区域内的水平坐标(与页面内的坐标相反).例如,单击客户区域左上角将始终显示clientX值为0的鼠标事件,无论页面是否水平滚动.",
2024-11-29 12:40:31 +08:00
},
clientY: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc":
"返回事件发生在应用程序客户区中的垂直坐标(与页面中的坐标相反).例如,单击客户区左上角将始终显示不管页面是否垂直滚动,clientY值为0的鼠标事件.",
2024-11-29 12:40:31 +08:00
},
keyCode: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc":
"返回按键事件中的非字符键或任何其他类型的键盘事件中的任何键的Unicode值.",
2024-11-29 12:40:31 +08:00
},
charCode: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "返回在按键事件期间按下的字符键的Unicode值.",
2024-11-29 12:40:31 +08:00
},
which: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc":
"返回所按下键的数字keyCode或所按下字母数字键的字符代码(charCode).",
2024-11-29 12:40:31 +08:00
},
button: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "指示导致事件的鼠标按钮.",
2024-11-29 12:40:31 +08:00
},
shiftKey: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "指示事件触发时是否按下SHIFT键.",
},
ctrlKey: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "指示事件触发时是否按下了CTRL键.",
},
altKey: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "指示事件触发时是否按下ALT键.",
},
},
2024-11-29 12:40:31 +08:00
},
Storage: {
length: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc":
"存储接口的length只读属性返回一个整数,该整数表示存储在存储对象中的数据项的数量.",
2024-11-29 12:40:31 +08:00
},
setItem: {
2024-11-29 12:40:31 +08:00
"!type": "fn(name: string, value: string)",
"!doc":
"存储接口的setItem()方法在传递键名称和值时,会将该键添加到存储中,或者更新该键的值(如果已存在).",
2024-11-29 12:40:31 +08:00
},
getItem: {
2024-11-29 12:40:31 +08:00
"!type": "fn(name: string) -> string",
"!doc": "存储接口的getItem()方法在传递键名时将返回该键的值.",
},
key: {
2024-11-29 12:40:31 +08:00
"!type": "fn(index: number) -> string",
"!doc":
"存储接口的key()方法传递数字n时,返回存储中第n个键的名称.键的顺序是用户代理定义的,因此您不应依赖它.",
2024-11-29 12:40:31 +08:00
},
removeItem: {
2024-11-29 12:40:31 +08:00
"!type": "fn(key: string)",
"!doc": "存储接口的removeItem()方法在传递了键名后,将从存储中删除该键.",
},
clear: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
"!doc": "存储接口的clear()方法在被调用时将从存储中清空所有键.",
},
2024-11-29 12:40:31 +08:00
},
localStorage: {
2024-11-29 12:40:31 +08:00
"!type": "Storage",
"!doc":
" localStorage属性允许您访问本地存储对象.localStorage与sessionStorage类似.唯一的区别是,虽然存储在localStorage中的数据没有到期时间,但是浏览会话时存储在sessionStorage中的数据将被清除.结束-也就是说,当浏览器关闭时. n n请注意,存储在localStorage或sessionStorage中的数据特定于页面协议.",
2024-11-29 12:40:31 +08:00
},
console: {
assert: {
2024-11-29 12:40:31 +08:00
"!type": "fn(assertion: bool, text: string)",
"!doc": "如果断言为false,则将错误消息写入控制台.",
},
error: {
2024-11-29 12:40:31 +08:00
"!type": "fn(...msg: ?)",
"!doc": "将错误消息输出到Web控制台.",
},
info: {
2024-11-29 12:40:31 +08:00
"!type": "fn(...msg: ?)",
"!doc": "将参考消息输出到Web控制台.",
},
log: {
2024-11-29 12:40:31 +08:00
"!type": "fn(...msg: ?)",
"!doc": "将消息输出到Web控制台.",
},
time: {
2024-11-29 12:40:31 +08:00
"!type": "fn(label: string)",
"!doc": "启动计时器,您可以使用该计时器来跟踪操作需要多长时间.",
},
timeEnd: {
2024-11-29 12:40:31 +08:00
"!type": "fn(label: string)",
"!doc": "停止以前通过调用console.time()启动的计时器.",
},
trace: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
"!doc": "将堆栈跟踪输出到Web控制台.",
},
warn: {
2024-11-29 12:40:31 +08:00
"!type": "fn(...msg: ?)",
"!doc": "将警告消息输出到Web控制台.",
},
"!doc":
"控制台对象提供对浏览器调试控制台的访问.其工作方式的细节因浏览器而异,但实际上提供了一组事实上的功能.",
2024-11-29 12:40:31 +08:00
},
window: {
2024-11-29 12:40:31 +08:00
"!type": "<top>",
"!doc": "窗口对象代表一个包含DOM文档的窗口.",
},
self: {
2024-11-29 12:40:31 +08:00
"!type": "<top>",
"!doc": "将对象引用返回到窗口对象.",
},
devicePixelRatio: "number",
requestAnimationFrame: {
2024-11-29 12:40:31 +08:00
"!type": "fn(callback: fn(timestamp: number)) -> number",
"!doc":
" Window.requestAnimationFrame()方法告诉浏览器您希望执行动画,并请求浏览器在下一次重绘之前调用指定的函数来更新动画.该方法将回调作为参数在重新粉刷之前被调用.",
2024-11-29 12:40:31 +08:00
},
cancelAnimationFrame: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number)n",
"!doc": "取消先前安排的动画帧请求.",
},
alert: {
2024-11-29 12:40:31 +08:00
"!type": "fn(message: string)",
"!doc": "显示具有指定内容和确定按钮的警报对话框.",
2024-11-29 12:40:31 +08:00
},
confirm: {
2024-11-29 12:40:31 +08:00
"!type": "fn(message: string) -> bool",
"!doc": "显示带有消息和两个按钮(确定和取消)的模式对话框.",
},
prompt: {
2024-11-29 12:40:31 +08:00
"!type": "fn(message: string, value: string) -> string",
"!doc": "显示一个对话框,提示用户输入一些文本.",
},
setTimeout: {
2024-11-29 12:40:31 +08:00
"!type": "fn(f: fn(), ms: number) -> number",
"!doc": "在指定的延迟后调用函数或执行代码段.",
2024-11-29 12:40:31 +08:00
},
clearTimeout: {
2024-11-29 12:40:31 +08:00
"!type": "fn(timeout: number)",
"!doc": "清除window.setTimeout()设置的延迟.",
},
setInterval: {
2024-11-29 12:40:31 +08:00
"!type": "fn(f: fn(), ms: number) -> number",
"!doc":
"反复调用一个函数或执行代码段,每次调用该函数之间有固定的时间延迟.",
2024-11-29 12:40:31 +08:00
},
clearInterval: {
2024-11-29 12:40:31 +08:00
"!type": "fn(interval: number)",
"!doc": "取消使用setInterval设置的重复操作.",
},
atob: {
2024-11-29 12:40:31 +08:00
"!type": "fn(encoded: string) -> string",
"!doc": "解码使用base-64编码编码的数据字符串.",
2024-11-29 12:40:31 +08:00
},
btoa: {
2024-11-29 12:40:31 +08:00
"!type": "fn(data: string) -> string",
"!doc": "从一串二进制数据创建一个base-64编码的ASCII字符串.",
},
getComputedStyle: {
2024-11-29 12:40:31 +08:00
"!type": "fn(node: +Element, pseudo?: string) -> Element.prototype.style",
"!doc": "给出元素的所有CSS属性的最终使用值.",
},
CanvasRenderingContext2D: {
canvas: "+Element",
width: "number",
height: "number",
commit: "fn()",
save: "fn()",
restore: "fn()",
currentTransform: "?",
scale: "fn(x: number, y: number)",
rotate: "fn(angle: number)",
translate: "fn(x: number, y: number)",
transform:
"fn(a: number, b: number, c: number, d: number, e: number, f: number)",
setTransform:
"fn(a: number, b: number, c: number, d: number, e: number, f: number)",
resetTransform: "fn()",
globalAlpha: "number",
globalCompositeOperation: "string",
imageSmoothingEnabled: "bool",
strokeStyle: "string",
fillStyle: "string",
createLinearGradient:
"fn(x0: number, y0: number, x1: number, y1: number) -> ?",
createPattern: "fn(image: ?, repetition: string) -> ?",
shadowOffsetX: "number",
shadowOffsetY: "number",
shadowBlur: "number",
shadowColor: "string",
clearRect: "fn(x: number, y: number, w: number, h: number)",
fillRect: "fn(x: number, y: number, w: number, h: number)",
strokeRect: "fn(x: number, y: number, w: number, h: number)",
fillRule: "string",
fill: "fn()",
beginPath: "fn()",
stroke: "fn()",
clip: "fn()",
resetClip: "fn()",
fillText: "fn(text: string, x: number, y: number, maxWidth: number)",
strokeText: "fn(text: string, x: number, y: number, maxWidth: number)",
measureText: "fn(text: string) -> ?",
drawImage: "fn(image: ?, dx: number, dy: number)",
createImageData: "fn(sw: number, sh: number) -> ?",
getImageData: "fn(sx: number, sy: number, sw: number, sh: number) -> ?",
putImageData: "fn(imagedata: ?, dx: number, dy: number)",
lineWidth: "number",
lineCap: "string",
lineJoin: "string",
miterLimit: "number",
setLineDash: "fn(segments: [number])",
getLineDash: "fn() -> [number]",
lineDashOffset: "number",
font: "string",
textAlign: "string",
textBaseline: "string",
direction: "string",
closePath: "fn()",
moveTo: "fn(x: number, y: number)",
lineTo: "fn(x: number, y: number)",
quadraticCurveTo: "fn(cpx: number, cpy: number, x: number, y: number)",
bezierCurveTo:
"fn(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number)",
arcTo:
"fn(x1: number, y1: number, x2: number, y2: number, radius: number)",
rect: "fn(x: number, y: number, w: number, h: number)",
arc: "fn(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise?: bool)",
ellipse:
"fn(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, anticlockwise: bool)",
},
2024-11-29 12:40:31 +08:00
},
{
"!name": "ecmascript",
Infinity: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "代表无穷大的数值.",
2024-11-29 12:40:31 +08:00
},
undefined: {
2024-11-29 12:40:31 +08:00
"!type": "?",
"!doc": "该值未定义.",
},
NaN: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "代表非数字的值.",
2024-11-29 12:40:31 +08:00
},
Object: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
create: {
2024-11-29 12:40:31 +08:00
"!type": "fn(proto: ?) -> !custom:Object_create",
"!doc": "使用指定的原型对象和属性创建一个新对象.",
},
defineProperty: {
"!type":
"fn(obj: ?, prop: string, desc: propertyDescriptor) -> !custom:Object_defineProperty",
"!doc":
"直接在对象上定义新属性,或修改对象上的现有属性,然后返回对象.如果想了解如何将Object.defineProperty方法与类似二进制标志的语法一起使用,请参阅本文.",
2024-11-29 12:40:31 +08:00
},
keys: {
2024-11-29 12:40:31 +08:00
"!type": "fn(obj: ?) -> [string]",
"!doc":
"返回一个给定对象自己的可枚举属性的数组,其顺序与for-in循环所提供的顺序相同(不同之处在于for-in循环也枚举了原型链中的属性). ",
2024-11-29 12:40:31 +08:00
},
assign: {
2024-11-29 12:40:31 +08:00
"!type": "fn(target: ?, source: ?, source?: ?) -> !0",
"!effects": ["copy !1 !0", "copy !2 !0", "copy !3 !0"],
"!doc":
" Object.assign()方法用于将所有可枚举的自身属性的值从一个或多个源对象复制到目标对象.它将返回目标对象.,",
2024-11-29 12:40:31 +08:00
},
prototype: {
2024-11-29 12:40:31 +08:00
"!stdProto": "Object",
toString: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> string",
"!doc": "返回表示对象的字符串.",
2024-11-29 12:40:31 +08:00
},
hasOwnProperty: {
2024-11-29 12:40:31 +08:00
"!type": "fn(prop: string) -> bool",
"!doc": "返回一个布尔值,指示对象是否具有指定的属性.",
},
2024-11-29 12:40:31 +08:00
},
},
Function: {
2024-11-29 12:40:31 +08:00
"!type": "fn(body: string) -> fn()",
prototype: {
2024-11-29 12:40:31 +08:00
"!stdProto": "Function",
apply: {
2024-11-29 12:40:31 +08:00
"!type": "fn(this: ?, args: [?])",
"!effects": ["call and return !this this=!0 !1.<i> !1.<i> !1.<i>"],
"!doc":
"调用具有给定值的函数,并以数组(或类似对象的数组)形式提供参数.",
2024-11-29 12:40:31 +08:00
},
call: {
2024-11-29 12:40:31 +08:00
"!type": "fn(this: ?, args?: ?) -> !this.!ret",
"!effects": ["call and return !this this=!0 !1 !2 !3 !4"],
2024-11-29 12:40:31 +08:00
"!doc": "调用具有给定值和单独提供的参数的函数.",
},
bind: {
2024-11-29 12:40:31 +08:00
"!type": "fn(this: ?, args?: ?) -> !custom:Function_bind",
"!doc":
"创建一个新函数,该函数在被调用时将其this关键字设置为提供的值,并在调用新函数时提供给定的参数序列.",
2024-11-29 12:40:31 +08:00
},
prototype: "?",
2024-11-29 12:40:31 +08:00
},
},
Array: {
2024-11-29 12:40:31 +08:00
"!type": "fn(size: number) -> !custom:Array_ctor",
isArray: {
2024-11-29 12:40:31 +08:00
"!type": "fn(value: ?) -> bool",
"!doc": "如果对象是数组,则返回true,否则返回false.",
},
from: {
"!type":
"fn(arrayLike: ?, mapFn?: fn(elt: ?, i: number) -> ?, thisArg?: ?) -> [!0.<i>]",
"!effects": ["call !1 this=!2 !0.<i> number"],
"!doc":
" Array.from()方法从类似数组或可迭代的对象创建一个新的Array实例.,",
2024-11-29 12:40:31 +08:00
},
of: {
2024-11-29 12:40:31 +08:00
"!type": "fn(elementN: ?) -> [!0]",
"!doc":
" Array.of()方法创建一个新的Array实例,该实例具有可变数量的参数,而不考虑参数的数量或类型.,",
2024-11-29 12:40:31 +08:00
},
prototype: {
2024-11-29 12:40:31 +08:00
"!stdProto": "Array",
length: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "一个无符号的32位整数,指定数组中的元素数.",
},
concat: {
2024-11-29 12:40:31 +08:00
"!type": "fn(other: [?]) -> !this",
"!doc": "返回一个新数组,该数组由该数组与其他数组和/或值组成.",
},
join: {
2024-11-29 12:40:31 +08:00
"!type": "fn(separator?: string) -> string",
"!doc": "将数组的所有元素连接到字符串中.",
2024-11-29 12:40:31 +08:00
},
splice: {
2024-11-29 12:40:31 +08:00
"!type": "fn(pos: number, amount: number, newelt?: ?) -> [?]",
"!doc": "更改数组的内容,在删除旧元素的同时添加新元素.",
},
pop: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> !this.<i>",
"!doc": "从数组中删除最后一个元素并返回该元素.",
},
push: {
2024-11-29 12:40:31 +08:00
"!type": "fn(newelt: ?) -> number",
"!effects": ["propagate !0 !this.<i>"],
2024-11-29 12:40:31 +08:00
"!doc": "通过添加给定元素并返回数组的新长度来更改数组.",
},
shift: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> !this.<i>",
"!doc": "从数组中删除第一个元素并返回该元素.此方法更改数组的长度.",
},
unshift: {
2024-11-29 12:40:31 +08:00
"!type": "fn(newelt: ?) -> number",
"!effects": ["propagate !0 !this.<i>"],
2024-11-29 12:40:31 +08:00
"!doc": "将一个或多个元素添加到数组的开头,并返回数组的新长度.",
},
slice: {
2024-11-29 12:40:31 +08:00
"!type": "fn(from?: number, to?: number) -> !this",
"!doc": "返回数组一部分的浅表副本.",
2024-11-29 12:40:31 +08:00
},
reverse: {
2024-11-29 12:40:31 +08:00
"!type": "fn()",
"!doc":
"就地反转数组.第一个数组元素变为最后一个,而最后一个数组变为第一个.",
2024-11-29 12:40:31 +08:00
},
sort: {
2024-11-29 12:40:31 +08:00
"!type": "fn(compare?: fn(a: ?, b: ?) -> number)",
"!effects": ["call !0 !this.<i> !this.<i>"],
"!doc": "将数组中的元素排序并返回数组.",
2024-11-29 12:40:31 +08:00
},
indexOf: {
2024-11-29 12:40:31 +08:00
"!type": "fn(elt: ?, from?: number) -> number",
"!doc":
"返回在数组中可以找到给定元素的第一个索引;如果不存在,则返回-1.",
2024-11-29 12:40:31 +08:00
},
lastIndexOf: {
2024-11-29 12:40:31 +08:00
"!type": "fn(elt: ?, from?: number) -> number",
"!doc":
"返回在数组中找到给定元素的最后一个索引,如果不存在则返回-1.从fromIndex开始向后搜索数组.",
2024-11-29 12:40:31 +08:00
},
filter: {
"!type":
"fn(test: fn(elt: ?, i: number, array: +Array) -> bool, context?: ?) -> !this",
"!effects": ["call !0 this=!1 !this.<i> number !this"],
2024-11-29 12:40:31 +08:00
"!doc": "创建一个新数组,其中包含所有通过提供的功能实现的测试的元素.",
},
forEach: {
2024-11-29 12:40:31 +08:00
"!type": "fn(f: fn(elt: ?, i: number, array: +Array), context?: ?)",
"!effects": ["call !0 this=!1 !this.<i> number !this"],
"!doc": "每个数组元素执行一次提供的功能.",
},
map: {
"!type":
"fn(f: fn(elt: ?, i: number, array: +Array) -> ?, context?: ?) -> [!0.!ret]",
"!effects": ["call !0 this=!1 !this.<i> number !this"],
2024-11-29 12:40:31 +08:00
"!doc": "创建一个新数组,其结果是对该数组中的每个元素调用提供的函数.",
},
reduce: {
"!type":
"fn(combine: fn(sum: ?, elt: ?, i: number, array: +Array) -> ?, init?: ?) -> !0.!ret",
"!effects": ["call !0 !1 !this.<i> number !this"],
"!doc":
"对一个累加器和数组的每个值(从左到右)应用一个函数,以将其减小为单个值.",
2024-11-29 12:40:31 +08:00
},
fill: {
2024-11-29 12:40:31 +08:00
"!type": "fn(value: ?, start?: number, end?: number) -> !this",
"!doc":
" fill()方法使用静态值填充数组的所有元素,从开始索引到结束索引.,",
2024-11-29 12:40:31 +08:00
},
find: {
"!type":
"fn(callback: fn(element: ?, index: number, array: [?]) -> bool, thisArg?: ?) -> !this.<i>",
2024-11-29 12:40:31 +08:00
"!effects": ["call !0 this=!2 !this.<i> number"],
"!doc":
"如果数组中的元素满足提供的测试功能,则find()方法将在数组中返回一个值.否则,返回undefined.,",
2024-11-29 12:40:31 +08:00
},
findIndex: {
"!type":
"fn(callback: fn(element: ?, index: number, array: [?]), thisArg?: ?) -> number",
2024-11-29 12:40:31 +08:00
"!effects": ["call !0 this=!2 !this.<i> number"],
"!doc":
"如果数组中的元素满足提供的测试功能,则findIndex()方法将返回数组中的索引.否则返回-1.,",
2024-11-29 12:40:31 +08:00
},
keys: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> +iter[:t=number]",
"!doc":
" keys()方法返回一个新的数组迭代器,其中包含数组中每个索引的键.,",
2024-11-29 12:40:31 +08:00
},
values: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> +iter[:t=!this.<i>]",
"!doc":
" values()方法返回一个新的Array Iterator对象,该对象包含数组中每个索引的值.,",
2024-11-29 12:40:31 +08:00
},
includes: {
2024-11-29 12:40:31 +08:00
"!type": "fn(value: ?, fromIndex?: number) -> bool",
"!doc": "确定数组是否包含某个元素,并根据需要返回true或false.,",
},
2024-11-29 12:40:31 +08:00
},
},
String: {
2024-11-29 12:40:31 +08:00
"!type": "fn(value: ?) -> string",
prototype: {
2024-11-29 12:40:31 +08:00
"!stdProto": "String",
length: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "表示字符串的长度.",
2024-11-29 12:40:31 +08:00
},
"<i>": "string",
charAt: {
2024-11-29 12:40:31 +08:00
"!type": "fn(i: number) -> string",
"!doc": "从字符串中返回指定的字符.",
},
charCodeAt: {
2024-11-29 12:40:31 +08:00
"!type": "fn(i: number) -> number",
"!doc":
"返回给定索引处字符的数字Unicode值(Unicode代码点> 0x10000除外).",
2024-11-29 12:40:31 +08:00
},
indexOf: {
2024-11-29 12:40:31 +08:00
"!type": "fn(char: string, from?: number) -> number",
"!doc":
"返回指定值首次出现的调用String对象中的索引,从fromIndex开始搜索, n如果未找到该值,则返回-1.",
2024-11-29 12:40:31 +08:00
},
lastIndexOf: {
2024-11-29 12:40:31 +08:00
"!type": "fn(char: string, from?: number) -> number",
"!doc":
"返回指定值最后一次出现的调用String对象内的索引,如果未找到则返回-1.从fromIndex开始向后搜索调用字符串.",
2024-11-29 12:40:31 +08:00
},
substring: {
2024-11-29 12:40:31 +08:00
"!type": "fn(from: number, to?: number) -> string",
"!doc":
"返回一个索引与另一个索引之间或字符串末尾的字符串子集.<br/>from为起始位置to为终止位置.",
2024-11-29 12:40:31 +08:00
},
substr: {
2024-11-29 12:40:31 +08:00
"!type": "fn(from: number, length?: number) -> string",
"!doc":
"以指定的字符数返回从指定位置开始的字符串中的字符.<br/>from为起始位置length为长度",
2024-11-29 12:40:31 +08:00
},
slice: {
2024-11-29 12:40:31 +08:00
"!type": "fn(from: number, to?: number) -> string",
"!doc": "提取字符串的一部分并返回新的字符串.",
},
padStart: {
2024-11-29 12:40:31 +08:00
"!type": "fn(targetLength: number, padString?: string) -> string",
"!doc":
"用另一个字符串(如果需要,重复)填充当前字符串,以使结果字符串达到给定的长度.",
2024-11-29 12:40:31 +08:00
},
padEnd: {
2024-11-29 12:40:31 +08:00
"!type": "fn(targetLength: number, padString?: string) -> string",
"!doc":
"用给定的字符串(如果需要,重复)填充当前字符串,以使结果字符串达到给定的长度.",
2024-11-29 12:40:31 +08:00
},
trim: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> string",
"!doc": "从字符串的两端删除空格.",
},
trimStart: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> string",
"!doc": "从字符串的开头删除空格.",
},
trimEnd: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> string",
"!doc": "从字符串末尾删除空格.",
},
toUpperCase: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> string",
"!doc": "返回转换为大写的调用字符串值.",
2024-11-29 12:40:31 +08:00
},
toLowerCase: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> string",
"!doc": "返回转换为小写的调用字符串值.",
2024-11-29 12:40:31 +08:00
},
split: {
2024-11-29 12:40:31 +08:00
"!type": "fn(pattern?: string|+RegExp, limit?: number) -> [string]",
"!doc": "通过将字符串分成子字符串,将String对象拆分为字符串数组.",
},
concat: {
2024-11-29 12:40:31 +08:00
"!type": "fn(other: string) -> string",
"!doc": "将两个或多个字符串的文本合并,并返回一个新字符串.",
2024-11-29 12:40:31 +08:00
},
match: {
2024-11-29 12:40:31 +08:00
"!type": "fn(pattern: +RegExp) -> [string]",
"!doc": "用于将字符串与正则表达式匹配时用于检索匹配.",
},
replace: {
2024-11-29 12:40:31 +08:00
"!type": "fn(pattern: string|+RegExp, replacement: string) -> string",
"!doc":
"返回一个新字符串,该字符串的某个或所有匹配项都由替换项替换.该模式可以是字符串或RegExp,并且替换项可以是字符串或每个匹配项将调用的函数. ",
2024-11-29 12:40:31 +08:00
},
endsWith: {
2024-11-29 12:40:31 +08:00
"!type": "fn(searchString: string, position?: number) -> bool",
"!doc":
" endsWith()方法确定一个字符串是否以另一个字符串的字符结尾,并根据需要返回true或false.,",
2024-11-29 12:40:31 +08:00
},
startsWith: {
2024-11-29 12:40:31 +08:00
"!type": "fn(searchString: string, position?: number) -> bool",
"!doc":
" startsWith()方法确定一个字符串是否以另一个字符串的字符开头,并根据需要返回true或false.,",
},
2024-11-29 12:40:31 +08:00
},
},
Number: {
2024-11-29 12:40:31 +08:00
"!type": "fn(value: ?) -> number",
MAX_VALUE: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": " JavaScript中可表示的最大数值.",
2024-11-29 12:40:31 +08:00
},
MIN_VALUE: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": " JavaScript中可表示的最小正数值.",
2024-11-29 12:40:31 +08:00
},
POSITIVE_INFINITY: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "代表正无穷大值的值.",
2024-11-29 12:40:31 +08:00
},
NEGATIVE_INFINITY: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "代表负无穷大值的值.",
2024-11-29 12:40:31 +08:00
},
prototype: {
2024-11-29 12:40:31 +08:00
"!stdProto": "Number",
toString: {
2024-11-29 12:40:31 +08:00
"!type": "fn(radix?: number) -> string",
"!doc": "返回代表指定Number对象的字符串",
2024-11-29 12:40:31 +08:00
},
toFixed: {
2024-11-29 12:40:31 +08:00
"!type": "fn(digits: number) -> string",
"!doc": "使用定点符号格式化数字",
2024-11-29 12:40:31 +08:00
},
toExponential: {
2024-11-29 12:40:31 +08:00
"!type": "fn(digits: number) -> string",
"!doc": "返回以指数表示形式表示Number对象的字符串",
2024-11-29 12:40:31 +08:00
},
toPrecision: {
2024-11-29 12:40:31 +08:00
"!type": "fn(digits: number) -> string",
"!doc": " toPrecision()方法返回一个字符串,该数字表示指定精度的数字.",
},
2024-11-29 12:40:31 +08:00
},
EPSILON: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc":
" Number.EPSILON属性表示一个数值与可以表示为Number的最小值之间的差异.,",
2024-11-29 12:40:31 +08:00
},
MAX_SAFE_INTEGER: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc":
" Number.MAX_SAFE_INTEGER常量表示JavaScript中的最大安全整数(2 ^ 53-1).,",
2024-11-29 12:40:31 +08:00
},
MIN_SAFE_INTEGER: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc":
" Number.MIN_SAFE_INTEGER常量表示JavaScript(-(2 ^ 53-1))中的最小安全整数.,",
2024-11-29 12:40:31 +08:00
},
isFinite: {
2024-11-29 12:40:31 +08:00
"!type": "fn(testValue: ?) -> bool",
"!doc": " Number.isFinite()方法确定传递的值是否为有限值.,",
},
isInteger: {
2024-11-29 12:40:31 +08:00
"!type": "fn(testValue: ?) -> bool",
"!doc": " Number.isInteger()方法确定传递的值是否为整数.,",
},
isNaN: {
2024-11-29 12:40:31 +08:00
"!type": "fn(testValue: ?) -> bool",
"!doc":
" Number.isNaN()方法确定传递的值是否为NaN.原始全局isNaN()的更可靠的版本.,",
2024-11-29 12:40:31 +08:00
},
isSafeInteger: {
2024-11-29 12:40:31 +08:00
"!type": "fn(testValue: ?) -> bool",
"!doc":
" Number.isSafeInteger()方法确定所提供的值是否是一个安全整数的数字.安全整数是该数字的整数.",
2024-11-29 12:40:31 +08:00
},
parseFloat: {
2024-11-29 12:40:31 +08:00
"!type": "fn(string: string) -> number",
"!doc": " Number.parseFloat()方法解析字符串参数并返回浮点数.,",
},
parseInt: {
2024-11-29 12:40:31 +08:00
"!type": "fn(string: string, radix?: number) -> number",
"!doc":
" Number.parseInt()方法解析字符串参数并返回指定基数或基数的整数.,",
2024-11-29 12:40:31 +08:00
},
},
Boolean: {
2024-11-29 12:40:31 +08:00
"!type": "fn(value: ?) -> bool",
prototype: {
"!stdProto": "Boolean",
2024-11-29 12:40:31 +08:00
},
},
abstract: "?",
arguments: "?",
boolean: "?",
break: "?",
byte: "?",
case: "?",
catch: "?",
char: "?",
const: "?",
continue: "?",
debugger: "?",
default: "?",
delete: "?",
do: "?",
double: "?",
else: "?",
eval: "?",
false: "bool",
final: "?",
finally: "?",
float: "?",
for: "?",
function: "?",
goto: "?",
if: "?",
implements: "?",
in: "?",
instanceof: "?",
int: "?",
interface: "?",
long: "?",
native: "?",
new: "?",
null: "?",
package: "?",
private: "?",
protected: "?",
public: "?",
return: "?",
short: "?",
static: "?",
switch: "?",
synchronized: "?",
this: "?",
throw: "?",
throws: "?",
transient: "?",
true: "bool",
try: "?",
typeof: "?",
var: "?",
void: "?",
volatile: "?",
while: "?",
with: "?",
yield: "?",
RegExp: {
2024-11-29 12:40:31 +08:00
"!type": "fn(source: string, flags?: string)",
prototype: {
2024-11-29 12:40:31 +08:00
"!stdProto": "RegExp",
exec: {
2024-11-29 12:40:31 +08:00
"!type": "fn(input: string) -> [string]",
"!doc": "搜索指定字符串中的匹配项.返回结果数组,或者为null.",
},
test: {
2024-11-29 12:40:31 +08:00
"!type": "fn(input: string) -> bool",
"!doc": "执行正则表达式和指定字符串之间的匹配搜索.返回true或false.",
},
2024-11-29 12:40:31 +08:00
},
"!doc": "创建正则表达式对象以将文本与模式匹配.",
},
parseInt: {
2024-11-29 12:40:31 +08:00
"!type": "fn(string: string, radix?: number) -> number",
"!doc": "解析字符串参数并返回指定基数或基数的整数.",
2024-11-29 12:40:31 +08:00
},
parseFloat: {
2024-11-29 12:40:31 +08:00
"!type": "fn(string: string) -> number",
"!doc": "解析字符串参数并返回浮点数.",
2024-11-29 12:40:31 +08:00
},
isNaN: {
2024-11-29 12:40:31 +08:00
"!type": "fn(value: number) -> bool",
"!doc":
"确定值是否为NaN.请注意,此函数已损坏.您可能对ECMAScript 6 Number.isNaN感兴趣.",
2024-11-29 12:40:31 +08:00
},
isFinite: {
2024-11-29 12:40:31 +08:00
"!type": "fn(value: number) -> bool",
"!doc": "确定传递的值是否为有限数字.",
2024-11-29 12:40:31 +08:00
},
eval: {
2024-11-29 12:40:31 +08:00
"!type": "fn(code: string) -> ?",
"!doc": "评估以字符串形式表示的JavaScript代码.",
2024-11-29 12:40:31 +08:00
},
encodeURI: {
2024-11-29 12:40:31 +08:00
"!type": "fn(uri: string) -> string",
"!doc":
'通过用表示字符的UTF-8编码的一个,两个,三个或四个转义序列替换某些字符的每个实例来编码统一资源标识符(URI)(对于字符而言将仅是四个转义序列由两个"代理"字符组成).',
2024-11-29 12:40:31 +08:00
},
encodeURIComponent: {
2024-11-29 12:40:31 +08:00
"!type": "fn(uri: string) -> string",
"!doc":
'通过用表示字符的UTF-8编码的一个,两个,三个或四个转义序列替换某些字符的每个实例来编码统一资源标识符(URI)组件(对于由两个"代理"字符组成的字符).',
2024-11-29 12:40:31 +08:00
},
decodeURI: {
2024-11-29 12:40:31 +08:00
"!type": "fn(uri: string) -> string",
"!doc": "解码以前由encodeURI或类似例程创建的统一资源标识符(URI).",
},
decodeURIComponent: {
2024-11-29 12:40:31 +08:00
"!type": "fn(uri: string) -> string",
"!doc":
"解码以前由encodeURIComponent或类似例程创建的统一资源标识符(URI)组件.",
2024-11-29 12:40:31 +08:00
},
Math: {
E: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "自然对数的底数,e约为2.718.",
2024-11-29 12:40:31 +08:00
},
LN2: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": " 2的自然对数,大约为0.693.",
2024-11-29 12:40:31 +08:00
},
LN10: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": " 10的自然对数,大约为2.302.",
2024-11-29 12:40:31 +08:00
},
LOG2E: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": " E的以2为底的对数(大约1.442).",
},
LOG10E: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": " E的以10为底的对数(约0.434).",
2024-11-29 12:40:31 +08:00
},
SQRT1_2: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": " 1/2的平方根等效于2的平方根上的1,大约为0.707.",
2024-11-29 12:40:31 +08:00
},
SQRT2: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": " 2的平方根,大约为1.414.",
2024-11-29 12:40:31 +08:00
},
PI: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "圆的周长与其直径之比,大约为3.14159.",
2024-11-29 12:40:31 +08:00
},
abs: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回数字的绝对值.",
2024-11-29 12:40:31 +08:00
},
cos: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回数字的余弦.",
2024-11-29 12:40:31 +08:00
},
sin: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回数字的正弦.",
2024-11-29 12:40:31 +08:00
},
tan: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回数字的正切值.",
2024-11-29 12:40:31 +08:00
},
acos: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回数字的反余弦(以弧度为单位).",
2024-11-29 12:40:31 +08:00
},
asin: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回数字的反正弦(以弧度为单位).",
2024-11-29 12:40:31 +08:00
},
atan: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回数字的反正切(以弧度为单位).",
2024-11-29 12:40:31 +08:00
},
atan2: {
2024-11-29 12:40:31 +08:00
"!type": "fn(y: number, x: number) -> number",
"!doc": "返回其参数商的反正切值.",
2024-11-29 12:40:31 +08:00
},
ceil: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回大于或等于数字的最小整数.",
2024-11-29 12:40:31 +08:00
},
floor: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回小于或等于数字的最大整数.",
2024-11-29 12:40:31 +08:00
},
round: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回四舍五入到最接近整数的数字的值.",
2024-11-29 12:40:31 +08:00
},
exp: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回E ^ x,其中x是自变量,E是欧拉常数,自然对数的底.",
2024-11-29 12:40:31 +08:00
},
log: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回数字的自然对数(以E为底).",
},
sqrt: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number) -> number",
"!doc": "返回数字的平方根.",
2024-11-29 12:40:31 +08:00
},
pow: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number, number) -> number",
"!doc": "将基数返回指数幂,即baseexponent.",
2024-11-29 12:40:31 +08:00
},
max: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number, number) -> number",
"!doc": "返回零个或多个数字中的最大值.",
2024-11-29 12:40:31 +08:00
},
min: {
2024-11-29 12:40:31 +08:00
"!type": "fn(number, number) -> number",
"!doc": "返回零个或多个数字中的最小值.",
2024-11-29 12:40:31 +08:00
},
random: {
2024-11-29 12:40:31 +08:00
"!type": "fn() -> number",
"!doc":
"返回一个浮点伪随机数,范围为[0,1),即从0(包括)到不包括1(排除),然后您可以缩放到所需的值范围.",
2024-11-29 12:40:31 +08:00
},
log10: {
2024-11-29 12:40:31 +08:00
"!type": "fn(x: number) -> number",
"!doc": " Math.log10()函数返回数字的以10为底的对数.",
},
log2: {
2024-11-29 12:40:31 +08:00
"!type": "fn(x: number) -> number",
"!doc": " Math.log2()函数返回数字的以2为底的对数.",
},
sign: {
2024-11-29 12:40:31 +08:00
"!type": "fn(x: number) -> number",
"!doc": " Math.sign()函数返回数字的符号,指示数字是正数,负数还是零.,",
},
trunc: {
2024-11-29 12:40:31 +08:00
"!type": "fn(x: number) -> number",
"!doc":
" Math.trunc()函数通过删除任何小数位来返回数字的整数部分.它不舍入任何数字.该函数可以用floor()和ceil()函数表示: ,",
2024-11-29 12:40:31 +08:00
},
"!doc": "一个内置对象,具有用于数学常数和函数的属性和方法.",
},
JSON: {
parse: {
"!type":
"fn(json: string, reviver?: fn(key: string, value: ?) -> ?) -> ?",
2024-11-29 12:40:31 +08:00
"!doc": "将字符串解析为JSON,可以选择转换解析产生的值.",
},
stringify: {
"!type":
"fn(value: ?, replacer?: fn(key: string, value: ?) -> ?, space?: string|number) -> string",
"!doc":
"将值转换为JSON,如果指定了replacer函数,则可以选择替换值,如果指定了replacer数组,则可以选择仅包括指定的属性.",
2024-11-29 12:40:31 +08:00
},
"!doc":
" JSON(JavaScript对象表示法)是一种数据交换格式.尽管它不是严格的子集,但它非常类似于JavaScript语法的子集.(有关详细信息,请参见JavaScript参考中的JSON.)在编写任何类型的基于JavaScript的应用程序(包括网站和浏览器扩展程序)时非常有用.例如,您可以将JSON格式的用户信息存储在cookie中,或者可以将扩展名首选项以JSON形式存储在字符串值的浏览器首选项中.",
},
2024-11-29 12:40:31 +08:00
},
{
"!name": "core",
"!define": {
image: {
2024-11-29 12:40:31 +08:00
"!doc": "图片信息",
width: "number",
height: "number",
src: "string",
2024-11-29 12:40:31 +08:00
},
audio: {
2024-11-29 12:40:31 +08:00
"!doc": "音乐音效信息",
currentTime: "number",
play: "fn()",
pause: "fn()",
paused: "bool",
duration: "number",
volume: "number",
2024-11-29 12:40:31 +08:00
},
flag: {
2024-11-29 12:40:31 +08:00
"!doc": "当前变量",
hard: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "当前难度编号",
2024-11-29 12:40:31 +08:00
},
hatred: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "当前仇恨值",
2024-11-29 12:40:31 +08:00
},
poison: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "是否处于中毒状态",
2024-11-29 12:40:31 +08:00
},
weak: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "是否处于衰弱状态",
2024-11-29 12:40:31 +08:00
},
curse: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "是否处于诅咒状态",
2024-11-29 12:40:31 +08:00
},
no_zone: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "无视领域伤害",
2024-11-29 12:40:31 +08:00
},
no_repulse: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "无视阻击伤害",
2024-11-29 12:40:31 +08:00
},
no_lasel: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "无视激光伤害",
2024-11-29 12:40:31 +08:00
},
no_ambush: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "无视捕捉",
2024-11-29 12:40:31 +08:00
},
__bgm__: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "背景音乐",
2024-11-29 12:40:31 +08:00
},
__weather__: {
"!doc": "天气",
2024-11-29 12:40:31 +08:00
},
__color__: {
"!doc": "色调",
2024-11-29 12:40:31 +08:00
},
__volume__: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "音量",
2024-11-29 12:40:31 +08:00
},
skill: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "当前开启的技能编号",
2024-11-29 12:40:31 +08:00
},
skillName: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "当前开启的技能名",
2024-11-29 12:40:31 +08:00
},
input: {
2024-11-29 12:40:31 +08:00
"!type": "string|number",
"!doc": "等待用户输入后的存放值",
2024-11-29 12:40:31 +08:00
},
type: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "等待用户操作后获得的操作类型",
2024-11-29 12:40:31 +08:00
},
keycode: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "等待用户操作后用户按键的键值",
2024-11-29 12:40:31 +08:00
},
x: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "等待用户操作后用户点击的网格横坐标",
2024-11-29 12:40:31 +08:00
},
y: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "等待用户操作后用户点击的网格纵坐标",
2024-11-29 12:40:31 +08:00
},
px: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "等待用户操作后用户点击的像素横坐标",
2024-11-29 12:40:31 +08:00
},
py: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "等待用户操作后用户点击的像素纵坐标",
2024-11-29 12:40:31 +08:00
},
__visited__: {
"!doc": "当前访问过的楼层",
2024-11-29 12:40:31 +08:00
},
__leaveLoc__: {
"!doc": "每个楼层的离开位置,用于楼传平面塔模式",
2024-11-29 12:40:31 +08:00
},
cannotMoveDirectly: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "当前是否全局不可瞬移",
2024-11-29 12:40:31 +08:00
},
},
hero: {
2024-11-29 12:40:31 +08:00
"!doc": "勇士当前属性",
image: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "行走图",
2024-11-29 12:40:31 +08:00
},
animate: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "是否开启帧动画",
2024-11-29 12:40:31 +08:00
},
name: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "勇士名",
2024-11-29 12:40:31 +08:00
},
lv: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士等级",
2024-11-29 12:40:31 +08:00
},
hpmax: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士生命上限",
2024-11-29 12:40:31 +08:00
},
hp: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士当前生命值",
2024-11-29 12:40:31 +08:00
},
atk: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士当前攻击力",
2024-11-29 12:40:31 +08:00
},
def: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士当前防御力",
2024-11-29 12:40:31 +08:00
},
manamax: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士当前魔力上限,负数无效",
2024-11-29 12:40:31 +08:00
},
mana: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士当前魔力值",
2024-11-29 12:40:31 +08:00
},
mdef: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士当前护盾值",
2024-11-29 12:40:31 +08:00
},
money: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士当前金币",
2024-11-29 12:40:31 +08:00
},
exp: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士当前经验",
2024-11-29 12:40:31 +08:00
},
equipment: {
2024-11-29 12:40:31 +08:00
"!type": "[string]",
"!doc": "勇士当前装备",
2024-11-29 12:40:31 +08:00
},
items: {
2024-11-29 12:40:31 +08:00
"!doc": "勇士当前道具",
constants: {
"!doc": "永久道具",
2024-11-29 12:40:31 +08:00
},
tools: {
2024-11-29 12:40:31 +08:00
"!doc": "消耗道具",
yellowKey: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "黄钥匙个数",
2024-11-29 12:40:31 +08:00
},
blueKey: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "蓝钥匙个数",
2024-11-29 12:40:31 +08:00
},
redKey: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "红钥匙个数",
2024-11-29 12:40:31 +08:00
},
greenKey: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "绿钥匙个数",
2024-11-29 12:40:31 +08:00
},
steelKey: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "铁门钥匙个数",
2024-11-29 12:40:31 +08:00
},
},
equips: {
"!doc": "在背包中未装备上的装备",
2024-11-29 12:40:31 +08:00
},
},
loc: {
2024-11-29 12:40:31 +08:00
"!doc": "勇士当前坐标和朝向",
x: "number",
y: "number",
direction: {
2024-11-29 12:40:31 +08:00
"!doc": "朝向,只能为 up,down,left,right 之一",
"!type": "string",
2024-11-29 12:40:31 +08:00
},
},
flags: {
2024-11-29 12:40:31 +08:00
"!type": "flag",
"!doc": "当前游戏中用到的变量",
2024-11-29 12:40:31 +08:00
},
followers: {
2024-11-29 12:40:31 +08:00
"!type": "[?]",
"!doc": "跟随者信息",
2024-11-29 12:40:31 +08:00
},
steps: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "当前步数",
},
2024-11-29 12:40:31 +08:00
},
block: {
2024-11-29 12:40:31 +08:00
"!doc": "地图图块信息",
x: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "图块的x坐标",
2024-11-29 12:40:31 +08:00
},
y: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "图块的y坐标",
2024-11-29 12:40:31 +08:00
},
id: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "图块的数字",
2024-11-29 12:40:31 +08:00
},
event: {
2024-11-29 12:40:31 +08:00
"!doc": "图块上的事件信息",
id: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "图块的ID",
2024-11-29 12:40:31 +08:00
},
cls: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "图块的类别,一般为所在图片名去掉后缀",
2024-11-29 12:40:31 +08:00
},
disabled: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "启用状态",
},
},
2024-11-29 12:40:31 +08:00
},
blockInfo: {
2024-11-29 12:40:31 +08:00
"!doc": "图块的更多信息",
animate: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "动画帧数",
2024-11-29 12:40:31 +08:00
},
cls: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "图块类别",
2024-11-29 12:40:31 +08:00
},
faceIds: {
2024-11-29 12:40:31 +08:00
"!doc": "行走图朝向",
up: "string",
down: "string",
left: "string",
right: "string",
2024-11-29 12:40:31 +08:00
},
height: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "图块高度",
2024-11-29 12:40:31 +08:00
},
id: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "图块ID",
2024-11-29 12:40:31 +08:00
},
image: {
2024-11-29 12:40:31 +08:00
"!type": "image",
"!doc": "图块所在的图片",
2024-11-29 12:40:31 +08:00
},
name: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "图块名称",
2024-11-29 12:40:31 +08:00
},
number: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "图块使用的数字",
2024-11-29 12:40:31 +08:00
},
posX: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "图块在图片上的横坐标",
2024-11-29 12:40:31 +08:00
},
posY: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "图块在图片上的纵坐标",
2024-11-29 12:40:31 +08:00
},
},
enemy: {
2024-11-29 12:40:31 +08:00
"!doc": "怪物信息",
id: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "怪物ID",
2024-11-29 12:40:31 +08:00
},
name: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "怪物名称",
2024-11-29 12:40:31 +08:00
},
displayIdInBook: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "在怪物手册映射ID",
2024-11-29 12:40:31 +08:00
},
hp: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "怪物生命值",
2024-11-29 12:40:31 +08:00
},
atk: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "怪物攻击",
2024-11-29 12:40:31 +08:00
},
def: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "怪物防御",
2024-11-29 12:40:31 +08:00
},
money: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "怪物金币",
2024-11-29 12:40:31 +08:00
},
exp: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "怪物经验",
2024-11-29 12:40:31 +08:00
},
special: {
2024-11-29 12:40:31 +08:00
"!type": "[number]",
"!doc": "怪物特殊属性",
2024-11-29 12:40:31 +08:00
},
point: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "怪物加点",
2024-11-29 12:40:31 +08:00
},
value: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "怪物特殊属性值:阻激夹域伤害值;吸血比例;光环增加生命比例",
2024-11-29 12:40:31 +08:00
},
zoneSquare: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "领域怪是否九宫格伤害;区域光环是否九宫格范围",
2024-11-29 12:40:31 +08:00
},
range: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "领域伤害的范围;区域光环范围",
2024-11-29 12:40:31 +08:00
},
notBomb: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "怪物不可炸",
2024-11-29 12:40:31 +08:00
},
n: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "多连击的连击数;净化比例",
2024-11-29 12:40:31 +08:00
},
add: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "吸血是否加到自身;光环是否叠加",
2024-11-29 12:40:31 +08:00
},
atkValue: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "反击比例;退化扣除攻击;光环增加攻击;",
2024-11-29 12:40:31 +08:00
},
defValue: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "破甲比例;退化扣除防御;光环增加防御",
2024-11-29 12:40:31 +08:00
},
damage: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "固伤值",
2024-11-29 12:40:31 +08:00
},
},
item: {
2024-11-29 12:40:31 +08:00
"!doc": "道具信息",
id: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "道具ID",
2024-11-29 12:40:31 +08:00
},
cls: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "道具类型",
2024-11-29 12:40:31 +08:00
},
name: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "道具名称",
2024-11-29 12:40:31 +08:00
},
text: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "道具描述",
2024-11-29 12:40:31 +08:00
},
hideInToolbox: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "不显示在道具栏",
2024-11-29 12:40:31 +08:00
},
equip: {
2024-11-29 12:40:31 +08:00
"!doc": "装备属性",
type: {
2024-11-29 12:40:31 +08:00
"!type": "number|string",
"!doc": "装备类型",
2024-11-29 12:40:31 +08:00
},
animate: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "装备动画",
2024-11-29 12:40:31 +08:00
},
value: {
"!doc": "数值加成",
},
percentage: {
"!doc": "比例加成",
2024-11-29 12:40:31 +08:00
},
},
hideInReplay: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "回放不绘制道具栏",
2024-11-29 12:40:31 +08:00
},
},
floor: {
2024-11-29 12:40:31 +08:00
"!doc": "楼层信息",
floorId: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "楼层ID",
2024-11-29 12:40:31 +08:00
},
title: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "楼层中文名",
2024-11-29 12:40:31 +08:00
},
name: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "状态栏显示值",
2024-11-29 12:40:31 +08:00
},
width: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "地图宽",
2024-11-29 12:40:31 +08:00
},
height: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "地图高",
2024-11-29 12:40:31 +08:00
},
canFlyTo: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "该楼是否可以楼传飞到",
2024-11-29 12:40:31 +08:00
},
canFlyFrom: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "该楼是否可以楼传飞出",
2024-11-29 12:40:31 +08:00
},
canUseQuickShop: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "该楼是否可快捷商店",
2024-11-29 12:40:31 +08:00
},
cannotViewMap: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "该层是否不允许被浏览地图看到,也不统计",
2024-11-29 12:40:31 +08:00
},
cannotMoveDirectly: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "该层是否不允许瞬间移动",
2024-11-29 12:40:31 +08:00
},
upFloor: {
2024-11-29 12:40:31 +08:00
"!type": "[number]",
"!doc": "上楼点",
2024-11-29 12:40:31 +08:00
},
downFloor: {
2024-11-29 12:40:31 +08:00
"!type": "[number]",
"!doc": "下楼点",
2024-11-29 12:40:31 +08:00
},
flyPoint: {
2024-11-29 12:40:31 +08:00
"!type": "[number]",
"!doc": "楼传落点",
2024-11-29 12:40:31 +08:00
},
color: {
"!doc": "楼层色调",
2024-11-29 12:40:31 +08:00
},
weather: {
"!doc": "楼层天气",
2024-11-29 12:40:31 +08:00
},
bgm: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "楼层背景音乐",
2024-11-29 12:40:31 +08:00
},
ratio: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "宝石/血瓶效果",
2024-11-29 12:40:31 +08:00
},
map: {
2024-11-29 12:40:31 +08:00
"!type": "[[number]]",
"!doc": "地图数据",
2024-11-29 12:40:31 +08:00
},
blocks: {
2024-11-29 12:40:31 +08:00
"!type": "[block]",
"!doc": "本层图块信息",
},
2024-11-29 12:40:31 +08:00
},
animate: {
2024-11-29 12:40:31 +08:00
"!doc": "动画信息",
se: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "动画音效",
},
},
2024-11-29 12:40:31 +08:00
},
core: {
2024-11-29 12:40:31 +08:00
"!doc": "核心游戏控制",
__SIZE__: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "窗口宽度为13或15",
2024-11-29 12:40:31 +08:00
},
__PIXELS__: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "窗口像素宽度为416或480",
2024-11-29 12:40:31 +08:00
},
__HALF_SIZE__: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "窗口宽度的一半为6或7",
2024-11-29 12:40:31 +08:00
},
floorIds: {
2024-11-29 12:40:31 +08:00
"!type": "[string]",
"!doc": "全部楼层ID列表",
2024-11-29 12:40:31 +08:00
},
floors: {
"!doc": "全部楼层信息",
2024-11-29 12:40:31 +08:00
},
floorPartitions: {
2024-11-29 12:40:31 +08:00
"!type": "[[string]]",
"!doc": "楼层分区信息",
2024-11-29 12:40:31 +08:00
},
material: {
2024-11-29 12:40:31 +08:00
"!doc": "游戏所用到的资源",
animates: {
"!doc": "注册的动画",
2024-11-29 12:40:31 +08:00
},
images: {
"!doc": "注册的图片",
2024-11-29 12:40:31 +08:00
},
bgms: {
"!doc": "注册的背景音乐",
2024-11-29 12:40:31 +08:00
},
sounds: {
"!doc": "注册的音效",
2024-11-29 12:40:31 +08:00
},
enemys: {
2024-11-29 12:40:31 +08:00
"!doc": "怪物定义",
},
items: {
"!doc": "道具定义",
},
2024-11-29 12:40:31 +08:00
},
timeout: {
"!doc": "当前异步事件句柄",
2024-11-29 12:40:31 +08:00
},
interval: {
"!doc": "当前异步事件延时",
2024-11-29 12:40:31 +08:00
},
animateFrame: {
"!doc": "当前各个帧动画",
2024-11-29 12:40:31 +08:00
},
musicStatus: {
2024-11-29 12:40:31 +08:00
"!doc": "音乐音效状态",
bgmStatus: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "是否播放BGM",
2024-11-29 12:40:31 +08:00
},
soundStatus: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "是否播放SE",
2024-11-29 12:40:31 +08:00
},
playingBgm: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "正在播放的bgm",
2024-11-29 12:40:31 +08:00
},
lastBgm: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "上次播放的bgm",
2024-11-29 12:40:31 +08:00
},
playingSounds: {
"!doc": "正在播放的SE",
2024-11-29 12:40:31 +08:00
},
volume: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "当前bgm音量",
},
2024-11-29 12:40:31 +08:00
},
platform: {
2024-11-29 12:40:31 +08:00
"!doc": "平台信息",
isPC: "bool",
isAndroid: "bool",
isIOS: "bool",
2024-11-29 12:40:31 +08:00
},
domStyle: {
2024-11-29 12:40:31 +08:00
"!doc": "界面样式",
scale: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "当前界面放缩比例",
},
ratio: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "高清UI放缩比例",
2024-11-29 12:40:31 +08:00
},
hdCanvas: {
2024-11-29 12:40:31 +08:00
"!type": "[string]",
"!doc": "高清UI的系统画布",
2024-11-29 12:40:31 +08:00
},
availableScale: {
2024-11-29 12:40:31 +08:00
"!type": "[number]",
"!doc": "当前界面支持的放缩比例",
2024-11-29 12:40:31 +08:00
},
isVertical: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "当前是否是竖屏",
2024-11-29 12:40:31 +08:00
},
showStatusBar: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "当前是否显示状态栏",
2024-11-29 12:40:31 +08:00
},
toolbarBtn: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "当前工具栏是否是1-8的按钮",
2024-11-29 12:40:31 +08:00
},
},
bigmap: {
2024-11-29 12:40:31 +08:00
"!doc": "大地图信息",
canvas: {
2024-11-29 12:40:31 +08:00
"!type": "[string]",
"!doc": "大地图的画布",
2024-11-29 12:40:31 +08:00
},
width: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "大地图高度",
2024-11-29 12:40:31 +08:00
},
height: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "大地图宽度",
2024-11-29 12:40:31 +08:00
},
offsetX: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "大地图视角横向偏移量",
2024-11-29 12:40:31 +08:00
},
offsetY: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "大地图视角纵向偏移量",
2024-11-29 12:40:31 +08:00
},
posX: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "大地图视角横向基准格",
2024-11-29 12:40:31 +08:00
},
posY: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "大地图视角纵向基准格",
2024-11-29 12:40:31 +08:00
},
v2: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "是否是新版大地图绘制方式",
2024-11-29 12:40:31 +08:00
},
threshold: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "新版大地图绘制方式的分界线",
2024-11-29 12:40:31 +08:00
},
extend: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "新版大地图模式下向每一侧额外计算的数量",
2024-11-29 12:40:31 +08:00
},
scale: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "缩略图的比例放缩",
2024-11-29 12:40:31 +08:00
},
tempCanvas: {
2024-11-29 12:40:31 +08:00
"!type": "CanvasRenderingContext2D",
"!doc": "临时画布",
},
2024-11-29 12:40:31 +08:00
},
saves: {
"!doc": "当前存档信息",
2024-11-29 12:40:31 +08:00
},
dymCanvas: {
"!doc": "各个自定义画布",
2024-11-29 12:40:31 +08:00
},
statusBar: {
"!doc": "状态栏信息",
2024-11-29 12:40:31 +08:00
},
canvas: {
"!doc": "系统画布",
2024-11-29 12:40:31 +08:00
},
flags: {
"!doc": "系统开关",
2024-11-29 12:40:31 +08:00
},
values: {
"!doc": "全局数值,如毒衰效果",
2024-11-29 12:40:31 +08:00
},
firstData: {
"!doc": "初始属性,如出生点",
2024-11-29 12:40:31 +08:00
},
status: {
2024-11-29 12:40:31 +08:00
"!doc": "状态信息",
hero: {
2024-11-29 12:40:31 +08:00
"!type": "hero",
"!doc": "勇士信息",
2024-11-29 12:40:31 +08:00
},
automaticRoute: {
"!doc": "自动寻路信息",
2024-11-29 12:40:31 +08:00
},
bgmaps: {
"!doc": "各地图背景层",
2024-11-29 12:40:31 +08:00
},
fgmaps: {
"!doc": "各地图前景层",
2024-11-29 12:40:31 +08:00
},
mapBlockObjs: {
"!doc": "以<位置,block>存放的各地图图块信息",
2024-11-29 12:40:31 +08:00
},
boxAnimateObjs: {
"!doc": "(手册和剧情文本的)帧动画对象",
2024-11-29 12:40:31 +08:00
},
checkBlock: {
2024-11-29 12:40:31 +08:00
"!doc": "阻激夹域捕捉信息",
damage: {
"!doc": "每个点的伤害信息",
2024-11-29 12:40:31 +08:00
},
type: {
"!doc": "每个点的伤害类型",
2024-11-29 12:40:31 +08:00
},
repluse: {
"!doc": "每个点的阻击信息",
2024-11-29 12:40:31 +08:00
},
ambush: {
"!doc": "每个点的捕捉信息",
2024-11-29 12:40:31 +08:00
},
needCache: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "该楼层是否需要计算缓存",
2024-11-29 12:40:31 +08:00
},
cache: {
"!doc": "每个点的光环缓存",
2024-11-29 12:40:31 +08:00
},
},
damage: {
2024-11-29 12:40:31 +08:00
"!doc": "每个点的显伤信息",
},
ctrlDown: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "Ctrl键是否被按下",
2024-11-29 12:40:31 +08:00
},
curtainColor: {
"!doc": "当前画面色调",
2024-11-29 12:40:31 +08:00
},
event: {
2024-11-29 12:40:31 +08:00
"!doc": "当前事件",
data: {
"!doc": "事件信息,如坐标等",
2024-11-29 12:40:31 +08:00
},
id: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "事件类型,如选择项/确认框",
2024-11-29 12:40:31 +08:00
},
interval: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "打字机效果的定时器",
2024-11-29 12:40:31 +08:00
},
selection: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "选择项和确认框的当前选中项",
},
ui: {
"!doc": "当前事件的界面信息,如楼传/手册/SL",
2024-11-29 12:40:31 +08:00
},
},
floorAnimateObjs: {
"!doc": "楼层贴图的帧动画",
2024-11-29 12:40:31 +08:00
},
floorId: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "当前楼层ID",
2024-11-29 12:40:31 +08:00
},
gameOver: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "游戏是否已结束",
2024-11-29 12:40:31 +08:00
},
globalAnimateObjs: {
"!doc": "各全局动画",
2024-11-29 12:40:31 +08:00
},
globalAnimateStatus: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "全局动画的帧状态",
2024-11-29 12:40:31 +08:00
},
globalAttribute: {
"!doc": "全局css属性",
2024-11-29 12:40:31 +08:00
},
hard: {
2024-11-29 12:40:31 +08:00
"!type": "string",
"!doc": "状态栏一角的难度名",
2024-11-29 12:40:31 +08:00
},
downTime: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "方向键已按下的时间",
2024-11-29 12:40:31 +08:00
},
heroCenter: {
2024-11-29 12:40:31 +08:00
"!doc": "勇士中心像素坐标",
px: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士中心的横坐标",
2024-11-29 12:40:31 +08:00
},
py: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士中心的纵坐标",
2024-11-29 12:40:31 +08:00
},
},
heroMoving: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "勇士行走的状态值",
2024-11-29 12:40:31 +08:00
},
heroStop: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "勇士是否已停下",
2024-11-29 12:40:31 +08:00
},
holdingKeys: {
2024-11-29 12:40:31 +08:00
"!type": "[number]",
"!doc": "当前按下的键",
2024-11-29 12:40:31 +08:00
},
id2number: {
"!doc": "图块ID到数字的对应关系",
2024-11-29 12:40:31 +08:00
},
lockControl: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "当前是否是锁定操作状态",
2024-11-29 12:40:31 +08:00
},
maps: {
"!doc": "当前各地图信息",
2024-11-29 12:40:31 +08:00
},
number2Block: {
"!doc": "数字到图块对象的对应关系",
2024-11-29 12:40:31 +08:00
},
played: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "当前是否游戏中(不包括标题画面和录像回放)",
2024-11-29 12:40:31 +08:00
},
replay: {
2024-11-29 12:40:31 +08:00
"!doc": "当前录像回放信息",
animate: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "回放是否正处于动画中",
2024-11-29 12:40:31 +08:00
},
pausing: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "回放是否暂停中",
2024-11-29 12:40:31 +08:00
},
replaying: {
2024-11-29 12:40:31 +08:00
"!type": "bool",
"!doc": "当前是否回放中",
2024-11-29 12:40:31 +08:00
},
save: {
2024-11-29 12:40:31 +08:00
"!type": "[]",
"!doc": "录像中的存档",
2024-11-29 12:40:31 +08:00
},
speed: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "回放速度",
2024-11-29 12:40:31 +08:00
},
steps: {
2024-11-29 12:40:31 +08:00
"!type": "number",
"!doc": "回放步数",
2024-11-29 12:40:31 +08:00
},
toReplay: {
2024-11-29 12:40:31 +08:00
"!type": "[string]",
"!doc": "待回放的列表",
2024-11-29 12:40:31 +08:00
},
totalList: {
2024-11-29 12:40:31 +08:00
"!type": "[string]",
"!doc": "回放总列表",
},
2024-11-29 12:40:31 +08:00
},
route: {
2024-11-29 12:40:31 +08:00
"!type": "[string]",
"!doc": "当前录像内容",
2024-11-29 12:40:31 +08:00
},
shops: {
"!doc": "全局商店列表",
2024-11-29 12:40:31 +08:00
},
textAttribute: {
"!doc": "当前剧情文本属性",
2024-11-29 12:40:31 +08:00
},
thisMap: {
2024-11-29 12:40:31 +08:00
"!type": "floor",
"!doc": "当前地图信息",
},
2024-11-29 12:40:31 +08:00
},
init: {
2024-11-29 12:40:31 +08:00
"!doc": "初始化core",
"!type": "fn(coreData: ?, callback: fn())",
2024-11-29 12:40:31 +08:00
},
doFunc: {
2024-11-29 12:40:31 +08:00
"!doc": "执行一个函数;如果函数名是字符串则转发到插件中",
"!type": "fn(func: name|fn(), _this?: ?)",
2024-11-29 12:40:31 +08:00
},
control: {
"!doc":
"负责整个游戏的核心控制系统,分为如下几个部分:<br/>- requestAnimationFrame相关<br/>- 标题界面,开始和重新开始游戏<br/>- 自动寻路和人物行走相关<br/>- 画布、位置、阻激夹域、显伤等相关<br/>- 录像的回放相关<br/>- 存读档,自动存档,同步存档等相关<br/>- 人物属性和状态、位置、变量等相关<br/>- 天气、色调、音乐和音效的播放<br/>- 状态栏和工具栏相关<br/>- 界面resize相关",
showStatusBar: {
2024-11-29 12:40:31 +08:00
"!doc": "显示状态栏",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
startReplay: {
2024-11-29 12:40:31 +08:00
"!doc": "开始播放录像",
"!type": "fn(list: [string])",
2024-11-29 12:40:31 +08:00
},
triggerReplay: {
2024-11-29 12:40:31 +08:00
"!doc": "播放或暂停录像回放",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
screenFlash: {
"!doc":
"画面闪烁<br/>例如core.screenFlash([255, 0, 0, 1], 3); // 红屏一闪而过<br/>color: 一行三列第四列视为1或一行四列第四列若大于1则会被视为1第四列若填负数则会被视为0的颜色数组必填<br/>time: 单次闪烁时长,实际闪烁效果为先花其三分之一的时间渐变到目标色调,再花剩余三分之二的时间渐变回去<br/>times: 闪烁的总次数不填或填0都视为1<br/>moveMode: 渐变方式<br/>callback: 闪烁全部完毕后的回调函数,可选",
"!type":
"fn(color: [number], time: number, times?: number, moveMode?: string, callback?: fn())",
},
setCurtain: {
"!doc":
"更改画面色调不计入存档。如需长期生效请使用core.events._action_setCurtain()函数<br/>例如core.setCurtain(); // 恢复画面色调,用时四分之三秒<br/>color: 一行三列第四列视为1或一行四列第四列若大于1则会被视为1第四列若为负数则会被视为0的颜色数组不填视为[0, 0, 0, 0]<br/>time: 渐变时间单位为毫秒。不填视为750ms负数视为0无渐变立即更改<br/>moveMode: 渐变方式<br/>callback: 更改完毕后的回调函数可选。事件流中常取core.doAction",
"!type":
"fn(color?: [number], time?: number, moveMode?: string, callback?: fn())",
},
updateDamage: {
"!doc":
"注意请勿使用该函数请使用core.updateStatusBar()代替!!重算并绘制地图显伤<br/>例如core.updateDamage(); // 更新当前地图的显伤,绘制在显伤层(废话)<br/>floorId: 地图id不填视为当前地图。预览地图时填写<br/>ctx: 绘制到的画布,如果填写了就会画在该画布而不是显伤层",
"!type":
"fn(floorId?: string, ctx?: string|CanvasRenderingContext2D)",
},
drawDamage: {
2024-11-29 12:40:31 +08:00
"!doc": "仅绘制地图显伤",
"!type": "fn(string|CanvasRenderingContext2D)",
2024-11-29 12:40:31 +08:00
},
nextX: {
"!doc":
"获取主角面前第n格的横坐标<br/>例如core.closeDoor(core.nextX(), core.nextY(), 'yellowDoor', core.turnHero); // 在主角面前关上一扇黄门然后主角顺时针旋转90°<br/>n: 目标格与主角的距离面前为正数背后为负数脚下为0不填视为1",
"!type": "fn(n?: number) -> number",
2024-11-29 12:40:31 +08:00
},
nextY: {
"!doc":
"获取主角面前第n格的纵坐标<br/>例如core.jumpHero(core.nextX(2), core.nextY(2)); // 主角向前跃过一格,即跳跃靴道具的使用效果<br/>n: 目标格与主角的距离面前为正数背后为负数脚下为0不填视为1",
"!type": "fn(n?: number) -> number",
2024-11-29 12:40:31 +08:00
},
clearContinueAutomaticRoute: {
2024-11-29 12:40:31 +08:00
"!doc": "清空剩下的自动寻路列表",
"!type": "fn(callback?: fn())",
2024-11-29 12:40:31 +08:00
},
updateViewport: {
2024-11-29 12:40:31 +08:00
"!doc": "更新大地图的可见区域",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
getMappedName: {
2024-11-29 12:40:31 +08:00
"!doc": "获得映射文件名",
"!type": "fn(name: string) -> string",
2024-11-29 12:40:31 +08:00
},
addFlag: {
"!doc":
"增减一个flag变量等价于 core.setFlag(name, core.getFlag(name, 0) + value)<br/>例如core.addFlag('hatred', 1); // 增加1点仇恨值<br/>name: 变量名,支持中文<br/>value: 变量的增量",
"!type": "fn(name: string, value: number)",
},
setFlag: {
"!doc":
"设置一个flag变量<br/>例如core.setFlag('poison', true); // 令主角中毒<br/>name: 变量名,支持中文<br/>value: 变量的新值不填或填null视为删除",
"!type": "fn(name: string, value: ?)",
},
playSound: {
"!doc":
"播放一个音效<br/>sound: 音效名;可以使用文件别名。<br/>pitch: 播放的音调可选如果设置则为30-300之间的数值。<br/>callback: 可选,播放完毕后执行的回调函数。<br/>返回一个数字可用于core.stopSound的参数来只停止该音效。",
"!type":
"fn(sound: string, pitch?: number, callback?: fn()) -> number",
},
stopSound: {
"!doc":
"停止播放音效。如果未指定id则停止所有音效否则只停止指定的音效。",
"!type": "fn(id?: number)",
},
getPlayingSounds: {
"!doc":
"获得当前正在播放的所有指定音效的id列表<br/>name: 音效名,可用别名;不填代表返回正在播放的全部音效<br/>返回值: 一个列表每一项为一个正在播放的音效id可用core.stopSound立刻停止播放",
"!type": "fn(name?: string) -> [number]",
},
addGameCanvasTranslate: {
2024-11-29 12:40:31 +08:00
"!doc": "加减画布偏移",
"!type": "fn(x?: number, y?: number)",
2024-11-29 12:40:31 +08:00
},
addBuff: {
"!doc":
"增减主角某个属性的百分比修正倍率,加减法叠加和抵消。等价于 core.setBuff(name, core.getBuff(name) + value)<br/>例如core.addBuff('atk', -0.1); // 主角获得一层“攻击力减一成”的负面效果<br/>name: 属性的英文名请注意只能用于数值类属性哦否则随后的乘法会得到NaN<br/>value: 倍率的增量",
"!type": "fn(name: string, value: number)",
2024-11-29 12:40:31 +08:00
},
drawHero: {
"!doc":
"绘制主角和跟随者并重置视野到以主角为中心<br/>例如core.drawHero(); // 原地绘制主角的静止帧并重置视野野<br/>status: 只能为 stop, leftFoot 和 rightFoot不填用stop。<br/>offset: 相对主角逻辑位置的偏移量,不填视为无偏移。<br/>frame: 绘制的第几帧",
"!type": "fn(status?: string, offset?: number, frame?: number)",
2024-11-29 12:40:31 +08:00
},
pauseBgm: {
2024-11-29 12:40:31 +08:00
"!doc": "暂停背景音乐的播放",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
setBgmSpeed: {
"!doc":
"设置背景音乐的播放速度和音调<br/>speed: 播放速度必须为30-300中间的值。100为正常速度。<br/>usePitch: 是否同时改变音调(部分设备可能不支持)",
"!type": "fn(speed: number, usePitch?: bool)",
2024-11-29 12:40:31 +08:00
},
setReplaySpeed: {
2024-11-29 12:40:31 +08:00
"!doc": "设置播放速度",
"!type": "fn(speed: number)",
2024-11-29 12:40:31 +08:00
},
pauseReplay: {
2024-11-29 12:40:31 +08:00
"!doc": "暂停播放",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
doSL: {
2024-11-29 12:40:31 +08:00
"!doc": "实际进行存读档事件",
"!type": "fn(id?: string, type?: string)",
2024-11-29 12:40:31 +08:00
},
setStatus: {
"!doc":
"设置主角的某个属性<br/>例如core.setStatus('atk', 100); // 设置攻击力为100<br/>name: 属性的英文名,其中'x'、'y'和'direction'会被特殊处理为 core.setHeroLoc(name, value),其他的会直接对 core.status.hero[name] 赋值<br/>value: 属性的新值",
"!type": "fn(name: string, value: number)",
2024-11-29 12:40:31 +08:00
},
setAutomaticRoute: {
"!doc":
'半自动寻路,用于鼠标或手指拖动<br/>例如core.setAutomaticRoute(0, 0, [{direction: "right", x: 4, y: 9}, {direction: "right", x: 5, y: 9}]);<br/>destX: 鼠标或手指的起拖点横坐标<br/>destY: 鼠标或手指的起拖点纵坐标<br/>stepPostfix: 拖动轨迹的数组表示,每项为一步的方向和目标点。',
"!type":
"fn(destX: number, destY: number, stepPostfix: [{x: number, y: number, direction: string}])",
2024-11-29 12:40:31 +08:00
},
setHeroOpacity: {
2024-11-29 12:40:31 +08:00
"!doc": "改变勇士的不透明度",
"!type":
"fn(opacity?: number, moveMode?: string, time?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
gatherFollowers: {
2024-11-29 12:40:31 +08:00
"!doc": "立刻聚集所有的跟随者",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
getStatus: {
"!doc":
"读取主角的某个属性,不包括百分比修正<br/>例如core.getStatus('atk'); // 读取主角的攻击力<br/>name: 属性的英文名,其中'x'、'y'和'direction'会被特殊处理为 core.getHeroLoc(name),其他的会直接读取 core.status.hero[name]",
"!type": "fn(name: string) -> number",
2024-11-29 12:40:31 +08:00
},
setHeroLoc: {
"!doc":
"设置勇士位置<br/>值得注意的是,这句话虽然会使勇士改变位置,但并不会使界面重新绘制;<br/>如需立刻重新绘制地图还需调用core.clearMap('hero'); core.drawHero(); 来对界面进行更新。<br/>例如core.setHeroLoc('x', 5) // 将勇士当前位置的横坐标设置为5。<br/>name: 要设置的坐标属性<br/>value: 新值<br/>noGather: 是否聚集跟随者",
"!type": "fn(name: string, value: string|number, noGather?: bool)",
2024-11-29 12:40:31 +08:00
},
getLvName: {
"!doc":
"根据级别的数字获取对应的名称,后者定义在全塔属性<br/>例如core.getLvName(); // 获取主角当前级别的名称,如“下级佣兵”<br/>lv: 级别的数字,不填则视为主角当前的级别<br/>返回值:级别的名称,如果不存在就还是返回数字",
"!type": "fn(lv?: number) -> string|number",
2024-11-29 12:40:31 +08:00
},
getNextLvUpNeed: {
"!doc":
"获得下次升级需要的经验值。<br/>升级扣除模式下会返回经验差值;非扣除模式下会返回总共需要的经验值。<br/>如果无法进行下次升级返回null。",
"!type": "fn() -> number",
2024-11-29 12:40:31 +08:00
},
addStatus: {
"!doc":
"增减主角的某个属性等价于core.setStatus(name, core.getStatus(name) + value)<br/>例如core.addStatus('atk', 100'); // 给主角攻击力加100<br/>name: 属性的英文名<br/>value: 属性的增量",
"!type": "fn(name: string, value: number)",
2024-11-29 12:40:31 +08:00
},
speedUpReplay: {
2024-11-29 12:40:31 +08:00
"!doc": "加速播放",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
loadData: {
2024-11-29 12:40:31 +08:00
"!doc": "从本地读档",
"!type": "fn(data?: ?, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
debug: {
"!doc":
"开启调试模式, 此模式下可以按Ctrl键进行穿墙, 并忽略一切事件。<br/>此模式下不可回放录像和上传成绩。",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
moveOneStep: {
"!doc":
"每移动一格后执行的事件<br/>【异步脚本,请勿在脚本中直接调用(而是使用对应的事件),否则可能导致录像出错】",
"!type": "fn(callback?: fn())",
2024-11-29 12:40:31 +08:00
},
clearStatus: {
2024-11-29 12:40:31 +08:00
"!doc": "清除游戏状态和数据",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
updateFollowers: {
2024-11-29 12:40:31 +08:00
"!doc": "更新跟随者坐标",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
waitHeroToStop: {
"!doc":
"等待主角停下<br/>例如core.waitHeroToStop(core.vibrate); // 等待主角停下然后视野左右抖动1秒<br/>callback: 主角停止后的回调函数",
"!type": "fn(callback?: fn())",
2024-11-29 12:40:31 +08:00
},
hideStatusBar: {
2024-11-29 12:40:31 +08:00
"!doc": "隐藏状态栏<br/>showToolbox: 是否不隐藏竖屏工具栏",
"!type": "fn(showToolbox?: bool)",
2024-11-29 12:40:31 +08:00
},
getBuff: {
"!doc":
"读取主角某个属性的百分比修正倍率初始值为1<br/>例如core.getBuff('atk'); // 主角当前能发挥出多大比例的攻击力<br/>name: 属性的英文名",
"!type": "fn(name: string) -> number",
2024-11-29 12:40:31 +08:00
},
triggerDebuff: {
"!doc":
"获得或移除毒衰咒效果<br/>action: 要获得还是移除,'get'为获得,'remove'为移除<br/>type: 获得或移除的内容poison/weak/curse可以为字符串或数组",
"!type": "fn(action: string, type: string|[string])",
2024-11-29 12:40:31 +08:00
},
setToolbarButton: {
2024-11-29 12:40:31 +08:00
"!doc": "改变工具栏为按钮1-8",
"!type": "fn(useButton?: bool)",
2024-11-29 12:40:31 +08:00
},
getSaves: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某些存档内容",
"!type": "fn(ids?: ?, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
replay: {
2024-11-29 12:40:31 +08:00
"!doc": "回放下一个操作",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
getStatusOrDefault: {
2024-11-29 12:40:31 +08:00
"!doc": "从status中获得属性如果不存在则从勇士属性中获取",
"!type": "fn(status?: ?, name?: string)",
2024-11-29 12:40:31 +08:00
},
unregisterReplayAction: {
2024-11-29 12:40:31 +08:00
"!doc": "注销一个录像行为",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
unregisterWeather: {
2024-11-29 12:40:31 +08:00
"!doc": "注销一个天气",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
setBuff: {
"!doc":
"设置主角某个属性的百分比修正倍率初始值为1<br/>倍率存放在flag: '__'+name+'_buff__' 中<br/>例如core.setBuff('atk', 0.5); // 主角能发挥出的攻击力减半<br/>name: 属性的英文名请注意只能用于数值类属性哦否则随后的乘法会得到NaN<br/>value: 新的百分比修正倍率不填效果上视为1",
"!type": "fn(name: string, value: number)",
2024-11-29 12:40:31 +08:00
},
continueAutomaticRoute: {
2024-11-29 12:40:31 +08:00
"!doc": "继续剩下的自动寻路操作",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
setAutoHeroMove: {
"!doc":
'连续行走<br/>例如core.setAutoHeroMove([{direction: "up", step: 1}, {direction: "left", step: 3}]); // 上左左左<br/>steps: 压缩的步伐数组,每项表示朝某方向走多少步',
"!type": "fn(steps: [?])",
2024-11-29 12:40:31 +08:00
},
unregisterResize: {
2024-11-29 12:40:31 +08:00
"!doc": "注销一个resize函数",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
saveAndStopAutomaticRoute: {
2024-11-29 12:40:31 +08:00
"!doc": "保存剩下的寻路,并停止",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
hideStartAnimate: {
"!doc":
"淡出标题画面<br/>例如core.hideStartAnimate(core.startGame); // 淡出标题画面并开始新游戏,跳过难度选择<br/>callback: 标题画面完全淡出后的回调函数",
"!type": "fn(callback?: fn())",
2024-11-29 12:40:31 +08:00
},
getAllSaves: {
2024-11-29 12:40:31 +08:00
"!doc": "获得所有存档内容",
"!type": "fn(callback?: fn())",
2024-11-29 12:40:31 +08:00
},
updateHeroIcon: {
2024-11-29 12:40:31 +08:00
"!doc": "更新状态栏的勇士图标",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
setMusicBtn: {
2024-11-29 12:40:31 +08:00
"!doc": "设置音乐图标的显隐状态",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
isPlaying: {
2024-11-29 12:40:31 +08:00
"!doc": "游戏是否已经开始",
"!type": "fn() -> bool",
2024-11-29 12:40:31 +08:00
},
triggerBgm: {
2024-11-29 12:40:31 +08:00
"!doc": "开启或关闭背景音乐的播放",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
moveHero: {
"!doc":
"连续前进,不撞南墙不回头<br/>例如core.moveHero(); // 连续前进<br/>direction: 可选,如果设置了就会先转身到该方向<br/>callback: 可选,如果设置了就只走一步<br/>【异步脚本,请勿在脚本中直接调用(而是使用对应的事件),否则可能导致录像出错】",
"!type": "fn(direction?: string, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
getRealStatusOrDefault: {
"!doc":
"从status中获得实际属性增幅后的如果不存在则从勇士属性中获取",
"!type": "fn(status?: ?, name?: string)",
2024-11-29 12:40:31 +08:00
},
getStatusLabel: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某个状态的名字如atk->攻击def->防御等",
"!type": "fn(name: string) -> string",
2024-11-29 12:40:31 +08:00
},
removeSave: {
2024-11-29 12:40:31 +08:00
"!doc": "删除某个存档",
"!type": "fn(index?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
registerAnimationFrame: {
"!doc":
"注册一个 animationFrame<br/>name: 名称,可用来作为注销使用<br/>needPlaying: 是否只在游戏运行时才执行(在标题界面不执行)<br/>func: 要执行的函数或插件中的函数名可接受timestamp从页面加载完毕到当前所经过的时间作为参数",
"!type":
"fn(name: string, needPlaying: bool, func?: fn(timestamp: number))",
2024-11-29 12:40:31 +08:00
},
getHeroLoc: {
"!doc":
"读取主角的位置和/或朝向<br/>例如core.getHeroLoc(); // 读取主角的位置和朝向<br/>name: 要读取横坐标还是纵坐标还是朝向还是都读取<br/>返回值name ? core.status.hero.loc[name] : core.status.hero.loc",
"!type": "fn(name: string) -> string|number",
2024-11-29 12:40:31 +08:00
},
stopAutomaticRoute: {
2024-11-29 12:40:31 +08:00
"!doc": "停止自动寻路操作",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
setWeather: {
"!doc":
"设置天气不计入存档。如需长期生效请使用core.events._action_setWeather()函数<br/>例如core.setWeather('fog', 10); // 设置十级大雾天<br/>type: 新天气的类型,不填视为晴天<br/>level: 新天气晴天除外的级别必须为不大于10的正整数不填视为5",
"!type": "fn(type?: string, level?: number)",
2024-11-29 12:40:31 +08:00
},
updateStatusBar: {
"!doc":
"刷新状态栏和地图显伤<br/>doNotCheckAutoEvents: 是否不检查自动事件",
"!type": "fn(doNotCheckAutoEvents?: bool, immediate?: bool)",
2024-11-29 12:40:31 +08:00
},
autosave: {
2024-11-29 12:40:31 +08:00
"!doc": "自动存档",
"!type": "fn(removeLast?: bool)",
2024-11-29 12:40:31 +08:00
},
clearStatusBar: {
2024-11-29 12:40:31 +08:00
"!doc": "清空状态栏",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
moveAction: {
"!doc":
"尝试前进一步,如果面前不可被踏入就会直接触发该点事件<br/>请勿直接使用此函数,如有需要请使用「勇士前进一步或撞击」事件<br/>【异步脚本,请勿在脚本中直接调用(而是使用对应的事件),否则可能导致录像出错】",
"!type": "fn(callback?: fn())",
2024-11-29 12:40:31 +08:00
},
hasFlag: {
"!doc":
"判定一个flag变量是否存在且不为false、0、''、null、undefined和NaN<br/>例如core.hasFlag('poison'); // 判断主角当前是否中毒<br/>name: 变量名,支持中文<br/>此函数等价于 !!core.getFlag(name)",
"!type": "fn(name: string) -> bool",
2024-11-29 12:40:31 +08:00
},
rewindReplay: {
2024-11-29 12:40:31 +08:00
"!doc": "回退到上一个录像节点",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
playBgm: {
"!doc":
"播放背景音乐中途开播但不计入存档且只会持续到下次场景切换。如需长期生效请将背景音乐的文件名赋值给flags.__bgm__<br/>例如core.playBgm('bgm.mp3', 30); // 播放bgm.mp3并跳过前半分钟<br/>bgm: 背景音乐的文件名,支持全塔属性中映射前的中文名<br/>startTime: 跳过前多少秒,不填则不跳过",
"!type": "fn(bgm: string, startTime?: number)",
2024-11-29 12:40:31 +08:00
},
isReplaying: {
2024-11-29 12:40:31 +08:00
"!doc": "是否正在播放录像",
"!type": "fn() -> bool",
2024-11-29 12:40:31 +08:00
},
isMoving: {
2024-11-29 12:40:31 +08:00
"!doc": "当前是否正在移动",
"!type": "fn() -> bool",
2024-11-29 12:40:31 +08:00
},
getSaveIndexes: {
2024-11-29 12:40:31 +08:00
"!doc": "获得所有存在存档的存档位",
"!type": "fn(callback?: fn())",
2024-11-29 12:40:31 +08:00
},
unlockControl: {
2024-11-29 12:40:31 +08:00
"!doc": "解锁用户控制行为",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
syncSave: {
2024-11-29 12:40:31 +08:00
"!doc": "同步存档到服务器",
"!type": "fn(type?: string)",
2024-11-29 12:40:31 +08:00
},
removeFlag: {
2024-11-29 12:40:31 +08:00
"!doc": "删除某个flag/变量",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
registerResize: {
"!doc":
"注册一个resize函数<br/>name: 名称,可供注销使用<br/>func: 可以是一个函数或者是插件中的函数名可以接受obj参数详见resize函数。",
"!type": "fn(name: string, func: fn(obj: ?))",
2024-11-29 12:40:31 +08:00
},
registerWeather: {
"!doc":
"注册一个天气<br/>name: 要注册的天气名<br/>initFunc: 当切换到此天气时的初始化接受level天气等级为参数可用于创建多个节点如初始化雪花<br/>frameFunc: 每帧的天气效果变化可接受timestamp从页面加载完毕到当前所经过的时间和level天气等级作为参数<br/>天气应当仅在weather层进行绘制推荐使用core.animateFrame.weather.nodes用于节点信息。",
"!type":
"fn(name: string, initFunc: fn(level: number), frameFunc?: fn(timestamp: number, level: number))",
2024-11-29 12:40:31 +08:00
},
stopReplay: {
2024-11-29 12:40:31 +08:00
"!doc": "停止播放",
"!type": "fn(force?: bool)",
2024-11-29 12:40:31 +08:00
},
turnHero: {
"!doc":
"主角转向并计入录像,不会导致跟随者聚集,会导致视野重置到以主角为中心<br/>例如core.turnHero(); // 主角顺时针旋转90°即单击主角或按下Z键的效果<br/>direction: 主角的新朝向,可为 up, down, left, right, :left, :right, :back 七种之一",
"!type": "fn(direction?: string)",
2024-11-29 12:40:31 +08:00
},
resumeReplay: {
2024-11-29 12:40:31 +08:00
"!doc": "恢复播放",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
resize: {
2024-11-29 12:40:31 +08:00
"!doc": "屏幕分辨率改变后重新自适应",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
getSave: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某个存档内容",
"!type": "fn(index?: number, callback?: fn(data: ?))",
2024-11-29 12:40:31 +08:00
},
setViewport: {
"!doc":
"设置视野范围<br/>px,py: 左上角相对大地图的像素坐标不需要为32倍数",
"!type": "fn(px?: number, py?: number)",
2024-11-29 12:40:31 +08:00
},
chooseReplayFile: {
2024-11-29 12:40:31 +08:00
"!doc": "选择录像文件",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
lockControl: {
2024-11-29 12:40:31 +08:00
"!doc": "锁定用户控制,常常用于事件处理",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
updateCheckBlock: {
2024-11-29 12:40:31 +08:00
"!doc": "更新领域、夹击、阻击的伤害地图",
"!type": "fn(floorId?: string)",
2024-11-29 12:40:31 +08:00
},
checkBlock: {
2024-11-29 12:40:31 +08:00
"!doc": "检查并执行领域、夹击、阻击事件",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
clearAutomaticRouteNode: {
2024-11-29 12:40:31 +08:00
"!doc": "清除自动寻路路线",
"!type": "fn(x?: number, y?: number)",
2024-11-29 12:40:31 +08:00
},
getFlag: {
"!doc":
"读取一个flag变量<br/>name: 变量名,支持中文<br/>defaultValue: 当变量不存在时的返回值可选事件流中默认填0。",
"!type": "fn(name: string, defaultValue?: ?)",
2024-11-29 12:40:31 +08:00
},
getNakedStatus: {
2024-11-29 12:40:31 +08:00
"!doc": "获得勇士原始属性(无装备和衰弱影响)",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
nearHero: {
"!doc":
"判定主角是否身处某个点的锯齿领域(取曼哈顿距离)<br/>例如core.nearHero(6, 6, 6); // 判定主角是否身处点66的半径为6的锯齿领域<br/>x: 领域的中心横坐标<br/>y: 领域的中心纵坐标<br/>n: 领域的半径不填视为1",
"!type": "fn(x: number, y: number, n?: number) -> bool",
2024-11-29 12:40:31 +08:00
},
stepReplay: {
2024-11-29 12:40:31 +08:00
"!doc": "单步播放",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
hasSave: {
2024-11-29 12:40:31 +08:00
"!doc": "判断某个存档位是否存在存档",
"!type": "fn(index?: number) -> bool",
2024-11-29 12:40:31 +08:00
},
showStartAnimate: {
"!doc":
"进入标题画面<br/>例如core.showStartAnimate(); // 重启游戏但不重置bgm<br/>noAnimate: 可选true表示不由黑屏淡入而是立即亮屏<br/>callback: 可选,完全亮屏后的回调函数",
"!type": "fn(noAnimate?: bool, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
moveViewport: {
2024-11-29 12:40:31 +08:00
"!doc": "移动视野范围",
"!type":
"fn(x: number, y: number, moveMode?: string, time?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
syncLoad: {
2024-11-29 12:40:31 +08:00
"!doc": "从服务器加载存档",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
setHeroMoveInterval: {
2024-11-29 12:40:31 +08:00
"!doc": "设置行走的效果动画",
"!type": "fn(callback?: fn())",
2024-11-29 12:40:31 +08:00
},
registerReplayAction: {
"!doc":
"注册一个录像行为<br/>name: 自定义名称,可用于注销使用<br/>func: 具体执行录像的函数,可为一个函数或插件中的函数名;<br/>需要接受一个action参数代表录像回放时的下一个操作<br/>func返回true代表成功处理了此录像行为false代表没有处理此录像行为。",
"!type": "fn(name: string, func: fn(action?: string) -> bool)",
2024-11-29 12:40:31 +08:00
},
checkAutosave: {
2024-11-29 12:40:31 +08:00
"!doc": "实际将自动存档写入存储",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
resumeBgm: {
2024-11-29 12:40:31 +08:00
"!doc": "恢复背景音乐的播放<br/>resumeTime: 从哪一秒开始恢复播放",
"!type": "fn(resumeTime?: number)",
2024-11-29 12:40:31 +08:00
},
setGameCanvasTranslate: {
2024-11-29 12:40:31 +08:00
"!doc": "设置大地图的偏移量",
"!type":
"fn(ctx: string|CanvasRenderingContext2D, x: number, y: number)",
2024-11-29 12:40:31 +08:00
},
checkBgm: {
2024-11-29 12:40:31 +08:00
"!doc": "检查bgm状态",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
setDisplayScale: {
2024-11-29 12:40:31 +08:00
"!doc": "设置屏幕放缩",
"!type": "fn(delta: number)",
2024-11-29 12:40:31 +08:00
},
speedDownReplay: {
2024-11-29 12:40:31 +08:00
"!doc": "减速播放",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
getRealStatus: {
"!doc":
"计算主角的某个属性,包括百分比修正<br/>例如core.getRealStatus('atk'); // 计算主角的攻击力,包括百分比修正。战斗使用的就是这个值<br/>name: 属性的英文名请注意只能用于数值类属性哦否则乘法会得到NaN",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
saveData: {
2024-11-29 12:40:31 +08:00
"!doc": "存档到本地",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
unregisterAnimationFrame: {
2024-11-29 12:40:31 +08:00
"!doc": "注销一个animationFrame",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
tryMoveDirectly: {
"!doc":
"尝试瞬移,如果该点有图块/事件/阻激夹域捕则会瞬移到它旁边再走一步(不可踏入的话当然还是触发该点事件),这一步的方向优先和瞬移前主角的朝向一致<br/>例如core.tryMoveDirectly(6, 0); // 尝试瞬移到地图顶部的正中央以样板0层为例实际效果是瞬移到了上楼梯下面一格然后向上走一步并触发上楼事件<br/>destX: 目标点的横坐标<br/>destY: 目标点的纵坐标",
"!type": "fn(destX: number, destY: number)",
2024-11-29 12:40:31 +08:00
},
moveDirectly: {
2024-11-29 12:40:31 +08:00
"!doc": "瞬间移动",
"!type": "fn(destX?: number, destY?: number, ignoreSteps?: number)",
2024-11-29 12:40:31 +08:00
},
clearRouteFolding: {
2024-11-29 12:40:31 +08:00
"!doc": "清空录像折叠信息",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
checkRouteFolding: {
2024-11-29 12:40:31 +08:00
"!doc": "检查录像折叠信息",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
setSwitch: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个独立开关",
"!type":
"fn(x: number, y: number, floorId: string, name: string, value: ?)",
2024-11-29 12:40:31 +08:00
},
getSwitch: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某个独立开关",
"!type":
"fn(x: number, y: number, floorId: string, name: string, defaultValue?: ?)",
2024-11-29 12:40:31 +08:00
},
addSwitch: {
2024-11-29 12:40:31 +08:00
"!doc": "增加某个独立开关",
"!type":
"fn(x: number, y: number, floorId: string, name: string, value: number)",
2024-11-29 12:40:31 +08:00
},
removeSwitch: {
2024-11-29 12:40:31 +08:00
"!doc": "删除某个独立开关",
"!type": "fn(x: number, y: number, floorId: string, name: string)",
2024-11-29 12:40:31 +08:00
},
removeSwitch: {
2024-11-29 12:40:31 +08:00
"!doc": "判定某个独立开关",
"!type":
"fn(x: number, y: number, floorId: string, name: string) -> bool",
},
2024-11-29 12:40:31 +08:00
},
icons: {
2024-11-29 12:40:31 +08:00
"!doc": "图标信息",
getTilesetOffset: {
2024-11-29 12:40:31 +08:00
"!doc": "根据图块数字或ID获得所在的tileset和坐标信息",
"!type": "fn(id?: string) -> {image: ?, x: number, y: number}",
2024-11-29 12:40:31 +08:00
},
getClsFromId: {
2024-11-29 12:40:31 +08:00
"!doc": "根据ID获得其图标类型",
"!type": "fn(id?: string) -> string",
2024-11-29 12:40:31 +08:00
},
getAllIconIds: {
2024-11-29 12:40:31 +08:00
"!doc": "获得所有图标的ID",
"!type": "fn() -> [string]",
2024-11-29 12:40:31 +08:00
},
getIcons: {
2024-11-29 12:40:31 +08:00
"!doc": "获得所有图标类型",
"!type": "fn()",
},
2024-11-29 12:40:31 +08:00
},
items: {
2024-11-29 12:40:31 +08:00
"!doc": "道具相关的函数",
getEquip: {
"!doc":
"检查主角某种类型的装备目前是什么<br/>例如core.getEquip(1) // 主角目前装备了什么盾牌<br/>equipType: 装备类型,自然数<br/>返回值装备idnull表示未穿戴",
"!type": "fn(equipType: number) -> string",
},
loadEquip: {
"!doc":
"尝试穿上某件背包里面的装备并提示<br/>例如core.loadEquip('sword5') // 尝试装备上背包里面的神圣剑,无回调<br/>equipId: 装备id<br/>callback: 穿戴成功或失败后的回调函数",
"!type": "fn(equipId: string, callback?: fn())",
},
itemCount: {
"!doc":
"统计某种道具的持有量<br/>例如core.itemCount('yellowKey') // 持有多少把黄钥匙<br/>itemId: 道具id<br/>返回值:该种道具的持有量,不包括已穿戴的装备",
"!type": "fn(itemId: string) -> number",
},
getItems: {
2024-11-29 12:40:31 +08:00
"!doc": "获得所有道具",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
canUseItem: {
"!doc":
"检查能否使用某种道具<br/>例如core.canUseItem('pickaxe') // 能否使用破墙镐<br/>itemId: 道具id<br/>返回值true表示可以使用",
"!type": "fn(itemId: string) -> bool",
},
hasItem: {
"!doc":
"检查主角是否持有某种道具(不包括已穿戴的装备)<br/>例如core.hasItem('yellowKey') // 主角是否持有黄钥匙<br/>itemId: 道具id<br/>返回值true表示持有",
"!type": "fn(itemId: string) -> bool",
},
addItem: {
"!doc":
"静默增减某种道具的持有量 不会更新游戏画面或是显示提示<br/>例如core.addItem('yellowKey', -2) // 没收两把黄钥匙<br/>itemId: 道具id<br/>itemNum: 增加量,负数表示没收",
"!type": "fn(itemId: string, itemNum?: number)",
},
unloadEquip: {
"!doc":
"脱下某个类型的装备<br/>例如core.unloadEquip(1) // 卸下盾牌,无回调<br/>equipType: 装备类型编号,自然数<br/>callback: 卸下装备后的回调函数",
"!type": "fn(equipType: number, callback?: fn())",
},
quickLoadEquip: {
"!doc":
"快速换装<br/>例如core.quickLoadEquip(1) // 快速换上1号套装<br/>index: 套装编号,自然数",
"!type": "fn(index: number)",
},
getItemEffect: {
"!doc":
"即捡即用类的道具获得时的效果<br/>例如core.getItemEffect('redPotion', 10) // 执行获得10瓶红血的效果<br/>itemId: 道具id<br/>itemNum: 道具数量可选默认为1",
"!type": "fn(itemId: string, itemNum?: number)",
},
quickSaveEquip: {
"!doc":
"保存当前套装<br/>例如core.quickSaveEquip(1) // 将当前套装保存为1号套装<br/>index: 套装编号,自然数",
"!type": "fn(index: number)",
},
setItem: {
"!doc":
"设置某种道具的持有量<br/>例如core.setItem('yellowKey', 3) // 设置黄钥匙为3把<br/>itemId: 道具id<br/>itemNum: 新的持有量可选自然数默认为0",
"!type": "fn(itemId: string, itemNum?: number)",
},
compareEquipment: {
"!doc":
"比较两件(类型可不同)装备的优劣<br/>例如core.compareEquipment('sword5', 'shield5') // 比较神圣剑和神圣盾的优劣<br/>compareEquipId: 装备甲的id<br/>beComparedEquipId: 装备乙的id<br/>返回值两装备的各属性差甲减乙0省略",
"!type":
"fn(compareEquipId: string, beComparedEquipId: string) -> {value: ?, percentage: ?}",
},
removeItem: {
2024-11-29 12:40:31 +08:00
"!doc": "删除某个物品",
"!type": "fn(itemId?: string, itemNum?: number)",
2024-11-29 12:40:31 +08:00
},
getEquipTypeById: {
"!doc":
"判定某件装备的类型<br/>例如core.getEquipTypeById('shield5') // 1盾牌<br/>equipId: 装备id<br/>返回值:类型编号,自然数",
"!type": "fn(equipId: string) -> number",
2024-11-29 12:40:31 +08:00
},
getEquipTypeByName: {
2024-11-29 12:40:31 +08:00
"!doc": "根据类型获得一个可用的装备孔",
"!type": "fn(name?: string)",
},
useItem: {
"!doc":
"使用一个道具<br/>例如core.useItem('pickaxe', true) // 使用破墙镐,不计入录像,无回调<br/>itemId: 道具id<br/>noRoute: 是否不计入录像快捷键使用的请填true否则可省略<br/>callback: 道具使用完毕或使用失败后的回调函数",
"!type": "fn(itemId: string, noRoute?: bool, callback?: fn())",
},
hasEquip: {
"!doc":
"检查主角是否穿戴着某件装备<br/>例如core.hasEquip('sword5') // 主角是否装备了神圣剑<br/>itemId: 装备id<br/>返回值true表示已装备",
"!type": "fn(itemId: string) -> bool",
},
getItemEffectTip: {
"!doc":
"即捡即用类的道具获得时的额外提示<br/>例如core.getItemEffectTip(redPotion) // (获得 红血瓶)',生命+100'<br/>itemId: 道具id<br/>返回值图块属性itemEffectTip的内容",
"!type": "fn(itemId: string) -> string",
},
canEquip: {
"!doc":
"检查能否穿上某件装备<br/>例如core.canEquip('sword5', true) // 主角可以装备神圣剑吗,如果不能会有提示<br/>equipId: 装备id<br/>hint: 无法穿上时是否提示(比如是因为未持有还是别的什么原因)<br/>返回值true表示可以穿上false表示无法穿上",
"!type": "fn(equipId: string, hint?: bool) -> bool",
},
setEquip: {
"!doc":
"设置某个装备的属性并计入存档<br/>例如core.setEquip('sword1', 'value', 'atk', 300, '+='); // 设置铁剑的攻击力数值再加300<br/>equipId: 装备id<br/>valueType: 增幅类型只能是value数值或percentage百分比<br/>name: 要修改的属性名称如atk<br/>value: 要修改到的属性数值<br/>operator: 操作符,可选,如+=表示在原始值上增加<br/>prefix: 独立开关前缀,一般不需要",
"!type":
"fn(equipId: string, valueType: string, name: string, value: ?, operator?: string, prefix?: string)",
2024-11-29 12:40:31 +08:00
},
},
utils: {
2024-11-29 12:40:31 +08:00
"!doc": "工具函数库,里面有各个样板中使用到的工具函数。",
scan: {
2024-11-29 12:40:31 +08:00
"!doc": "朝向到x,y映射",
up: {
x: "number",
y: "number",
},
down: {
x: "number",
y: "number",
2024-11-29 12:40:31 +08:00
},
left: {
x: "number",
y: "number",
2024-11-29 12:40:31 +08:00
},
right: {
x: "number",
y: "number",
2024-11-29 12:40:31 +08:00
},
},
applyEasing: {
2024-11-29 12:40:31 +08:00
"!doc": "获得变速移动曲线",
"!type": "fn(mode?: string) -> fn(t: number) -> number",
},
clamp: {
"!doc":
"将x限定在[a,b]区间内注意a和b可交换<br/>例如core.clamp(1200, 1, 1000); // 1000<br/>x: 原始值,!x为true时x一律视为0<br/>a: 下限值大于b将导致与b交换<br/>b: 上限值小于a将导致与a交换",
"!type": "fn(x: number, a: number, b: number) -> number",
},
rand: {
"!doc":
"不支持SL的随机数<br/>例如1 + core.rand(6); // 随机生成一个小于7的正整数模拟骰子的效果<br/>num: 填正数表示生成小于num的随机自然数否则生成小于1的随机正数<br/>返回值:随机数,即使读档也不会改变结果",
"!type": "fn(num?: number) -> number",
},
clone: {
"!doc":
"深拷贝一个对象(函数将原样返回)<br/>例如core.clone(core.status.hero, (name, value) => (name == 'items' || typeof value == 'number'), false); // 深拷贝主角的属性和道具<br/>data: 待拷贝对象<br/>filter: 过滤器可选表示data为数组或对象时拷贝哪些项或属性true表示拷贝<br/>recursion: 过滤器是否递归可选。true表示过滤器也被递归<br/>返回值:拷贝的结果,注意函数将原样返回",
"!type":
"fn(data?: ?, filter?: fn(name: string, value: ?) -> bool, recursion?: bool)",
},
cloneArray: {
"!doc":
"深拷贝一个1D或2D数组对象<br/>例如core.cloneArray(core.status.thisMap.map)",
"!type": "fn(data?: [number]|[[number]]) -> [number]|[[number]]",
},
setLocalForage: {
2024-11-29 12:40:31 +08:00
"!doc": "往数据库写入一段数据",
"!type":
"fn(key: string, value?: ?, successCallback?: fn(), errorCallback?: fn())",
2024-11-29 12:40:31 +08:00
},
getGlobal: {
"!doc":
"读取一个全局存储适用于global:xxx支持录像。<br/>例如if (core.getGlobal('一周目已通关', false) === true) core.getItem('dagger'); // 二周目游戏进行到此处时会获得一把屠龙匕首<br/>key: 全局变量名称,支持中文<br/>defaultValue: 可选当此全局变量不存在或值为null、undefined时用此值代替<br/>返回值:全局变量的值",
"!type": "fn(key: string, defaultValue?: ?)",
2024-11-29 12:40:31 +08:00
},
replaceText: {
"!doc":
"将一段文字中的${}(表达式)进行替换。<br/>例如core.replaceText('衬衫的价格是${status:hp}镑${item:yellowKey}便士。'); // 把主角的生命值和持有的黄钥匙数量代入这句话<br/>text: 模板字符串,可以使用${}计算js表达式支持“状态、物品、变量、独立开关、全局存储、图块id、图块类型、敌人数据、装备id”等量参与运算<br/>返回值:替换完毕后的字符串",
"!type": "fn(text: string, prefix?: string) -> string",
2024-11-29 12:40:31 +08:00
},
removeLocalStorage: {
2024-11-29 12:40:31 +08:00
"!doc": "移除本地存储",
"!type": "fn(key: string)",
2024-11-29 12:40:31 +08:00
},
unzip: {
2024-11-29 12:40:31 +08:00
"!doc": "解压一段内容",
"!type":
"fn(blobOrUrl?: ?, success?: fn(data: ?), error?: fn(error: string), convertToText?: bool, onprogress?: fn(loaded: number, total: number))",
2024-11-29 12:40:31 +08:00
},
formatTime: {
2024-11-29 12:40:31 +08:00
"!doc": "格式化时间",
"!type": "fn(time: number) -> string",
2024-11-29 12:40:31 +08:00
},
readFile: {
"!doc":
"尝试请求读取一个本地文件内容 [异步]<br/>success: 成功后的回调<br/>error: 失败后的回调<br/>readType: 不设置则以文本读取否则以DataUrl形式读取",
"!type":
"fn(success?: fn(data: string), error?: fn(message: string), readType?: bool)",
2024-11-29 12:40:31 +08:00
},
readFileContent: {
2024-11-29 12:40:31 +08:00
"!doc": "文件读取完毕后的内容处理 [异步]",
"!type": "fn(content: string)",
2024-11-29 12:40:31 +08:00
},
formatDate: {
2024-11-29 12:40:31 +08:00
"!doc": "格式化日期为字符串",
"!type": "fn(date: ?) -> string",
2024-11-29 12:40:31 +08:00
},
download: {
"!doc":
"弹窗请求下载一个文本文件<br/>例如core.download('route.txt', JSON.stringify(core.status.route)); // 弹窗请求下载录像<br/>filename: 文件名<br/>content: 文件内容",
"!type": "fn(filename: string, content: string)",
2024-11-29 12:40:31 +08:00
},
encodeBase64: {
"!doc":
"base64加密<br/>例如core.encodeBase64('abcd'); // 'YWJjZA=='<br/>str: 明文<br/>返回值:密文",
"!type": "fn(str: string) -> string",
2024-11-29 12:40:31 +08:00
},
strlen: {
"!doc":
"求字符串的国标码字节数也可用于等宽字体下文本的宽度测算。请注意样板的默认字体Verdana不是等宽字体<br/>例如core.strlen('无敌ad'); // 6<br/>str: 待测字符串<br/>返回值字符串的国标码字节数每个汉字为2每个ASCII字符为1",
"!type": "fn(str: string) -> number",
2024-11-29 12:40:31 +08:00
},
myprompt: {
2024-11-29 12:40:31 +08:00
"!doc": "让用户输入一段文字",
"!type":
"fn(hint: string, value: string, callback?: fn(data?: string))",
2024-11-29 12:40:31 +08:00
},
getCookie: {
2024-11-29 12:40:31 +08:00
"!doc": "访问浏览器cookie",
"!type": "fn(name: string) -> string",
2024-11-29 12:40:31 +08:00
},
decodeRoute: {
"!doc":
"录像解压的最后一步,即一压的逆过程<br/>例如core.decodeRoute(core.encodeRoute(core.status.route)); // 一压当前录像再解压-_-|<br/>route: 录像解压倒数第二步的结果,即一压的结果<br/>返回值:原始录像",
"!type": "fn(route: string) -> [string]",
2024-11-29 12:40:31 +08:00
},
formatDate2: {
2024-11-29 12:40:31 +08:00
"!doc": "格式化日期为最简字符串",
"!type": "fn(date: ?) -> string",
2024-11-29 12:40:31 +08:00
},
unshift: {
"!doc":
"将b可以是另一个数组插入数组a的开头此函数用于弥补a.unshift(b)中b只能是单项的不足。<br/>例如core.unshift(todo, {type: 'unfollow'}); // 在事件指令数组todo的开头插入“取消所有跟随者”指令<br/>a: 原数组<br/>b: 待插入的新首项或前缀数组<br/>返回值插入完毕后的新数组它是改变原数组a本身得到的",
"!type": "fn(a: [?], b: ?) -> [?]",
2024-11-29 12:40:31 +08:00
},
same: {
"!doc":
"判定深层相等, 会逐层比较每个元素<br/>例如core.same(['1', 2], ['1', 2]); // true",
"!type": "fn(a?: ?, b?: ?) -> bool",
2024-11-29 12:40:31 +08:00
},
setTwoDigits: {
2024-11-29 12:40:31 +08:00
"!doc": "两位数显示",
"!type": "fn(x: number) -> string",
2024-11-29 12:40:31 +08:00
},
splitImage: {
"!doc":
"等比例切分一张图片<br/>例如core.splitImage(core.material.images.images['npc48.png'], 32, 48); // 把npc48.png切分成若干32×48px的小人<br/>image: 图片名(支持映射前的中文名)或图片对象(参见上面的例子),获取不到时返回[]<br/>width: 子图的宽度单位为像素。原图总宽度必须是其倍数不填视为32<br/>height: 子图的高度,单位为像素。原图总高度必须是其倍数,不填视为正方形<br/>返回值:子图组成的数组,在原图中呈先行后列,从左到右、从上到下排列。",
"!type":
"fn(image?: string|image, width?: number, height?: number) -> [image]",
2024-11-29 12:40:31 +08:00
},
decompress: {
2024-11-29 12:40:31 +08:00
"!doc": "解压缩一个数据",
"!type": "fn(value: ?)",
2024-11-29 12:40:31 +08:00
},
showWithAnimate: {
2024-11-29 12:40:31 +08:00
"!doc": "动画显示某对象",
"!type": "fn(obj?: ?, speed?: number, callback?: fn())",
},
subarray: {
"!doc":
"判定一个数组是否为另一个数组的前缀,用于录像接续播放。请注意函数名没有大写字母<br/>例如core.subarray(['ad', '米库', '小精灵', '小破草', '小艾'], ['ad', '米库', '小精灵']); // ['小破草', '小艾']<br/>a: 可能的母数组不填或比b短将返回null<br/>b: 可能的前缀不填或比a长将返回null<br/>返回值如果b不是a的前缀将返回null否则将返回a去掉此前缀后的剩余数组",
"!type": "fn(a?: [?], b?: [?]) -> [?]|null",
},
turnDirection: {
"!doc":
"计算应当转向某个方向<br/>turn: 转向的方向,可为 up,down,left,right,:left,:right,:back 七种<br/>direction: 当前方向",
"!type": "fn(turn: string, direction?: string) -> string",
},
myconfirm: {
"!doc":
"显示确认框类似core.drawConfirmBox(),但不打断事件流<br/>例如core.myconfirm('重启游戏?', core.restart); // 弹窗询问玩家是否重启游戏<br/>hint: 弹窗的内容,支持 ${} 语法<br/>yesCallback: 确定后的回调函数<br/>noCallback: 取消后的回调函数,可选",
"!type": "fn(hint: string, yesCallback?: fn(), noCallback?: fn())",
},
calValue: {
"!doc":
"计算一个表达式的值支持status:xxx等的计算。<br/>例如core.calValue('status:hp + status:def'); // 计算主角的生命值加防御力<br/>value: 待求值的表达式<br/>prefix: 独立开关前缀,一般可省略<br/>返回值:求出的值",
"!type": "fn(value: string, prefix?: string)",
},
encodeRoute: {
"!doc":
"录像压缩缩<br/>例如core.encodeRoute(core.status.route); // 压缩当前录像<br/>route: 原始录像自定义内容不予压缩原样写入必须由0-9A-Za-z和下划线、冒号组成所以中文和数组需要用JSON.stringify预处理再base64压缩才能交由一压<br/>返回值:一压的结果",
"!type": "fn(route: [string]) -> string",
},
decodeBase64: {
"!doc":
"base64解密<br/>例如core.decodeBase64('YWJjZA=='); // \"abcd\"<br/>str: 密文<br/>返回值:明文",
"!type": "fn(str: string) -> string",
},
http: {
"!doc":
"发送一个HTTP请求 [异步]<br/>type: 请求类型只能为GET或POST<br/>url: 目标地址<br/>formData: 如果是POST请求则为表单数据<br/>success: 成功后的回调<br/>error: 失败后的回调",
"!type":
"fn(type: string, url: string, formData: ?, success?: fn(data: string), error?: fn(message: string), mimeType?: string, responseType?: string, onprogress?: fn(loaded: number, total: number))",
},
getGuid: {
2024-11-29 12:40:31 +08:00
"!doc": "获得或生成浏览器唯一的guid",
"!type": "fn() -> string",
2024-11-29 12:40:31 +08:00
},
getLocalStorage: {
2024-11-29 12:40:31 +08:00
"!doc": "获得本地存储",
"!type": "fn(key: string, defaultValue?: ?)",
2024-11-29 12:40:31 +08:00
},
arrayToRGB: {
"!doc":
'颜色数组转字符串<br/>例如core.arrayToRGB([102, 204, 255]); // "#66ccff"<br/>color: 一行三列的数组必须为不大于255的自然数<br/>返回值:该颜色的#xxxxxx字符串表示',
"!type": "fn(color: [number]) -> string",
2024-11-29 12:40:31 +08:00
},
arrayToRGBA: {
"!doc":
'颜色数组转字符串<br/>例如core.arrayToRGBA([102, 204, 255, 0.3]); // "rgba(102,204,255,0.3)"<br/>color: 一行三列或一行四列的数组前三个元素必须为不大于255的自然数。第四个元素如果有必须为0或不大于1的数字第四个元素不填视为1<br/>返回值该颜色的rgba(...)字符串表示',
"!type": "fn(color: [number]) -> string",
2024-11-29 12:40:31 +08:00
},
formatBigNumber: {
"!doc":
'大数字格式化单位为10000的倍数w,e,z,j,g末尾四舍五入<br/>例如core.formatBigNumber(123456789, false); // "12346w"<br/>x: 原数字<br/>onMap: 可选true表示用于地图显伤结果总字符数最多为5否则最多为6<br/>返回值:格式化结果',
"!type": "fn(x: number, onMap?: bool) -> string",
2024-11-29 12:40:31 +08:00
},
removeLocalForage: {
2024-11-29 12:40:31 +08:00
"!doc": "移除本地数据库的数据",
"!type":
"fn(key: string, successCallback?: fn(), errorCallback?: fn())",
2024-11-29 12:40:31 +08:00
},
matchWildcard: {
"!doc":
"通配符匹配,用于搜索图块等批量处理。<br/>例如core.playSound(core.matchWildcard('*Key', itemId) ? 'item.opus' : 'door.opus'); // 判断捡到的是钥匙还是别的道具,从而播放不同的音效<br/>pattern: 模式串每个星号表示任意多个0个起字符<br/>string: 待测串<br/>返回值true表示匹配成功false表示匹配失败",
"!type": "fn(pattern: string, string: string) -> bool",
2024-11-29 12:40:31 +08:00
},
setLocalStorage: {
2024-11-29 12:40:31 +08:00
"!doc": "设置本地存储",
"!type": "fn(key: string, value?: ?)",
2024-11-29 12:40:31 +08:00
},
hideWithAnimate: {
2024-11-29 12:40:31 +08:00
"!doc": "动画使某对象消失",
"!type": "fn(obj?: ?, speed?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
copy: {
2024-11-29 12:40:31 +08:00
"!doc": "尝试复制一段文本到剪切板。",
"!type": "fn(data: string) -> bool",
2024-11-29 12:40:31 +08:00
},
isset: {
"!doc":
"判断一个值是否不为nullundefined和NaN<br/>例如core.isset(0/0); // false因为0/0等于NaN<br/>v: 待测值,可选<br/>返回值false表示待测值为null、undefined、NaN或未填写true表示为其他值。",
"!type": "fn(v?: ?) -> bool",
2024-11-29 12:40:31 +08:00
},
replaceValue: {
"!doc":
"对一个表达式中的特殊规则进行替换如status:xxx等。<br/>例如core.replaceValue('status:atk+item:yellowKey'); // 把这两个冒号表达式替换为core.getStatus('hp')和core.itemCount('yellowKey')这样的函数调用<br/>value: 模板字符串,注意独立开关不会被替换<br/>返回值:替换完毕后的字符串",
"!type": "fn(value: string) -> string",
2024-11-29 12:40:31 +08:00
},
getLocalForage: {
2024-11-29 12:40:31 +08:00
"!doc": "从本地数据库读出一段数据",
"!type":
"fn(key: string, defaultValue?: ?, successCallback?: fn(data: ?), errorCallback?: fn())",
},
inArray: {
"!doc":
"判定array是不是一个数组以及element是否在该数组中。<br/>array: 可能的数组不为数组或不填将导致返回值为false<br/>element: 待查找的元素<br/>返回值如果array为数组且具有element这项就返回true否则返回false",
"!type": "fn(array?: ?, element?: ?) -> bool",
},
setGlobal: {
"!doc":
"设置一个全局存储适用于global:xxx录像播放时将忽略此函数。<br/>例如core.setBlobal('一周目已通关', true); // 设置全局存储“一周目已通关”为true方便二周目游戏中的新要素。<br/>key: 全局变量名称,支持中文<br/>value: 全局变量的新值不填或null表示清除此全局存储",
"!type": "fn(key: string, value?: ?)",
},
rand2: {
"!doc":
"支持SL的随机数并计入录像<br/>例如1 + core.rand2(6); // 随机生成一个小于7的正整数模拟骰子的效果<br/>num: 正整数0或不填会被视为2147483648<br/>返回值:属于 [0, num) 的随机数",
"!type": "fn(num?: number) -> number",
},
setStatusBarInnerHTML: {
"!doc":
"填写非自绘状态栏<br/>例如core.setStatusBarInnerHTML('hp', core.status.hero.hp, 'color: #66CCFF'); // 更新状态栏中的主角生命,使用加载画面的宣传色<br/>name: 状态栏项的名称,如'hp', 'atk', 'def'等。必须是core.statusBar中的一个合法项<br/>value: 要填写的内容大数字会被格式化为至多6个字符无中文的内容会被自动设为斜体<br/>css: 额外的css样式可选。如更改颜色等",
"!type": "fn(name: string, value: ?, css?: string)",
},
matchRegex: {
2024-11-29 12:40:31 +08:00
"!doc": "是否满足正则表达式",
"!type": "fn(pattern: string, string: string) -> string",
2024-11-29 12:40:31 +08:00
},
push: {
"!doc":
"将b可以是另一个数组插入数组a的末尾此函数用于弥补a.push(b)中b只能是单项的不足。<br/>例如core.push(todo, {type: 'unfollow'}); // 在事件指令数组todo的末尾插入“取消所有跟随者”指令<br/>a: 原数组<br/>b: 待插入的新末项或后缀数组<br/>返回值插入完毕后的新数组它是改变原数组a本身得到的",
"!type": "fn(a: [?], b: ?) -> [?]",
2024-11-29 12:40:31 +08:00
},
formatSize: {
2024-11-29 12:40:31 +08:00
"!doc": "格式化文件大小",
"!type": "fn(size: number) -> string",
},
2024-11-29 12:40:31 +08:00
},
actions: {
2024-11-29 12:40:31 +08:00
"!doc": "主要是处理一些和用户交互相关的内容。",
onup: {
2024-11-29 12:40:31 +08:00
"!doc": "当点击(触摸)事件放开时",
"!type": "fn(loc: {x: number, y: number, size: number})",
2024-11-29 12:40:31 +08:00
},
pressKey: {
2024-11-29 12:40:31 +08:00
"!doc": "按住某个键时",
"!type": "fn(keyCode: number)",
2024-11-29 12:40:31 +08:00
},
keyUp: {
2024-11-29 12:40:31 +08:00
"!doc": "根据放开键的code来执行一系列操作",
"!type": "fn(keyCode: number, altKey?: bool, fromReplay?: bool)",
2024-11-29 12:40:31 +08:00
},
ondown: {
2024-11-29 12:40:31 +08:00
"!doc": "点击(触摸)事件按下时",
"!type": "fn(loc: {x: number, y: number, size: number})",
2024-11-29 12:40:31 +08:00
},
registerAction: {
"!doc":
"此函数将注册一个用户交互行为。<br/>action: 要注册的交互类型,如 ondown, onclick, keyDown 等等。<br/>name: 你的自定义名称,可被注销使用;同名重复注册将后者覆盖前者。<br/>func: 执行函数。<br/>如果func返回true则不会再继续执行其他的交互函数否则会继续执行其他的交互函数。<br/>priority: 优先级优先级高的将会被执行。此项可不填默认为0",
"!type":
"fn(action: string, name: string, func: string|fn(params: ?), priority?: number)",
2024-11-29 12:40:31 +08:00
},
onkeyDown: {
2024-11-29 12:40:31 +08:00
"!doc": "按下某个键时",
"!type": "fn(e: Event)",
2024-11-29 12:40:31 +08:00
},
keyDown: {
2024-11-29 12:40:31 +08:00
"!doc": "根据按下键的code来执行一系列操作",
"!type": "fn(keyCode: number)",
2024-11-29 12:40:31 +08:00
},
onStatusBarClick: {
2024-11-29 12:40:31 +08:00
"!doc": "点击自绘状态栏时",
"!type": "fn(e?: Event)",
2024-11-29 12:40:31 +08:00
},
longClick: {
2024-11-29 12:40:31 +08:00
"!doc": "长按",
"!type":
"fn(x: number, y: number, px: number, py: number, fromEvent?: bool)",
2024-11-29 12:40:31 +08:00
},
unregisterAction: {
2024-11-29 12:40:31 +08:00
"!doc": "注销一个用户交互行为",
"!type": "fn(action: string, name: string)",
2024-11-29 12:40:31 +08:00
},
keyDownCtrl: {
2024-11-29 12:40:31 +08:00
"!doc": "长按Ctrl键时",
"!type": "fn() -> bool",
2024-11-29 12:40:31 +08:00
},
onclick: {
2024-11-29 12:40:31 +08:00
"!doc": "具体点击屏幕上(x,y)点时,执行的操作",
"!type":
"fn(x: number, y: number, px: number, py: number, stepPostfix?: [?])",
2024-11-29 12:40:31 +08:00
},
doRegisteredAction: {
2024-11-29 12:40:31 +08:00
"!doc": "执行一个用户交互行为",
"!type": "fn(action: string, params: ?)",
2024-11-29 12:40:31 +08:00
},
onkeyUp: {
2024-11-29 12:40:31 +08:00
"!doc": "放开某个键时",
"!type": "fn(e: Event)",
2024-11-29 12:40:31 +08:00
},
onmousewheel: {
2024-11-29 12:40:31 +08:00
"!doc": "滑动鼠标滚轮时的操作",
"!type": "fn(direct: number)",
2024-11-29 12:40:31 +08:00
},
onmove: {
2024-11-29 12:40:31 +08:00
"!doc": "当在触摸屏上滑动时",
"!type": "fn(loc: {x: number, y: number, size: number})",
},
2024-11-29 12:40:31 +08:00
},
loader: {
2024-11-29 12:40:31 +08:00
"!doc": "资源加载相关的函数",
loadImages: {
2024-11-29 12:40:31 +08:00
"!doc": "加载一系列图片",
"!type":
"fn(dir: string, names: [string], toSave: ?, callback?: fn()) ",
2024-11-29 12:40:31 +08:00
},
loadImagesFromZip: {
2024-11-29 12:40:31 +08:00
"!doc": "从zip中加载一系列图片",
"!type":
"fn(url: string, names: [string], toSave?: ?, onprogress?: ?, onfinished?: ?)",
2024-11-29 12:40:31 +08:00
},
loadBgm: {
2024-11-29 12:40:31 +08:00
"!doc": "加载一个bgm",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
loadOneMusic: {
2024-11-29 12:40:31 +08:00
"!doc": "加载一个音乐或音效",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
freeBgm: {
2024-11-29 12:40:31 +08:00
"!doc": "释放一个bgm的缓存",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
loadOneSound: {
2024-11-29 12:40:31 +08:00
"!doc": "加载一个音效",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
loadImage: {
2024-11-29 12:40:31 +08:00
"!doc": "加载某一张图片",
"!type": "fn(dir: name, imgName: name, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
},
maps: {
"!doc":
"负责一切和地图相关的处理内容,包括如下几个方面:<br/>- 地图的初始化,保存和读取,地图数组的生成<br/>- 是否可移动或瞬间移动的判定<br/>- 地图的绘制<br/>- 获得某个点的图块信息<br/>- 启用和禁用图块,改变图块 <br/>- 移动/跳跃图块,淡入淡出图块<br/>- 全局动画控制,动画的绘制",
noPass: {
"!doc":
"判定某个点是否不可被踏入不基于主角生命值和图块cannotIn属性<br/>例如core.noPass(0, 0); // 判断地图左上角能否被踏入<br/>x: 目标点的横坐标<br/>y: 目标点的纵坐标<br/>floorId: 目标点所在的地图id不填视为当前地图<br/>返回值true表示可踏入",
"!type": "fn(x: number, y: number, floorId?: string) -> bool",
},
drawAnimate: {
"!doc":
"播放动画注意即使指定了主角的坐标也不会跟随主角移动如有需要请使用core.drawHeroAnimate(name, callback)函数<br/>例如core.drawAnimate('attack', core.nextX(), core.nextY(), false, core.vibrate); // 在主角面前一格播放普攻动画动画停止后视野左右抖动1秒<br/>name: 动画文件名,不含后缀<br/>x: 横坐标<br/>y: 纵坐标<br/>alignWindow: 是否是相对窗口的坐标<br/>callback: 动画停止后的回调函数,可选<br/>返回值一个数字可作为core.stopAnimate()的参数来立即停止播放(届时还可选择是否执行此次播放的回调函数)",
"!type":
"fn(name: string, x: number, y: number, alignWindow: bool, callback?: fn()) -> number",
},
drawHeroAnimate: {
"!doc":
"播放跟随勇士的动画<br/>name: 动画名<br/>callback: 动画停止后的回调函数,可选<br/>返回值一个数字可作为core.stopAnimate()的参数来立即停止播放(届时还可选择是否执行此次播放的回调函数)",
"!type": "fn(name: string, callback?: fn()) -> number",
},
stopAnimate: {
"!doc":
"立刻停止一个动画播放<br/>id: 播放动画的编号即drawAnimate或drawHeroAnimate的返回值不填视为所有动画br/>doCallback: 是否执行该动画的回调函数",
"!type": "fn(id?: number, doCallback?: bool)",
},
getPlayingAnimates: {
"!doc":
"获得当前正在播放的所有指定动画的id列表<br/>name: 动画名;不填代表返回全部正在播放的动画<br/>返回值: 一个数组每一项为一个正在播放的动画可用core.stopAnimate停止播放。",
"!type": "fn(name?: string) -> [number]",
},
getBlockCls: {
"!doc":
"判定某个点的图块类型<br/>例如if(core.getBlockCls(x1, y1) != 'enemys' && core.getBlockCls(x2, y2) != 'enemy48') core.openDoor(x3, y3); // 另一个简单的机关门事件,打败或炸掉这一对不同身高的敌人就开门<br/>x: 横坐标<br/>y: 纵坐标<br/>floorId: 地图id不填视为当前地图<br/>showDisable: 隐藏点是否不返回nulltrue表示不返回null<br/>返回值图块类型即“地形、四帧动画、矮敌人、高敌人、道具、矮npc、高npc、自动元件、额外地形”之一",
"!type":
"fn(x: number, y: number, floorId?: string, showDisable?: bool) -> string",
},
drawMap: {
"!doc":
"地图重绘<br/>例如core.drawMap(); // 重绘当前地图,常用于更改贴图或改变自动元件后的刷新<br/>floorId: 地图id可省略表示当前楼层<br/>callback: 重绘完毕后的回调函数,可选",
"!type": "fn(floorId?: string)",
},
nearStair: {
2024-11-29 12:40:31 +08:00
"!doc": "当前位置是否在楼梯边;在楼传平面塔模式下对箭头也有效",
"!type": "fn() -> bool",
2024-11-29 12:40:31 +08:00
},
turnBlock: {
2024-11-29 12:40:31 +08:00
"!doc": "事件转向",
"!type":
"fn(direction?: string, x?: number, y?: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
getMapArray: {
"!doc":
"生成事件层矩阵<br/>例如core.getMapArray('MT0'); // 生成主塔0层的事件层矩阵隐藏的图块视为0<br/>floorId: 地图id不填视为当前地图<br/>showDisable: 可选true表示隐藏的图块也会被表示出来<br/>返回值:事件层矩阵,注意对其阵元的访问是[y][x]",
"!type": "fn(floorId?: string, noCache?: bool) -> [[number]]",
2024-11-29 12:40:31 +08:00
},
getMapNumber: {
2024-11-29 12:40:31 +08:00
"!doc": "获得事件层某个点的数字",
"!type":
"fn(x: number, y: number, floorId?: string, noCache?: bool) -> number",
},
jumpBlock: {
"!doc":
"跳跃图块从V2.7开始不再有音效<br/>例如core.jumpBlock(0, 0, 0, 0); // 令地图左上角的图块原地跳跃半秒,再花半秒淡出<br/>sx: 起点的横坐标<br/>sy: 起点的纵坐标<br/>ex: 终点的横坐标<br/>ey: 终点的纵坐标<br/>time: 单步和淡出用时,单位为毫秒。不填视为半秒<br/>keep: 是否不淡出true表示不淡出<br/>callback: 落地或淡出后的回调函数,可选",
"!type":
"fn(sx: number, sy: number, ex: number, ey: number, time?: number, keep?: bool, callback?: fn())",
},
replaceBlock: {
"!doc":
"批量替换图块<br/>例如core.replaceBlock(21, 22, core.floorIds); // 把游戏中地上当前所有的黄钥匙都变成蓝钥匙<br/>fromNumber: 旧图块的数字<br/>toNumber: 新图块的数字<br/>floorId: 地图id或其数组不填视为当前地图",
"!type":
"fn(fromNumber: number, toNumber: number, floorId?: string|[string])",
},
drawBlock: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制一个图块",
"!type": "fn(block?: block, animate?: number)",
2024-11-29 12:40:31 +08:00
},
resetMap: {
2024-11-29 12:40:31 +08:00
"!doc": "重置地图",
"!type": "fn(floorId?: string|[string])",
2024-11-29 12:40:31 +08:00
},
animateSetBlock: {
2024-11-29 12:40:31 +08:00
"!doc": "动画形式转变某点图块",
"!type":
"fn(number: number|string, x: number, y: number, floorId?: string, time?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
animateSetBlocks: {
2024-11-29 12:40:31 +08:00
"!doc": "动画形式同时转变若干点图块",
"!type":
"fn(number: number|string, locs: [?], floorId?: string, time?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
compressMap: {
2024-11-29 12:40:31 +08:00
"!doc": "压缩地图",
"!type": "fn(mapArr: [[number]], floorId?: string) -> [[number]]",
2024-11-29 12:40:31 +08:00
},
enemyExists: {
2024-11-29 12:40:31 +08:00
"!doc": "某个点是否存在(指定的)怪物",
"!type":
"fn(x: number, y: number, id?: string, floorId?: string) -> bool",
2024-11-29 12:40:31 +08:00
},
npcExists: {
2024-11-29 12:40:31 +08:00
"!doc": "某个点是否存在NPC",
"!type": "fn(x: number, y: number, floorId?: string) -> bool",
2024-11-29 12:40:31 +08:00
},
getBlockByNumber: {
2024-11-29 12:40:31 +08:00
"!doc": "根据数字获得图块",
"!type": "fn(number: number) -> block",
2024-11-29 12:40:31 +08:00
},
removeBlock: {
"!doc":
"删除一个图块,对应于「隐藏事件」并同时删除<br/>例如core.removeBlock(0, 0); // 尝试删除地图左上角的图块<br/>x: 横坐标<br/>y: 纵坐标<br/>floorId: 地图id不填视为当前地图",
"!type": "fn(x: number, y: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
hideBlock: {
"!doc":
"隐藏一个图块,对应于「隐藏事件」且不删除<br/>例如core.hideBlock(0, 0); // 隐藏地图左上角的图块<br/>x: 横坐标<br/>y: 纵坐标<br/>floorId: 地图id不填视为当前地图",
"!type": "fn(x: number, y: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
removeBlockByIndex: {
2024-11-29 12:40:31 +08:00
"!doc": "根据block的索引删除该块",
"!type": "fn(index: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
stairExists: {
2024-11-29 12:40:31 +08:00
"!doc": "某个点是否存在楼梯",
"!type": "fn(x: number, y: number, floorId?: string) -> bool",
2024-11-29 12:40:31 +08:00
},
isMapBlockDisabled: {
2024-11-29 12:40:31 +08:00
"!doc": "某个点图块是否被强制启用或禁用",
"!type":
"fn(floorId?: string, x?: number, y?: number, flags?: ?) -> bool",
2024-11-29 12:40:31 +08:00
},
setMapBlockDisabled: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个点图块的强制启用或禁用状态",
"!type":
"fn(floorId?: string, x?: number, y?: number, disabled?: bool)",
2024-11-29 12:40:31 +08:00
},
setBlockOpacity: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个点图块的不透明度",
"!type":
"fn(opacity?: number, x?: number, y?: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
setBlockFilter: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个点图块的特效",
"!type": "fn(filter?: ?, x?: number, y?: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
decompressMap: {
2024-11-29 12:40:31 +08:00
"!doc": "解压缩地图",
"!type": "fn(mapArr: [[number]], floorId?: string) -> [[number]]",
2024-11-29 12:40:31 +08:00
},
automaticRoute: {
"!doc":
"自动寻路<br/>例如core.automaticRoute(0, 0); // 自动寻路到地图左上角<br/>destX: 目标点的横坐标<br/>destY: 目标点的纵坐标<br/>返回值每步走完后主角的loc属性组成的一维数组",
"!type":
"fn(destX: number, destY: number) -> [{x: number, y: number, direction: string}]",
2024-11-29 12:40:31 +08:00
},
resizeMap: {
2024-11-29 12:40:31 +08:00
"!doc": "更改地图画布的尺寸",
"!type": "fn(floorId?: string)",
},
getFgNumber: {
"!doc":
"判定某点的前景层的数字<br/>例如core.getFgNumber(); // 判断主角脚下的前景层图块的数字<br/>x: 横坐标,不填为勇士坐标<br/>y: 纵坐标不填为勇士坐标floorId: 地图id不填视为当前地图<br/>noCache: 可选true表示不使用缓存而强制重算",
"!type":
"fn(x: number, y: number, floorId?: string, noCache?: bool) -> number",
},
moveBlock: {
"!doc":
"移动图块<br/>例如core.moveBlock(0, 0, ['down']); // 令地图左上角的图块下移一格<br/>x: 起点的横坐标<br/>y: 起点的纵坐标<br/>steps: 步伐数组<br/>time: 单步和淡出用时,单位为毫秒。不填视为半秒<br/>keep: 是否不淡出true表示不淡出<br/>callback: 移动或淡出后的回调函数,可选",
"!type":
"fn(x: number, y: number, steps: [string], time?: number, keep?: bool, callback?: fn())",
},
getBgNumber: {
"!doc":
"判定某点的背景层的数字<br/>例如core.getBgNumber(); // 判断主角脚下的背景层图块的数字<br/>x: 横坐标,不填为勇士坐标<br/>y: 纵坐标,不填为勇士坐标<br/>floorId: 地图id不填视为当前地图<br/>noCache: 可选true表示不使用缓存而强制重算",
"!type":
"fn(x?: number, y?: number, floorId?: string, noCache?: bool) -> number",
},
getIdOfThis: {
2024-11-29 12:40:31 +08:00
"!doc": "获得当前事件点的ID",
"!type": "fn(id?: string) -> string",
2024-11-29 12:40:31 +08:00
},
searchBlock: {
"!doc":
"搜索图块, 支持通配符和正则表达式<br/>例如core.searchBlock('*Door'); // 搜索当前地图的所有门<br/>id: 图块id支持星号表示任意多个0个起字符<br/>floorId: 地图id或数组不填视为当前地图<br/>showDisable: 隐藏点是否计入true表示计入<br/>返回值:一个详尽的数组,一般只用到其长度",
"!type":
"fn(id: string, floorId?: string|[string], showDisable?: bool) -> [{floorId: string, index: number, x: number, y: number, block: block}]",
2024-11-29 12:40:31 +08:00
},
searchBlockWithFilter: {
"!doc":
"根据给定的筛选函数搜索全部满足条件的图块<br/>例如core.searchBlockWithFilter(function (block) { return block.event.id.endsWith('Door'); }); // 搜索当前地图的所有门<br/>blockFilter: 筛选函数可接受block输入应当返回一个boolean值<br/>floorId: 地图id或数组不填视为当前地图<br/>showDisable: 隐藏点是否计入true表示计入<br/>返回值:一个详尽的数组",
"!type":
"fn(blockFilter: fn(block: block) -> bool, floorId?: string|[string], showDisable?: bool): [{floorId: string, index: number, x: number, y: number, block: block}]",
2024-11-29 12:40:31 +08:00
},
hideBgFgMap: {
2024-11-29 12:40:31 +08:00
"!doc": "隐藏前景/背景地图",
"!type":
"fn(name?: string, loc?: [number]|[[number]], floorId?: string, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
getBlockInfo: {
"!doc":
"获得某个图块或素材的信息包括IDcls图片坐标faceIds等等",
"!type": "fn(block?: number|string|block) -> blockInfo",
2024-11-29 12:40:31 +08:00
},
getFaceDownId: {
"!doc":
"获得某个图块对应行走图朝向向下的那一项的id如果不存在行走图绑定则返回自身id。",
"!type": "fn(block?: string|number|block) -> string",
2024-11-29 12:40:31 +08:00
},
canMoveDirectlyArray: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某些点可否通行的信息",
"!type": "fn(locs?: [[number]])",
2024-11-29 12:40:31 +08:00
},
hideFloorImage: {
2024-11-29 12:40:31 +08:00
"!doc": "隐藏一个楼层贴图",
"!type":
"fn(loc?: [number]|[[number]], floorId?: string, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
extractBlocks: {
2024-11-29 12:40:31 +08:00
"!doc": "根据需求解析出blocks",
"!type": "fn(map?: ?)",
2024-11-29 12:40:31 +08:00
},
extractBlocksForUI: {
2024-11-29 12:40:31 +08:00
"!doc": "根据需求为UI解析出blocks",
"!type": "fn(map?: ?, flags?: ?)",
2024-11-29 12:40:31 +08:00
},
getBlockId: {
"!doc":
"判定某个点的图块id<br/>例如if(core.getBlockId(x1, y1) != 'greenSlime' && core.getBlockId(x2, y2) != 'redSlime') core.openDoor(x3, y3); // 一个简单的机关门事件,打败或炸掉这一对绿头怪和红头怪就开门<br/>x: 横坐标<br/>y: 纵坐标<br/>floorId: 地图id不填视为当前地图<br/>showDisable: 隐藏点是否不返回nulltrue表示不返回null<br/>返回值图块id该点无图块则返回null",
"!type":
"fn(x: number, y: number, floorId?: string, showDisable?: bool) -> string",
2024-11-29 12:40:31 +08:00
},
getBlockNumber: {
"!doc":
"判定某个点的图块数字<br/>x: 横坐标<br/>y: 纵坐标<br/>floorId: 地图id不填视为当前地图<br/>showDisable: 隐藏点是否不返回nulltrue表示不返回null<br/>返回值图块数字该点无图块则返回null",
"!type":
"fn(x: number, y: number, floorId?: string, showDisable?: bool) -> number",
2024-11-29 12:40:31 +08:00
},
getBlockOpacity: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某个点图块的不透明度",
"!type":
"fn(x?: number, y?: number, floorId?: string, showDisable?: bool) -> number",
2024-11-29 12:40:31 +08:00
},
getBlockFilter: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某个点图块的特效",
"!type":
"fn(x?: number, y?: number, floorId?: string, showDisable?: bool) -> ?",
2024-11-29 12:40:31 +08:00
},
loadFloor: {
2024-11-29 12:40:31 +08:00
"!doc": "从文件或存档中加载某个楼层",
"!type": "fn(floorId?: string, map?: ?)",
2024-11-29 12:40:31 +08:00
},
generateMovableArray: {
"!doc":
"可通行性判定<br/>例如core.generateMovableArray(); // 判断当前地图主角从各点能向何方向移动<br/>floorId: 地图id不填视为当前地图<br/>返回值:从各点可移动方向的三维数组",
"!type": "fn(floorId?: string) -> [[[string]]]",
2024-11-29 12:40:31 +08:00
},
terrainExists: {
2024-11-29 12:40:31 +08:00
"!doc": "某个点是否存在(指定的)地形",
"!type":
"fn(x: number, y: number, id?: string, floorId?: string) -> bool",
2024-11-29 12:40:31 +08:00
},
getBlockById: {
2024-11-29 12:40:31 +08:00
"!doc": "根据ID获得图块",
"!type": "fn(id: string) -> block",
2024-11-29 12:40:31 +08:00
},
drawBg: {
"!doc":
"绘制背景层(含贴图,其与背景层矩阵的绘制顺序可通过复写此函数来改变)<br/>例如core.drawBg(); // 绘制当前地图的背景层<br/>floorId: 地图id不填视为当前地图<br/>ctx: 某画布的ctx用于绘制缩略图一般不需要",
"!type": "fn(floorId?: string, ctx?: CanvasRenderingContext2D)",
2024-11-29 12:40:31 +08:00
},
showBlock: {
"!doc":
"显示(隐藏或显示的)图块,此函数将被“显示事件”指令和勾选了“不消失”的“移动/跳跃事件”指令(如阻击怪)的终点调用<br/>例如core.showBlock(0, 0); // 显示地图左上角的图块<br/>x: 横坐标<br/>y: 纵坐标<br/>floorId: 地图id不填视为当前地图",
"!type": "fn(x: number, y: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
getMapBlocksObj: {
2024-11-29 12:40:31 +08:00
"!doc": "以x,y的形式返回每个点的事件",
"!type": "fn(floorId?: string, noCache?: bool)",
2024-11-29 12:40:31 +08:00
},
removeGlobalAnimate: {
2024-11-29 12:40:31 +08:00
"!doc": "删除一个或所有全局动画",
"!type": "fn(x?: number, y?: number, name?: string)",
2024-11-29 12:40:31 +08:00
},
drawEvents: {
"!doc":
"绘制事件层<br/>例如core.drawEvents(); // 绘制当前地图的事件层<br/>floorId: 地图id不填视为当前地图<br/>blocks: 一般不需要<br/>ctx: 某画布的ctx用于绘制缩略图一般不需要",
"!type":
"fn(floorId?: string, blocks?: [block], ctx?: CanvasRenderingContext2D)",
2024-11-29 12:40:31 +08:00
},
canMoveDirectly: {
"!doc":
"能否瞬移到某点,并求出节约的步数。<br/>例如core.canMoveDirectly(0, 0); // 能否瞬移到地图左上角<br/>destX: 目标点的横坐标<br/>destY: 目标点的纵坐标<br/>返回值:正数表示节约的步数,-1表示不可瞬移",
"!type": "fn(destX: number, destY: number) -> number",
2024-11-29 12:40:31 +08:00
},
saveMap: {
2024-11-29 12:40:31 +08:00
"!doc": "将当前地图重新变成数字,以便于存档",
"!type": "fn(floorId?: string)",
2024-11-29 12:40:31 +08:00
},
drawBoxAnimate: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制UI层的box动画",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
setBgFgBlock: {
"!doc":
"转变图层块<br/>例如core.setBgFgBlock('bg', 167, 6, 6); // 把当前地图背景层的中心块改为滑冰<br/>name: 背景还是前景<br/>number: 新图层块的数字(也支持纯数字字符串如'1'或id<br/>x: 横坐标<br/>y: 纵坐标<br/>floorId: 地图id不填视为当前地图",
"!type":
"fn(name: string, number: number|string, x: number, y: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
drawFg: {
"!doc":
"绘制前景层(含贴图,其与前景层矩阵的绘制顺序可通过复写此函数来改变)<br/>例如core.drawFg(); // 绘制当前地图的前景层<br/>floorId: 地图id不填视为当前地图<br/>ctx: 某画布的ctx用于绘制缩略图一般不需要",
"!type": "fn(floorId?: string, ctx?: CanvasRenderingContext2D)",
2024-11-29 12:40:31 +08:00
},
getBlock: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某个点的block",
"!type":
"fn(x: number, y: number, floorId?: string, showDisable?: bool) -> block",
2024-11-29 12:40:31 +08:00
},
initBlock: {
2024-11-29 12:40:31 +08:00
"!doc": "初始化一个图块",
"!type":
"fn(x: number, y: number, id: string|number, addInfo?: bool, eventFloor?: ?) -> block",
2024-11-29 12:40:31 +08:00
},
addGlobalAnimate: {
2024-11-29 12:40:31 +08:00
"!doc": "添加一个全局动画",
"!type": "fn(block?: block)",
2024-11-29 12:40:31 +08:00
},
animateBlock: {
2024-11-29 12:40:31 +08:00
"!doc": "显示/隐藏某个块时的动画效果",
"!type":
"fn(loc?: [number]|[[number]], type?: string|number, time?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
loadMap: {
2024-11-29 12:40:31 +08:00
"!doc": "将存档中的地图信息重新读取出来",
"!type": "fn(data?: ?, floorId?: string, flags?: ?)",
},
setBlock: {
"!doc":
"转变图块<br/>例如core.setBlock(1, 0, 0); // 把地图左上角变成黄墙<br/>number: 新图块的数字(也支持纯数字字符串如'1'或id<br/>x: 横坐标<br/>y: 纵坐标<br/>floorId: 地图id不填视为当前地图",
"!type":
"fn(number: number|string, x: number, y: number, floorId?: string)",
},
getFgMapArray: {
"!doc":
"生成前景层矩阵<br/>例如core.getFgMapArray('MT0'); // 生成主塔0层的前景层矩阵使用缓存<br/>floorId: 地图id不填视为当前地图<br/>noCache: 可选true表示不使用缓存<br/>返回值:前景层矩阵,注意对其阵元的访问是[y][x]",
"!type": "fn(floorId?: string, noCache?: bool) -> [[number]]",
},
getBgMapArray: {
"!doc":
"生成背景层矩阵<br/>例如core.getBgMapArray('MT0'); // 生成主塔0层的背景层矩阵使用缓存<br/>floorId: 地图id不填视为当前地图<br/>noCache: 可选true表示不使用缓存<br/>返回值:背景层矩阵,注意对其阵元的访问是[y][x]",
"!type": "fn(floorId?: string, noCache?: bool) -> [[number]]",
},
canMoveHero: {
"!doc":
"单点单朝向的可通行性判定受各图层cannotInOut、起点cannotMove和canGoDeadZone影响不受canPass和noPass影响<br/>x: 起点横坐标,不填视为主角当前的<br/>y: 起点纵坐标,不填视为主角当前的<br/>direction: 移动的方向,不填视为主角面对的方向<br/>floorId: 地图id不填视为当前地图",
"!type":
"fn(x?: number, y?: number, direction?: string, floorId?: string) -> bool",
},
drawThumbnail: {
"!doc":
"绘制缩略图<br/>例如core.drawThumbnail(); // 绘制当前地图的缩略图<br/>floorId: 地图id不填视为当前地图<br/>blocks: 一般不需要<br/>options: 绘制信息可选。可以增绘主角位置和朝向、采用不同于游戏中的主角行走图、增绘显伤、提供flags用于存读档同时包含要绘制到的画布名或画布的ctx或还有其他信息如起绘坐标、绘制大小、是否绘制全图、截取中心",
"!type": "fn(floorId?: string, blocks?: [block], options?: ?)",
},
hideBlockByIndex: {
2024-11-29 12:40:31 +08:00
"!doc": "根据图块的索引来隐藏图块",
"!type": "fn(index?: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
getNumberById: {
"!doc":
"根据图块id得到数字地图矩阵中的值<br/>例如core.getNumberById('yellowWall'); // 1<br/>id: 图块id<br/>返回值图块的数字定义在project\\maps.js请注意和project\\icons.js中的“图块索引”相区分",
"!type": "fn(id: string) -> number",
2024-11-29 12:40:31 +08:00
},
removeBlockByIndexes: {
2024-11-29 12:40:31 +08:00
"!doc": "一次性删除多个block",
"!type": "fn(indexes?: [number], floorId?: string)",
2024-11-29 12:40:31 +08:00
},
hideBlockByIndexes: {
2024-11-29 12:40:31 +08:00
"!doc": "一次性隐藏多个block",
"!type": "fn(indexes?: [number], floorId?: string)",
2024-11-29 12:40:31 +08:00
},
generateGroundPattern: {
2024-11-29 12:40:31 +08:00
"!doc": "生成groundPattern",
"!type": "fn(floorId?: string)",
2024-11-29 12:40:31 +08:00
},
showBgFgMap: {
2024-11-29 12:40:31 +08:00
"!doc": "显示前景/背景地图",
"!type":
"fn(name?: string, loc?: [number]|[[number]], floorId?: string, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
showFloorImage: {
2024-11-29 12:40:31 +08:00
"!doc": "显示一个楼层贴图",
"!type":
"fn(loc?: [number]|[[number]], floorId?: string, callback?: fn())",
},
2024-11-29 12:40:31 +08:00
},
ui: {
"!doc":
"负责一切UI界面的绘制。主要包括三个部分<br/>- 设置某个画布的属性与在某个画布上绘制的相关API<br/>- 具体的某个UI界面的绘制<br/>- 动态创建画布相关的API",
resizeCanvas: {
2024-11-29 12:40:31 +08:00
"!doc": "重新设置一个自定义画布的大小",
"!type":
"fn(name: string, x?: number, y?: number, styleOnly?: bool, isTempCanvas?: bool)",
2024-11-29 12:40:31 +08:00
},
deleteCanvas: {
"!doc":
"删除一个自定义画布<br/>name: 画布名,也可以传入一个函数对所有画布进行筛选",
"!type": "fn(name: string|fn(name: string) -> bool)",
2024-11-29 12:40:31 +08:00
},
deleteAllCanvas: {
2024-11-29 12:40:31 +08:00
"!doc": "清空所有的自定义画布",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
drawIcon: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个图标",
"!type":
"fn(name: string|CanvasRenderingContext2D, id: string, x: number, y: number, w?: number, h?: number, frame?: number)",
2024-11-29 12:40:31 +08:00
},
drawFly: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制楼层传送器",
"!type": "fn(page?: ?)",
2024-11-29 12:40:31 +08:00
},
setOpacity: {
"!doc":
"设置某个canvas整体的透明度此函数直接改变画布本身对已经绘制的内容也生效<br/>如果仅想对接下来的绘制生效请使用setAlpha",
"!type": "fn(name: string|CanvasRenderingContext2D, opacity: number)",
2024-11-29 12:40:31 +08:00
},
getTextContentHeight: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某段文字的预计绘制高度;参数说明详见 drawTextContent",
"!type": "fn(content: string, config?: ?)",
2024-11-29 12:40:31 +08:00
},
drawArrow: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个箭头",
"!type":
"fn(name: string|CanvasRenderingContext2D, x1: number, y1: number, x2: number, y2: number, style?: string, lineWidth?: number)",
2024-11-29 12:40:31 +08:00
},
strokeEllipse: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个椭圆的边框",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, a: number, b: number, angle?: number, style?: string, lineWidth?: number)",
2024-11-29 12:40:31 +08:00
},
fillCircle: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个圆",
"!url": "https://www.w3school.com.cn/tags/canvas_arc.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, r: number, style?: string)",
2024-11-29 12:40:31 +08:00
},
strokeRoundRect: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个圆角矩形的边框",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, width: number, height: number, radius: number, style?: string, lineWidth?: number, angle?: number)",
},
getContextByName: {
"!doc":
"根据画布名找到一个画布的context支持系统画布和自定义画布。如果不存在画布返回null。<br/>也可以传画布的context自身则返回自己。",
"!type":
"fn(canvas: string|CanvasRenderingContext2D) -> CanvasRenderingContext2D",
},
drawImage: {
"!doc":
"在一个画布上绘制图片<br/>后面的8个坐标参数与canvas的drawImage的八个参数完全相同。<br/>name: 可以是系统画布之一,也可以是任意自定义动态创建的画布名 画布名称或者画布的context<br/>image: 要绘制的图片可以是一个全塔属性中定义的图片名会从images中去获取支持加':x',':y',':o'翻转),图片本身,或者一个画布。<br/>angle旋转角度",
2024-11-29 12:40:31 +08:00
"!url": "http://www.w3school.com.cn/html5/canvas_drawimage.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, image: string|image, x: number, y: number, w?: number, h?: number, x1?: number, y1?: number, w1?: number, h1?: number, angle?: number)",
2024-11-29 12:40:31 +08:00
},
drawTip: {
"!doc":
"左上角绘制一段提示<br/>text: 要提示的字符串,支持${}语法<br/>id: 要绘制的图标ID<br/>frame: 要绘制该图标的第几帧",
"!type": "fn(text: string, id?: string, frame?: number)",
2024-11-29 12:40:31 +08:00
},
drawBackground: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制一个背景图可绘制winskin或纯色背景支持小箭头绘制",
"!type":
"fn(left: string, top: string, right: string, bottom: string, posInfo?: {px: number, py: number, direction: string})",
2024-11-29 12:40:31 +08:00
},
fillEllipse: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个椭圆",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, a: number, b: number, angle?: number, style?: string)",
2024-11-29 12:40:31 +08:00
},
setFillStyle: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个canvas的绘制属性如颜色等",
"!url": "https://www.w3school.com.cn/tags/canvas_fillstyle.asp",
"!type": "fn(name: string|CanvasRenderingContext2D, style: string)",
2024-11-29 12:40:31 +08:00
},
drawText: {
2024-11-29 12:40:31 +08:00
"!doc": "地图中间绘制一段文字",
"!type": "fn(contents: string, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
drawConfirmBox: {
"!doc":
"绘制一个确认框<br/>此项会打断事件流如需不打断版本的请使用core.myconfirm()<br/>text: 要绘制的内容,支持 ${} 语法<br/>yesCallback: 点击确认后的回调<br/>noCallback: 点击取消后的回调",
"!type": "fn(text: string, yesCallback?: fn(), noCallback?: fn())",
2024-11-29 12:40:31 +08:00
},
drawUIEventSelector: {
"!doc":
"自绘一个闪烁的选择光标<br/>code: 选择光标的编号,必填<br/>background: 要绘制的光标背景必须是一个合法的WindowSkin<br/>x, y, w, h: 绘制的坐标和长宽<br/>z: 可选光标的的z值",
"!type":
"fn(code: number, background: string, x: number, y: number, w: number, h: number, z?: number)",
2024-11-29 12:40:31 +08:00
},
clearUIEventSelector: {
"!doc":
"清除若干个自绘的选择光标<br/>codes: 清除的光标编号;可以是单个编号或编号数组;不填则清除所有光标",
"!type": "fn(codes?: number|[number])",
2024-11-29 12:40:31 +08:00
},
fillPolygon: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个多边形",
"!type":
"fn(name: string|CanvasRenderingContext2D, nodes?: [[number]], style?: string)",
2024-11-29 12:40:31 +08:00
},
fillText: {
"!doc":
"在某个画布上绘制一段文字<br/>text: 要绘制的文本<br/>style: 绘制的样式<br/>font: 绘制的字体<br/>最大宽度,超过此宽度会自动放缩",
2024-11-29 12:40:31 +08:00
"!url": "https://www.w3school.com.cn/tags/canvas_filltext.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, text: string, x: number, y: number, style?: string, font?: string, maxWidth?: number)",
2024-11-29 12:40:31 +08:00
},
setTextBaseline: {
"!doc":
"设置某个canvas的基准线<br/>baseline: 可为alphabetic, top, hanging, middle, ideographic, bottom",
2024-11-29 12:40:31 +08:00
"!url": "https://www.w3school.com.cn/tags/canvas_textbaseline.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, baseline: string)",
2024-11-29 12:40:31 +08:00
},
loadCanvas: {
2024-11-29 12:40:31 +08:00
"!doc": "加载某个canvas状态",
"!type": "fn(name: string|CanvasRenderingContext2D)",
2024-11-29 12:40:31 +08:00
},
splitLines: {
2024-11-29 12:40:31 +08:00
"!doc": "字符串自动换行的分割",
"!type":
"fn(name: string|CanvasRenderingContext2D, text: string, maxWidth?: number, font?: string)",
2024-11-29 12:40:31 +08:00
},
setAlpha: {
"!doc":
"设置某个canvas接下来绘制的不透明度不会影响已经绘制的内容<br/>返回设置之前画布的不透明度<br/>如果需要修改画布本身的不透明度请使用setOpacity",
2024-11-29 12:40:31 +08:00
"!url": "https://www.w3school.com.cn/tags/canvas_globalalpha.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, alpha: number) -> number",
2024-11-29 12:40:31 +08:00
},
setFilter: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个canvas接下来绘制的filter",
"!type": "fn(name: string|CanvasRenderingContext2D, style: string)",
2024-11-29 12:40:31 +08:00
},
setLineWidth: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个canvas的线宽度",
"!url": "https://www.w3school.com.cn/tags/canvas_linewidth.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, lineWidth: number)",
2024-11-29 12:40:31 +08:00
},
drawTextBox: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制一个对话框",
"!type": "fn(content: string, showAll?: bool)",
2024-11-29 12:40:31 +08:00
},
relocateCanvas: {
2024-11-29 12:40:31 +08:00
"!doc": "重新定位一个自定义画布",
"!type": "fn(name: string, x: number, y: number, useDelta: bool)",
2024-11-29 12:40:31 +08:00
},
rotateCanvas: {
"!doc":
"设置一个自定义画布的旋转角度<br/>centerX, centerY: 旋转中心(以屏幕像素为基准);不填视为图片正中心。",
"!type":
"fn(name: string, angle: number, centerX?: number, centerY?: number)",
2024-11-29 12:40:31 +08:00
},
closePanel: {
2024-11-29 12:40:31 +08:00
"!doc": "结束一切事件和绘制关闭UI窗口返回游戏进程",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
textImage: {
2024-11-29 12:40:31 +08:00
"!doc": "文本图片化",
"!type": "fn(content: string, lineHeight?: number) -> image",
2024-11-29 12:40:31 +08:00
},
drawStatusBar: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制状态栏",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
setStrokeStyle: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个canvas边框属性",
"!url": "https://www.w3school.com.cn/tags/canvas_strokestyle.asp",
"!type": "fn(name: string|CanvasRenderingContext2D, style: string)",
2024-11-29 12:40:31 +08:00
},
clearUI: {
2024-11-29 12:40:31 +08:00
"!doc": "清空UI层内容",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
drawWindowSkin: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制WindowSkin",
"!type":
"fn(background: string, ctx: string|CanvasRenderingContext2D, x: number, y: number, w: string, h: string, direction?: string, px?: number, py?: number)",
2024-11-29 12:40:31 +08:00
},
fillRect: {
"!doc":
"绘制一个矩形。<br/>x,y: 绘制的坐标<br/>width,height: 绘制的长宽<br/>style: 绘制的样式<br/>angle: 旋转的角度弧度制如Math.PI/2代表90度",
2024-11-29 12:40:31 +08:00
"!url": "https://www.w3school.com.cn/tags/canvas_fillrect.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, width: number, height: number, style?: string, angle?: number)",
2024-11-29 12:40:31 +08:00
},
drawScrollText: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制滚动字幕",
"!type":
"fn(content: string, time: number, lineHeight?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
strokePolygon: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个多边形的边框",
"!type":
"fn(name: string|CanvasRenderingContext2D, nodes?: [[number]], style?: string, lineWidth?: number)",
2024-11-29 12:40:31 +08:00
},
strokeCircle: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个圆的边框",
"!url": "https://www.w3school.com.cn/tags/canvas_arc.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, r: ?, style?: string, lineWidth?: number)",
2024-11-29 12:40:31 +08:00
},
drawWaiting: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制等待界面",
"!type": "fn(text: string)",
2024-11-29 12:40:31 +08:00
},
setFont: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个canvas的文字字体",
"!url": "https://www.w3school.com.cn/tags/canvas_font.asp",
"!type": "fn(name: string|CanvasRenderingContext2D, font: string)",
2024-11-29 12:40:31 +08:00
},
drawChoices: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制一个选项界面",
"!type":
"fn(content?: string, choices?: [?], width?: number, ctx?: string|CanvasRenderingContext2D)",
2024-11-29 12:40:31 +08:00
},
setFontForMaxWidth: {
2024-11-29 12:40:31 +08:00
"!doc": "根据最大宽度自动缩小字体",
"!type":
"fn(name: string|CanvasRenderingContext2D, text: string, maxWidth: number, font?: ?) -> string",
2024-11-29 12:40:31 +08:00
},
clearMap: {
"!doc":
"清空某个画布图层<br/>name为画布名可以是系统画布之一也可以是任意自定义动态创建的画布名还可以直接传画布的context本身。<br/>如果name也可以是'all'若为all则为清空所有系统画布。",
2024-11-29 12:40:31 +08:00
"!url": "https://www.w3school.com.cn/tags/canvas_clearrect.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, x?: number, y?: number, width?: number, height?: number)",
2024-11-29 12:40:31 +08:00
},
drawTextContent: {
"!doc":
"绘制一段文字到某个画布上面<br/>ctx: 要绘制到的画布<br/>content: 要绘制的内容;转义字符不允许保留 \\t, \\b 和 \\f<br/>config: 绘制配置项,目前暂时包含如下内容(均为可选)<br/>left, top起始点位置maxWidth单行最大宽度color默认颜色align左中右<br/>fontSize字体大小lineHeight行高time打字机间隔font字体名<br/>返回值:绘制信息",
"!type":
"fn(ctx: string|CanvasRenderingContext2D, content: string, config: ?)",
2024-11-29 12:40:31 +08:00
},
calWidth: {
2024-11-29 12:40:31 +08:00
"!doc": "计算某段文字的宽度",
"!url": "https://www.w3school.com.cn/tags/canvas_measuretext.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, text: string, font?: string) -> number",
2024-11-29 12:40:31 +08:00
},
fillArc: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个扇形",
"!url": "https://www.w3school.com.cn/tags/canvas_arc.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, r: number, start: number, end: number, style?: string)",
2024-11-29 12:40:31 +08:00
},
strokeArc: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一段弧",
"!url": "https://www.w3school.com.cn/tags/canvas_arc.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, r: number, start: number, end: number, style?: string, lineWidth?: number)",
2024-11-29 12:40:31 +08:00
},
drawLine: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一条线",
"!url": "https://www.w3school.com.cn/tags/canvas_lineto.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, x1: number, y1: number, x2: number, y2: number, style?: string, lineWidth?: number)",
2024-11-29 12:40:31 +08:00
},
drawPagination: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制分页",
"!type": "fn(page?: ?, totalPage?: ?, y?: number)",
2024-11-29 12:40:31 +08:00
},
getToolboxItems: {
2024-11-29 12:40:31 +08:00
"!doc": "获得所有应该在道具栏显示的某个类型道具",
"!type": "fn(cls: string) -> [string]",
2024-11-29 12:40:31 +08:00
},
strokeRect: {
"!doc":
"绘制一个矩形的边框<br/>style: 绘制的样式<br/>lineWidth: 线宽<br/>angle: 旋转角度弧度制如Math.PI/2为90度",
2024-11-29 12:40:31 +08:00
"!url": "https://www.w3school.com.cn/tags/canvas_strokerect.asp",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, width: number, height: number, style?: string, lineWidth?: number, angle?: number)",
2024-11-29 12:40:31 +08:00
},
drawBook: {
2024-11-29 12:40:31 +08:00
"!doc": "绘制怪物手册",
"!type": "fn(index?: ?)",
2024-11-29 12:40:31 +08:00
},
fillRoundRect: {
2024-11-29 12:40:31 +08:00
"!doc": "在某个canvas上绘制一个圆角矩形",
"!type":
"fn(name: string|CanvasRenderingContext2D, x: number, y: number, width: number, height: number, radius: number, style?: string, angle?: number)",
2024-11-29 12:40:31 +08:00
},
fillBoldText: {
"!doc":
"在某个画布上绘制一个描边文字<br/>text: 要绘制的文本<br/>style: 绘制的样式<br/>strokeStyle: 要绘制的描边颜色<br/>font: 绘制的字体<br/>maxWidth: 最大宽度,超过此宽度会自动放缩",
"!type":
"fn(name: string|CanvasRenderingContext2D, text: string, x: number, y: number, style?: string, strokeStyle?: string, font?: string, maxWidth?: number)",
2024-11-29 12:40:31 +08:00
},
saveCanvas: {
2024-11-29 12:40:31 +08:00
"!doc": "保存某个canvas状态",
"!type": "fn(name: string|CanvasRenderingContext2D)",
2024-11-29 12:40:31 +08:00
},
createCanvas: {
"!doc":
"动态创建一个画布。<br/>name 要创建的画布名,如果已存在则会直接取用当前存在的。<br/>x,y: 创建的画布相对窗口左上角的像素坐标<br/>width,height: 创建的长宽。<br/>zIndex: 创建的纵向高度关系到画布之间的覆盖z值高的将覆盖z值低的系统画布的z值可在个性化中查看。<br/>返回创建的画布的context也可以通过core.dymCanvas[name]调用。",
"!type":
"fn(name: string, x: number, y: number, width: number, height: number, zIndex: number) -> CanvasRenderingContext2D",
2024-11-29 12:40:31 +08:00
},
setTextAlign: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个canvas的对齐",
"!url": "https://www.w3school.com.cn/tags/canvas_textalign.asp",
"!type": "fn(name: string|CanvasRenderingContext2D, align: string)",
2024-11-29 12:40:31 +08:00
},
},
enemys: {
2024-11-29 12:40:31 +08:00
"!doc": "定义了一系列和怪物相关的API函数。",
getEnemys: {
"!doc":
"获得所有怪物原始数据的一个副本。<br/>请使用core.material.enemys获得当前各项怪物属性。",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
getEnemyValue: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某个点上怪物的某个属性值",
"!type":
"fn(enemy?: string|enemy, name: string, x?: number, y?: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
getSpecials: {
2024-11-29 12:40:31 +08:00
"!doc": "获得所有特殊属性的定义",
"!type": "fn() -> [[?]]",
2024-11-29 12:40:31 +08:00
},
getSpecialColor: {
2024-11-29 12:40:31 +08:00
"!doc": "获得某个怪物所有特殊属性的颜色",
"!type": "fn(enemy: string|enemy) -> [string]",
},
getSpecialFlag: {
"!doc":
"获得某个怪物所有特殊属性的额外标记。<br/><br/>例如1为全图性技能需要进行遍历全图光环/支援等)",
"!type": "fn(enemy: string|enemy) -> number",
},
getSpecialHint: {
"!doc":
"获得某种敌人的某种特殊属性的介绍<br/>例如core.getSpecialHint('bat', 1) // '先攻:怪物首先攻击'<br/>enemy: 敌人id或敌人对象用于确定属性的具体数值否则可选<br/>special: 属性编号,可以是该敌人没有的属性<br/>返回值:属性的介绍,以属性名加中文冒号开头",
"!type": "fn(enemy: string|enemy, special: number) -> string",
},
getSpecialText: {
"!doc":
"获得某种敌人的全部特殊属性名称<br/>例如core.getSpecialText('greenSlime') // ['先攻', '3连击', '破甲', '反击']<br/>enemy: 敌人id或敌人对象如core.material.enemys.greenSlime<br/>返回值:字符串数组",
"!type": "fn(enemy: string|enemy) -> [string]",
},
hasSpecial: {
"!doc":
"判定某种特殊属性的有无<br/>例如core.hasSpecial('greenSlime', 1) // 判定绿头怪有无先攻属性<br/>special: 敌人id或敌人对象或正整数数组或自然数<br/>test: 待检查的属性编号<br/>",
"!type":
"fn(special: number|[number]|string|number, test: number) -> bool",
},
nextCriticals: {
"!doc":
"获得某只敌人接下来的若干个临界及其减伤算法基于useLoop开关选择回合法或二分法<br/>例如core.nextCriticals('greenSlime', 9, 0, 0, 'MT0') // 绿头怪接下来的9个临界<br/>enemy: 敌人id或敌人对象<br/>number: 要计算的临界数量可选默认为1<br/>x: 敌人的横坐标,可选<br/>y: 敌人的纵坐标,可选<br/>floorId: 敌人所在的地图,可选<br/>返回:两列的二维数组,每行表示一个临界及其减伤",
"!type":
"fn(enemy: string|enemy, number?: number, x?: number, y?: number, floorId?: string) -> [[number]]",
},
getDefDamage: {
"!doc":
"计算再加若干点防御能使某只敌人对主角的总伤害降低多少<br/>例如core.getDefDamage('greenSlime', 10, 0, 0, 'MT0') // 再加10点防御能使绿头怪的伤害降低多少<br/>enemy: 敌人id或敌人对象<br/>k: 假设主角增加的防御力可选默认为1<br/>x: 敌人的横坐标,可选<br/>y: 敌人的纵坐标,可选<br/>floorId: 敌人所在的地图,可选",
"!type":
"fn(enemy: string|enemy, k?: number, x?: number, y?: number, floorId?: string) -> number",
},
canBattle: {
"!doc":
"判定主角当前能否打败某只敌人<br/>例如core.canBattle('greenSlime',0,0,'MT0') // 能否打败主塔0层左上角的绿头怪假设有<br/>enemy: 敌人id或敌人对象<br/>x: 敌人的横坐标,可选<br/>y: 敌人的纵坐标,可选<br/>floorId: 敌人所在的地图,可选<br/>返回值true表示可以打败false表示无法打败",
"!type":
"fn(enemy: string|enemy, x?: number, y?: number, floorId?: string) -> bool",
},
getEnemyInfo: {
"!doc":
"获得怪物真实属性<br/>hero: 可选,此时的勇士属性<br/>此函数将会计算包括坚固、模仿、光环等若干效果,将同时被怪物手册和伤害计算调用",
"!type":
"fn(enemy: string|enemy, hero?: ?, x?: number, y?: number, floorId?: string) -> {hp: number, atk: number, def: number, money: number, exp: number, special: [number], point: number, guards: [?]}",
},
getDamageInfo: {
"!doc":
"获得战斗伤害信息<br/>例如core.getDamage('greenSlime',0,0,'MT0') // 绿头怪的总伤害<br/>enemy: 敌人id或敌人对象<br/>hero: 可选,此时的勇士属性<br/>x: 敌人的横坐标,可选<br/>y: 敌人的纵坐标,可选<br/>floorId: 敌人所在的地图,可选<br/>返回值伤害计算信息如果因为没有破防或无敌怪等其他原因无法战斗则返回null",
"!type":
"fn(enemy: string|enemy, hero?: ?, x?: number, y?: number, floorId?: string) -> {damage: number, per_damage: number, hero_per_damage: number, init_damage: number, mon_hp: number, mon_atk: number, mon_def: number, turn: number}",
},
getDamage: {
"!doc":
"获得某只敌人对主角的总伤害<br/>例如core.getDamage('greenSlime',0,0,'MT0') // 绿头怪的总伤害<br/>enemy: 敌人id或敌人对象<br/>x: 敌人的横坐标,可选<br/>y: 敌人的纵坐标,可选<br/>floorId: 敌人所在的地图,可选<br/>返回值总伤害如果因为没有破防或无敌怪等其他原因无法战斗则返回null",
"!type":
"fn(enemy: string|enemy, x?: number, y?: number, floorId?: string) -> number",
},
getDamageString: {
"!doc":
"获得某只敌人的地图显伤,包括颜色<br/>例如core.getDamageString('greenSlime', 0, 0, 'MT0') // 绿头怪的地图显伤<br/>enemy: 敌人id或敌人对象<br/>x: 敌人的横坐标,可选<br/>y: 敌人的纵坐标,可选<br/>floorId: 敌人所在的地图,可选<br/>返回值damage: 表示伤害值或为'???'color: 形如'#RrGgBb'",
"!type":
"fn(enemy: string|enemy, x?: number, y?: number, floorId?: string) -> {color: string, damage: string}",
},
getCurrentEnemys: {
"!doc":
"获得某张地图的敌人集合,用于手册绘制<br/>例如core.getCurrentEnemys('MT0') // 主塔0层的敌人集合<br/>floorId: 地图id可选<br/>返回值:敌人集合,按伤害升序排列,支持多朝向怪合并",
"!type": "fn(floorId?: string) -> [enemy]",
},
hasEnemyLeft: {
"!doc":
"检查某些楼层是否还有漏打的(某种)敌人<br/>例如core.hasEnemyLeft('greenSlime', ['sample0', 'sample1']) // 样板0层和1层是否有漏打的绿头怪<br/>enemyId: 敌人id可选null表示任意敌人<br/>floorId: 地图id或其数组可选不填为当前地图<br/>返回值:地图中是否还存在该种敌人",
"!type": "fn(enemyId?: string, floorId?: string|[string]) -> bool",
2024-11-29 12:40:31 +08:00
},
},
events: {
"!doc":
"events.js将处理所有和事件相关的操作主要分为五个部分<br/>- 游戏的开始和结束<br/>- 系统事件的处理<br/>- 自定义事件的处理<br/>- 点击状态栏图标所进行的操作<br/>- 一些具体事件的执行内容",
afterChangeFloor: {
2024-11-29 12:40:31 +08:00
"!doc": "转换楼层结束的事件",
"!type": "fn(floorId?: string)",
2024-11-29 12:40:31 +08:00
},
popEventLoc: {
2024-11-29 12:40:31 +08:00
"!doc": "将当前点坐标入栈",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
afterOpenDoor: {
2024-11-29 12:40:31 +08:00
"!doc": "开一个门后触发的事件",
"!type": "fn(doorId?: string, x?: number, y?: number)",
2024-11-29 12:40:31 +08:00
},
checkLvUp: {
2024-11-29 12:40:31 +08:00
"!doc": "检查升级事件",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
insertAction: {
"!doc":
"插入一段事件;此项不可插入公共事件,请用 core.insertCommonEvent<br/>例如core.insertAction('一段文字'); // 插入一个显示文章<br/>action: 单个事件指令,或事件指令数组<br/>x: 新的当前点横坐标,可选<br/>y: 新的当前点纵坐标,可选<br/>callback: 新的回调函数,可选<br/>addToLast: 插入的位置true表示插入到末尾否则插入到开头",
"!type":
"fn(action: string|?|[?], x?: number, y?: number, callback?: fn(), addToLast?: bool)",
2024-11-29 12:40:31 +08:00
},
unfollow: {
2024-11-29 12:40:31 +08:00
"!doc": "取消跟随<br/>name: 取消跟随的行走图,不填则取消全部跟随者",
"!type": "fn(name?: string)",
2024-11-29 12:40:31 +08:00
},
hasVisitedFloor: {
2024-11-29 12:40:31 +08:00
"!doc": "是否到达过某个楼层",
"!type": "fn(floorId?: string) -> bool",
2024-11-29 12:40:31 +08:00
},
startEvents: {
2024-11-29 12:40:31 +08:00
"!doc": "开始执行一系列自定义事件",
"!type": "fn(list?: [?], x?: number, y?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
setHeroIcon: {
"!doc":
"更改主角行走图<br/>例如core.setHeroIcon('npc48.png', true); // 把主角从阳光变成样板0层左下角的小姐姐但不立即刷新<br/>name: 新的行走图文件名可以是全塔属性中映射前的中文名。映射后会被存入core.status.hero.image<br/>noDraw: true表示不立即刷新刷新会导致大地图下视野重置到以主角为中心",
"!type": "fn(name: string, noDraw?: bool)",
2024-11-29 12:40:31 +08:00
},
changingFloor: {
2024-11-29 12:40:31 +08:00
"!doc": "楼层转换中",
"!type":
"fn(floorId?: string, heroLoc?: {x: number, y: number, direction: string})",
2024-11-29 12:40:31 +08:00
},
setEvents: {
2024-11-29 12:40:31 +08:00
"!doc": "直接设置事件列表",
"!type": "fn(list?: [?], x?: number, y?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
setValue: {
2024-11-29 12:40:31 +08:00
"!doc": "数值操作",
"!type":
"fn(name: string, operator: string, value: ?, prefix?: string)",
2024-11-29 12:40:31 +08:00
},
precompile: {
2024-11-29 12:40:31 +08:00
"!doc": "预编辑事件",
"!type": "fn(data?: ?)",
2024-11-29 12:40:31 +08:00
},
vibrate: {
"!doc":
"视野抖动<br/>例如core.vibrate(); // 视野抖动1秒<br/>direction: 抖动方向;可填 horizontal(左右)vertical上下diagonal1左上右下diagonal2左下右上<br/>time: 抖动时长<br/>speed: 抖动速度<br/>power: 抖动幅度<br/>callback: 抖动平息后的回调函数,可选",
"!type":
"fn(direction?: string, time?: number, speed?: number, power?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
confirmRestart: {
2024-11-29 12:40:31 +08:00
"!doc": "询问是否需要重新开始",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
battle: {
"!doc":
"战斗,如果填写了坐标就会删除该点的敌人并触发战后事件<br/>例如core.battle('greenSlime'); // 和从天而降的绿头怪战斗(如果打得过)<br/>id: 敌人id必填<br/>x: 敌人的横坐标,可选<br/>y: 敌人的纵坐标,可选<br/>force: true表示强制战斗可选<br/>callback: 回调函数,可选",
"!type":
"fn(id: string, x?: number, y?: number, force?: bool, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
follow: {
"!doc":
"跟随<br/>name: 要跟随的一个合法的4x4的行走图名称需要在全塔属性注册",
"!type": "fn(name: string)",
2024-11-29 12:40:31 +08:00
},
beforeBattle: {
2024-11-29 12:40:31 +08:00
"!doc": "战斗前触发的事件返回false代表不进行战斗",
"!type": "fn(enemyId?: string, x?: number, y?: number) -> bool",
2024-11-29 12:40:31 +08:00
},
registerEvent: {
"!doc":
"注册一个自定义事件<br/>type: 事件类型<br/>func: 事件的处理函数,可接受(data, x, y, prefix)参数<br/>data为事件内容x和y为当前点坐标可为nullprefix为当前点前缀",
"!type":
"fn(type: string, func: fn(data: ?, x?: number, y?: number, prefix?: string))",
2024-11-29 12:40:31 +08:00
},
flyTo: {
2024-11-29 12:40:31 +08:00
"!doc": "飞往某一层",
"!type": "fn(toId?: string, callback?: fn()) -> bool",
2024-11-29 12:40:31 +08:00
},
afterGetItem: {
2024-11-29 12:40:31 +08:00
"!doc": "获得一个道具后的事件",
"!type":
"fn(id?: string, x?: number, y?: number, isGentleClick?: bool)",
2024-11-29 12:40:31 +08:00
},
doAction: {
"!doc":
"执行下一个事件指令,常作为回调<br/>例如core.setCurtain([0,0,0,1], null, null, core.doAction); // 事件中的原生脚本,配合勾选“不自动执行下一个事件”来达到此改变色调只持续到下次场景切换的效果",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
openBook: {
2024-11-29 12:40:31 +08:00
"!doc": "点击怪物手册时的打开操作",
"!type": "fn(fromUserAction?: bool)",
2024-11-29 12:40:31 +08:00
},
save: {
2024-11-29 12:40:31 +08:00
"!doc": "点击存档按钮时的打开操作",
"!type": "fn(fromUserAction?: bool)",
2024-11-29 12:40:31 +08:00
},
load: {
2024-11-29 12:40:31 +08:00
"!doc": "点击读档按钮时的打开操作",
"!type": "fn(fromUserAction?: bool)",
2024-11-29 12:40:31 +08:00
},
getNextItem: {
"!doc":
"轻按获得面前的物品或周围唯一物品<br/>noRoute: 若为true则不计入录像",
"!type": "fn(noRoute?: bool)",
2024-11-29 12:40:31 +08:00
},
hasAsync: {
2024-11-29 12:40:31 +08:00
"!doc": "当前是否有未处理完毕的异步事件(不包含动画和音效)",
"!type": "fn() -> bool",
2024-11-29 12:40:31 +08:00
},
stopAsync: {
2024-11-29 12:40:31 +08:00
"!doc": "立刻停止所有正在进行的异步事件",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
openEquipbox: {
2024-11-29 12:40:31 +08:00
"!doc": "点击装备栏时的打开操作",
"!type": "fn(fromUserAction?: bool)",
2024-11-29 12:40:31 +08:00
},
recoverEvents: {
2024-11-29 12:40:31 +08:00
"!doc": "恢复一个事件",
"!type": "fn(data?: ?)",
},
setGlobalFlag: {
"!doc":
"设置一个系统开关<br/>例如core.setGlobalFlag('steelDoorWithoutKey', true); // 使全塔的所有铁门都不再需要钥匙就能打开<br/>name: 系统开关的英文名<br/>value: 开关的新值,您可以用!core.flags[name]简单地表示将此开关反转",
"!type": "fn(name: string, value: bool)",
},
moveImage: {
"!doc":
"移动一张图片并/或改变其透明度<br/>例如core.moveImage(1, null, 0.5); // 1秒内把1号图片变为50%透明<br/>code: 图片编号<br/>to: 新的左上角坐标,省略表示原地改变透明度<br/>opacityVal: 新的透明度,省略表示不变<br/>time: 移动用时单位为毫秒。不填视为1秒<br/>callback: 图片移动完毕后的回调函数,可选",
"!type":
"fn(code: number, to?: [number], opacityVal?: number, moveMode?: string, time?: number, callback?: fn())",
},
rotateImage: {
"!doc":
"旋转一张图片<br/>code: 图片编号<br/>center: 旋转中心像素坐标(以屏幕为基准);不填视为图片本身中心<br/>angle: 旋转角度;正数为顺时针,负数为逆时针<br/>moveMode: 旋转模式<br/>time: 旋转用时单位为毫秒。不填视为1秒<br/>callback: 图片旋转完毕后的回调函数,可选",
"!type":
"fn(code: number, center?: [number], angle?: number, moveMode?: string, time?: number, callback?: fn())",
},
scaleImage: {
2024-11-29 12:40:31 +08:00
"!doc": "放缩一张图片",
"!type":
"fn(code: number, center?: [number], scale?: number, moveMode?: string, time?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
moveTextBox: {
2024-11-29 12:40:31 +08:00
"!doc": "移动对话框",
"!type":
"fn(code: number, loc: [number], relative?: bool, moveMode?: string, time?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
clearTextBox: {
2024-11-29 12:40:31 +08:00
"!doc": "清除对话框",
"!type": "fn(code: number)",
2024-11-29 12:40:31 +08:00
},
openSettings: {
2024-11-29 12:40:31 +08:00
"!doc": "点击设置按钮时的操作",
"!type": "fn(fromUserAction?: bool)",
2024-11-29 12:40:31 +08:00
},
afterPushBox: {
2024-11-29 12:40:31 +08:00
"!doc": "推箱子后的事件",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
unregisterSystemEvent: {
2024-11-29 12:40:31 +08:00
"!doc": "注销一个系统事件",
"!type": "fn(type: string)",
2024-11-29 12:40:31 +08:00
},
trigger: {
"!doc":
"触发(x,y)点的系统事件会执行该点图块的script属性同时支持战斗会触发战后、道具会触发道具后、楼层切换等等<br/>callback: 执行完毕的回调函数<br/>【异步脚本,请勿在脚本中直接调用(而是使用对应的事件),否则可能导致录像出错】",
"!type": "fn(x?: number, y?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
restart: {
2024-11-29 12:40:31 +08:00
"!doc": "重新开始游戏;此函数将回到标题页面",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
doEvent: {
2024-11-29 12:40:31 +08:00
"!doc": "执行一个自定义事件",
"!type": "fn(data?: ?, x?: number, y?: number, prefix?: string)",
2024-11-29 12:40:31 +08:00
},
win: {
2024-11-29 12:40:31 +08:00
"!doc": "游戏获胜事件",
"!type": "fn(reason?: string, norank?: bool, noexit?: bool)",
2024-11-29 12:40:31 +08:00
},
setGlobalAttribute: {
2024-11-29 12:40:31 +08:00
"!doc": "设置全塔属性",
"!type": "fn(name: string, value: string)",
2024-11-29 12:40:31 +08:00
},
setNameMap: {
2024-11-29 12:40:31 +08:00
"!doc": "设置文件别名",
"!type": "fn(name: string, value?: string)",
2024-11-29 12:40:31 +08:00
},
setTextAttribute: {
2024-11-29 12:40:31 +08:00
"!doc": "设置剧情文本的属性",
"!type": "fn(data: ?)",
2024-11-29 12:40:31 +08:00
},
openToolbox: {
2024-11-29 12:40:31 +08:00
"!doc": "点击工具栏时的打开操作",
"!type": "fn(fromUserAction?: bool)",
2024-11-29 12:40:31 +08:00
},
setVolume: {
"!doc":
"调节bgm的音量<br/>例如core.setVolume(0, 100, core.jumpHero); // 0.1秒内淡出bgm然后主角原地跳跃半秒<br/>value: 新的音量为0或不大于1的正数。注意系统设置中是这个值的平方根的十倍<br/>time: 渐变用时单位为毫秒。不填或小于100毫秒都视为0<br/>callback: 渐变完成后的回调函数,可选",
"!type": "fn(value: number, time?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
pushEventLoc: {
2024-11-29 12:40:31 +08:00
"!doc": "将当前点坐标入栈",
"!type": "fn(x?: number, y?: number, floorId?: string) -> bool",
2024-11-29 12:40:31 +08:00
},
openKeyBoard: {
2024-11-29 12:40:31 +08:00
"!doc": "点击虚拟键盘时的打开操作",
"!type": "fn(fromUserAction?: bool)",
2024-11-29 12:40:31 +08:00
},
insertCommonEvent: {
"!doc":
"插入一个公共事件<br/>例如core.insertCommonEvent('加点事件', [3]);<br/>name: 公共事件名;如果公共事件不存在则直接忽略<br/>args: 参数列表,为一个数组,将依次赋值给 flag:arg1, flag:arg2, ...<br/>x: 新的当前点横坐标,可选<br/>y: 新的当前点纵坐标,可选<br/>callback 新的回调函数,可选<br/>addToLast: 插入的位置true表示插入到末尾否则插入到开头",
"!type":
"fn(name?: string, args?: [?], x?: number, y?: number, callback?: fn(), addToLast?: bool)",
2024-11-29 12:40:31 +08:00
},
hideImage: {
"!doc":
"隐藏一张图片<br/>例如core.hideImage(1, 1000, core.jumpHero); // 1秒内淡出1号图片然后主角原地跳跃半秒<br/>code: 图片编号<br/>time: 淡出时间,单位为毫秒<br/>callback: 图片完全消失后的回调函数,可选",
"!type": "fn(code: number, time?: number, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
visitFloor: {
2024-11-29 12:40:31 +08:00
"!doc": "到达某楼层",
"!type": "fn(floorId?: string)",
2024-11-29 12:40:31 +08:00
},
openQuickShop: {
2024-11-29 12:40:31 +08:00
"!doc": "点击快捷商店按钮时的打开操作",
"!type": "fn(fromUserAction?: bool)",
2024-11-29 12:40:31 +08:00
},
afterBattle: {
2024-11-29 12:40:31 +08:00
"!doc": "战斗结束后触发的事件",
"!type": "fn(enemyId?: string, x?: number, y?: number)",
2024-11-29 12:40:31 +08:00
},
pushBox: {
2024-11-29 12:40:31 +08:00
"!doc": "推箱子",
"!type": "fn(data?: ?)",
2024-11-29 12:40:31 +08:00
},
autoEventExecuted: {
2024-11-29 12:40:31 +08:00
"!doc": "当前是否执行过某个自动事件",
"!type": "fn(symbol?: string, value?: ?) -> bool",
2024-11-29 12:40:31 +08:00
},
onSki: {
2024-11-29 12:40:31 +08:00
"!doc": "当前是否在冰上",
"!type": "fn(number?: number) -> bool",
},
showImage: {
"!doc":
"显示一张图片<br/>例如core.showImage(1, core.material.images.images['winskin.png'], [0,0,128,128], [0,0,416,416], 0.5, 1000); // 裁剪winskin.png的最左边128×128px放大到铺满整个视野1秒内淡入到50%透明编号为1<br/>code: 图片编号为不大于50的正整数加上100后就是对应画布层的z值较大的会遮罩较小的注意色调层的z值为125UI层为140<br/>image: 图片文件名(可以是全塔属性中映射前的中文名)或图片对象(见上面的例子)<br/>sloc: 一行且至多四列的数组,表示从原图裁剪的左上角坐标和宽高,可选<br/>loc: 一行且至多四列的数组,表示图片在视野中的左上角坐标和宽高,可选<br/>opacityVal: 不透明度为小于1的正数。不填视为1<br/>time: 淡入时间单位为毫秒。不填视为0<br/>callback: 图片完全显示出来后的回调函数,可选",
"!type":
"fn(code: number, image: string|image, sloc?: [number], loc?: [number], opacityVal?: number, time?: number, callback?: fn())",
},
getItem: {
"!doc":
"获得道具并提示,如果填写了坐标就会删除该点的该道具<br/>例如core.getItem('book'); // 获得敌人手册并提示<br/>id: 道具id必填<br/>num: 获得的数量不填视为1填了就别填坐标了<br/>x: 道具的横坐标,可选<br/>y: 道具的纵坐标,可选<br/>callback: 回调函数,可选",
"!type":
"fn(id: string, num?: number, x?: number, y?: number, callback?: fn())",
},
registerSystemEvent: {
"!doc":
"注册一个系统事件<br/>type: 事件名<br/>func: 为事件的处理函数,可接受(data,callback)参数",
"!type": "fn(type: string, func: fn(data?: ?, callback?: fn()))",
},
startGame: {
"!doc":
"开始新游戏<br/>例如core.startGame('咸鱼乱撞', 0, ''); // 开始一局咸鱼乱撞难度的新游戏随机种子为0<br/>hard: 难度名,会显示在左下角(横屏)或右下角(竖屏)<br/>seed: 随机种子,相同的种子保证了录像的可重复性<br/>route: 经由base64压缩后的录像用于从头开始的录像回放<br/>callback: 回调函数,可选",
"!type":
"fn(hard: string, seed: number, route: string, callback?: fn())",
},
doSystemEvent: {
2024-11-29 12:40:31 +08:00
"!doc": "执行一个系统事件",
"!type": "fn(type: string, data?: ?, callback?: fn())",
2024-11-29 12:40:31 +08:00
},
resetGame: {
2024-11-29 12:40:31 +08:00
"!doc": "初始化游戏",
"!type":
"fn(hero?: ?, hard?: ?, floorId?: string, maps?: ?, values?: ?)",
},
setFloorInfo: {
"!doc":
"设置一项楼层属性并刷新状态栏<br/>例如core.setFloorInfo('ratio', 2, 'MT0'); // 把主塔0层的血瓶和宝石变为双倍效果<br/>name: 要修改的属性名<br/>values: 属性的新值。<br/>floorId: 楼层id不填视为当前层<br/>prefix: 独立开关前缀,一般不需要",
"!type":
"fn(name: string, values: ?, floorId?: string, prefix?: string)",
},
openDoor: {
"!doc":
"开门(包括三种基础墙)<br/>例如core.openDoor(0, 0, true, core.jumpHero); // 打开左上角的门,需要钥匙,然后主角原地跳跃半秒<br/>x: 门的横坐标<br/>y: 门的纵坐标<br/>needKey: true表示需要钥匙会导致机关门打不开<br/>callback: 门完全打开后或打不开时的回调函数,可选<br/>【异步脚本,请勿在脚本中直接调用(而是使用对应的事件),否则可能导致录像出错】",
"!type": "fn(x: number, y: number, needKey?: bool, callback?: fn())",
},
setEnemy: {
"!doc":
"设置一项敌人属性并计入存档<br/>例如core.setEnemy('greenSlime', 'def', 0); // 把绿头怪的防御设为0<br/>id: 敌人id<br/>name: 属性的英文缩写<br/>value: 属性的新值,可选<br/>operator: 运算操作符如+=,可选<br/>prefix: 独立开关前缀,一般不需要,下同",
"!type":
"fn(id: string, name: string, value: ?, operator?: string, prefix?: string)",
},
setEnemyOnPoint: {
"!doc":
"设置某个点的敌人属性。如果该点不是怪物,则忽略此函数。<br/>例如core.setEnemyOnPoint(3, 5, null, 'atk', 100, '+='); // 仅将(3,5)点怪物的攻击力加100。",
"!type":
"fn(x: number, y: number, floorId?: string, name: string, value: ?, operator?: string, prefix?: string)",
},
resetEnemyOnPoint: {
2024-11-29 12:40:31 +08:00
"!doc": "重置某个点的怪物属性",
"!type": "fn(x: number, y: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
moveEnemyOnPoint: {
2024-11-29 12:40:31 +08:00
"!doc": "将某个点已经设置的敌人属性移动到其他点",
"!type":
"fn(fromX: number, fromY: number, toX: number, toY: number, floorId?: string)",
2024-11-29 12:40:31 +08:00
},
autoEventExecuting: {
2024-11-29 12:40:31 +08:00
"!doc": "当前是否在执行某个自动事件",
"!type": "fn(symbol?: string, value?: ?) -> bool",
2024-11-29 12:40:31 +08:00
},
checkAutoEvents: {
2024-11-29 12:40:31 +08:00
"!doc": "检测自动事件",
"!type": "fn()",
2024-11-29 12:40:31 +08:00
},
showGif: {
"!doc":
"绘制一张动图或擦除所有动图<br/>例如core.showGif(); // 擦除所有动图<br/>name: 动图文件名,可以是全塔属性中映射前的中文名<br/>x: 动图在视野中的左上角横坐标<br/>y: 动图在视野中的左上角纵坐标",
"!type": "fn(name?: string, x?: number, y?: number)",
2024-11-29 12:40:31 +08:00
},
unregisterEvent: {
2024-11-29 12:40:31 +08:00
"!doc": "注销一个自定义事件",
"!type": "fn(type: string)",
},
jumpHero: {
"!doc":
"主角跳跃跳跃勇士。ex和ey为目标点的坐标可以为null表示原地跳跃。time为总跳跃时间。<br/>例如core.jumpHero(); // 主角原地跳跃半秒<br/>ex: 跳跃后的横坐标<br/>ey: 跳跃后的纵坐标<br/>time: 跳跃时长,单位为毫秒。不填视为半秒<br/>callback: 跳跃完毕后的回调函数,可选<br/>【异步脚本,请勿在脚本中直接调用(而是使用对应的事件),否则可能导致录像出错】",
"!type":
"fn(ex?: number, ey?: number, time?: number, callback?: fn())",
},
closeDoor: {
"!doc":
"关门,目标点必须为空地<br/>例如core.closeDoor(0, 0, 'yellowWall', core.jumpHero); // 在左上角关掉一堵黄墙,然后主角原地跳跃半秒<br/>x: 横坐标<br/>y: 纵坐标<br/>id: 门的id也可以用三种基础墙<br/>callback: 门完全关上后的回调函数,可选<br/>【异步脚本,请勿在脚本中直接调用(而是使用对应的事件),否则可能导致录像出错】",
"!type": "fn(x: number, y: number, id: string, callback?: fn())",
},
eventMoveHero: {
"!doc":
"强制移动主角(包括后退),这个函数的作者已经看不懂这个函数了<br/>例如core.eventMoveHero(['forward'], 125, core.jumpHero); // 主角强制前进一步用时1/8秒然后主角原地跳跃半秒<br/>steps: 步伐数组,注意后退时跟随者的行为会很难看<br/>time: 每步的用时单位为毫秒。0或不填则取主角的移速如果后者也不存在就取0.1秒<br/>callback: 移动完毕后的回调函数,可选<br/>【异步脚本,请勿在脚本中直接调用(而是使用对应的事件),否则可能导致录像出错】",
"!type": "fn(steps: [step], time?: number, callback?: fn())",
},
changeFloor: {
"!doc":
"场景切换<br/>例如core.changeFloor('MT0'); // 传送到主塔0层主角坐标和朝向不变黑屏时间取用户定义的值<br/>floorId: 传送的目标地图id可以填':before'和':next'分别表示楼下或楼上<br/>stair: 传送的位置<br/>heroLoc: 传送的坐标会覆盖stair<br/>time: 传送的黑屏时间,单位为毫秒;不填为用户设置值<br/>callback: 传送的回调函数<br/>【异步脚本,请勿在脚本中直接调用(而是使用对应的事件),否则可能导致录像出错】",
"!type":
"fn(floorId: string, stair?: string, heroLoc?: {x?: number, y?: number, direction?: string}, time?: number, callback?: fn())",
},
getCommonEvent: {
2024-11-29 12:40:31 +08:00
"!doc": "获得一个公共事件",
"!type": "fn(name: string) -> [?]",
2024-11-29 12:40:31 +08:00
},
lose: {
2024-11-29 12:40:31 +08:00
"!doc": "游戏失败事件",
"!type": "fn(reason?: string)",
2024-11-29 12:40:31 +08:00
},
gameOver: {
"!doc":
"游戏结束<br/>例如core.gameOver(); // 游戏失败<br/>ending: 结局名,省略表示失败<br/>fromReplay: true表示在播放录像可选<br/>norank: true表示不计入榜单可选",
"!type": "fn(ending?: string, fromReplay?: bool, norank?: bool)",
2024-11-29 12:40:31 +08:00
},
useFly: {
2024-11-29 12:40:31 +08:00
"!doc": "点击楼层传送器时的打开操作",
"!type": "fn(fromUserAction?: bool)",
},
tryUseItem: {
"!doc":
"尝试使用一个道具<br/>例如core.tryUseItem('pickaxe'); // 尝试使用破墙镐<br/>itemId: 道具id其中敌人手册、传送器和飞行器会被特殊处理",
"!type": "fn(itemId: string)",
2024-11-29 12:40:31 +08:00
},
},
plugin: {
2024-11-29 12:40:31 +08:00
"!doc": "插件编写中内置了一些常用的插件。",
drawLight: {
"!doc":
"绘制一段灯光效果<br/>name必填要绘制到的画布名可以是一个系统画布或者是个自定义画布如果不存在则创建<br/>color可选只能是一个0~1之间的数为不透明度的值。不填则默认为0.9。<br/>lights可选一个数组定义了每个独立的灯光。其中每一项是三元组 [x,y,r] x和y分别为该灯光的横纵坐标r为该灯光的半径。<br/>lightDec可选0到1之间光从多少百分比才开始衰减在此范围内保持全亮不设置默认为0。比如lightDec为0.5代表每个灯光部分内圈50%的范围全亮50%以后才开始快速衰减。<br/>例如core.plugin.drawLight('test', 0.2, [[25,11,46,0.1]]); // 创建一个test图层不透明度0.2,其中在(25,11)点存在一个半径为46的灯光效果灯光中心不透明度0.1。<br/>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。",
"!type":
"fn(name: string|CanvasRenderingContext2D, color?: number, lights?: [[number]], lightDec?: number)",
},
openShop: {
"!doc":
"打开一个全局商店<br/>shopId: 要开启的商店ID<br/>noRoute: 打开行为是否不计入录像",
"!type": "fn(shopId: string, noRoute?: bool)",
},
isShopVisited: {
2024-11-29 12:40:31 +08:00
"!doc": "某个全局商店是否被访问过",
"!type": "fn(id: string) -> bool",
2024-11-29 12:40:31 +08:00
},
listShopIds: {
2024-11-29 12:40:31 +08:00
"!doc": "列出所有应当显示的快捷商店列表",
"!type": "fn() -> [string]",
2024-11-29 12:40:31 +08:00
},
canOpenShop: {
2024-11-29 12:40:31 +08:00
"!doc": "当前能否打开某个商店",
"!type": "fn(id: string) -> bool",
2024-11-29 12:40:31 +08:00
},
setShopVisited: {
2024-11-29 12:40:31 +08:00
"!doc": "设置某个商店的访问状态",
"!type": "fn(id: string, visited?: bool)",
2024-11-29 12:40:31 +08:00
},
canUseQuickShop: {
"!doc":
"当前能否使用某个快捷商店<br/>如果返回一个字符串则代表不能返回的字符串作为不能的提示返回null表示可以使用",
"!type": "fn(id: string) -> string",
2024-11-29 12:40:31 +08:00
},
removeMaps: {
"!doc":
'删除某一些楼层;删除后不会存入存档,不可浏览地图也不可飞到。<br/>fromId: 开始删除的楼层ID<br/>toId: 删除到的楼层编号可选不填则视为fromId<br/>例如core.removeMaps("MT1", "MT300") 删除MT1~MT300之间的全部层<br/>core.removeMaps("MT10") 只删除MT10层',
"!type": "fn(fromId: string, toId?: string)",
2024-11-29 12:40:31 +08:00
},
resumeMaps: {
"!doc":
'恢复某一些被删除楼层。<br/>fromId: 开始恢复的楼层ID<br/>toId: 恢复到的楼层编号可选不填则视为fromId<br/>例如core.resumeMaps("MT1", "MT300") 恢复MT1~MT300之间的全部层<br/>core.resumeMaps("MT10") 只删恢复MT10层',
"!type": "fn(fromId: string, toId?: string)",
2024-11-29 12:40:31 +08:00
},
autoRemoveMaps: {
2024-11-29 12:40:31 +08:00
"!doc": "根据楼层分区信息自动砍层与恢复",
"!type": "fn(floorId: string)",
2024-11-29 12:40:31 +08:00
},
openItemShop: {
2024-11-29 12:40:31 +08:00
"!doc": "打开一个道具商店",
"!type": "fn(itemShopId: string)",
},
},
2024-11-29 12:40:31 +08:00
},
lzw_encode: {
2024-11-29 12:40:31 +08:00
"!doc": "LZW压缩算法",
"!url": "https://gist.github.com/revolunet/843889",
"!type": "fn(s: string) -> string",
2024-11-29 12:40:31 +08:00
},
lzw_decode: {
2024-11-29 12:40:31 +08:00
"!doc": "LZW解压缩算法",
"!url": "https://gist.github.com/revolunet/843889",
"!type": "fn(s: string) -> string",
2024-11-29 12:40:31 +08:00
},
hero: {
2024-11-29 12:40:31 +08:00
"!type": "heroStatus",
"!doc": "勇士信息,为 core.status.hero 的简写",
},
flags: {
2024-11-29 12:40:31 +08:00
"!type": "flag",
"!doc": "游戏中用到的变量,为 core.status.hero.flags 的简写",
},
},
];