AutoAccept cleanup, fix, enhancements, imgui settings panel
(#4)
* fix lack of spaces + ci_find
* fix !_strcmpi usage
* fix bool to int truncation swapping !_strnicmp to ci_equals
* Adjust translocate / anchor behavior
- Correct issue where if you had translocate turned off, you would still "fall through" to your trusted friends and accept any translocate from them
- - now you can use "always, trusted, never" option for translocate
- Anchor will now respect the true/false for anchor usage and not fall through to accept any anchors from trusted friends if anchor usage is turned off
* const and deprecations
* Cosmetic
- PLUGINMSG
- normalize colors
* output color adjustment
* pChar -> pLocalPC
* AutoAccept - dirty settings tracking
* !_strcmpi -> ci_equals
* AutoAccept imgui panel
- added imgui settings panel to /mqsettings plugins/autoaccept
- added ability to add your group / raid to trusted member list
* AutoAccept - PR updates
- updated variable name
- bracket adjustment
- update misc missing spaces between declarative "="
- const std::string& to const std::string_view
* Additional updates from PR
- static cast size_t to int for output
- missing spaces in comparative "=="
- adjust brackets
- remove superfluous .c_string() usage
- adjusted const char* to const std::string_view for AddTrustedName
- updated "0" to ImGuiMouseButton_Left
- fixed DoCommand deprecation
* brackets
* Cleanup + add functionality to group/raid invite
- group invitations will now check onpulse if you have a pending invitation and check if that pending invitation's name matches someone in your trusted name list.
- - this means no longer missing a "accept invitation" because you were casting a spell or otherwise busy
- misc cleanup
* AutoAccept
- missing update
- put } else { back despite making my eyes twitch
* PR updates
- dynamic_cast -> static_cast
- removed superfluous CXWnd* cast
* Curly brace always on new line
- moved all opening curly braces to new line
* Ensure everything has a curly brace
* no "||" at the end of a line
* readability adjustment