mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:37:25 +08:00
70 lines
2.3 KiB
C#
70 lines
2.3 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.Globalization;
|
|
using osu.Game.Beatmaps.Formats;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public class LegacySkinDecoder : LegacyDecoder<LegacySkinConfiguration>
|
|
{
|
|
public LegacySkinDecoder()
|
|
: base(1)
|
|
{
|
|
}
|
|
|
|
protected override void ParseLine(LegacySkinConfiguration skin, Section section, string line)
|
|
{
|
|
if (section != Section.Colours)
|
|
{
|
|
line = StripComments(line);
|
|
|
|
var pair = SplitKeyVal(line);
|
|
|
|
switch (section)
|
|
{
|
|
case Section.General:
|
|
switch (pair.Key)
|
|
{
|
|
case @"Name":
|
|
skin.SkinInfo.Name = pair.Value;
|
|
return;
|
|
|
|
case @"Author":
|
|
skin.SkinInfo.Creator = pair.Value;
|
|
return;
|
|
|
|
case @"Version":
|
|
if (pair.Value == "latest")
|
|
skin.LegacyVersion = LegacySkinConfiguration.LATEST_VERSION;
|
|
else if (decimal.TryParse(pair.Value, NumberStyles.AllowDecimalPoint, CultureInfo.InvariantCulture, out var version))
|
|
skin.LegacyVersion = version;
|
|
|
|
return;
|
|
}
|
|
|
|
break;
|
|
|
|
// osu!catch section only has colour settings
|
|
// so no harm in handling the entire section
|
|
case Section.CatchTheBeat:
|
|
HandleColours(skin, line);
|
|
return;
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(pair.Key))
|
|
skin.ConfigDictionary[pair.Key] = pair.Value;
|
|
}
|
|
|
|
base.ParseLine(skin, section, line);
|
|
}
|
|
|
|
protected override LegacySkinConfiguration CreateTemplateObject()
|
|
{
|
|
var config = base.CreateTemplateObject();
|
|
config.LegacyVersion = 1.0m;
|
|
return config;
|
|
}
|
|
}
|
|
}
|