Skip to content

Commit

Permalink
Merge branch 'master' into general-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom94 authored Feb 22, 2017
2 parents 2d2660c + 0096b8c commit 0d3cc39
Show file tree
Hide file tree
Showing 12 changed files with 235 additions and 196 deletions.
110 changes: 4 additions & 106 deletions osu.Desktop.VisualTests/Tests/TestCaseChatDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
using OpenTK;
using osu.Framework.Allocation;
using osu.Game.Online.Chat.Drawables;
using osu.Game.Overlays;

namespace osu.Desktop.VisualTests.Tests
{
Expand All @@ -25,119 +26,16 @@ class TestCaseChatDisplay : TestCase
private ScheduledDelegate messageRequest;

public override string Name => @"Chat";
public override string Description => @"Testing API polling";

FlowContainer flow;

private Scheduler scheduler = new Scheduler();

private APIAccess api;

private ChannelDisplay channelDisplay;

[BackgroundDependencyLoader]
private void load(APIAccess api)
{
this.api = api;
}
public override string Description => @"Testing chat api and overlay";

public override void Reset()
{
base.Reset();

if (api.State != APIState.Online)
api.OnStateChange += delegate { initializeChannels(); };
else
initializeChannels();
}

protected override void Update()
{
scheduler.Update();
base.Update();
}

private long? lastMessageId;

List<Channel> careChannels;

private void initializeChannels()
{
careChannels = new List<Channel>();

if (api.State != APIState.Online)
return;

Add(flow = new FlowContainer
Add(new ChatOverlay()
{
RelativeSizeAxes = Axes.Both,
Direction = FlowDirections.Vertical
State = Visibility.Visible
});

SpriteText loading;
Add(loading = new SpriteText
{
Text = @"Loading available channels...",
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
TextSize = 40,
});

messageRequest?.Cancel();

ListChannelsRequest req = new ListChannelsRequest();
req.Success += delegate (List<Channel> channels)
{
Scheduler.Add(delegate
{
loading.FadeOut(100);
});

addChannel(channels.Find(c => c.Name == @"#osu"));
addChannel(channels.Find(c => c.Name == @"#lobby"));
addChannel(channels.Find(c => c.Name == @"#english"));

messageRequest = scheduler.AddDelayed(() => FetchNewMessages(api), 1000, true);
};
api.Queue(req);
}

private void addChannel(Channel channel)
{
flow.Add(channelDisplay = new ChannelDisplay(channel)
{
Size = new Vector2(1, 0.3f)
});

careChannels.Add(channel);
}

GetMessagesRequest fetchReq;

public void FetchNewMessages(APIAccess api)
{
if (fetchReq != null) return;

fetchReq = new GetMessagesRequest(careChannels, lastMessageId);
fetchReq.Success += delegate (List<Message> messages)
{
foreach (Message m in messages)
{
careChannels.Find(c => c.Id == m.ChannelId).AddNewMessages(m);
}

lastMessageId = messages.LastOrDefault()?.Id ?? lastMessageId;

Debug.Write("success!");
fetchReq = null;
};
fetchReq.Failure += delegate
{
Debug.Write("failure!");
fetchReq = null;
};

api.Queue(fetchReq);
}
}
}
49 changes: 49 additions & 0 deletions osu.Game/Graphics/UserInterface/FocusedTextBox.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
using OpenTK.Graphics;
using OpenTK.Input;
using osu.Framework.Input;
using System;
using System.Linq;

namespace osu.Game.Graphics.UserInterface
{
public class FocusedTextBox : OsuTextBox
{
protected override Color4 BackgroundUnfocused => new Color4(10, 10, 10, 255);
protected override Color4 BackgroundFocused => new Color4(10, 10, 10, 255);

public Action Exit;

private bool focus;
public bool HoldFocus
{
get { return focus; }
set
{
focus = value;
if (!focus)
TriggerFocusLost();
}
}

protected override bool OnFocus(InputState state)
{
var result = base.OnFocus(state);
BorderThickness = 0;
return result;
}

protected override void OnFocusLost(InputState state)
{
if (state.Keyboard.Keys.Any(key => key == Key.Escape))
{
if (Text.Length > 0)
Text = string.Empty;
else
Exit?.Invoke();
}
base.OnFocusLost(state);
}

public override bool RequestingFocus => HoldFocus;
}
}
1 change: 0 additions & 1 deletion osu.Game/Graphics/UserInterface/OsuTextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input;
using osu.Game.Graphics.Sprites;
using osu.Game.Overlays;
using OpenTK.Graphics;

