完善Game类的JSDoc类型注释
This commit is contained in:
parent
8e2bfc91ad
commit
b02f62f392
1214
noname/game/index.js
1214
noname/game/index.js
File diff suppressed because it is too large
Load Diff
|
@ -1832,6 +1832,10 @@ export class Get extends Uninstantable {
|
|||
return Math.sqrt(dx * dx + dy * dy);
|
||||
}
|
||||
static xyDistance(from, to) { return Math.sqrt((from[0] - to[0]) * (from[0] - to[0]) + (from[1] - to[1]) * (from[1] - to[1])) }
|
||||
/**
|
||||
* @overload
|
||||
* @returns { void }
|
||||
*/
|
||||
/**
|
||||
* @overload
|
||||
* @param { string } obj
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
/**
|
||||
* @typedef {InstanceType<typeof lib.element.Player>} Player
|
||||
* @typedef {InstanceType<typeof lib.element.Card>} Card
|
||||
* @typedef {InstanceType<typeof lib.element.VCard>} VCard
|
||||
* @typedef {InstanceType<typeof lib.element.Button>} Button
|
||||
* @typedef {InstanceType<typeof lib.element.Dialog>} Dialog
|
||||
* @typedef {InstanceType<typeof lib.element.GameEvent>} GameEvent
|
||||
* @typedef {InstanceType<typeof lib.element.GameEvent> & InstanceType<typeof lib.element.GameEventPromise> & typeof Promise<lib.element.GameEvent>} GameEventPromise
|
||||
* @typedef {InstanceType<typeof lib.element.NodeWS>} NodeWS
|
||||
* @typedef { InstanceType<typeof lib.element.Player> } Player
|
||||
* @typedef { InstanceType<typeof lib.element.Card> } Card
|
||||
* @typedef { InstanceType<typeof lib.element.VCard> } VCard
|
||||
* @typedef { InstanceType<typeof lib.element.Button> } Button
|
||||
* @typedef { InstanceType<typeof lib.element.Dialog> } Dialog
|
||||
* @typedef { InstanceType<typeof lib.element.GameEvent> } GameEvent
|
||||
* @typedef { InstanceType<typeof lib.element.GameEvent> & InstanceType<typeof lib.element.GameEventPromise> & typeof Promise<typeof lib.element.GameEvent> } GameEventPromise
|
||||
* @typedef { InstanceType<typeof lib.element.NodeWS> } NodeWS
|
||||
* @typedef { 'male' | 'female' | 'dobule' | 'none' } Sex
|
||||
* @typedef { [Sex, string, number | string, string[], any[]] } Character
|
||||
*/
|
||||
import { nonameInitialized, assetURL, userAgent, Uninstantable, GeneratorFunction, AsyncFunction } from "../util/index.js";
|
||||
import { AI as ai } from '../ai/index.js';
|
||||
|
@ -32,6 +34,9 @@ export class Library extends Uninstantable {
|
|||
static changeLog = [];
|
||||
static updates = [];
|
||||
static canvasUpdates = [];
|
||||
/**
|
||||
* @type { import('../game/index.js').Video[] }
|
||||
*/
|
||||
static video = [];
|
||||
static skilllist = [];
|
||||
static connectBanned = [];
|
||||
|
@ -77,6 +82,17 @@ export class Library extends Uninstantable {
|
|||
static extensionPack = {};
|
||||
static cardType = {};
|
||||
static hook = { globalskill: {} };
|
||||
/**
|
||||
* @returns {never}
|
||||
*/
|
||||
static typeAnnotation() {
|
||||
/**
|
||||
* @type { import('../game/index.js').Videos[] }
|
||||
*/
|
||||
// @ts-ignore
|
||||
this.videos;
|
||||
throw new Error('Do not call this method');
|
||||
}
|
||||
//函数钩子
|
||||
static hooks = {
|
||||
// 本体势力的颜色
|
||||
|
|
|
@ -36,6 +36,10 @@ export const status = {
|
|||
renku: [],
|
||||
prehidden_skills: [],
|
||||
postReconnect: {},
|
||||
/**
|
||||
* @type { string | void }
|
||||
*/
|
||||
extension:undefined,
|
||||
};
|
||||
|
||||
export const _status = status;
|
Loading…
Reference in New Issue