mirror of
https://github.com/ppy/osu.git
synced 2024-11-17 15:52:55 +08:00
78 lines
2.1 KiB
C#
78 lines
2.1 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Input.Events;
|
|
using osuTK.Input;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class MessageHistoryTextBox : FocusedTextBox
|
|
{
|
|
private readonly List<string> messageHistory = new List<string>();
|
|
|
|
private int messageIndex = -1;
|
|
|
|
private string originalMessage = string.Empty;
|
|
|
|
public MessageHistoryTextBox()
|
|
{
|
|
Current.ValueChanged += text =>
|
|
{
|
|
if (string.IsNullOrEmpty(text.NewValue))
|
|
messageIndex = -1;
|
|
};
|
|
}
|
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
|
{
|
|
/* Behavior:
|
|
* add when on last element -> last element stays
|
|
* subtract when on first element -> sets to original text
|
|
* reset indexing when Text is set to Empty
|
|
*/
|
|
|
|
switch (e.Key)
|
|
{
|
|
case Key.Up:
|
|
if (messageIndex == -1)
|
|
originalMessage = Text;
|
|
|
|
if (messageIndex == messageHistory.Count - 1)
|
|
return true;
|
|
|
|
Text = messageHistory[++messageIndex];
|
|
|
|
return true;
|
|
|
|
case Key.Down:
|
|
if (messageIndex == -1)
|
|
return true;
|
|
|
|
if (messageIndex == 0)
|
|
{
|
|
messageIndex = -1;
|
|
Text = originalMessage;
|
|
return true;
|
|
}
|
|
|
|
Text = messageHistory[--messageIndex];
|
|
|
|
return true;
|
|
}
|
|
|
|
return base.OnKeyDown(e);
|
|
}
|
|
|
|
protected override void Commit()
|
|
{
|
|
if (!string.IsNullOrEmpty(Text))
|
|
messageHistory.Insert(0, Text);
|
|
|
|
messageIndex = -1;
|
|
|
|
base.Commit();
|
|
}
|
|
}
|
|
}
|