mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 22:34:09 +08:00
Update with framework changes.
This commit is contained in:
parent
a3299809fe
commit
4307242bb6
@ -1 +1 @@
|
|||||||
Subproject commit c76d8b811b93d0c0862f342ebbab70a461006e13
|
Subproject commit cfbfbe63294b88bdcdfb92fd6ae69aa826ff62c4
|
@ -8,6 +8,7 @@ using osu.Game.Rulesets.Mania.Objects;
|
|||||||
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
||||||
using OpenTK.Graphics;
|
using OpenTK.Graphics;
|
||||||
using OpenTK;
|
using OpenTK;
|
||||||
|
using osu.Framework.Graphics.Primitives;
|
||||||
|
|
||||||
namespace osu.Desktop.VisualTests.Tests
|
namespace osu.Desktop.VisualTests.Tests
|
||||||
{
|
{
|
||||||
@ -40,7 +41,7 @@ namespace osu.Desktop.VisualTests.Tests
|
|||||||
{
|
{
|
||||||
Name = "Timing section",
|
Name = "Timing section",
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
RelativeCoordinateSpace = new Vector2(1, 10000),
|
RelativeCoordinateSpace = new RectangleF(0, 0, 1, 10000),
|
||||||
Children = new[]
|
Children = new[]
|
||||||
{
|
{
|
||||||
new DrawableNote(new Note { StartTime = 5000 }) { AccentColour = Color4.Red },
|
new DrawableNote(new Note { StartTime = 5000 }) { AccentColour = Color4.Red },
|
||||||
@ -62,7 +63,7 @@ namespace osu.Desktop.VisualTests.Tests
|
|||||||
{
|
{
|
||||||
Name = "Timing section",
|
Name = "Timing section",
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
RelativeCoordinateSpace = new Vector2(1, 10000),
|
RelativeCoordinateSpace = new RectangleF(0, 0, 1, 10000),
|
||||||
Children = new[]
|
Children = new[]
|
||||||
{
|
{
|
||||||
new DrawableHoldNote(new HoldNote
|
new DrawableHoldNote(new HoldNote
|
||||||
|
@ -12,6 +12,7 @@ using OpenTK;
|
|||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Game.Rulesets.Mania.Judgements;
|
using osu.Game.Rulesets.Mania.Judgements;
|
||||||
using osu.Framework.Extensions.IEnumerableExtensions;
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
||||||
|
using osu.Framework.Graphics.Primitives;
|
||||||
|
|
||||||
namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
||||||
{
|
{
|
||||||
@ -55,7 +56,7 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|||||||
tickContainer = new Container<DrawableHoldNoteTick>
|
tickContainer = new Container<DrawableHoldNoteTick>
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
RelativeCoordinateSpace = new Vector2(1, (float)HitObject.Duration)
|
RelativeCoordinateSpace = new RectangleF(0, 0, 1, (float)HitObject.Duration)
|
||||||
},
|
},
|
||||||
head = new DrawableHeadNote(this, key)
|
head = new DrawableHeadNote(this, key)
|
||||||
{
|
{
|
||||||
|
@ -19,7 +19,7 @@ namespace osu.Game.Rulesets.Mania.Timing.Drawables
|
|||||||
// The gravity-adjusted start position
|
// The gravity-adjusted start position
|
||||||
float startY = (float)computeGravityTime(TimingChange.Time);
|
float startY = (float)computeGravityTime(TimingChange.Time);
|
||||||
// The gravity-adjusted end position
|
// The gravity-adjusted end position
|
||||||
float endY = (float)computeGravityTime(TimingChange.Time + Content.RelativeCoordinateSpace.Y);
|
float endY = (float)computeGravityTime(TimingChange.Time + Content.RelativeCoordinateSpace.Height);
|
||||||
|
|
||||||
Content.Y = startY;
|
Content.Y = startY;
|
||||||
Content.Height = endY - startY;
|
Content.Height = endY - startY;
|
||||||
@ -43,7 +43,7 @@ namespace osu.Game.Rulesets.Mania.Timing.Drawables
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The time spanned by this container.
|
/// The time spanned by this container.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private double timeSpan => RelativeCoordinateSpace.Y;
|
private double timeSpan => RelativeCoordinateSpace.Height;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The acceleration due to "gravity" of the content of this container.
|
/// The acceleration due to "gravity" of the content of this container.
|
||||||
|
@ -25,7 +25,7 @@ namespace osu.Game.Rulesets.Mania.Timing.Drawables
|
|||||||
|
|
||||||
// This is very naive and can be improved, but is adequate for now
|
// This is very naive and can be improved, but is adequate for now
|
||||||
LifetimeStart = TimingChange.Time - parent.TimeSpan.Y;
|
LifetimeStart = TimingChange.Time - parent.TimeSpan.Y;
|
||||||
LifetimeEnd = TimingChange.Time + Content.RelativeCoordinateSpace.Y * 2;
|
LifetimeEnd = TimingChange.Time + Content.RelativeCoordinateSpace.Height * 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -10,6 +10,7 @@ using osu.Game.Rulesets.Objects;
|
|||||||
using osu.Game.Rulesets.Objects.Drawables;
|
using osu.Game.Rulesets.Objects.Drawables;
|
||||||
using OpenTK;
|
using OpenTK;
|
||||||
using osu.Framework.Caching;
|
using osu.Framework.Caching;
|
||||||
|
using osu.Framework.Graphics.Primitives;
|
||||||
|
|
||||||
namespace osu.Game.Rulesets.Timing.Drawables
|
namespace osu.Game.Rulesets.Timing.Drawables
|
||||||
{
|
{
|
||||||
@ -41,7 +42,8 @@ namespace osu.Game.Rulesets.Timing.Drawables
|
|||||||
AddInternal(content = new RelativeCoordinateAutoSizingContainer(scrollingAxes)
|
AddInternal(content = new RelativeCoordinateAutoSizingContainer(scrollingAxes)
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
RelativePositionAxes = Axes.Both
|
RelativePositionAxes = Axes.Both,
|
||||||
|
RelativeCoordinateSpace = new RectangleF((scrollingAxes & Axes.X) > 0 ? (float)TimingChange.Time : 0, (scrollingAxes & Axes.Y) > 0 ? (float)TimingChange.Time : 0, 1, 1)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,23 +63,8 @@ namespace osu.Game.Rulesets.Timing.Drawables
|
|||||||
// Adjust our size to account for the speed changes
|
// Adjust our size to account for the speed changes
|
||||||
float speedAdjustedSize = (float)(1000 / TimingChange.BeatLength / TimingChange.SpeedMultiplier);
|
float speedAdjustedSize = (float)(1000 / TimingChange.BeatLength / TimingChange.SpeedMultiplier);
|
||||||
|
|
||||||
Size = new Vector2((scrollingAxes & Axes.X) > 0 ? speedAdjustedSize : 1,
|
Size = new Vector2((scrollingAxes & Axes.X) > 0 ? speedAdjustedSize : 1, (scrollingAxes & Axes.Y) > 0 ? speedAdjustedSize : 1);
|
||||||
(scrollingAxes & Axes.Y) > 0 ? speedAdjustedSize : 1);
|
RelativeCoordinateSpace = new RectangleF(0, 0, (scrollingAxes & Axes.X) > 0 ? parent.TimeSpan.X : 1, (scrollingAxes & Axes.Y) > 0 ? parent.TimeSpan.Y : 1);
|
||||||
|
|
||||||
RelativeCoordinateSpace = new Vector2((scrollingAxes & Axes.X) > 0 ? parent.TimeSpan.X : 1,
|
|
||||||
(scrollingAxes & Axes.Y) > 0 ? parent.TimeSpan.Y : 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void Add(DrawableHitObject hitObject)
|
|
||||||
{
|
|
||||||
// The previously relatively-positioned hit object will now become relative to content, but since the hit object has no knowledge of content,
|
|
||||||
// we need to offset it back by content's position (timing change time) so that it becomes correctly relatively-positioned to content
|
|
||||||
// This can be removed if hit objects were stored such that either their StartTime or their "beat offset" was relative to the timing change
|
|
||||||
// they belonged to, but this requires a radical change to the beatmap format which we're not ready to do just yet
|
|
||||||
hitObject.Position = new Vector2((scrollingAxes & Axes.X) > 0 ? hitObject.X - (float)TimingChange.Time : hitObject.X,
|
|
||||||
(scrollingAxes & Axes.Y) > 0 ? hitObject.Y - (float)TimingChange.Time : hitObject.Y);
|
|
||||||
|
|
||||||
base.Add(hitObject);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -133,14 +120,20 @@ namespace osu.Game.Rulesets.Timing.Drawables
|
|||||||
if (!Children.Any())
|
if (!Children.Any())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
float height = Children.Select(child => child.Y + child.Height).Max();
|
float width = Children.Select(child => child.X + child.Width).Max() - RelativeChildOffset.X;
|
||||||
float width = Children.Select(child => child.X + child.Width).Max();
|
float height = Children.Select(child => child.Y + child.Height).Max() - RelativeChildOffset.Y;
|
||||||
|
|
||||||
Size = new Vector2((autoSizingAxes & Axes.X) > 0 ? width : Size.X,
|
Size = new Vector2((autoSizingAxes & Axes.X) > 0 ? width : Size.X, (autoSizingAxes & Axes.Y) > 0 ? height : Size.Y);
|
||||||
(autoSizingAxes & Axes.Y) > 0 ? height : Size.Y);
|
|
||||||
|
|
||||||
RelativeCoordinateSpace = new Vector2((autoSizingAxes & Axes.X) > 0 ? width : 1,
|
var space = RelativeCoordinateSpace;
|
||||||
(autoSizingAxes & Axes.Y) > 0 ? height : 1);
|
|
||||||
|
if ((autoSizingAxes & Axes.X) > 0)
|
||||||
|
space.Width = width;
|
||||||
|
|
||||||
|
if ((autoSizingAxes & Axes.Y) > 0)
|
||||||
|
space.Height = height;
|
||||||
|
|
||||||
|
RelativeCoordinateSpace = space;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user