mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
Add chat channels, chat settings, and fix missing chat text
Fix WotLK chat parser not stripping null terminators from messages, fix channel message local echo missing channelName, expand default channels to General/Trade/LocalDefense/LookingForGroup with configurable auto-join, add Classic packet format for join/leave channel, display channel index prefix in chat, and add Chat settings tab with timestamps, font size, and auto-join toggles.
This commit is contained in:
parent
bdedab7c1b
commit
c2467cf2fc
8 changed files with 197 additions and 7 deletions
|
|
@ -215,6 +215,17 @@ private:
|
|||
GLuint backpackIconTexture_ = 0;
|
||||
GLuint emptyBagSlotTexture_ = 0;
|
||||
|
||||
// Chat settings
|
||||
bool chatShowTimestamps_ = false;
|
||||
int chatFontSize_ = 1; // 0=small, 1=medium, 2=large
|
||||
bool chatAutoJoinGeneral_ = true;
|
||||
bool chatAutoJoinTrade_ = true;
|
||||
bool chatAutoJoinLocalDefense_ = true;
|
||||
bool chatAutoJoinLFG_ = true;
|
||||
|
||||
// Join channel input buffer
|
||||
char joinChannelBuffer_[128] = "";
|
||||
|
||||
static std::string getSettingsPath();
|
||||
|
||||
// Gender placeholder replacement
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue