WoW:Telepathy (AddOn)
Jump to navigation
Jump to search
WoW AddOn Library Page
- Not 3.0.2 compatible.
- Network Chat Communication Library for Mods
- Telepathy is a chat communications library for cross client addon information sharing. It uses SendAddonMessage for "PARTY", "RAID", "GUILD", "BATTLEGROUND" or "WHISPER" communication and a hidden (faction/server wide) chat channel for "GLOBAL" communication called "GlobalComm".
- Telepathy maintains a user list of everyone in the "GlobalComm" channel, but because other addons also use this standard comm channel it does not mean they are necessarily using Telepathy. Telepathy will automatically join "GlobalComm" after the other channels have loaded if an addon has registered a listener for "GLOBAL". The player can also opt to disable auto-join/leave using "/gcautojoin 0" or "/gcautojoin 1" to enable it again.
- Embedded Libs (Standalone vers): ChatThrottleLib (AddOn), SeaHooks (AddOn), SeaPrint (AddOn), SeaString (AddOn), Chronos (AddOn) and Satellite (AddOn)
Download
- The most current version is available at www.cosmosui.org.
- Stand alone available at www.wowinterface.com.
- Change Log
Features
- Embeddable library
- Works for raids, parties, guilds and battlegrounds
- Standard/shared global channel name (only ever uses 1 and it is only joined when used)
- Addons merely needs to register a listener and send messages with the Telepathy API for minimal usage
- Performs basic flood control through ChatThrottleLib
- Message priority system for alerts, bulk data and normal messages.
- Datagrams are automatically fragmented, queued and reconstructed for multiple message transfers
- Telepathy.sendTable allows for serialization and direct transfer of lua tables for everything but functions
- Telepathy global messages are automatically forcibly suppressed via a ChatFrame_OnEvent hook and the other messages are not read by the default ChatFrames. This can also be circumvented for debugging.
- Verbose debug options for seeing hidden chat and diagnosing problems using Sea.io.error (prints to chatframe or optionally ImprovedErrorFrame)
Built-in Slash Commands
- /gcautojoin 1/0 - Allow (1) or Dissallow (0) auto-joining of a GlobalComm Channel when needed
Quick Start Example
Minimal Required Example
Basic Example of a Telepathy command:
Telepathy.registerListener("TelepathyTest", "WHISPER", function(msg, sender) Sea.io.printComma("TelepathyTester1: ", msg, sender) end ); Telepathy.sendMessage("TelepathyTest", "This whisper is invisible!", "WHISPER", UnitName('player'));
User Functions
- Outbound Messages
- sendMessage - Sends a hidden text message to a specified target or channel.
- sendTable - Sends a lua serialized object using Telepathy.
- Listener Registration
- registerListener - Registers a listener which will call a callback function when a message is received.
- unregisterListener - Unregisters a listener.
- isListener - Checks if the id/method is already in use.
- Global Channel Management
- isInGlobalChannel - Checks if a user (by name) is in the GlobalComm channel
- getCurrentChannelTable - Gets an iteratable list of active channels.
- getChannelCount - Returns the number of channels you are currently in.
Embedding
To embed Telepathy in your addon:
- 1) Drop the Telepathy folder in your addon folder
- 2) Either add the following to your xml file:
<Include file="Telepathy\Telepathy.xml"/>
- Or add this line to your toc file:
Telepathy\Telepathy.xml
- 3) Add the following line to your toc:
SavedVariablesPerCharacter: Telepathy_Config