mirror of https://github.com/ppy/osu
Add more comprehensive inline comment
This commit is contained in:
parent
d63f196626
commit
e1e12f41e9
|
@ -71,15 +71,14 @@ public Column(int index, bool isSpecial)
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(GameHost host)
|
private void load(GameHost host)
|
||||||
{
|
{
|
||||||
|
SkinnableDrawable keyArea;
|
||||||
|
|
||||||
skin.SourceChanged += onSourceChanged;
|
skin.SourceChanged += onSourceChanged;
|
||||||
onSourceChanged();
|
onSourceChanged();
|
||||||
|
|
||||||
Drawable background = new SkinnableDrawable(new ManiaSkinComponent(ManiaSkinComponents.ColumnBackground), _ => new DefaultColumnBackground())
|
Drawable background = new SkinnableDrawable(new ManiaSkinComponent(ManiaSkinComponents.ColumnBackground), _ => new DefaultColumnBackground())
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
// This is pretty dodgy (and will cause weirdness when pausing gameplay) but is better than completely broken rewind.
|
|
||||||
Clock = host.UpdateThread.Clock,
|
|
||||||
ProcessCustomClock = false,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
InternalChildren = new[]
|
InternalChildren = new[]
|
||||||
|
@ -89,18 +88,18 @@ private void load(GameHost host)
|
||||||
// For input purposes, the background is added at the highest depth, but is then proxied back below all other elements
|
// For input purposes, the background is added at the highest depth, but is then proxied back below all other elements
|
||||||
background.CreateProxy(),
|
background.CreateProxy(),
|
||||||
HitObjectArea,
|
HitObjectArea,
|
||||||
new SkinnableDrawable(new ManiaSkinComponent(ManiaSkinComponents.KeyArea), _ => new DefaultKeyArea())
|
keyArea = new SkinnableDrawable(new ManiaSkinComponent(ManiaSkinComponents.KeyArea), _ => new DefaultKeyArea())
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
// This is pretty dodgy (and will cause weirdness when pausing gameplay) but is better than completely broken rewind.
|
|
||||||
Clock = host.UpdateThread.Clock,
|
|
||||||
ProcessCustomClock = false,
|
|
||||||
},
|
},
|
||||||
background,
|
background,
|
||||||
TopLevelContainer,
|
TopLevelContainer,
|
||||||
new ColumnTouchInputArea(this)
|
new ColumnTouchInputArea(this)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
applyGameWideClock(background);
|
||||||
|
applyGameWideClock(keyArea);
|
||||||
|
|
||||||
TopLevelContainer.Add(HitObjectArea.Explosions.CreateProxy());
|
TopLevelContainer.Add(HitObjectArea.Explosions.CreateProxy());
|
||||||
|
|
||||||
RegisterPool<Note, DrawableNote>(10, 50);
|
RegisterPool<Note, DrawableNote>(10, 50);
|
||||||
|
@ -108,6 +107,18 @@ private void load(GameHost host)
|
||||||
RegisterPool<HeadNote, DrawableHoldNoteHead>(10, 50);
|
RegisterPool<HeadNote, DrawableHoldNoteHead>(10, 50);
|
||||||
RegisterPool<TailNote, DrawableHoldNoteTail>(10, 50);
|
RegisterPool<TailNote, DrawableHoldNoteTail>(10, 50);
|
||||||
RegisterPool<HoldNoteTick, DrawableHoldNoteTick>(50, 250);
|
RegisterPool<HoldNoteTick, DrawableHoldNoteTick>(50, 250);
|
||||||
|
|
||||||
|
// Some elements don't handle rewind correctly and fixing them is non-trivial.
|
||||||
|
// In the future we need a better solution to this, but as a temporary work-around, give these components the game-wide
|
||||||
|
// clock so they don't need to worry about rewind.
|
||||||
|
// This only works because they handle OnPressed/OnReleased which results in a correct state while rewinding.
|
||||||
|
//
|
||||||
|
// This is kinda dodgy (and will cause weirdness when pausing gameplay) but is better than completely broken rewind.
|
||||||
|
void applyGameWideClock(Drawable drawable)
|
||||||
|
{
|
||||||
|
drawable.Clock = host.UpdateThread.Clock;
|
||||||
|
drawable.ProcessCustomClock = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onSourceChanged()
|
private void onSourceChanged()
|
||||||
|
|
Loading…
Reference in New Issue