mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-17 01:23:51 +00:00
Implement basic trade request/accept/decline flow
- Parse SMSG_TRADE_STATUS for all 20+ status codes: incoming request, open/cancel/complete/accept notifications, error conditions (too far, wrong faction, stunned, dead, trial account, etc.) - SMSG_TRADE_STATUS_EXTENDED consumed via shared handler (no full item window yet; state tracking sufficient for accept/decline flow) - Add acceptTradeRequest() (CMSG_BEGIN_TRADE), declineTradeRequest(), acceptTrade() (CMSG_ACCEPT_TRADE), cancelTrade() (CMSG_CANCEL_TRADE) - Add BeginTradePacket, CancelTradePacket, AcceptTradePacket builders - Add renderTradeRequestPopup(): shows "X wants to trade" with Accept/Decline buttons when tradeStatus_ == PendingIncoming - TradeStatus enum tracks None/PendingIncoming/Open/Accepted/Complete
This commit is contained in:
parent
b4f6ca2ca7
commit
f369fe9c6e
6 changed files with 178 additions and 0 deletions
|
|
@ -206,6 +206,7 @@ private:
|
|||
void renderGroupInvitePopup(game::GameHandler& gameHandler);
|
||||
void renderDuelRequestPopup(game::GameHandler& gameHandler);
|
||||
void renderLootRollPopup(game::GameHandler& gameHandler);
|
||||
void renderTradeRequestPopup(game::GameHandler& gameHandler);
|
||||
void renderBuffBar(game::GameHandler& gameHandler);
|
||||
void renderLootWindow(game::GameHandler& gameHandler);
|
||||
void renderGossipWindow(game::GameHandler& gameHandler);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue