Define Quest Interface.

interface IQuest {
    description: string;
    id: number;
    isActive: boolean;
    isCompleted: boolean;
    name: string;
    tasks: null | Map<number, ITask>;
    addCheckTask(description: string, options?: {
        onCompleted?: (() => void);
    }): ICheckTask;
    addProgressBarTask(description: string, totalProgress: number, options?: {
        onCompleted?: (() => void);
    }): IProgressBarTask;
    fire<T>(event: T, ...args?: any[]): EventHandler;
    getTaskById(id: number): null | ITask;
    off<T>(event: T, listener: IQuestEvents[T]): EventHandler;
    on<T>(event: T, listener: IQuestEvents[T]): EventHandle;
    reset(): void;
    start(): void;
}

Properties

description: string

The description of the quest.

id: number

The ID of the quest.

isActive: boolean

Whether the quest is active.

isCompleted: boolean

Whether the quest is completed.

name: string

The name of the quest.

tasks: null | Map<number, ITask>

Get the list of tasks in the quest.

Methods

  • Planned

    Add a new check task.

    Parameters

    • description: string

      The description of the task.

    • Optionaloptions: {
          onCompleted?: (() => void);
      }

      Optional parameters.

      • OptionalonCompleted?: (() => void)

        Callback function triggered when the task is completed.

          • (): void
          • Returns void

    Returns ICheckTask

    The check task object.

  • Planned

    Add a new progress bar task.

    Parameters

    • description: string

      The description of the task.

    • totalProgress: number
    • Optionaloptions: {
          onCompleted?: (() => void);
      }

      Optional parameters.

      • OptionalonCompleted?: (() => void)

        Callback function triggered when the task is completed.

          • (): void
          • Returns void

    Returns IProgressBarTask

    The progress bar task object.

  • Send a specific event.

    Type Parameters

    Parameters

    • event: T

      Event name

    • Optional Rest...args: any[]

      Event parameters

    Returns EventHandler

  • Planned

    Get a task by ID.

    Parameters

    • id: number

      Task ID.

    Returns null | ITask

  • Unsubscribe from a specific event.

    Type Parameters

    Parameters

    Returns EventHandler

  • Subscribe to a specific event.

    Type Parameters

    Parameters

    Returns EventHandle

  • Planned

    Reset the quest.

    Returns void

  • Planned

    Start the quest.

    Returns void