Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement
For the goblin NPC, see Ace. For the pilot class, see Ace (class).

Ace is a lightweight and powerful system for building World of Warcraft AddOns. It is a new approach to addon development, a rethinking from the ground up.

Ace provides developers with the tools needed by most addons, freeing them from repeating common tasks and allowing them to jump right into the creative part of building their addons. New and experienced addon coders alike can benefit from Ace's features.

The current version is Ace3

Brief feature list and component overview of Ace2[]

AceLibrary
AceLibrary handles version compatibility of libraries - Ace ones as well as your own. It also helps with error handling.
AceOO-2.0
AceOO-2.0 provides an object-orientation framework.
AceAddon-2.0
AceAddon-2.0 is Ace's main interface to AddOns. Ace components present their functionality through it. It also handles simple initialization events.
AceComm-2.0
AceComm-2.0 Inter-player addon communications through hidden channels.
AceConsole-2.0
AceConsole-2.0 provides console I/O functionality - slash commands, easy printing, etc.
AceTab-2.0
AceTab-2.0 Provides easy tab completion support.
 
AceDB-2.0
AceDB-2.0 allows for fast, clean, and featureful saved variable access, including per-class settings and more.
AceEvent-2.0
AceEvent-2.0 allows for simple event handling, scheduling, and inter-addon communication.
AceDebug-2.0
AceDebug-2.0 simplifies AddOn debugging.
AceHook-2.1
AceHook-2.1 provides safe hooking of functions, methods, and scripts.
AceLocale-2.2
AceLocale-2.2 makes localization (translation) of your AddOns ridiculously simple.
AceModuleCore-2.0
AceModuleCore-2.0 helps you split your AddOn into separate "modules" that can easily be turned on and off. Handles enabling/disabling of events, hooks, tooltip scanners, etc for you.

Ace's design philosophy[]

The primary design philosophy of Ace is simple: less is more. This means less code, fewer resources used, less effort designing an addon, less stress on the UI. Every aspect of Ace is scrutinized for efficiency, not only in code design but in ensuring that only the necessary amount of memory and processing is used to perform a given task.

Ace seeks to consolidate this knowledge into a central resource, providing developers with a full addon framework that is easy to use, very flexible, and very powerful. This framework provides the most common components addons need, like data management and chat command handling, and it also provides a glue that links addons together and allows them to share system resources smoothly and efficiently.

Ace Resources[]

Advertisement