All Projects → Rochet2 → AIO

Rochet2 / AIO

Licence: GPL-2.0 license
AIO is a pure lua server-client communication system for Eluna and WoW.

Programming Languages

lua
6591 projects

Projects that are alternatives of or similar to AIO

Weakauras2
World of Warcraft addon that provides a powerful framework to display customizable graphics on your screen.
Stars: ✭ 731 (+1362%)
Mutual labels:  addon, world-of-warcraft
TellMeWhen
TellMeWhen is a combat tracking AddOn for World of Warcraft Retail and Classic
Stars: ✭ 69 (+38%)
Mutual labels:  addon, world-of-warcraft
Ajour
A World of Warcraft addon manager written in Rust.
Stars: ✭ 803 (+1506%)
Mutual labels:  addon, world-of-warcraft
Wildpants
Shared services between Bagnon and Combuctor. Pants are a dangerous foe indeed.
Stars: ✭ 19 (-62%)
Mutual labels:  addon, world-of-warcraft
Pfui
A User Interface Replacement for World of Warcraft: Vanilla & TBC
Stars: ✭ 226 (+352%)
Mutual labels:  addon, world-of-warcraft
Dungeontools
Fork of Nnoga's Mythic Dungeon Tools addon to restore mob data and improve upon the base code!
Stars: ✭ 329 (+558%)
Mutual labels:  addon, world-of-warcraft
Elvui
ElvUI for World of Warcraft - The Burning Crusade (2.4.3)
Stars: ✭ 89 (+78%)
Mutual labels:  addon, world-of-warcraft
ElvUI-5.4.8
ElvUI for World of Warcraft - Mists of Pandaria (5.4.8)
Stars: ✭ 20 (-60%)
Mutual labels:  addon, world-of-warcraft
Bagnon
Single window displays for you items
Stars: ✭ 125 (+150%)
Mutual labels:  addon, world-of-warcraft
Shestakui classic
ShestakUI for WoW Classic (1.13.2)
Stars: ✭ 108 (+116%)
Mutual labels:  addon, world-of-warcraft
RaidBrowser
Bringing LFR to Wrath of the Lich King
Stars: ✭ 19 (-62%)
Mutual labels:  addon, world-of-warcraft
pfQuest
A Questhelper and Database Addon for World of Warcraft: Vanilla & TBC
Stars: ✭ 109 (+118%)
Mutual labels:  addon, world-of-warcraft
Total-RP-3
The best roleplaying add-on for World of Warcraft.
Stars: ✭ 25 (-50%)
Mutual labels:  addon, world-of-warcraft
Cursebreaker
TUI/CLI addon updater for World of Warcraft.
Stars: ✭ 597 (+1094%)
Mutual labels:  addon, world-of-warcraft
SpartanUI
SpartanUI
Stars: ✭ 28 (-44%)
Mutual labels:  addon, world-of-warcraft
Yaht
Yet another Hunter Timer for WoW Classic
Stars: ✭ 63 (+26%)
Mutual labels:  addon, world-of-warcraft
AdiBags
WoW Addon — Adirelle's bag addon.
Stars: ✭ 94 (+88%)
Mutual labels:  addon, world-of-warcraft
OmniCC
Cooldown count for everything
Stars: ✭ 81 (+62%)
Mutual labels:  addon, world-of-warcraft
Tdbattlepetscript
Battle pet combat script for wow.
Stars: ✭ 97 (+94%)
Mutual labels:  addon, world-of-warcraft
Elvui
ElvUI for World of Warcraft - Wrath of the Lich King (3.3.5a)
Stars: ✭ 229 (+358%)
Mutual labels:  addon, world-of-warcraft

AIO

AIO is a pure lua server-client communication system for Eluna and WoW.
AIO is designed for sending lua addons and data to player from server and data from player to server.
Made for Eluna Lua Engine. Tested on 3.3.5a and should work on other patches. Tested with Lua 5.1 and 5.2.
Third party C++ support is made by SaiFi0102. It allows you to use AIO without requiring Eluna.

Backlink: https://github.com/Rochet2/AIO

