LFG Group Bulletin Board

LFG Group Bulletin Board

5M Downloads

[feature] Integration with official LFG Tool

juemrami opened this issue · 10 comments

commented

With patch 1.15.5, blizzard has added a version of the LFGList UI for classic wow game modes (currently only on SoD/Anniversary Realms).

This addon used to have minor support for the LFG tool back in burning crusade before Vysci forked it for wrath, but it has since been abandoned since blizzard swapped API's/Frames for the LFG Tool sometime in early Wotlk Classic.

It would be nice to re-implement the integration of the LFGList tool, there are however some limitations to the new API that make it really cumbersome to work with.

Most notably, the GetSearchResultInfo APIs result struct contains "protected strings" which are encrypted strings that only the game client can decrypt. Critically, these types of strings are used for the name and comment fields:

  • name - the posting title required when creating a group on the LFG tool (not used in the Era version of the tool)
  • comment - the optional message/comment you can use when creating a group in the LFG tool

Additionally, we can only query the API for one category at a time (categories being Dungeons, Raids, Quests, Custom, PvP).

These 2 limitations mean that we can only ever display (on the bulletin board) the LFGList tool results for a SINGLE category at a time.

commented

These 2 limitations mean that we can only ever display (on the bulletin board) the LFGList tool results for a SINGLE category at a time.

So then, i think its a little overkill to have a whole tab to display the results from the LFG Tool.
Id like a way to be able to implement the Tool into the main "Request List" tab.

  • Can use a tooltip on the refresh button to show the current category being searched
commented

related issues:

commented

So then, i think its a little overkill to have a whole tab to display the results from the LFG Tool.
Id like a way to be able to implement the Tool into the main "Request List" tab.

I opted not to go this route and keep the LFG tool in its own tab as it was easier for me to implement the new scroll frames without affecting the chat request tab.

Ive added some additional ui elements for making sure users can tell that only 1 category can be selected via a dropdown
WowClassic_chbCNMyhEA

Pull request soon.

commented

Btw there is a max limit on the results the lfg api returns, think it’s 100 if I remember. One other gotcha is the user can change the category in the tool itself and that would change the results, so just need to handle the case and update the tab accordingly

Last thing is the api is a little confusing, if I am remembering correctly it requires a hardware event to fetch any new listings but without it just updates the status of groups it previously returned. Hence why I also added it to update the list when the user opens the addon

commented

I originally went with the separate tab for couple reasons. One is that classic didn’t have the tool so it was going to be difficult to have wotlk features and classic being separate but in the same tab. Second reason is I think it had to do with keeping it sorted. The lfg tool posts dont really change so most of the time they would always end up at the bottom and basically hidden. Also performance

commented

Which integration are you talking in TBC? I don’t recall adding one in TBC but I also forgot that I didn’t upload it until TBC

commented

Btw there is a max limit on the results the lfg api returns, think it’s 100 if I remember. One other gotcha is the user can change the category in the tool itself and that would change the results, so just need to handle the case and update the tab accordingly

Last thing is the api is a little confusing, if I am remembering correctly it requires a hardware event to fetch any new listings but without it just updates the status of groups it previously returned. Hence why I also added it to update the list when the user opens the addon

yup, i already accounted for pretty much all of this.

commented

Which integration are you talking in TBC? I don’t recall adding one in TBC but I also forgot that I didn’t upload it until TBC

TBC had a group finder that was also used in early WOTLK. I was just calling it the TBC group finder. Later in WOTLK classic they updated to the one thats still used up till Cata

commented

I think this is nearing a state that im comfortable with for release.

Some notes:

  • There seems to be an error occuring on blizzards and that happens when the C_LFGList.Search method is invoked near when a LFG_LIST_SEARCH_RESULT_UPDATED event fires and trigger a UI update for the official blizzard LFG tool.
    • This is behaviour is reproducible without any addons, However this addon's LFGTool seems to trigger this error as well on occasion when invoking the named API method.
  • Currently the LFGTool tab does not respect the addon's "Combine Sub Dungeons" option
    • todo: This is minimal and only affects Dire-Maul and Scarlet-Monestary dungeons