SteamFriend, Image

This commit is contained in:
Garry Newman 2016-07-18 12:33:13 +01:00
parent 83f328ad35
commit 865f85bc53
3 changed files with 120 additions and 0 deletions

View File

@ -21,6 +21,34 @@ public Friends Friends
}
}
public class SteamFriend
{
/// <summary>
/// Steam Id
/// </summary>
public ulong Id { get; internal set; }
/// <summary>
/// Return true if is a friend. Returns false if blocked, request etc.
/// </summary>
public bool IsFriend { get; internal set; }
/// <summary>
/// Returns true if this friend is playing a game (and we know about it)
/// </summary>
public bool IsPlaying { get; internal set; }
/// <summary>
/// If they're current in a game, what are they playing?
/// </summary>
public int CurrentAppId;
/// <summary>
/// Their current display name
/// </summary>
public string Name;
}
public class Friends
{
internal Client client;
@ -36,5 +64,80 @@ public string GetName( ulong steamid )
return client.native.friends.GetFriendPersonaName( steamid );
}
private List<SteamFriend> _allFriends;
public IEnumerable<SteamFriend> All
{
get
{
if ( _allFriends == null )
{
_allFriends = new List<SteamFriend>();
Refresh();
}
return _allFriends;
}
}
public void Refresh()
{
_allFriends.Clear();
//client.native.friends.GetFriendCount( 0 );
}
public enum AvatarSize
{
/// <summary>
/// Should be 32x32 - but make sure to check!
/// </summary>
Small,
/// <summary>
/// Should be 64x64 - but make sure to check!
/// </summary>
Medium,
/// <summary>
/// Should be 184x184 - but make sure to check!
/// </summary>
Large
}
public Image GetAvatar( AvatarSize size, ulong steamid )
{
var imageid = 0;
switch ( size )
{
case AvatarSize.Small:
imageid = client.native.friends.GetSmallFriendAvatar( steamid );
break;
case AvatarSize.Medium:
imageid = client.native.friends.GetMediumFriendAvatar( steamid );
break;
case AvatarSize.Large:
imageid = client.native.friends.GetLargeFriendAvatar( steamid );
break;
}
uint width = 0;
uint height = 0;
if ( imageid != 0)
{
client.native.utils.GetImageSize( imageid, ref width, ref height );
}
return new Image()
{
Id = imageid,
Width = (int)width,
Height = (int)height
};
}
}
}

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Facepunch.Steamworks
{
public class Image
{
public int Id { get; internal set; }
public int Width { get; internal set; }
public int Height { get; internal set; }
}
}

View File

@ -122,6 +122,7 @@
<Compile Include="Client.cs" />
<Compile Include="Client\App.cs" />
<Compile Include="Client\Friends.cs" />
<Compile Include="Client\Image.cs" />
<Compile Include="Client\Inventory.cs" />
<Compile Include="Client\Stats.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />