Download
(10Kb)
Download
Updated: 12-13-18 11:06 PM
Pictures
File Info
Compatibility:
Tides of Vengeance (8.1.0)
Battle for Azeroth (8.0.1)
Updated:12-13-18 11:06 PM
Created:10-30-18 05:50 PM
Downloads:365
Favorites:1
MD5:

MooZone-1.0

Version: 2
by: jlam [More]

Overview

MooZone-1.0 is a library that provides information about the type of zone in which your character located.

API Methods

GetZone

Returns the type of zone your character is currenty in.

Code:
zone = lib:GetZone()
Returns:
  • zone - string: the type of zone, one of:
    • "world" if in an open world zone,
    • "arena" if in an arena,
    • "battleground" if in a PVP battleground,
    • "dungeon" if in a manually-created dungeon group,
    • "raid" if in a manually-created raid group,
    • "scenario" if in a scenario,
    • "lfg_dungeon" if in a Dungeon Finder group,
    • "lfg_raid" if in a Raid Finder group.
GetLocalizedZone

Returns the localized zone name.

Code:
localizedZone = lib:GetLocalizedZone(zone)
Arguments:
  • zone - string: the type of zone, see GetZone
Returns:
  • localizedZone - string: the localized zone name
ZoneIterator

Returns an iterator that gives key-value pairs of zone and localized zone name.

Code:
for zone, localizedZone in lib:ZoneIterator() do
    ...
end
RegisterCallback

Registers a function to handle the specified callback.

Code:
lib.RegisterCallback(handler, callback, method, arg)
Arguments:
  • handler - table/string: your addon object or another table containing a function at handler[method], or a string identifying your addon
  • callback - string: the name of the callback to be registered
  • method - string/function/nil: a key into the handler table, or a function to be called, or nil if handler is a table and a function exists at handler[callback]
  • arg - a value to be passed as the first argument to the callback function specified by method
Notes:
  • If handler is a table, method is a string, and handler[method] is a function, then that function will be called with handler as its first argument, followed by the callback name and the callback-specific arguments.
  • If handler is a table, method is nil, and handler[callback] is a function, then that function will be called with handler as its first argument, followed by the callback name and the callback-specific arguments.
  • If handler is a string and method is a function, then that function will be called with the callback name as its first argument, followed by the callback-specific arguments.
  • If arg is non-nil, then it will be passed to the specified function. If handler is a table, then arg will be passed as the second argument, pushing the callback name to the third position. Otherwise, arg will be passed as the first argument.
UnregisterCallback

Unregisters a specified callback.

Code:
lib.UnregisterCallback(handler, callback)
Arguments:
  • handler - table/string: your addon object or a string identifying your addon
  • callback - string: the name of the callback to be unregistered
Callbacks

MooZone-1.0 provides the following callbacks to notify interested addons when the zone type has changed.

MooZone_ZoneChanged

Fires when the zone type in which the character is located changes.

Arguments:
  • oldZone - string: the previous zone type, see GetZone
  • newZone - string: the current zone type, see GetZone
License

MooZone-1.0 is released under the 2-clause BSD license.

Feedback

MooZone-1.0
2 (2018-12-14)
Full Changelog Previous releases
  • Bump the minor version to 2 for release.
  • Bump the TOC interface for BfA 8.1.
  • Slight debugging modifications.
    * Change the default verbosity level to 2 to reduce output.
    * Change the default debugging frame to ChatFrame3.
    * Modify the debugging message for when a zone is updated to
    indicate that the MooZone_ZoneChanged message is being fired.
  • Add WoWInterface project ID for use by packager/release.sh.
Optional Files (0)


There have been no comments posted to this file.
Be the first to add one.



Category Jump: