mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 04:57:24 +08:00
119 lines
3.3 KiB
C#
119 lines
3.3 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;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework.Input.Events;
|
|
using osuTK.Input;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class HistoryTextBox : FocusedTextBox
|
|
{
|
|
private readonly int historyLimit;
|
|
|
|
private bool everythingSelected;
|
|
|
|
public int HistoryLength => messageHistory.Count;
|
|
|
|
private readonly List<string> messageHistory;
|
|
|
|
public IReadOnlyList<string> MessageHistory =>
|
|
Enumerable.Range(0, HistoryLength).Select(GetOldMessage).ToList();
|
|
|
|
private string originalMessage = string.Empty;
|
|
|
|
private int historyIndex = -1;
|
|
|
|
private int startIndex;
|
|
|
|
private int getNormalizedIndex(int index) =>
|
|
(HistoryLength + startIndex - index - 1) % HistoryLength;
|
|
|
|
public HistoryTextBox(int historyLimit = 100)
|
|
{
|
|
this.historyLimit = historyLimit;
|
|
messageHistory = new List<string>(historyLimit);
|
|
|
|
Current.ValueChanged += text =>
|
|
{
|
|
if (string.IsNullOrEmpty(text.NewValue) || everythingSelected)
|
|
{
|
|
historyIndex = -1;
|
|
everythingSelected = false;
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override void OnTextSelectionChanged(TextSelectionType selectionType)
|
|
{
|
|
everythingSelected = SelectedText == Text;
|
|
|
|
base.OnTextSelectionChanged(selectionType);
|
|
}
|
|
|
|
public string GetOldMessage(int index)
|
|
{
|
|
if (index < 0 || index >= HistoryLength)
|
|
throw new ArgumentOutOfRangeException();
|
|
|
|
return HistoryLength == 0 ? string.Empty : messageHistory[getNormalizedIndex(index)];
|
|
}
|
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
|
{
|
|
switch (e.Key)
|
|
{
|
|
case Key.Up:
|
|
if (historyIndex == HistoryLength - 1)
|
|
return true;
|
|
|
|
if (historyIndex == -1)
|
|
originalMessage = Text;
|
|
|
|
Text = messageHistory[getNormalizedIndex(++historyIndex)];
|
|
|
|
return true;
|
|
|
|
case Key.Down:
|
|
if (historyIndex == -1)
|
|
return true;
|
|
|
|
if (historyIndex == 0)
|
|
{
|
|
historyIndex = -1;
|
|
Text = originalMessage;
|
|
return true;
|
|
}
|
|
|
|
Text = messageHistory[getNormalizedIndex(--historyIndex)];
|
|
|
|
return true;
|
|
}
|
|
|
|
return base.OnKeyDown(e);
|
|
}
|
|
|
|
protected override void Commit()
|
|
{
|
|
if (!string.IsNullOrEmpty(Text))
|
|
{
|
|
if (HistoryLength == historyLimit)
|
|
{
|
|
messageHistory[startIndex++] = Text;
|
|
startIndex %= historyLimit;
|
|
}
|
|
else
|
|
{
|
|
messageHistory.Add(Text);
|
|
}
|
|
}
|
|
|
|
historyIndex = -1;
|
|
|
|
base.Commit();
|
|
}
|
|
}
|
|
}
|