WoWBench/Documentation
< WoWBench
Can you think of something you'd like to see? Anything that stumped you at first? Comment at the discussion page!
File invocation orderEdit
-
- framexml.toc
- addon .toc:s
Brief file descriptionsEdit
Since we're all programmers here, we know to go look in the headers in the files (yep, they're there!), but the below is a brief overview of what the WoWBench source files contain and what they're there for to get you started.
api.luaEdit
- Defines the World of Warcraft API emulation. Large.
blizzardui.tocEdit
- Pull in files that prepare WoWBench to load Blizzard UI files (FrameXML, AddOns...)
classops.luaEdit
- Basic object class operations: constructing, inheriting...
- Also defines WBClass_Base
cmdline.luaEdit
- Mostly just defines WOWB_CommandLine() - a general command line parser that can be called with command lists from elsewhere in the code (only really by the main prompt and the debgger)
- Defines a few commands that are always there - quit, exit, direct Lua execution
config.luaEdit
Configures WoWBench:
- Path to WoW
- Path to FrameXML
- Account/Character name (for SavedVariables access)
- What Lua compiler to use
- What TOC files to always load
- Various debug settings
- ...
debugger.luaEdit
- Command line debugger
- Debug related utility functions
- Functions to register extra information about references (for use in stack/variable dumping)
uixml.luaEdit
- Define WOWB_XMLTagInfo[] and WOWB_ROOTXMLTAG for parsing World of Warcraft XML files
- Before uixml.lua is pulled in, these are configured for parsing "world" files by worldxml.lua. In theory, it could all be parsed as arguments to the XML parser, but it gets somewhat clunky since they are used in several functions.
utils.luaEdit
- Lots of non-WoW-specific utility functions
widgets.luaEdit
- Defines the objects and methods of the Widget API. Large.
world.luaEdit
- Low level functions for interacting with the world (targetting object/units by name, mousing over units/objects, etc)
- Defines WBClass_WorldThing - the base class for everything in world.xml.
- Defines WBClass_Unit, WBClass_Player, WBClass_NPC, WBClass_Object, WBClass_Item
world.tocEdit
- Pulls in game world related files. (See the load order graph above).
world.xmlEdit
- Defines all characters, npcs, objects and items available in the world.
- Also defines a large chunk of the "game engine" functionality for different types of things via the event handlers in the objects
worldcmds.luaEdit
- Defines commands available in the main commandline (click, fire, say, etc..). The command structures are used by the command line driver in cmdline.lua.
worldxml.luaEdit
wowbench.luaEdit
- The head honcho, the big one, the man with the mojo, the .... erhm, where was I...
- The file that calls everything else. Basically does not have a lot of functionality itself; mostly related to getting files loaded. See the load order graph above.
xmlparse.luaEdit
- Defines a slightly quirky XML parser:
- It operates by translating XML to Lua, to avoid several layers of work that magically get handled by the Lua interpreter in the end
- In the end, the TOC parser function will compile the generated Lua files into a single chunk of compiled Lua, which loads fiendlishly fast.
- Bastard mutant brainchild of Mikk. Blame him. :-)
Function documentationEdit
All nontrivial functions should have in-source function headers that briefly describes what the function does. Preferably it will also mention when it is getting called if it is a special-purpose function. Example:
--------------------------------------------------------------------- -- function WOWB_DumpVar(var,maxdepth,ind) -- -- Return contents of a variable as an ascii dump. Will recurse into tables. -- Will attempt to avoid recursion to back references -- Will never follow names in config.lua:_DUMPDONTFOLLOW[] -- Uses plenty of magic set up elsewhere in the code to make more sense of -- table and function references. -- -- var: the variable to be dumped -- maxdepth: maximum recursion depth -- ind: initial indent string, can be nil or e.g. " " --
See alsoEdit
- WoWBench/FAQ
- WoWBench/Extending
- Back to WoWBench