WoW:AddOn loading process: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 1: Line 1:
{{Uitech}}
{{uiaddon}}


← [[WoW AddOn]]
This document describes the WoW [[UI Customization]] aspect of load order for loading addons. It covers when the WoW client first starts up, when AddOns load for the first time, and when user or WoW reloads the [[UI]]. The availablity of the Lua environment at various points in the process is also detailed.


This technical detail describes the order in which addon code is loaded when the client first starts up, or reloads the interface, as well as what information is available to the Lua environment at various points in the process.
== General steps ==


The general outline:
# Intial Scan - When the WoW client first starts, a list of files and addon dependencies is built.
# When the client first starts, Interface\Addons directory is scanned, and a list of files and addon dependencies is built.
# AddOn Load - Addon code is executed after the player selects a character and chooses to enter the world.
# Addon code is executed after the player selects a character.
# After all addon code has been loaded, the saved variables are executed. ADDON_LOADED fires after each addon's SVs have been loaded.
# After all addon code has been loaded, the saved variables are executed. ADDON_LOADED fires after each addon's SVs have been loaded.


==The initial scan and addon loading order==
=== Initial Scan ===
The client scans through the Interface\AddOns directory, storing a list of present files, and loading all .toc files into memory; files that were not found during this step cannot be loaded  by the game later. This step only happens on client start-up, which makes it impossible to install additional addons / update .toc files / add additional graphics and/or data files to addons without restarting the client.


