ddnet/src/engine/client/friends.h

34 lines
1 KiB
C
Raw Normal View History

2011-03-23 12:06:35 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#ifndef ENGINE_CLIENT_FRIENDS_H
#define ENGINE_CLIENT_FRIENDS_H
#include <engine/friends.h>
class CFriends : public IFriends
{
CFriendInfo m_aFriends[MAX_FRIENDS];
int m_NumFriends;
static void ConAddFriend(IConsole::IResult *pResult, void *pUserData, int ClientID);
static void ConRemoveFriend(IConsole::IResult *pResult, void *pUserData, int ClientID);
2011-03-23 12:06:35 +00:00
static void ConfigSaveCallback(IConfig *pConfig, void *pUserData);
2011-03-23 12:06:35 +00:00
public:
CFriends();
2011-03-23 12:06:35 +00:00
void Init();
2011-03-23 12:06:35 +00:00
int NumFriends() const { return m_NumFriends; }
const CFriendInfo *GetFriend(int Index) const;
2011-06-26 15:10:13 +00:00
int GetFriendState(const char *pName, const char *pClan) const;
bool IsFriend(const char *pName, const char *pClan, bool PlayersOnly) const;
2011-03-23 12:06:35 +00:00
void AddFriend(const char *pName, const char *pClan);
void RemoveFriend(const char *pName, const char *pClan);
void RemoveFriend(int Index);
};
#endif