1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 18:07:36 +08:00
osu-lazer/osu.Game/Skinning/LegacySkinDecoder.cs

62 lines
1.8 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps.Formats;
namespace osu.Game.Skinning
{
public class LegacySkinDecoder : LegacyDecoder<SkinConfiguration>
{
public LegacySkinDecoder()
: base(1)
{
}
protected override void ParseLine(SkinConfiguration skin, Section section, string line)
2018-04-13 17:19:50 +08:00
{
line = StripComments(line);
2018-04-13 17:19:50 +08:00
switch (section)
{
case Section.General:
{
2018-04-13 17:19:50 +08:00
var pair = SplitKeyVal(line);
switch (pair.Key)
{
case @"Name":
skin.SkinInfo.Name = pair.Value;
2018-04-13 17:19:50 +08:00
break;
case @"Author":
skin.SkinInfo.Creator = pair.Value;
2018-04-13 17:19:50 +08:00
break;
2018-12-08 05:22:40 +08:00
case @"CursorExpand":
2018-12-09 20:29:14 +08:00
skin.CursorExpand = pair.Value != "0";
2018-12-08 05:22:40 +08:00
break;
2018-04-13 17:19:50 +08:00
}
break;
}
case Section.Fonts:
{
var pair = SplitKeyVal(line);
switch (pair.Key)
{
case "HitCirclePrefix":
skin.HitCircleFont = pair.Value;
break;
case "HitCircleOverlap":
skin.HitCircleOverlap = int.Parse(pair.Value);
break;
}
break;
}
2018-04-13 17:19:50 +08:00
}
base.ParseLine(skin, section, line);
2018-04-13 17:19:50 +08:00
}
}
}