Skip to content

WoW DataStore Addon - Main Module

Notifications You must be signed in to change notification settings

KyrunaKJ/DataStore

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 

Repository files navigation

DataStore

DataStore is the main component of a series of add-ons that serve as data repositories in World of Warcraft. Their respective purpose is to offer scanning and storing services to other add-ons.

The advantages of this approach are:

  • data is scanned only once for all client addons (performance gain).
  • data is stored only once for all client addons (memory gain).
  • add-on authors can spend more time coding higher level features.
  • each module is an independant add-on, and therefore has its own SavedVariables file, meaning that you could clean _Crafts without disturbing _Containers.

Scope : a note to contributing authors

The core of the database is based on my work in Altoholic, and is thus designed with multiple-account support in mind. If client add-ons want to store data from foreign accounts, the database will be ready for it. Nothing is final at this point though, feel free to contribute, as the concept can and will be perfected.

The scope of each addons is to provide common methods for client addons. For instance, DataStore_Crafts embeds LibPeriodicTable-3.1-Tradeskill allowing it to give more than just scanning & storing data. However, the goal is not to put everything into these addons, they must be seen as an abstraction layer and a service provider, nothing more.

These libraries cannot and should not be embedded, as they all manage their respective SavedVariables.

Existing modules

Each module will exist as a separate add-on, so that authors can package only the ones they want with their own project.

More modules will come later.

Information Pages

Project overview : A slightly more detailed overview of the scope
API : Samples of commonly used methods (work-in-progress)

The development of DataStore compatible modules is not authorized without my express consent.

Any authorized development must respect the coding style/structure of existing modules, and respect Blizzard's TOS.

Current list of authorized modules : none

About

WoW DataStore Addon - Main Module

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 94.4%
  • XSLT 5.6%