Class Optimizer

The optimizer tracks the amount of time spent between frames or between calls to begin and end and calculates the difference between the target amount of time to spend and the actual time spent on the last frame.

After the specified amount of time has passed the average time spent is calculated and the framerate the amount of work is either increased or decreased depending on whether or not the time spent was above or below the target.

The amount of work is adjusted by iteratively calling prioritized optimizations and sampling framerate until the target work time is met.

Hierarchy

  • Optimizer

Constructors

Properties

_enabled: boolean

Whether to enable or disable he optimizer.

_increasingWork: boolean
_windowBlurFunc: (() => boolean)

Type declaration

    • (): boolean
    • A function that handles the window blur event.

      Returns boolean

_windowFocusFunc: (() => void)

Type declaration

    • (): void
    • A function that gets called when the window gains focus. This function does not take any parameters and does not return any value.

      Returns void

_windowFocused: boolean

Indicates whether the window is currently focused.

beginTime: number

The timestamp indicating when the optimization process begins. Represented as the number of milliseconds elapsed since the UNIX epoch.

completed: boolean

Whether or not the optimizer has stopped iterating and sampling the framerate.

currOptimization: number

The current optimization level or state. This value represents the current stage or level of optimization being applied.

currPriority: null | number

The current priority level of the optimizer. This can be a number representing the priority or null if no priority is set.

elapsedFrames: number

The number of frames that have elapsed since the start of the optimization process.

elapsedTime: number

The amount of time that has elapsed, in milliseconds.

maxPriority: number
minPriority: number

The minimum priority level for the optimizer. This value determines the lowest priority task that the optimizer will consider.

optimizations: {
    [key: number]: Optimization[];
}

A dictionary where the key is a number representing an optimization level and the value is an array of Optimization objects associated with that level.

Type declaration

See OptimizerOptions for more information.

waitedFrames: number

The number of frames that have been waited. This property keeps track of how many frames have passed while waiting for a certain condition or event.

waitedMillis: number

The number of milliseconds that the optimizer has waited. This value is used to track the waiting time for certain operations.

Accessors

  • get enabled(): boolean
  • Getter and setter for enabling or disabling the optimizer. Elapsed time is reset on reenable.

    Returns boolean

  • set enabled(val): void
  • Getter and setter for enabling or disabling the optimizer. Elapsed time is reset on reenable.

    Parameters

    • val: boolean

    Returns void

Methods

  • Records the current time as the start time for an operation. This method uses the window.performance.now() function to get a high-resolution timestamp.

    Returns void

  • Ends the current timing iteration and records the elapsed time since begin was called. If end is called before begin, the method will return immediately without recording any time.

    Returns void

    Remarks

    This method calculates the time elapsed since begin was called using window.performance.now() and adds the sample to the collection of recorded times.

  • Iterates through the optimization process, adjusting the current priority level and applying optimizations to improve performance.

    Parameters

    • delta: number

      The change in priority level. Positive values increase the priority, while negative values decrease it.

    Returns boolean

    A boolean indicating whether an optimization was successfully applied.

    The method works by iterating through the current priority level's optimizations. If an optimization is successfully applied, the iteration stops. If no optimizations are applied at the current priority level, the priority level is adjusted by the delta value, and the process continues until the priority level is out of bounds.

    If an optimization function does not return a boolean value, a warning is logged and the return value is coerced to a boolean.

  • Resets the internal tracking variables for the optimizer.

    This method sets the following properties to their initial values:

    • elapsedFrames: Number of frames that have elapsed since the last reset.
    • elapsedTime: Total time that has elapsed since the last reset.
    • waitedFrames: Number of frames to wait before performing the next optimization, based on options.maxWaitFrames.
    • waitedMillis: Number of milliseconds to wait before performing the next optimization, based on options.waitMillis.
    • beginTime: The start time for the current optimization cycle, set to -1 to indicate it hasn't started yet.

    Returns void

  • Adds an optimization to the optimizer with an optional priority.

    Parameters

    • optimization: Optimization

      The optimization to add. Can be an instance of Optimization or a function.

    • priority: number = 0

      The priority of the optimization. Defaults to 0 if not provided.

      If the optimization parameter is a function, it will be wrapped in an Optimization instance. The priority is parsed as an integer and defaults to 0 if parsing fails. The optimization is then added to the internal optimizations list at the specified priority. The minPriority and maxPriority properties are updated accordingly.

    Returns void

  • Adds a sample time to the optimizer and performs optimization logic.

    Parameters

    • sampleTime: number

      The time of the sample to add, in milliseconds.

      This method performs the following steps:

      1. Checks if the optimizer is enabled, the window is focused, and the optimization is not completed.
      2. Waits for the required number of frames and milliseconds between calls.
      3. Increments the elapsed time and frame count.
      4. If the elapsed time or frame count exceeds the specified interval or maximum frame samples, it calculates the average frame time and determines if optimization is needed.
      5. Depending on whether the optimizer is currently increasing or decreasing work, it adjusts the priority and performs optimization iterations.
      6. Resets the elapsed time and frame count, and sets the wait time for the next call.

    Returns void

  • Disposes of the optimizer by removing event listeners for window blur and focus events. This helps to clean up resources and prevent memory leaks when the optimizer is no longer needed.

    Returns void

  • Restarts the optimizer by resetting its state.

    This method performs the following actions:

    • Resets any checks by calling resetCheck().
    • Sets the _increasingWork property to the value of options.increaseWork.
    • Sets currPriority to null.
    • Resets currOptimization to 0.
    • Marks the optimizer as not completed by setting completed to false.

    Returns void

  • Updates the optimizer by ending the current process and beginning a new one. This method ensures that any ongoing operations are properly terminated before starting a new operation cycle.

    Returns void

Generated using TypeDoc