Installation

  • Make sure you have Eluna Lua Engine
  • Copy the AIO_Client to your WoW_installation_folder/Interface/AddOns/
  • Copy the AIO_Server to your server_root/lua_scripts/
  • See configuration settings on AIO.lua file. You can tweak both the server and client file respectively
  • When developing an addon it is recommended to have AIO_ENABLE_PCALL off and sometimes you may need AIO_ENABLE_DEBUG_MSGS on to see some information about what is going on.

About

AIO works so that the server and client have their own lua scripts that handle sending and receiving messages from and to eachother. When an addon added to AIO as an addon to send to the client, it will be processed (depending on settings, obfuscated and compressed) and stored in memory to wait for sending to players. All addons that are added are executed on client side in the order they were added to AIO. AIO is using a cache system to cache the addon codes to client side so they dont need to be sent on every login. Only if an addon is changed or added the new addon is sent again. The user can also clear his local AIO cache in which case the addons will be sent again. The full addon code sent to client is executed on client as is. The code has full access to the client side addon API. The client-server messaging is handled with an AIO message helper class. It holds and manages the data to send over.

Commands

There are some commands that may be useful.
On client side use /aio help to see a list of them. On server side use .aio help to see a list of them.

Safety

The messaging between server and client is coded to be safe

  • you can limit the cache sizes, delays and other in AIO.lua
  • data received from client is only deserialized - no compressions etc.
  • serialization library is not using loadstring to make deserialization safe
  • when receiving messages the code is run in pcall to prevent all user sent data creating errors. Set debug messages on in AIO.lua to see all errors on server side as well
  • the code is only as safe as you make it. In your own codes make sure all data the client sends to server and you use is the type you expect it to be and is in the range you expect it to be in. (example: math.huge is a number type, but not a real number)
  • make sure your code has asserts in place and is fast. There is a tweakable timeout in AIO.lua just to be sure that the server will not hang if you happen to write bad or abusable code or if a bad user finds a way to hang the system
  • Do check the AIO.lua settings and tweak them to your needs for both client and server respectively. This is important to fend off bad users and make things work better with your setup.

Handlers

AIO has a few handlers by default that are used for the internal codes and you can use them if you wish.
You can also code your own handlers and add them to AIO with the functions described in API section. See AIO.RegisterEvent(name, func) and AIO.AddHandlers(name, handlertable)

-- Force reload of player UI
-- Displays a message that UI is being force reloaded and reloads UI when player
-- clicks anywhere in his screen.
AIO.Handle(player, "AIO", "ForceReload")

-- Force reset of player UI
-- Resets AIO addon saved variables and displays a message that UI is being force
-- reloaded and reloads UI when player clicks anywhere in his screen.
AIO.Handle(player, "AIO", "ForceReset")

API

For example scripts see the Examples folder. The example files are named according to their final execution location. To run the examples place all of their files to server_root/lua_scripts/.

There are some client side commands. Use the slash command /aio ingame to see list of commands

-- AIO is required this way due to server and client differences with require function
local AIO = AIO or require("AIO")

-- Returns true if we are on server side, false if we are on client side
isServer = AIO.IsServer()

-- Returns AIO version - note the type is not guaranteed to be a number
version = AIO.GetVersion()

-- Adds the file at given path to files to send to players if called on server side.
-- The addon code is trimmed according to settings in AIO.lua.
-- The addon is cached on client side and will be updated only when needed.
-- Returns false on client side and true on server side. By default the
-- path is the current file's path and name is the file's name
-- 'path' is relative to worldserver.exe but an absolute path can also be given.
-- You should call this function only on startup to ensure everyone gets the same
-- addons and no addon is duplicate.
added = AIO.AddAddon([path, name])
-- The way this is designed to be used is at the top of an addon file so that the
-- file is added and not run if we are on server, and just run if we are on client:
if AIO.AddAddon() then
    return
end

