2016-09-02 18:27:38 +09:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2016-10-07 16:35:14 -04:00
|
|
|
|
using System;
|
|
|
|
|
using osu.Game.Beatmaps.Samples;
|
2016-11-14 18:54:24 +09:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-11-14 18:03:20 +09:00
|
|
|
|
using OpenTK;
|
2016-12-11 10:11:22 +01:00
|
|
|
|
using osu.Game.Beatmaps;
|
2016-09-02 18:27:38 +09:00
|
|
|
|
|
2016-11-14 18:54:24 +09:00
|
|
|
|
namespace osu.Game.Modes.Osu.Objects
|
2016-09-02 18:27:38 +09:00
|
|
|
|
{
|
2016-11-19 19:07:57 +09:00
|
|
|
|
public abstract class OsuHitObject : HitObject
|
2016-09-02 18:27:38 +09:00
|
|
|
|
{
|
2016-10-07 16:35:14 -04:00
|
|
|
|
public Vector2 Position { get; set; }
|
|
|
|
|
|
2016-12-11 10:11:22 +01:00
|
|
|
|
public float Scale { get; set; } = 1;
|
|
|
|
|
|
2016-12-06 21:14:38 +09:00
|
|
|
|
public virtual Vector2 EndPosition => Position;
|
|
|
|
|
|
2016-12-11 10:11:22 +01:00
|
|
|
|
public override void SetDefaultsFromBeatmap(Beatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
base.SetDefaultsFromBeatmap(beatmap);
|
|
|
|
|
|
|
|
|
|
Scale = (1.0f - 0.7f * (beatmap.BeatmapInfo.BaseDifficulty.CircleSize - 5) / 5) / 2;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 16:35:14 -04:00
|
|
|
|
[Flags]
|
2016-11-14 22:03:39 +09:00
|
|
|
|
internal enum HitObjectType
|
2016-10-07 16:35:14 -04:00
|
|
|
|
{
|
|
|
|
|
Circle = 1,
|
|
|
|
|
Slider = 2,
|
|
|
|
|
NewCombo = 4,
|
2016-10-11 10:53:16 -04:00
|
|
|
|
CircleNewCombo = 5,
|
|
|
|
|
SliderNewCombo = 6,
|
2016-10-07 16:35:14 -04:00
|
|
|
|
Spinner = 8,
|
2016-10-11 10:53:16 -04:00
|
|
|
|
ColourHax = 122,
|
|
|
|
|
Hold = 128,
|
|
|
|
|
ManiaLong = 128,
|
2016-10-07 16:35:14 -04:00
|
|
|
|
}
|
2016-09-02 18:27:38 +09:00
|
|
|
|
}
|
|
|
|
|
}
|