mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
48 lines
1.3 KiB
C#
48 lines
1.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 osu.Game.Beatmaps.Formats;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public class LegacySkinDecoder : LegacyDecoder<DefaultSkinConfiguration>
|
|
{
|
|
public LegacySkinDecoder()
|
|
: base(1)
|
|
{
|
|
}
|
|
|
|
protected override void ParseLine(DefaultSkinConfiguration 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;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(pair.Key))
|
|
skin.ConfigDictionary[pair.Key] = pair.Value;
|
|
}
|
|
|
|
base.ParseLine(skin, section, line);
|
|
}
|
|
}
|
|
}
|