Dependency information in the .toc files is used to compute the order in which addons will be loaded when the player logs in. In most cases, an individual addon may assume that all of the addons that it depends on will be loaded first.
First, the WoW client scans through all of the folders in the '''Interface\AddOns''' directory, looking for sub-folders containing a valid [[TOC file]] with a '.toc' extension, and in turn then loads each AddOn's TOC file into memory. TOC files that were not found during this step cannot be loaded by the game later and only happens on client start-up. This makes it impossible to install additional addons, or load updated TOC files, without restarting the client. For a AddOn to be considered valid, it must have a single word folder directly in the '''Interface\AddOns''' folder, and must have a matching named '.toc' file, such as a 'MyAddon' folder with a 'MyAddOn.toc' underneath it.  That is all that is requred.
 
=== AddOn Load ===
 
AddOn loading occurs when the player logs in. The dependency information in the .toc files is used, in part, to compute the order in which the addons files will be loaded, as well as the natural order in which the AddOns were discovered during hte scan process. For AddOns with dependancies, an individual addon may '''not''' assume that all of the other addons that it depends on will be loaded first, without taking specific steps to ensure its dependancies are already loaded and available. When WoW loads a particular AddOn it uses the information in its [[TOC file]] discovered during initial scan and loads each file in order that it is found inside the TOC.
 
== Inside the TOC file ==


==Files within an addon==
Files within an addon are loaded in the order they're listed in the addon's .toc file. Files included through XML <Include file="src.xml" /> or <Script file="src.lua" /> are loaded at the time the tag is encountered while parsing. XML OnLoad script handlers execute when all of a widget's children have been created.
Files within an addon are loaded in the order they're listed in the addon's .toc file. Files included through XML <Include file="src.xml" /> or <Script file="src.lua" /> are loaded at the time the tag is encountered while parsing. XML OnLoad script handlers execute when all of a widget's children have been created.



Revision as of 18:56, 14 August 2012

WoW AddOn


This document describes the WoW UI Customization aspect of load order for loading addons. It covers when the WoW client first starts up, when AddOns load for the first time, and when user or WoW reloads the UI. The availablity of the Lua environment at various points in the process is also detailed.

General steps

  1. Intial Scan - When the WoW client first starts, a list of files and addon dependencies is built.
  2. AddOn Load - Addon code is executed after the player selects a character and chooses to enter the world.
  3. After all addon code has been loaded, the saved variables are executed. ADDON_LOADED fires after each addon's SVs have been loaded.

Initial Scan

First, the WoW client scans through all of the folders in the Interface\AddOns directory, looking for sub-folders containing a valid TOC file with a '.toc' extension, and in turn then loads each AddOn's TOC file into memory. TOC files that were not found during this step cannot be loaded by the game later and only happens on client start-up. This makes it impossible to install additional addons, or load updated TOC files, without restarting the client. For a AddOn to be considered valid, it must have a single word folder directly in the Interface\AddOns folder, and must have a matching named '.toc' file, such as a 'MyAddon' folder with a 'MyAddOn.toc' underneath it. That is all that is requred.

AddOn Load

AddOn loading occurs when the player logs in. The dependency information in the .toc files is used, in part, to compute the order in which the addons files will be loaded, as well as the natural order in which the AddOns were discovered during hte scan process. For AddOns with dependancies, an individual addon may not assume that all of the other addons that it depends on will be loaded first, without taking specific steps to ensure its dependancies are already loaded and available. When WoW loads a particular AddOn it uses the information in its TOC file discovered during initial scan and loads each file in order that it is found inside the TOC.

Inside the TOC file

Files within an addon are loaded in the order they're listed in the addon's .toc file. Files included through XML <Include file="src.xml" /> or <Script file="src.lua" /> are loaded at the time the tag is encountered while parsing. XML OnLoad script handlers execute when all of a widget's children have been created.

When the addon code is first loaded during this step, only basic information about the player -- name, class, race and realm -- is available.

To illustrate the loading order, consider the following addon code example:

LoadingOrder.toc

##Interface: 30000
##Title: Loading Order Demo
file1.lua
file2.xml
file3.lua

file1.lua

print("This loads first")

file2.xml

<Ui>
  <Frame name="TemplateFrame" virtual="true">
   <Frames>
    <Frame>
     <Scripts>
      <OnLoad>
        print("Inherited elements of the frame are processed first."); 
      </OnLoad>
     </Scripts>
    </Frame>
   </Frames>
  </Frame>
  <Frame inherits="TemplateFrame">
   <Frames>
    <Frame>
     <Scripts>
      <OnLoad>
        print("First child frame's OnLoad fires first")
      </OnLoad>
     </Scripts>
    </Frame>
    <Frame>
     <Scripts>
      <OnLoad>
        print("Second child frame's OnLoad fires second")
      </OnLoad>
     </Scripts>
    </Frame>
     <Scripts>
      <OnLoad>
        print("Parent frame's OnLoad fires after its children's.")
      </OnLoad>
     </Scripts>
   </Frames>
  </Frame>
  <Script file="file2.5.lua"/>
</Ui>

file2.5.lua

print("Files included in XML are executed as they are encountered");

file3.lua

print("This concludes this presentation");

Saved variables loading

After the addon code has been loaded, the loading process can be followed by registering for various events, listed here in order of firing.

  1. ADDON_LOADED
    • This event fires whenever an AddOn has finished loading and the SavedVariables for that AddOn have been loaded from their file.
  2. SPELLS_CHANGED
    • This event fires shortly before the PLAYER_LOGIN event and signals that information on the user's spells has been loaded and is available to the UI.
  3. PLAYER_LOGIN
    • This event fires immediately before PLAYER_ENTERING_WORLD.
    • Most information about the game world should now be available to the UI.
    • All Sizing and Positioning of frames is supposed to be completed before this event fires.
    • AddOns that want to do one-time initialization procedures once the player has "entered the world" should use this event instead of PLAYER_ENTERING_WORLD.
  4. PLAYER_ENTERING_WORLD
    • This event fires immediately after PLAYER_LOGIN
    • Most information about the game world should now be available to the UI. If this is an interface reload rather than a fresh log in, talent information should also be available.
    • All Sizing and Positioning of frames is supposed to be completed before this event fires.
    • This event also fires whenever the player enters/leaves an instance and generally whenever the player sees a loading screen
  5. PLAYER_ALIVE
    • This event fires after PLAYER_ENTERING_WORLD
    • Quest and Talent information should now be available to the UI

Until 3.0, VARIABLES_LOADED used to fire upon completion of the addon loading process; since 3.0, it is fired in response to CVars, Keybindings and other associated "Blizzard" variables being loaded, and may therefore be delayed until after PLAYER_ENTERING_WORLD. The event may still be useful to override positioning data stored in layout-cache.txt

Load On Demand behavior

Load on Demand addons cannot rely on most of the event sequence being fired for them; only ADDON_LOADED is a reliable indication that the saved variables for your LoD addon have been loaded.

See also

  • Handling events for information on how to sign up to receive event notifications