Files
2016-08-16 08:51:49 -07:00

306 lines
10 KiB
TypeScript

/// <reference path="../typings/ItemsHoldr.d.ts" />
declare namespace ModAttachr {
/**
* General schema for a mod, including its name, events with callbacks,
* scope, and whether it's enabled.
*/
interface IMod {
/**
* The user-readable name of the mod.
*/
name: string;
/**
* The mapping of events to callback Functions to be evaluated.
*/
events: ICallbackRegister;
/**
* The scope to call event Functions from, if necessary.
*/
scope?: any;
/**
* Whether the mod is currently enabled (by default, false).
*/
enabled?: boolean;
}
/**
* Abstrack callback Function for any mod event.
*
* @param args The arguments for the mod event.
* @returns The result of the mod (normally ignored).
*/
interface IEventCallback {
(...args: any[]): any;
}
/**
* Listing of events, keying event names to all mods attached to them.
*/
interface IEventsRegister {
[i: string]: IMod[];
}
/**
* Listing of mods, keyed by name.
*/
interface IMods {
[i: string]: IMod;
}
/**
* Listing of events attached to a mod, keyed by trigger name.
*/
interface ICallbackRegister {
[i: string]: IEventCallback;
}
/**
* Settings to initialize a new IModAttachr.
*/
interface IModAttachrSettings {
/**
* Mods to be immediately added via addMod.
*/
mods?: IMod[];
/**
* A ItemsHoldr to store mod status locally.
*/
ItemsHoldr?: ItemsHoldr.IItemsHoldr;
/**
* Whether there should be a ItemsHoldr created if one isn't given.
*/
storeLocally?: boolean;
/**
* A default scope to apply mod events from, if not the IModAttachr.
*/
scopeDefault?: any;
}
/**
* Hookups for extensible triggered mod events.
*/
interface IModAttachr {
/**
* @returns An Object keying each mod by their name.
*/
getMods(): IMods;
/**
* @param name The name of the mod to return.
* @returns The mod keyed by the name.
*/
getMod(name: string): IMod;
/**
* @returns An Object keying each event by their name.
*/
getEvents(): IEventsRegister;
/**
* @returns The mods associated with a particular event.
*/
getEvent(name: string): IMod[];
/**
* @returns The ItemsHoldr if storeLocally is true (by default, undefined).
*/
getItemsHolder(): ItemsHoldr.IItemsHoldr;
/**
* @returns The default scope used to apply mods from, if not this ModAttachr.
*/
getScopeDefault(): any;
/**
* Adds a mod to the pool of mods, listing it under all the relevant events.
* If the event is enabled, the "onModEnable" event for it is triggered.
*
* @param mod A summary Object for a mod, containing at the very
* least a name and listing of events.
*/
addMod(mod: IMod): void;
/**
* Adds multiple mods via this.addMod.
*
* @param mods The mods to add.
*/
addMods(...mods: IMod[]): void;
/**
* Enables a mod of the given name, if it exists. The onModEnable event is
* called for the mod.
*
* @param name The name of the mod to enable.
* @param args Any additional arguments to pass. This will have `mod`
* and `name` unshifted in front, in that order.
*/
enableMod(name: string, ...args: any[]): void;
/**
* Enables any number of mods.
*
* @param names Names of the mods to enable.
*/
enableMods(...names: string[]): void;
/**
* Disables a mod of the given name, if it exists. The onModDisable event is
* called for the mod.
*
* @param name The name of the mod to disable.
*/
disableMod(name: string): void;
/**
* Disables any number of mods.
*
* @param names Names of the mods to disable.
*/
disableMods(...names: string[]): void;
/**
* Toggles a mod via enableMod/disableMod of the given name, if it exists.
*
* @param name The name of the mod to toggle.
*/
toggleMod(name: string): void;
/**
* Toggles any number of mods.
*
* @param names Names of the mods to toggle.
*/
toggleMods(...names: string[]): void;
/**
* Fires an event, which calls all mods listed for that event.
*
* @param event The name of the event to fire.
* @param args Any additional arguments to pass. This will have `mod`
* and `event` unshifted in front, in that order.
*/
fireEvent(event: string, ...args: any[]): void;
/**
* Fires an event specifically for one mod, rather than all mods containing
* that event.
*
* @param event The name of the event to fire.
* @param modName The name of the mod to fire the event.
* @param args Any additional arguments to pass. This will have `mod`
* and `event` unshifted in front, in that order.
*/
fireModEvent(event: string, modName: string, ...args: any[]): void;
}
/**
* Hookups for extensible triggered mod events.
*/
class ModAttachr implements IModAttachr {
/**
* For each event, the listing of mods that attach to that event.
*/
private events;
/**
* All known mods, keyed by name.
*/
private mods;
/**
* A ItemsHoldr object that may be used to store mod status.
*/
private ItemsHolder;
/**
* A default scope to apply mod events from, if not this ModAttachr.
*/
private scopeDefault;
/**
* Initializes a new instance of the ModAttachr class.
*
* @param [settings] Settings to be used for initialization.
*/
constructor(settings?: IModAttachrSettings);
/**
* @returns An Object keying each mod by their name.
*/
getMods(): IMods;
/**
* @param name The name of the mod to return.
* @returns The mod keyed by the name.
*/
getMod(name: string): IMod;
/**
* @returns An Object keying each event by their name.
*/
getEvents(): IEventsRegister;
/**
* @returns The mods associated with a particular event.
*/
getEvent(name: string): IMod[];
/**
* @returns The ItemsHoldr if storeLocally is true (by default, undefined).
*/
getItemsHolder(): ItemsHoldr.IItemsHoldr;
/**
* @returns The default scope used to apply mods from, if not this ModAttachr.
*/
getScopeDefault(): any;
/**
* Adds a mod to the pool of mods, listing it under all the relevant events.
* If the event is enabled, the "onModEnable" event for it is triggered.
*
* @param mod A summary Object for a mod, containing at the very
* least a name and listing of events.
*/
addMod(mod: IMod): void;
/**
* Adds multiple mods via this.addMod.
*
* @param mods The mods to add.
*/
addMods(...mods: IMod[]): void;
/**
* Enables a mod of the given name, if it exists. The onModEnable event is
* called for the mod.
*
* @param name The name of the mod to enable.
* @param args Any additional arguments to pass. This will have `mod`
* and `name` unshifted in front, in that order.
*/
enableMod(name: string, ...args: any[]): void;
/**
* Enables any number of mods.
*
* @param names Names of the mods to enable.
* @returns The return values of the mods' onModEnable events, in order.
*/
enableMods(...names: string[]): void;
/**
* Disables a mod of the given name, if it exists. The onModDisable event is
* called for the mod.
*
* @param name The name of the mod to disable.
*/
disableMod(name: string): void;
/**
* Disables any number of mods.
*
* @param names Names of the mods to disable.
* @returns The return values of the mods' onModEnable events, in order.
*/
disableMods(...names: string[]): void;
/**
* Toggles a mod via enableMod/disableMod of the given name, if it exists.
*
* @param name The name of the mod to toggle.
* @returns The result of the mod's onModEnable or onModDisable event.
*/
toggleMod(name: string): void;
/**
* Toggles any number of mods.
*
* @param names Names of the mods to toggle.
* @returns The result of the mods' onModEnable or onModDisable events, in order.
*/
toggleMods(...names: string[]): void;
/**
* Fires an event, which calls all mods listed for that event.
*
* @param event The name of the event to fire.
* @param args Any additional arguments to pass. This will have `mod`
* and `event` unshifted in front, in that order.
*/
fireEvent(event: string, ...args: any[]): void;
/**
* Fires an event specifically for one mod, rather than all mods containing
* that event.
*
* @param event The name of the event to fire.
* @param modName The name of the mod to fire the event.
* @param args Any additional arguments to pass. This will have `mod`
* and `event` unshifted in front, in that order.
* @returns The result of the fired mod event.
*/
fireModEvent(event: string, modName: string, ...args: any[]): any;
}
}
declare var module: any;