2017-02-07 12:59:30 +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
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
2017-02-09 13:56:39 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2016-10-13 20:53:42 +08:00
|
|
|
|
using System;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2016-11-14 17:03:20 +08:00
|
|
|
|
namespace osu.Game.Modes.Objects
|
2016-10-13 09:10:15 +08:00
|
|
|
|
{
|
|
|
|
|
public abstract class HitObjectConverter<T>
|
|
|
|
|
where T : HitObject
|
|
|
|
|
{
|
2017-02-09 13:56:39 +08:00
|
|
|
|
public abstract List<T> Convert(Beatmap beatmap);
|
2016-10-13 09:10:15 +08:00
|
|
|
|
}
|
2016-11-14 17:54:24 +08:00
|
|
|
|
|
2016-10-13 20:53:42 +08:00
|
|
|
|
public class HitObjectConvertException : Exception
|
|
|
|
|
{
|
|
|
|
|
public HitObject Input { get; }
|
|
|
|
|
public HitObjectConvertException(string modeName, HitObject input)
|
|
|
|
|
: base($@"Can't convert from {input.GetType().Name} to {modeName} HitObject!")
|
|
|
|
|
{
|
|
|
|
|
Input = input;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-13 09:10:15 +08:00
|
|
|
|
}
|