2017-02-17 04:05:03 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-02-18 19:28:22 +08:00
|
|
|
|
|
2017-02-17 04:05:03 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Transformations;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Backgrounds;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Modes;
|
|
|
|
|
using osu.Framework.Allocation;
|
2017-02-18 19:50:22 +08:00
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using OpenTK.Input;
|
|
|
|
|
using System.Linq;
|
2017-02-17 04:05:03 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Mods
|
|
|
|
|
{
|
2017-02-18 19:28:22 +08:00
|
|
|
|
public class ModSelectOverlay : WaveOverlayContainer
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-18 23:21:41 +08:00
|
|
|
|
private readonly int button_duration = 700;
|
|
|
|
|
private readonly int ranked_multiplier_duration = 700;
|
2017-02-17 04:05:03 +08:00
|
|
|
|
private readonly float content_width = 0.8f;
|
|
|
|
|
|
2017-02-17 07:09:18 +08:00
|
|
|
|
private Color4 low_multiplier_colour;
|
|
|
|
|
private Color4 high_multiplier_colour;
|
|
|
|
|
|
2017-02-17 04:05:03 +08:00
|
|
|
|
private OsuSpriteText rankedLabel, multiplierLabel;
|
|
|
|
|
private FlowContainer rankedMultiplerContainer;
|
|
|
|
|
|
2017-02-17 06:32:27 +08:00
|
|
|
|
private FlowContainer modSectionsContainer;
|
|
|
|
|
|
2017-02-17 04:05:03 +08:00
|
|
|
|
private DifficultyReductionSection difficultyReductionSection;
|
|
|
|
|
private DifficultyIncreaseSection difficultyIncreaseSection;
|
|
|
|
|
private AssistedSection assistedSection;
|
2017-02-18 19:28:22 +08:00
|
|
|
|
private ModSection[] sections
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new ModSection[] { difficultyReductionSection, difficultyIncreaseSection, assistedSection };
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-17 04:05:03 +08:00
|
|
|
|
|
|
|
|
|
public Bindable<Mod[]> SelectedMods = new Bindable<Mod[]>();
|
|
|
|
|
|
2017-02-17 06:32:27 +08:00
|
|
|
|
private PlayMode modMode;
|
|
|
|
|
public PlayMode ModMode
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return modMode;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == modMode) return;
|
|
|
|
|
modMode = value;
|
|
|
|
|
|
|
|
|
|
modSectionsContainer.Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
difficultyReductionSection = new DifficultyReductionSection
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Action = modButtonPressed,
|
|
|
|
|
},
|
|
|
|
|
difficultyIncreaseSection = new DifficultyIncreaseSection
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Action = modButtonPressed,
|
|
|
|
|
},
|
|
|
|
|
assistedSection = new AssistedSection(value)
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Action = modButtonPressed,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-18 19:50:22 +08:00
|
|
|
|
public override bool RequestingFocus => State == Visibility.Visible;
|
|
|
|
|
|
|
|
|
|
protected override bool OnFocus(InputState state) => true;
|
|
|
|
|
protected override void OnFocusLost(InputState state)
|
|
|
|
|
{
|
|
|
|
|
if (state.Keyboard.Keys.Contains(Key.Escape))
|
|
|
|
|
Hide();
|
|
|
|
|
base.OnFocusLost(state);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-18 23:40:05 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
low_multiplier_colour = colours.Red;
|
|
|
|
|
high_multiplier_colour = colours.Green;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-18 19:50:22 +08:00
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
|
|
|
|
base.PopIn();
|
|
|
|
|
Schedule(TriggerFocusContention);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
|
|
|
|
base.PopOut();
|
|
|
|
|
TriggerFocusLost();
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-18 19:28:22 +08:00
|
|
|
|
protected override void TransitionIn()
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-18 19:28:22 +08:00
|
|
|
|
rankedMultiplerContainer.MoveToX(0, ranked_multiplier_duration, EasingTypes.OutQuint);
|
|
|
|
|
rankedMultiplerContainer.FadeIn(ranked_multiplier_duration, EasingTypes.OutQuint);
|
2017-02-17 04:05:03 +08:00
|
|
|
|
|
2017-02-18 19:28:22 +08:00
|
|
|
|
foreach (ModSection section in sections)
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-18 19:28:22 +08:00
|
|
|
|
section.ButtonsContainer.TransformSpacingTo(new Vector2(50f, 0f), button_duration, EasingTypes.OutQuint);
|
|
|
|
|
section.ButtonsContainer.MoveToX(0, button_duration, EasingTypes.OutQuint);
|
|
|
|
|
section.ButtonsContainer.FadeIn(button_duration, EasingTypes.OutQuint);
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-18 19:28:22 +08:00
|
|
|
|
protected override void TransitionOut()
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-18 23:21:41 +08:00
|
|
|
|
rankedMultiplerContainer.MoveToX(rankedMultiplerContainer.DrawSize.X, content_exit_duration, EasingTypes.InSine);
|
|
|
|
|
rankedMultiplerContainer.FadeOut(content_exit_duration, EasingTypes.InSine);
|
2017-02-18 19:28:22 +08:00
|
|
|
|
|
|
|
|
|
foreach (ModSection section in sections)
|
|
|
|
|
{
|
2017-02-18 23:21:41 +08:00
|
|
|
|
section.ButtonsContainer.TransformSpacingTo(new Vector2(100f, 0f), content_exit_duration, EasingTypes.InSine);
|
|
|
|
|
section.ButtonsContainer.MoveToX(100f, content_exit_duration, EasingTypes.InSine);
|
|
|
|
|
section.ButtonsContainer.FadeTo(0.01f, content_exit_duration, EasingTypes.InSine); // TODO: Fix this so 0.01 opacity isn't used
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-18 23:40:05 +08:00
|
|
|
|
public void DeselectAll()
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-18 23:40:05 +08:00
|
|
|
|
foreach (ModSection section in sections)
|
|
|
|
|
{
|
|
|
|
|
foreach (ModButton button in section.Buttons)
|
|
|
|
|
{
|
|
|
|
|
button.Deselect();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void modButtonPressed(Mod[] sectionSelectedMods)
|
|
|
|
|
{
|
|
|
|
|
//
|
|
|
|
|
// Inverse mod deselection
|
|
|
|
|
//
|
|
|
|
|
// Hard Rock is the inverse of Easy
|
|
|
|
|
// Sudden Death / Perfect is the inverse of No Fail, Relax, AutoPilot, and Auto
|
|
|
|
|
// Double Time is the inverse of Half Time
|
|
|
|
|
//
|
|
|
|
|
// TODO: Probably make a better way for inverse mod handling
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
foreach (Mod sectionMod in sectionSelectedMods)
|
|
|
|
|
{
|
|
|
|
|
if (sectionMod.Name == Modes.Mods.HardRock)
|
|
|
|
|
{
|
2017-02-17 06:32:27 +08:00
|
|
|
|
difficultyReductionSection.EasyButton?.Deselect();
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
else if (sectionMod.Name == Modes.Mods.Easy)
|
|
|
|
|
{
|
2017-02-17 06:32:27 +08:00
|
|
|
|
difficultyIncreaseSection.HardRockButton?.Deselect();
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sectionMod.Name == Modes.Mods.SuddenDeath || sectionMod.Name == Modes.Mods.Perfect)
|
|
|
|
|
{
|
2017-02-17 06:32:27 +08:00
|
|
|
|
difficultyReductionSection.NoFailButton?.Deselect();
|
|
|
|
|
assistedSection.RelaxButton?.Deselect();
|
|
|
|
|
assistedSection.AutopilotButton?.Deselect();
|
|
|
|
|
assistedSection.AutoplayCinemaButton?.Deselect();
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
2017-02-17 06:32:27 +08:00
|
|
|
|
else if (sectionMod.Name == Modes.Mods.NoFail || sectionMod.Name == Modes.Mods.Relax || sectionMod.Name == Modes.Mods.Autopilot || sectionMod.Name == Modes.Mods.Autoplay || sectionMod.Name == Modes.Mods.Cinema)
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-17 06:32:27 +08:00
|
|
|
|
difficultyIncreaseSection.SuddenDeathButton?.Deselect();
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sectionMod.Name == Modes.Mods.DoubleTime || sectionMod.Name == Modes.Mods.Nightcore)
|
|
|
|
|
{
|
2017-02-17 06:32:27 +08:00
|
|
|
|
difficultyReductionSection.HalfTimeButton?.Deselect();
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
else if (sectionMod.Name == Modes.Mods.HalfTime)
|
|
|
|
|
{
|
2017-02-17 06:32:27 +08:00
|
|
|
|
difficultyIncreaseSection.DoubleTimeNightcoreButton?.Deselect();
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
refreshSelectedMods();
|
|
|
|
|
|
|
|
|
|
double multiplier = 1;
|
|
|
|
|
bool ranked = true;
|
|
|
|
|
|
|
|
|
|
foreach (Mod mod in SelectedMods.Value)
|
|
|
|
|
{
|
2017-02-17 06:32:27 +08:00
|
|
|
|
multiplier *= mod.ScoreMultiplier(ModMode);
|
2017-02-17 04:05:03 +08:00
|
|
|
|
|
|
|
|
|
if (ranked)
|
|
|
|
|
{
|
2017-02-17 06:32:27 +08:00
|
|
|
|
ranked = mod.Ranked(ModMode);
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 1.00x
|
|
|
|
|
// 1.05x
|
|
|
|
|
// 1.20x
|
2017-02-18 23:40:05 +08:00
|
|
|
|
|
2017-02-17 04:05:03 +08:00
|
|
|
|
multiplierLabel.Text = string.Format("{0:N2}x", multiplier);
|
|
|
|
|
rankedLabel.Text = $"{ranked ? @"Ranked" : @"Unranked"}, Score Multiplier: ";
|
2017-02-17 07:09:18 +08:00
|
|
|
|
if (multiplier > 1.0)
|
|
|
|
|
{
|
|
|
|
|
multiplierLabel.FadeColour(high_multiplier_colour, 200);
|
|
|
|
|
}
|
|
|
|
|
else if (multiplier < 1.0)
|
|
|
|
|
{
|
|
|
|
|
multiplierLabel.FadeColour(low_multiplier_colour, 200);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
multiplierLabel.FadeColour(Color4.White, 200);
|
|
|
|
|
}
|
2017-02-17 04:05:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void refreshSelectedMods()
|
|
|
|
|
{
|
|
|
|
|
List<Mod> selectedMods = new List<Mod>();
|
|
|
|
|
|
|
|
|
|
foreach (Mod mod in difficultyReductionSection.SelectedMods)
|
|
|
|
|
{
|
|
|
|
|
selectedMods.Add(mod);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (Mod mod in difficultyIncreaseSection.SelectedMods)
|
|
|
|
|
{
|
|
|
|
|
selectedMods.Add(mod);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (Mod mod in assistedSection.SelectedMods)
|
|
|
|
|
{
|
|
|
|
|
selectedMods.Add(mod);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SelectedMods.Value = selectedMods.ToArray();
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-18 19:28:22 +08:00
|
|
|
|
public ModSelectOverlay()
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-18 19:28:22 +08:00
|
|
|
|
FirstWaveColour = OsuColour.FromHex(@"19b0e2");
|
|
|
|
|
SecondWaveColour = OsuColour.FromHex(@"2280a2");
|
|
|
|
|
ThirdWaveColour = OsuColour.FromHex(@"005774");
|
|
|
|
|
FourthWaveColour = OsuColour.FromHex(@"003a4e");
|
|
|
|
|
|
|
|
|
|
Height = 548; // TODO: Remove when autosize works
|
|
|
|
|
//AutoSizeAxes = Axes.Y;
|
2017-02-18 23:21:41 +08:00
|
|
|
|
Content.RelativeSizeAxes = Axes.X;
|
|
|
|
|
Content.AutoSizeAxes = Axes.Y;
|
2017-02-17 04:05:03 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true,
|
2017-02-18 19:28:22 +08:00
|
|
|
|
Children = new Drawable[]
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-18 19:28:22 +08:00
|
|
|
|
new Box
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-02-18 19:28:22 +08:00
|
|
|
|
Colour = new Color4(36, 50, 68, 255)
|
2017-02-17 04:05:03 +08:00
|
|
|
|
},
|
2017-02-18 19:28:22 +08:00
|
|
|
|
new Triangles
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-18 19:28:22 +08:00
|
|
|
|
TriangleScale = 5,
|
2017-02-17 04:05:03 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-02-18 19:28:22 +08:00
|
|
|
|
ColourLight = new Color4(53, 66, 82, 255),
|
|
|
|
|
ColourDark = new Color4(41, 54, 70, 255),
|
2017-02-17 04:05:03 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-02-18 19:28:22 +08:00
|
|
|
|
new FlowContainer
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
2017-02-18 19:28:22 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
Direction = FlowDirections.Vertical,
|
|
|
|
|
Spacing = new Vector2(0f, 10f),
|
2017-02-17 04:05:03 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-02-18 19:28:22 +08:00
|
|
|
|
// Header
|
2017-02-17 04:05:03 +08:00
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 90,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = OsuColour.Gray(10).Opacity(100),
|
|
|
|
|
},
|
|
|
|
|
new FlowContainer
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Direction = FlowDirections.Vertical,
|
|
|
|
|
Width = content_width,
|
|
|
|
|
Padding = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Top = 10,
|
|
|
|
|
Bottom = 10,
|
|
|
|
|
},
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Font = @"Exo2.0-Bold",
|
|
|
|
|
Text = @"Gameplay Mods",
|
|
|
|
|
TextSize = 22,
|
|
|
|
|
Shadow = true,
|
|
|
|
|
Margin = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Bottom = 4,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = @"Mods provide different ways to enjoy gameplay. Some have an effect on the score you can achieve during ranked play.",
|
|
|
|
|
TextSize = 18,
|
|
|
|
|
Shadow = true,
|
|
|
|
|
},
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = @"Others are just for fun",
|
|
|
|
|
TextSize = 18,
|
|
|
|
|
Shadow = true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-02-18 19:28:22 +08:00
|
|
|
|
// Body
|
2017-02-17 06:32:27 +08:00
|
|
|
|
modSectionsContainer = new FlowContainer
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Spacing = new Vector2(0f, 10f),
|
|
|
|
|
Width = content_width,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
difficultyReductionSection = new DifficultyReductionSection
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Action = modButtonPressed,
|
|
|
|
|
},
|
|
|
|
|
difficultyIncreaseSection = new DifficultyIncreaseSection
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Action = modButtonPressed,
|
|
|
|
|
},
|
2017-02-17 06:32:27 +08:00
|
|
|
|
assistedSection = new AssistedSection(PlayMode.Osu)
|
2017-02-17 04:05:03 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Action = modButtonPressed,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-02-18 19:28:22 +08:00
|
|
|
|
// Footer
|
2017-02-17 04:05:03 +08:00
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 70,
|
2017-02-18 19:28:22 +08:00
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
2017-02-17 04:05:03 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = new Color4(172, 20, 116, 255),
|
|
|
|
|
Alpha = 0.5f,
|
|
|
|
|
},
|
|
|
|
|
rankedMultiplerContainer = new FlowContainer
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Width = content_width,
|
|
|
|
|
Direction = FlowDirections.Horizontal,
|
|
|
|
|
Padding = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Top = 20,
|
|
|
|
|
Bottom = 20,
|
|
|
|
|
},
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
rankedLabel = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = @"Ranked, Score Multiplier: ",
|
|
|
|
|
TextSize = 30,
|
|
|
|
|
Shadow = true,
|
|
|
|
|
},
|
|
|
|
|
multiplierLabel = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Font = @"Exo2.0-Bold",
|
|
|
|
|
Text = @"1.00x",
|
|
|
|
|
TextSize = 30,
|
|
|
|
|
Shadow = true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|