Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PluginManager

Class for managing plugins, i.e., user-made scripts extending Catana's functionality.

Hierarchy

  • PluginManager

Implements

Index

Constructors

constructor

Properties

Private _disposableComponents

_disposableComponents: Component[] = []

Private _dt

_dt: number

Private _loadedPlugins

_loadedPlugins: IPluginRecord[] = []

Private _loadedScripts

_loadedScripts: IScriptRecord[] = []

Private _sharedVariables

_sharedVariables: Map<string, any> = new Map()

Private _stage

_stage: Stage

Readonly defaultRepoUrlTemplate

defaultRepoUrlTemplate: string = "https://raw.githubusercontent.com/barisicgroup/catana-plugins/main/{name}/{file}"

Default URL where Catana will search for plugins and scripts. Substring {name} will be replaced with the name of the plugin. Substring {file} will be replaced with the name of the script file.

Accessors

loadedPlugins

loadedScripts

sharedVariables

  • get sharedVariables(): Map<string, any>

Methods

addDisposableComponent

  • addDisposableComponent(comp: Component): void

addFromLoadedFiles

  • addFromLoadedFiles(files: FileList): void

addModalWindow

Private addPlugin

addPluginFromFile

addScript

  • addScript(script: IScript, name?: undefined | string, scope?: undefined | string): IScript

addScriptFromFile

  • addScriptFromFile(file: LoaderInput, scope?: undefined | string): Promise<IScript | undefined>

attachToUpdate

  • attachToUpdate(uuid: string): void

Private changeUpdateAttachStatus

  • changeUpdateAttachStatus(uuid: string, status: boolean): void

detachFromUpdate

  • detachFromUpdate(uuid: string): void

getDeltaTime

  • getDeltaTime(): number

getJsPyApiFunctions

  • getJsPyApiFunctions(): string[]

Private getPathToPlugin

  • getPathToPlugin(pluginName: string, urlTemplate?: string): string

Private getPathToScript

  • getPathToScript(pluginName: string, scriptName: string, urlTemplate?: string): string

getPlugin

getScript

  • getScript(uuid: string): IScript | undefined

getScriptByFullName

  • getScriptByFullName(name: string): IScript | undefined

getScriptInstance

  • getScriptInstance(code: string, scriptType: "js" | "jspy"): IScript

getScriptRecord

getSharedVariable

  • getSharedVariable(name: string): any

hasSharedVariable

  • hasSharedVariable(name: string): boolean
  • Returns true if the given shared variable is defined, false otherwise

    Parameters

    • name: string

      name of the shared variable to look for

    Returns boolean

    boolean determining whether the variable is defined or not

onUpdate

  • onUpdate(deltaTime: number): void

removeDisposableComponents

  • removeDisposableComponents(): void

Private removePlugin

  • removePlugin(name: string): void

removeScript

  • removeScript(uuid: string): void

removeSharedVariable

  • removeSharedVariable(name: string): boolean

runScriptWithFullName

  • runScriptWithFullName(name: string, ...args: any[]): void

setSharedVariable

  • setSharedVariable(name: string, value: any): void

Object literals

Readonly signals

signals: object

modalWindowRequested

modalWindowRequested: Signal<T> = new Signal()

pluginAdded

pluginAdded: Signal<T> = new Signal()

pluginRemoved

pluginRemoved: Signal<T> = new Signal()

scriptAdded

scriptAdded: Signal<T> = new Signal()

scriptRemoved

scriptRemoved: Signal<T> = new Signal()

updateAttachChanged

updateAttachChanged: Signal<T> = new Signal()

Generated using TypeDoc