Facepunch.Steamworks/Facepunch.Steamworks.Test/Client/FriendsTest.cs

124 lines
3.7 KiB
C#
Raw Normal View History

2016-09-30 14:59:03 +03:00
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
2016-09-30 15:49:11 +03:00
using System.Linq;
2016-09-30 14:59:03 +03:00
namespace Facepunch.Steamworks.Test
{
2016-10-25 12:29:35 +03:00
[DeploymentItem( "steam_api64.dll" )]
2016-09-30 14:59:03 +03:00
[TestClass]
public class Friends
{
[TestMethod]
public void FriendList()
{
using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
{
2016-10-05 14:44:01 +03:00
Assert.IsTrue( client.IsValid );
2016-09-30 14:59:03 +03:00
client.Friends.Refresh();
Assert.IsNotNull( client.Friends.All );
foreach ( var friend in client.Friends.All )
{
Console.WriteLine( "{0}: {1} (Friend:{2}) (Blocked:{3})", friend.Id, friend.Name, friend.IsFriend, friend.IsBlocked );
2017-12-06 14:58:36 +03:00
Assert.IsNotNull(friend.GetAvatar( Steamworks.Friends.AvatarSize.Medium ));
2016-09-30 14:59:03 +03:00
}
}
}
[TestMethod]
public void FriendListWithoutRefresh()
{
using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
{
2016-10-05 14:44:01 +03:00
Assert.IsTrue( client.IsValid );
2016-09-30 14:59:03 +03:00
foreach ( var friend in client.Friends.All )
{
Console.WriteLine( "{0}: {1} (Friend:{2}) (Blocked:{3})", friend.Id, friend.Name, friend.IsFriend, friend.IsBlocked );
}
}
}
2016-09-30 15:49:11 +03:00
[TestMethod]
public void Avatar()
{
using ( var client = new Facepunch.Steamworks.Client( 252490 ) )
{
2016-10-05 14:44:01 +03:00
Assert.IsTrue( client.IsValid );
2016-09-30 15:49:11 +03:00
2018-02-15 15:32:01 +03:00
ulong id = (ulong)( 76561197960279927 + (new Random().Next() % 10000));
bool passed = false;
2016-09-30 15:49:11 +03:00
2018-02-15 15:32:01 +03:00
client.Friends.GetAvatar( Steamworks.Friends.AvatarSize.Medium, id, ( avatar) =>
{
2018-02-15 15:32:01 +03:00
if ( avatar == null )
{
Console.WriteLine( "No Avatar" );
}
else
{
Assert.AreEqual( avatar.Width, 64 );
Assert.AreEqual( avatar.Height, 64 );
Assert.AreEqual( avatar.Data.Length, avatar.Width * avatar.Height * 4 );
DrawImage( avatar );
}
passed = true;
});
2016-09-30 15:49:11 +03:00
while (passed == false )
2016-09-30 15:49:11 +03:00
{
client.Update();
System.Threading.Thread.Sleep( 10 );
}
}
}
2016-09-30 15:49:11 +03:00
[TestMethod]
public void CachedAvatar()
{
using (var client = new Facepunch.Steamworks.Client(252490))
{
Assert.IsTrue(client.IsValid);
2016-09-30 15:49:11 +03:00
var friend = client.Friends.All.First();
var image = client.Friends.GetCachedAvatar( Steamworks.Friends.AvatarSize.Medium, friend.Id );
if (image != null)
{
Assert.AreEqual(image.Width, 64);
Assert.AreEqual(image.Height, 64);
Assert.AreEqual(image.Data.Length, image.Width * image.Height * 4);
}
2016-09-30 15:49:11 +03:00
}
}
public static void DrawImage( Image img )
{
var grad = " -:+#";
for ( int y = 0; y<img.Height; y++ )
{
var str = "";
for ( int x = 0; x < img.Width; x++ )
{
var p = img.GetPixel( x, y );
var brightness = 1 - ((float)(p.r + p.g + p.b) / (255.0f * 3.0f));
var c = (int) ((grad.Length) * brightness);
2018-02-15 15:32:01 +03:00
if ( c > 3 ) c = 3;
2016-09-30 15:49:11 +03:00
str += grad[c];
}
Console.WriteLine( str );
}
}
2016-09-30 14:59:03 +03:00
}
}