/*
** Command & Conquer Renegade(tm)
** Copyright 2025 Electronic Arts Inc.
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program. If not, see .
*/
/******************************************************************************
*
* FILE
* $Archive: /Commando/Code/Commando/WOLBuddyMgr.h $
*
* DESCRIPTION
*
* PROGRAMMER
* Denzil E. Long, Jr.
* $Author: Denzil_l $
*
* VERSION INFO
* $Revision: 14 $
* $Modtime: 1/31/02 2:52p $
*
******************************************************************************/
#ifndef __WOLBUDDYMGR_H__
#define __WOLBUDDYMGR_H__
#include
#include
#include
#include
#include
#include
#include
#if defined(_MSC_VER)
#pragma warning(push, 3)
#endif
#include
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
class DlgPasswordPrompt;
class WOLBuddyMgr;
typedef enum
{
BUDDYLIST_CHANGED = 1,
IGNORELIST_CHANGED,
BUDDYINFO_CHANGED
} WOLBuddyMgrAction;
typedef TypedActionPtr WOLBuddyMgrEvent;
typedef enum
{
PAGE_ERROR = 0,
PAGE_NOT_THERE = 1,
PAGE_TURNED_OFF,
PAGE_SENT,
PAGE_RECEIVED,
INVITATION_RECEIVED,
INVITATION_DECLINED
} WOLPagedAction;
typedef TypedActionPtr WOLPagedEvent;
class WOLBuddyMgr :
public RefCountClass,
public Notifier,
public Notifier,
protected Observer,
protected Observer,
protected Observer,
protected Observer,
protected Signaler
{
public:
typedef std::vector< WideStringClass > IgnoreList;
typedef WWOnline::PageMessageList PageList;
typedef enum
{
DECLINE_MIN = 0,
DECLINE_BYUSER = 1,
DECLINE_NOTBUDDY,
DECLINE_NOTAPPLICABLE,
DECLINE_BUSY,
DECLINE_MAX
} DECLINE_REASON;
static WOLBuddyMgr* GetInstance(bool createOK);
// Get a description of a users location.
static void GetLocationDescription(const RefPtr& user, WideStringClass& description);
// Request the buddy list anew.
void RefreshBuddyList(void);
// Get list of buddies
const WWOnline::UserList& GetBuddyList(void) const
{return mWOLSession->GetBuddyList();}
// Get a user from our buddy list
const RefPtr FindBuddy(const WCHAR* name) const;
// Add a user to our buddy list
void AddBuddy(const WCHAR* name);
// Remove a user from our buddy list
void RemoveBuddy(const WCHAR* name);
// Check if a user is in our buddy list
bool IsBuddy(const WCHAR* name) const;
// Request update to the location of our buddies.
void RefreshBuddyInfo(void);
// Add a user to the ignore list
void AddIgnore(const WCHAR* name);
// Remove a user from the ignore list.
void RemoveIgnore(const WCHAR* name);
// Check if a user is in the ignore list.
bool IsIgnored(const WCHAR* name) const;
// Get a list of usernames we are ignoring
const IgnoreList& GetIngoreList(void) const
{return mIgnoreList;}
const PageList& GetPageList(void) const
{return mPageList;}
// Enable the display of a dialog when paged.
// This function sets an internal counter that determines whether a dialog
// should be displayed when a page message is received.
void ShowPagedDialog(void);
// Disable the display of a dialog when paged.
// This function sets an internal counter that determines whether a dialog
// should be displayed when a page message is received.
void HidePagedDialog(void);
// Clear all the queued pages.
void ClearPageList(void);
// Get the name of the last user who we received a page from.
const WCHAR* GetLastPagersName(void) const
{return mLastPagersName;}
// Send a page message to user
void PageUser(const WCHAR* name, const WCHAR* message);
// Join a user at his location
void JoinUser(const RefPtr& user);
// Check if we are in a position to invite users.
bool CanInviteUsers(void) const;
// Invite a user to our location
void InviteUser(const WCHAR* username, const WCHAR* message);
// Decline an invitation to join a user.
void DeclineInvitation(const WCHAR* username, DECLINE_REASON reason = DECLINE_BYUSER);
protected:
WOLBuddyMgr();
~WOLBuddyMgr();
bool FinalizeCreate(void);
void LoadIgnoreList(void);
void SaveIgnoreList(void);
bool IsCommand(const WCHAR* message);
void ProcessPendingJoin(void);
void GotoPendingJoinLocation(const wchar_t* password);
void ReceiveSignal(DlgPasswordPrompt&);
bool IsInvitation(const WCHAR* message);
void InvitationReceived(WWOnline::PageMessage& page);
void DisplayInvitation(const RefPtr& user, const WCHAR* message);
bool IsInvitationDeclined(const WCHAR* message);
void InvitationDeclined(const WCHAR* username, DECLINE_REASON reaon);
void HandleNotification(WWOnline::BuddyEvent&);
void HandleNotification(WWOnline::UserEvent&);
void HandleNotification(WWOnline::PageMessage&);
void HandleNotification(WWOnline::PageSendStatus&);
DECLARE_NOTIFIER(WOLBuddyMgrEvent)
DECLARE_NOTIFIER(WOLPagedEvent)
private:
static WOLBuddyMgr* _mInstance;
RefPtr mWOLSession;
IgnoreList mIgnoreList;
PageList mPageList;
PageList mInvitations;
WideStringClass mLastPagersName;
unsigned long mHidePagedDialog;
RefPtr mPendingJoin;
};
#endif __WOLBUDDYMGR_H__