-- Similar to AddAddon - Adds 'code' to the addons sent to players. The code is trimmed
-- according to settings in AIO.lua. The addon is cached on client side and will
-- be updated only when needed. 'name' is an unique name for the addon, usually
-- you can use the file name or addon name there. Do note that short names are
-- better since they are sent back and forth to indentify files.
-- The function only exists on server side.
-- You should call this function only on startup to ensure everyone gets the same
-- addons and no addon is duplicate.
AIO.AddAddonCode(name, code)

-- Triggers the handler function that has the name 'handlername' from the handlertable
-- added with AIO.AddHandlers(name, handlertable) for the 'name'.
-- Can also trigger a function registered with AIO.RegisterEvent(name, func)
-- All triggered handlers have parameters handler(player, ...) where varargs are
-- the varargs in AIO.Handle or msg.Add
-- This function is a shorthand for AIO.Msg():Add(name, handlername, ...):Send()
-- For efficiency favour creating messages once and sending them rather than creating
-- them over and over with AIO.Handle().
-- The server side version.
AIO.Handle(player, name, handlername[, ...])
-- The client side version.
AIO.Handle(name, handlername[, ...])

-- Adds a table of handler functions for the specified 'name'. When a message like:
-- AIO.Handle(name, "HandlerName", ...) is received, the handlertable["HandlerName"]
-- will be called with player and varargs as parameters.
-- Returns the passed 'handlertable'.
-- AIO.AddHandlers uses AIO.RegisterEvent internally, so same name can not be used on both.
handlertable = AIO.AddHandlers(name, handlertable)

-- Adds a new callback function that is called if a message with the given
-- name is recieved. All parameters the sender sends in the message will
-- be passed to func when called.
-- Example message: AIO.Msg():Add(name, ...):Send()
-- AIO.AddHandlers uses AIO.RegisterEvent internally, so same name can not be used on both.
AIO.RegisterEvent(name, func)

-- Adds a new function that is called when the initial message is sent to the player.
-- The function is called before sending and the initial message is passed to it
-- along with the player if available: func(msg[, player])
-- In the function you can modify the passed msg and/or return a new one to be
-- used as initial message. Only on server side.
-- This can be used to send for example initial values (like player stats) for the addons.
-- If dynamic loading is preferred, you can use the messaging API to request the values
-- on demand also.
AIO.AddOnInit(func)

-- Key is a key for a variable in the global table _G.
-- The variable is stored when the player logs out and will be restored
-- when he logs back in before the addon codes are run.
-- These variables are account bound.
-- Only exists on client side and you should call it only once per key.
-- All saved data is saved to client side.
AIO.AddSavedVar(key)

-- Key is a key for a variable in the global table _G.
-- The variable is stored when the player logs out and will be restored
-- when he logs back in before the addon codes are run.
-- These variables are character bound.
-- Only exists on client side and you should call it only once per key.
-- All saved data is saved to client side.
AIO.AddSavedVarChar(key)

-- Makes the addon frame save it's position and restore it on login.
-- If char is true, the position saving is character bound, otherwise account bound.
-- Only exists on client side and you should call it only once per frame.
-- All saved data is saved to client side.
AIO.SavePosition(frame[, char])

-- AIO message class:
-- Creates and returns a new AIO message that you can append stuff to and send to
-- client or server. Example: AIO.Msg():Add("MyHandlerName", param1, param2):Send(player)
-- These messages handle all client-server communication.
msg = AIO.Msg()

-- The name is used to identify the handler function on receiving end.
-- A handler function registered with AIO.RegisterEvent(name, func)
-- will be called on receiving end with the varargs.
function msgmt:Add(name, ...)

-- Appends messages to eachother, returns self
msg = msg:Append(msg2)

-- Sends the message, returns self
-- Server side version - sends to all players passed
msg = msg:Send(player, ...)
-- Client side version - sends to server
msg = msg:Send()

-- Returns true if the message has something in it
hasmsg = msg:HasMsg()

-- Returns the message as a string
msgstr = msg:ToString()

-- Erases the so far built message and returns self
msg = msg:Clear()

-- Assembles the message string from added and appended data. Mainly for internal use.
-- Returns self
msg = msg:Assemble()

Included dependencies

You do not need to get these, they are already included

Special thanks

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].