mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 22:27:25 +08:00
c0aaeff2b3
Moves `DaySeparator` chat component to it's own file and update it to match new chat design. Makes use of several virtual attributes that can be overridden to update spacing and layout in other usage contexts. Remove redundant usage of `ChatOverlayDaySeparator`, since the new design is now part of the base class. Create `StandAloneDaySeparator` to use in `StandAloneChatDisplay` which overrides attributes to match correct spacing and layout for its design. Ensure that `DrawableChannel.CreateDaySeparator` returns type of `DaySeparator` instead of `Drawable`.
106 lines
3.9 KiB
C#
106 lines
3.9 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.
|
|
|
|
#nullable enable
|
|
|
|
using System;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Overlays.Chat
|
|
{
|
|
public class DaySeparator : Container
|
|
{
|
|
protected virtual float TextSize => 15;
|
|
|
|
protected virtual float LineHeight => 2;
|
|
|
|
protected virtual float DateAlign => 200;
|
|
|
|
protected virtual float Spacing => 15;
|
|
|
|
private readonly DateTimeOffset time;
|
|
|
|
[Resolved(CanBeNull = true)]
|
|
private OverlayColourProvider? colourProvider { get; set; }
|
|
|
|
public DaySeparator(DateTimeOffset time)
|
|
{
|
|
this.time = time;
|
|
Height = 40;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
Child = new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
RowDimensions = new[] { new Dimension() },
|
|
ColumnDimensions = new[]
|
|
{
|
|
new Dimension(GridSizeMode.Absolute, DateAlign),
|
|
new Dimension(GridSizeMode.Absolute, Spacing),
|
|
new Dimension(),
|
|
},
|
|
Content = new[]
|
|
{
|
|
new[]
|
|
{
|
|
new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
RowDimensions = new[] { new Dimension() },
|
|
ColumnDimensions = new[]
|
|
{
|
|
new Dimension(),
|
|
new Dimension(GridSizeMode.Absolute, Spacing),
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
},
|
|
Content = new[]
|
|
{
|
|
new[]
|
|
{
|
|
new Circle
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = LineHeight,
|
|
Colour = colourProvider?.Background5 ?? Colour4.White,
|
|
},
|
|
Drawable.Empty(),
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.CentreRight,
|
|
Origin = Anchor.CentreRight,
|
|
Text = time.ToLocalTime().ToString("dd MMMM yyyy").ToUpper(),
|
|
Font = OsuFont.Torus.With(size: TextSize, weight: FontWeight.SemiBold),
|
|
Colour = colourProvider?.Content1 ?? Colour4.White,
|
|
},
|
|
}
|
|
},
|
|
},
|
|
Drawable.Empty(),
|
|
new Circle
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = LineHeight,
|
|
Colour = colourProvider?.Background5 ?? Colour4.White,
|
|
},
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|