#ifndef __INCLUDED_STEAM_OVERLAY_H__ #define __INCLUDED_STEAM_OVERLAY_H__ #include "../dll/base.h" #include "Hook_Manager.h" #include #include enum window_state { window_state_none = 0, window_state_show = 1<<0, window_state_invite = 1<<1, window_state_join = 1<<2, window_state_lobby_invite = 1<<3, window_state_rich_invite = 1<<4 }; struct friend_window_state { uint8 window_state; union { uint64 lobbyId; char connect[k_cchMaxRichPresenceValueLength]; }; }; struct Friend_Less { bool operator()(const Friend& lhs, const Friend& rhs) const { return lhs.id() < rhs.id(); } }; class Steam_Overlay { Settings* settings; SteamCallResults* callback_results; SteamCallBacks* callbacks; RunEveryRunCB* run_every_runcb; Networking* network; // friend id, show client window (to chat and accept invite maybe) std::map friends; HWND game_hwnd; WNDPROC game_hwnd_proc; bool is_ready; bool show_overlay; Base_Hook window_hooks; ENotificationPosition notif_position; int h_inset, v_inset; // Callback infos std::queue has_friend_action; bool overlay_state_changed; Steam_Overlay(Steam_Overlay const&) = delete; Steam_Overlay(Steam_Overlay&&) = delete; Steam_Overlay& operator=(Steam_Overlay const&) = delete; Steam_Overlay& operator=(Steam_Overlay&&) = delete; bool IgnoreMsg(const MSG* lpMsg); LRESULT HookWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); static LRESULT CALLBACK sHookWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); static LRESULT WINAPI MyDispatchMessageA(const MSG* lpMsg); static LRESULT WINAPI MyDispatchMessageW(const MSG* lpMsg); static void steam_overlay_run_every_runcb(void* object); void RunCallbacks(); // Right click on friend void BuildContextMenu(Friend const& frd, friend_window_state &state); // Double click on friend void BuildFriendWindow(Friend const& frd, friend_window_state &state); public: Steam_Overlay(Settings* settings, SteamCallResults* callback_results, SteamCallBacks* callbacks, RunEveryRunCB* run_every_runcb, Networking *network); ~Steam_Overlay(); HWND GetGameHwnd() const; bool Ready() const; bool NeedPresent() const; void SetNotificationPosition(ENotificationPosition eNotificationPosition); void SetNotificationInset(int nHorizontalInset, int nVerticalInset); void SetupOverlay(); void HookReady(void* hWnd); void OverlayProc(int width, int height); void OpenOverlayInvite(CSteamID lobbyId); void OpenOverlay(const char* pchDialog); void ShowOverlay(bool state); void SetLobbyInvite(Friend friendId, uint64 lobbyId); void SetRichInvite(Friend friendId, const char* connect_str); void FriendConnect(Friend _friend); void FriendDisconnect(Friend _friend); }; #endif//__INCLUDED_STEAM_OVERLAY_H__