mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 06:10:05 +08:00
417f146386
Adds base classes for difficulty calculations, hooks them up with carousel container, and adds a port of the osu difficulty calculator.
50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Game.Beatmaps.Samples;
|
|
using osu.Game.Modes.Objects;
|
|
using OpenTK;
|
|
using osu.Game.Beatmaps;
|
|
|
|
namespace osu.Game.Modes.Osu.Objects
|
|
{
|
|
public abstract class OsuHitObject : HitObject
|
|
{
|
|
public Vector2 Position { get; set; }
|
|
|
|
public Vector2 StackedPosition => Position + StackOffset;
|
|
|
|
public virtual Vector2 EndPosition => Position;
|
|
|
|
public Vector2 StackedEndPosition => EndPosition + StackOffset;
|
|
|
|
public virtual int StackHeight { get; set; }
|
|
|
|
public Vector2 StackOffset => new Vector2(StackHeight * Scale * -6.4f);
|
|
|
|
public float Scale { get; set; } = 1;
|
|
|
|
public abstract HitObjectType Type { get; }
|
|
|
|
public override void SetDefaultsFromBeatmap(Beatmap beatmap)
|
|
{
|
|
base.SetDefaultsFromBeatmap(beatmap);
|
|
|
|
Scale = (1.0f - 0.7f * (beatmap.BeatmapInfo.BaseDifficulty.CircleSize - 5) / 5) / 2;
|
|
}
|
|
}
|
|
|
|
[Flags]
|
|
public enum HitObjectType
|
|
{
|
|
Circle = 1 << 0,
|
|
Slider = 1 << 1,
|
|
NewCombo = 1 << 2,
|
|
Spinner = 1 << 3,
|
|
ColourHax = 122,
|
|
Hold = 1 << 7,
|
|
SliderTick = 1 << 8,
|
|
}
|
|
}
|