namespace osu.Game.Graphics.UserInterface
Expand Down
11 changes: 3 additions & 8 deletions osu.Game/Online/Chat/Channel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Newtonsoft.Json;
using osu.Framework.Configuration;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;

namespace osu.Game.Online.Chat
{
Expand All @@ -30,16 +25,16 @@ public class Channel

//internal bool Joined;

public const int MAX_HISTORY = 100;
public const int MAX_HISTORY = 300;

[JsonConstructor]
public Channel()
{
}

public event Action<Message[]> NewMessagesArrived;
public event Action<IEnumerable<Message>> NewMessagesArrived;

public void AddNewMessages(params Message[] messages)
public void AddNewMessages(IEnumerable<Message> messages)
{
Messages.AddRange(messages);
purgeOldMessages();
Expand Down
66 changes: 60 additions & 6 deletions osu.Game/Online/Chat/Drawables/ChatLine.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <[email protected]>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE

using System;
using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using OpenTK;
using OpenTK.Graphics;
Expand All @@ -15,6 +17,50 @@ public class ChatLine : Container
{
public readonly Message Message;

private static readonly Color4[] username_colours = {
OsuColour.FromHex("588c7e"),
OsuColour.FromHex("b2a367"),
OsuColour.FromHex("c98f65"),
OsuColour.FromHex("bc5151"),
OsuColour.FromHex("5c8bd6"),
OsuColour.FromHex("7f6ab7"),
OsuColour.FromHex("a368ad"),
OsuColour.FromHex("aa6880"),

OsuColour.FromHex("6fad9b"),
OsuColour.FromHex("f2e394"),
OsuColour.FromHex("f2ae72"),
OsuColour.FromHex("f98f8a"),
OsuColour.FromHex("7daef4"),
OsuColour.FromHex("a691f2"),
OsuColour.FromHex("c894d3"),
OsuColour.FromHex("d895b0"),

OsuColour.FromHex("53c4a1"),
OsuColour.FromHex("eace5c"),
OsuColour.FromHex("ea8c47"),
OsuColour.FromHex("fc4f4f"),
OsuColour.FromHex("3d94ea"),
OsuColour.FromHex("7760ea"),
OsuColour.FromHex("af52c6"),
OsuColour.FromHex("e25696"),

OsuColour.FromHex("677c66"),
OsuColour.FromHex("9b8732"),
OsuColour.FromHex("8c5129"),
OsuColour.FromHex("8c3030"),
OsuColour.FromHex("1f5d91"),
OsuColour.FromHex("4335a5"),
OsuColour.FromHex("812a96"),
OsuColour.FromHex("992861"),
};

private Color4 getUsernameColour(Message message)
{
//todo: use User instead of Message when user_id is correctly populated.
return username_colours[message.UserId % username_colours.Length];
}

const float padding = 200;
const float text_size = 20;

Expand All @@ -25,6 +71,8 @@ public ChatLine(Message message)
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;

Padding = new MarginPadding { Left = 15, Right = 15 };

Children = new Drawable[]
{
new Container
Expand All @@ -34,13 +82,19 @@ public ChatLine(Message message)
{
new OsuSpriteText
{
Text = Message.Timestamp.LocalDateTime.ToLongTimeString(),
TextSize = text_size,
Colour = Color4.Gray
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Font = @"Exo2.0-SemiBold",
Text = $@"{Message.Timestamp.LocalDateTime:hh:mm:ss}",
FixedWidth = true,
TextSize = text_size * 0.75f,
Alpha = 0.4f,
},
new OsuSpriteText
{
Text = Message.User.Name,
Font = @"Exo2.0-BoldItalic",
Text = $@"{Message.User.Name}:",
Colour = getUsernameColour(Message),
TextSize = text_size,
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
Expand All @@ -51,7 +105,7 @@ public ChatLine(Message message)
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding { Left = padding + 10 },
Padding = new MarginPadding { Left = padding + 15 },
Children = new Drawable[]
{
new OsuSpriteText
Expand Down
Loading

0 comments on commit 0d3cc39

Please sign in to comment.